惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
IT之家
IT之家
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
小众软件
小众软件
博客园 - 叶小钗
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

Stonecharioteer on Tech

I Traced My Traffic Through a Home Tailscale Exit Node What Was I Reading Last? In Three Not-So-Easy Pieces Dogfooding Is Hard Code blocks in your books, finally GoForGo v0.9.0 Merrilin - We built an app to read books I use a Macbook now Data Structures & Algorithms - Preparing for Interviews Using a local DNS namespace for local service discovery Direction KOllector - Publishing KOReader Highlights gbt: branches touched in the last 24 hours A Soiree into Symbols in Ruby Some Smalltalk about Ruby Loops Ruby Blocks Returning from Ruby Blocks, Procs and Lambdas My Linux Laptop Finally Works: How Claude Helped Me Fix Years of Annoyances TIL: Watchexec - Modern File Watching for Development Workflows A Less Busy Mind GoForGo - Learn Go through live examples Migrating My Old Blog to Hugo with Claude The Qtile Window Manager: A Python-Powered Tiling Experience Read the RFCs that Built the Internet Py-x-Protobuf - Or How I Learned to Stop Worrying and Love Protocol Buffers Python Reverse a List New Beginnings Leaving ChainSafe Systems Screen Lock for Cinnamon Desktop using Zenity and Terminal Commands Crews Not Teams A System for Getting Better at LeetCode
TIL: CORS Deep Dive, Piku Tiny PaaS, Rust Strings, and De...
2021-04-15 · via Stonecharioteer on Tech

Deep dive in CORS: History, how it works, and best practices

Comprehensive exploration of Cross-Origin Resource Sharing:

Historical Context:

  • Same-Origin Policy: Browser security feature from the early web
  • AJAX Era: XMLHttpRequest created need for cross-origin requests
  • CORS Solution: W3C specification to safely allow cross-origin requests
  • Modern Challenges: Single-page applications and microservices architecture

How CORS Works:

Simple Requests:

  • Automatic Headers: Browser adds Origin header automatically
  • Server Response: Server includes Access-Control-Allow-Origin header
  • Browser Enforcement: Browser blocks response if origins don’t match

Preflight Requests:

  • OPTIONS Method: Browser sends preflight request for complex requests
  • Permission Check: Server responds with allowed methods, headers, origins
  • Actual Request: Browser sends actual request only if preflight succeeds

Best Practices:

  • Specific Origins: Avoid wildcard (*) in production
  • Minimal Headers: Only allow necessary headers
  • Credential Handling: Careful with Access-Control-Allow-Credentials
  • Error Handling: Proper CORS error responses

Piku - Tiny PaaS

GitHub - piku/piku - The tiniest PaaS you’ve ever seen. Git push deployments to your own servers.

Lightweight Platform-as-a-Service for simple deployments:

Key Features:

  • Git-Based Deployment: Deploy with simple git push
  • Minimal Dependencies: Single Python script with minimal requirements
  • Multi-Language Support: Python, Node.js, Go, Ruby, and more
  • Process Management: Automatic process supervision and restart
  • Environment Variables: Configuration through environment files

How It Works:

1
2
git remote add piku piku@server:app-name
git push piku main

Perfect For:

  • Small Projects: Personal projects and prototypes
  • Learning: Understanding deployment concepts
  • Resource-Constrained: Single server deployments
  • Simplicity: When Kubernetes is overkill

Why Rust Strings Seem Hard

Why Rust strings seem hard

Excellent explanation of Rust’s string complexity:

The Challenge:

  • Multiple Types: String, &str, OsString, Path, etc.
  • Memory Management: Ownership and borrowing with strings
  • UTF-8 Enforcement: Always valid Unicode, unlike C strings
  • Performance Considerations: Zero-copy operations when possible

Key Concepts:

String Types:

  • String: Owned, mutable, heap-allocated
  • &str: Borrowed, immutable, string slice
  • Relationship: String can be borrowed as &str

Common Patterns:

1
2
3
let owned = String::from("hello");    // Owned string
let borrowed = &owned;                // Borrowed as &str
let slice = &owned[0..2];            // String slice

Why It’s Actually Logical:

  • Memory Safety: Prevents buffer overflows and use-after-free
  • Performance: Zero-cost abstractions where possible
  • Correctness: UTF-8 validity guaranteed at compile time

Deno Standard Library

Deno Standard Library

Modern standard library for Deno JavaScript/TypeScript runtime:

Philosophy:

  • Modern APIs: Built for contemporary JavaScript features
  • TypeScript First: Full TypeScript support out of the box
  • Web Standards: Aligned with web platform APIs
  • Security: Secure by default with explicit permissions

Key Modules:

  • HTTP: Web server and client functionality
  • File System: File and directory operations
  • Testing: Unit testing framework
  • Encoding: Base64, hex, and other encoding utilities
  • Crypto: Cryptographic functions
  • UUID: UUID generation and validation

Advantages Over Node.js:

  • No package.json: Direct URL imports
  • Built-in TypeScript: No compilation step needed
  • Web Standards: Fetch, WebCrypto, etc.
  • Secure: Permissions required for file, network access

Each tool represents a different approach to solving common development challenges with emphasis on simplicity, security, and modern standards.