https://dev.to/composiodev/13-hidden-open-source-libraries-to-become-an-ai-wizard-4ng9
Читать полностью…https://dev.jimgrey.net/2024/07/03/lessons-learned-in-35-years-of-making-software/
Читать полностью…Resumo do artigo "jj init" por Chris Krycho:Читать полностью…
🔧 Jujutsu: Novo sistema de controle de versão que pode substituir o Git
🧠 Abordagem inovadora com design cuidadoso de interface e implementação
🔄 Compatível com repositórios Git existentes
🌟 Principais conceitos:
• Mudanças distintas de revisões
• Conflitos como itens de primeira classe
• Interface de usuário intuitiva
👨💻 Desenvolvido no Google para substituir sistemas internos
🔍 Revisions e revsets como elementos fundamentais
📊 Comando "log" mais informativo que o Git
🧩 Linguagem funcional para seleção de revisões
Jujutsu oferece uma experiência melhorada mantendo compatibilidade com Git, potencialmente representando o futuro do controle de versão.
https://dev.to/raajaryan/top-9-websites-for-remote-developer-job-opportunities-3d4i
Читать полностью…Summary of the article:
🧑💻 Programmers share what rekindled their passion for programming after losing enthusiasm:
• 🛠️ Personal projects and pressure-free side projects
• 🤖 Playing with hardware like Raspberry Pi
• 🎨 Generative art and plotters
• 📝 Writing about programming
• 🧩 Learning new languages like Rust, Elixir, Go
• 🏫 Teaching programming to others
• 🔧 Creating tools to solve own problems
• 🏢 Switching to better companies/work environments
• 📚 Rereading classic programming books
• 🤝 Working on open source projects
Most emphasize the importance of regaining fun and creativity, without external pressures.
Many also mentioned the importance of disconnecting from technology sometimes, having hobbies unrelated to programming. This helps refresh the mind and bring a new perspective when they return to coding.
Summary of the article: "JavaScript Logical OR vs. Nullish Coalescing Operator"
The article explains the differences between the Logical OR (||
) operator and the Nullish Coalescing (??
) operator in JavaScript:
- 🔍 Logical OR (||
) Operator
- Used to return the first "truthy" value.
- Can behave unexpectedly with values like 0
, ''
, or false
.
- 🔍 Nullish Coalescing (??
) Operator
- Returns the first value that is not null
or undefined
.
- Ideal for cases where 0
, ''
, or false
are valid values.
- 🔧 Examples
- let result = userInput || 'default';
- let result = userInput ?? 'default';
- 🌟 Conclusion
- Logical OR (||
) is useful when falsy values need to be replaced.
- Nullish Coalescing (??
) is preferable when only null
and undefined
should be considered as "absent" values.
Additional Tips:
- Performance: Both operations are quick in execution.
- Compatibility: Check for ??
support in older environments.
fengruohang/postgres-is-eating-the-database-world-157c204dcfc4" rel="nofollow">https://medium.com/@fengruohang/postgres-is-eating-the-database-world-157c204dcfc4
Читать полностью…Here's a summary in English:Читать полностью…
🔧 Jujutsu: New version control system that could replace Git
🧠 Innovative approach with careful interface and implementation design
🔄 Compatible with existing Git repositories
🌟 Key concepts:
• Changes distinct from revisions
• Conflicts as first-class items
• Intuitive user interface
👨💻 Developed at Google to replace internal systems
🔍 Revisions and revsets as fundamental elements
📊 More informative "log" command than Git
🧩 Functional language for revision selection
Jujutsu offers an improved experience while maintaining Git compatibility, potentially representing the future of version control.
https://brandur.org/fragments/dark-mode-notes
Implementação de modo escuro:
• 🌓 Três estados: claro, escuro e automático
• ⚡ Evitar oscilação na carga inicial
• 🖥️ Sincronizar entre abas abertas
• 🔄 Responder a mudanças no sistema operacional
• 🎨 Destaque de sintaxe adaptável com Shiki
A chave é usar armazenamento local e APIs de mídia do navegador para uma experiência fluida.
Dark mode implementation:Читать полностью…
• 🌓 Three states: light, dark, and auto
• ⚡ Avoid flicker on initial load
• 🖥️ Sync across open tabs
• 🔄 Respond to OS-level changes
• 🎨 Adaptive syntax highlighting with Shiki
Key is using local storage and browser media APIs for a seamless experience.
Resumo do artigo:
🧑💻 Programadores compartilham o que reavivou sua paixão pela programação após terem perdido o entusiasmo:
• 🛠️ Projetos pessoais e side projects sem pressão
• 🤖 Brincando com hardware como Raspberry Pi
• 🎨 Arte generativa e plotters
• 📝 Escrever sobre programação
• 🧩 Aprender novas linguagens como Rust, Elixir, Go
• 🏫 Ensinar programação a outros
• 🔧 Criar ferramentas para resolver problemas próprios
• 🏢 Mudar para empresas/ambientes de trabalho melhores
• 📚 Reler livros clássicos de programação
• 🤝 Trabalhar em projetos open source
A maioria enfatiza a importância de recuperar a diversão e criatividade, sem pressões externas.
Complemento:
Muitos também mencionaram a importância de desconectar-se da tecnologia às vezes, tendo hobbies não relacionados à programação. Isso ajuda a renovar a mente e trazer uma nova perspectiva quando voltam a programar.