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

推荐订阅源

J
Java Code Geeks
S
SegmentFault 最新的问题
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
I
InfoQ
U
Unit 42
博客园_首页
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
T
Tailwind CSS Blog
量子位

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: Fast Node Manager, Zoxide Smart CD, Technical Writin...
2021-04-18 · via Stonecharioteer on Tech

GitHub - Schniz/fnm - 🚀 Fast and simple Node.js version manager, built in Rust.

Lightning-fast alternative to nvm for managing Node.js versions:

Key Advantages:

  • Rust Performance: Significantly faster than shell-based alternatives
  • Cross-Platform: Works on Windows, macOS, Linux
  • Simple API: Intuitive commands for version switching
  • Shell Integration: Automatic version switching based on .nvmrc
  • Minimal Dependencies: Single binary installation

Common Commands:

1
2
3
4
fnm install 16        # Install Node 16
fnm use 16           # Switch to Node 16
fnm default 16       # Set Node 16 as default
fnm list             # List installed versions

Perfect for developers who frequently switch between Node.js versions.

Zoxide - Smarter CD Command

GitHub - ajeetdsouza/zoxide - A smarter cd command.

Intelligent directory navigation that learns from your usage patterns:

How It Works:

  • Frequency Tracking: Remembers directories you visit often
  • Fuzzy Matching: Jump to directories with partial names
  • Recency Weighting: Prioritizes recently visited directories
  • Smart Ranking: Combines frequency and recency for optimal results

Usage Examples:

1
2
3
z foo            # Jump to most frecent directory matching "foo"
z foo bar        # Jump to directory matching both "foo" and "bar"
zi foo           # Interactive selection when multiple matches

Benefits:

  • Reduces typing for common navigation
  • Works across all your shell sessions
  • Integrates with existing shell workflows
  • Available for bash, zsh, fish, and PowerShell

Technical Writing Guide

How to Write a Technical Book — SerHack Blog

Comprehensive guide to writing technical books and documentation:

Key Topics:

  • Planning: Structuring content and defining audience
  • Writing Process: Maintaining consistency and flow
  • Technical Accuracy: Ensuring code examples work
  • Publishing: Traditional vs self-publishing considerations
  • Marketing: Building audience and promoting content

Valuable Insights:

  • Start with detailed outline
  • Write code first, explanations second
  • Get early feedback from target audience
  • Focus on reader’s learning journey
  • Balance depth with accessibility

PyO3 - Python-Rust Integration

Introduction - PyO3 user guide

Library for creating Python extensions in Rust:

Capabilities:

  • Python Extensions: Write fast Python modules in Rust
  • Python Bindings: Call Rust code from Python
  • Native Types: Seamless conversion between Python and Rust types
  • Error Handling: Proper exception handling across language boundaries
  • Memory Safety: Rust’s safety guarantees in Python extensions

Use Cases:

  • Performance-critical Python code
  • Existing Rust libraries exposed to Python
  • CPU-intensive computations
  • System-level programming accessible from Python

Qubes OS - Security Through Isolation

Introduction | Qubes OS

Security-focused operating system using virtualization for isolation:

Security Model:

  • Compartmentalization: Different activities in separate VMs
  • Minimal Trust: Assume components will be compromised
  • Isolation: Prevent malware from spreading between domains
  • Controlled Communication: Secure inter-domain communication

Architecture:

  • Dom0: Privileged management domain
  • AppVMs: Isolated application virtual machines
  • Templates: Base images for creating VMs
  • Networking: Separate VMs for network functions

Use Cases:

  • High-security environments
  • Researchers handling malware
  • Journalists protecting sources
  • Anyone requiring strong compartmentalization

Each tool represents best-in-class solutions for their respective domains, emphasizing performance, security, and developer productivity.