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

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium

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: Java Programming MOOC, Monica Personal CRM, Rust Coo...
2020-12-02 · via Stonecharioteer on Tech

Today’s discoveries spanned programming education, personal productivity tools, systems programming resources, and multimedia processing techniques.

Java Programming MOOC from the University of Helsinki provides a comprehensive, free course for learning Java programming from beginner to advanced levels.

Course Structure:

  • Java Programming I: Fundamentals, variables, loops, methods, objects
  • Java Programming II: Object-oriented programming, interfaces, collections, file I/O
  • Advanced topics: Multithreading, networking, GUI development with JavaFX

Unique Features:

  • Interactive exercises: Hands-on coding practice with automated feedback
  • Project-based learning: Real-world applications and complete program development
  • University quality: Academic rigor with practical application focus
  • Free certification: Completion certificates available for both parts

Benefits for Developers:

  • Strong foundations: Solid understanding of OOP principles
  • Industry preparation: Skills directly applicable to enterprise Java development
  • Self-paced learning: Flexible schedule with comprehensive support materials
  • Community support: Active forums and peer learning opportunities

Monica Personal CRM

Monica is an open-source personal CRM designed to help users remember important details about friends, family, and business relationships.

Core Features:

Relationship Tracking:

  • Contact profiles: Detailed information about people in your network
  • Interaction history: Log conversations, meetings, and important events
  • Reminders: Automated notifications for birthdays, follow-ups, and special occasions
  • Relationship mapping: Visual connections between different contacts

Personal Information Management:

  • Life events: Track important moments in people’s lives
  • Gifts and preferences: Remember what people like for better gift-giving
  • Notes and conversations: Searchable record of interactions
  • Goals and projects: Track shared objectives and collaborations

Self-Hosting Benefits:

  • Privacy control: Your relationship data stays on your servers
  • Customization: Modify features to match your workflow
  • Integration potential: Connect with other personal productivity tools
  • Cost efficiency: Free alternative to commercial CRM solutions

Rust Cookbook

Rust Cookbook provides practical recipes for common programming tasks in Rust, bridging the gap between basic tutorials and advanced system programming.

Content Areas:

Systems Programming:

  • File I/O: Reading, writing, and manipulating files efficiently
  • Command line processing: Argument parsing and shell interaction
  • Concurrency: Threading, channels, and parallel processing
  • Network programming: HTTP clients, servers, and socket programming

Data Processing:

  • Parsing: Working with JSON, CSV, and custom data formats
  • Regular expressions: Pattern matching and text processing
  • Compression: Working with archives and compressed data
  • Serialization: Converting between data formats

Learning Approach:

  • Problem-focused: Each recipe solves a specific, practical problem
  • Complete examples: Full working code that can be copied and modified
  • Best practices: Idiomatic Rust patterns and performance considerations
  • External crates: Integration with the broader Rust ecosystem

FFmpeg Video Processing

Multiple FFmpeg resources for professional video manipulation:

Combining Multiple Videos:

1
2
3
4
5
6
# Create file list
echo "file 'video1.mp4'" > filelist.txt
echo "file 'video2.mp4'" >> filelist.txt

# Concatenate videos
ffmpeg -f concat -safe 0 -i filelist.txt -c copy output.mp4

Adding Images Before/After Video:

1
2
3
# Add 3-second image at beginning and end
ffmpeg -loop 1 -t 3 -i intro.jpg -i video.mp4 -loop 1 -t 3 -i outro.jpg \
  -filter_complex "[0:v][1:v][2:v]concat=n=3:v=1[v]" -map "[v]" -map 1:a output.mp4

Advanced Processing:

  • Format conversion: Between different video codecs and containers
  • Quality optimization: Balancing file size and visual quality
  • Audio manipulation: Extracting, replacing, and processing audio tracks
  • Batch processing: Scripting for multiple file operations

Additional Resources

CS140e - Embedded Systems Course

Stanford CS140e provides hands-on experience with embedded systems programming, including:

  • Bare metal programming: Writing code without operating systems
  • Hardware interfaces: Direct interaction with ARM processors
  • Real-time systems: Understanding timing constraints and deterministic behavior

Writing and Communication

  • Paul Graham’s “How to Write Usefully”: Principles for creating valuable written content
  • Command Line Challenges: Interactive tutorials for improving shell skills

These resources collectively provide comprehensive learning paths for multiple programming domains, from high-level application development to low-level systems programming, supplemented by practical tools for personal productivity and multimedia processing.