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

推荐订阅源

GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
小众软件
小众软件
美团技术团队
博客园 - 司徒正美
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
J
Java Code Geeks
Last Week in AI
Last Week in AI
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
V
V2EX
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale 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: Big-O Notation Explained and ADHD Productivity Tips
2021-01-26 · via Stonecharioteer on Tech

Computer Science Fundamentals

Big-O Notation for Self-Taught Programmers

Understanding Big-O

  • Time Complexity: How algorithm performance scales with input size
  • Space Complexity: Memory usage scaling characteristics
  • Common Complexities: O(1), O(log n), O(n), O(n log n), O(n²)
  • Practical Impact: Real-world implications for application performance

Big-O Examples

  • O(1): Hash table lookups, array access by index
  • O(log n): Binary search, balanced tree operations
  • O(n): Linear search, single loop through array
  • O(n log n): Efficient sorting algorithms (merge sort, quicksort)
  • O(n²): Nested loops, bubble sort, simple algorithms

Productivity and Neurodiversity

  • 131 ADHD pro-tips from 700+ Reddit comments
  • Comprehensive collection of community-sourced productivity strategies
  • Real-world tips from people with ADHD experience
  • Covers work, organization, focus, and daily life management

Key ADHD Productivity Strategies

Focus and Attention

  • Time Boxing: Work in short, defined time periods
  • Pomodoro Technique: 25-minute focused work sessions
  • Environmental Control: Minimize distractions and interruptions
  • Task Switching: Use natural energy fluctuations

Organization Systems

  • External Memory: Write everything down, don’t rely on memory
  • Visual Reminders: Use calendars, sticky notes, and visual cues
  • Routine Building: Create consistent daily and weekly routines
  • Automation: Automate repetitive tasks and decisions

Work Strategies

  • Hyperfocus Utilization: Leverage periods of intense focus
  • Energy Management: Match tasks to energy levels throughout the day
  • Accountability Systems: External accountability partners or systems
  • Break Tasks Down: Large projects into smaller, manageable pieces

Learning and Development

Self-Taught Programming Challenges

  • Knowledge Gaps: Filling in computer science fundamentals
  • Learning Path: Structured approach to skill development
  • Practical vs Theoretical: Balancing hands-on coding with theory
  • Community Resources: Leveraging community knowledge and experience

Neurodiversity in Tech

  • Different Thinking Styles: ADHD can bring creative problem-solving approaches
  • Accommodation Strategies: Adapting work environments for different needs
  • Strengths Recognition: Hyperfocus, creativity, and innovative thinking
  • Support Systems: Community support and shared experiences

Key Takeaways

  • Algorithmic Thinking: Understanding Big-O helps make better architectural decisions
  • Community Wisdom: Real-world experience from communities provides valuable insights
  • Neurodiversity: Different brains need different strategies for productivity
  • Practical Learning: Self-taught programmers benefit from practical explanations of theory
  • Adaptive Strategies: What works for neurotypical individuals may not work for everyone

These resources highlight both technical learning (algorithm analysis) and personal productivity strategies, showing how understanding both code complexity and personal working styles contributes to developer effectiveness.