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

推荐订阅源

雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
D
Docker
博客园 - 聂微东
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
量子位
宝玉的分享
宝玉的分享
博客园 - 司徒正美
The Cloudflare Blog
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC

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: UNIX Programming Course, Finding Duplicate Files, an...
2021-01-14 · via Stonecharioteer on Tech

UNIX Systems Programming Education

CS631 Advanced Programming in the UNIX Environment

Course Content Areas

  • System Calls: Low-level interaction with the operating system
  • Process Management: Creating, managing, and communicating between processes
  • File Systems: Understanding UNIX file system internals
  • Network Programming: Socket programming and network communications
  • Inter-Process Communication: Pipes, signals, shared memory, and message queues
  • Security: UNIX security model and secure programming practices

Learning Benefits

  • Systems Understanding: Deep knowledge of how UNIX systems work internally
  • Professional Skills: Essential knowledge for systems programming roles
  • C Programming: Advanced C programming in systems context
  • Performance: Understanding performance implications of system calls
  • Debugging: Techniques for debugging systems-level programs

Finding Duplicate Files on Linux

Duplicate File Detection Methods

  • fdupes: Dedicated tool for finding duplicate files
  • rdfind: Another specialized duplicate finder
  • find + md5sum: Manual approach using standard tools
  • dupe-guru: GUI application for duplicate management
  • jdupes: Improved version of fdupes with better performance

Use Cases and Benefits

  • Storage Optimization: Reclaim disk space by removing duplicates
  • Backup Cleanup: Remove redundant files from backup sets
  • Media Management: Organize photo and music collections
  • System Maintenance: Regular cleanup as part of system maintenance
  • Data Deduplication: Reduce storage requirements for large datasets

Command Examples

1
2
3
4
5
6
7
8
# Using fdupes to find duplicates
fdupes -r /path/to/directory

# Using find and md5sum
find /path -type f -exec md5sum {} \; | sort | uniq -d -w32

# Using rdfind
rdfind -makehardlinks true /path/to/directory

Content Creation and Education

Livestreaming Tips for Technical Content

  • Livestream tips :: Jon Gjengset
  • Practical advice for technical livestreaming
  • Written by Jon Gjengset, known for Rust programming streams
  • Covers technical, equipment, and presentation aspects

Technical Livestreaming Considerations

  • Audio Quality: Most important aspect of stream quality
  • Screen Setup: Optimal resolution and font sizes for viewers
  • Content Planning: Balancing preparation with spontaneity
  • Interaction: Engaging with chat while maintaining focus
  • Technical Setup: OBS configuration, scene management, hotkeys

Educational Streaming Benefits

  • Learning in Public: Teaching while learning new concepts
  • Community Building: Creating educational communities around topics
  • Accessibility: Making learning resources freely available
  • Real-time Feedback: Immediate questions and discussions
  • Documentation: Recorded streams serve as educational content

Stream Content Ideas

  • Code Reviews: Reviewing and discussing code quality
  • Tutorial Series: Step-by-step learning content
  • Problem Solving: Working through algorithms or system design
  • Tool Exploration: Discovering and learning new tools
  • Project Development: Building projects from start to finish

Key Takeaways

  • Educational Resources: High-quality computer science education increasingly available online
  • Systems Knowledge: Understanding UNIX internals crucial for systems programming
  • Maintenance Skills: Regular system maintenance requires knowledge of cleanup tools
  • Content Creation: Technical livestreaming can be valuable for both creators and viewers
  • Community Learning: Shared learning experiences benefit everyone involved
  • Practical Skills: Combining theoretical knowledge with practical tools and techniques

These resources span from foundational computer science education to practical system administration and modern content creation, showing how technical knowledge can be both acquired and shared in various formats.