Microblog about coding stuff
@stuffaboutcoding
1
subscriber
7
photos
1
video
281
links
Interesting Articles, Blog Posts and Videos with a bias towards Ruby
🥰
Download Telegram
Join
Microblog about coding stuff
1 subscriber
Microblog about coding stuff
https://github.com/DarthSim/overmind
GitHub
GitHub - DarthSim/overmind: Process manager for Procfile-based applications and tmux
Process manager for Procfile-based applications and tmux - DarthSim/overmind
Microblog about coding stuff
https://tonsky.me/blog/clojure-macros/
tonsky.me
Clojure macros continue to surprise me
Microblog about coding stuff
https://github.com/caiiiycuk/postgresql-to-sqlite
GitHub
GitHub - caiiiycuk/postgresql-to-sqlite: pg2sqlite is easy to use solution to create sqlite database from postgresql dump
pg2sqlite is easy to use solution to create sqlite database from postgresql dump - caiiiycuk/postgresql-to-sqlite
Microblog about coding stuff
https://github.com/jarohen/chime
GitHub
GitHub - jarohen/chime: A really lightweight Clojure scheduler
A really lightweight Clojure scheduler. Contribute to jarohen/chime development by creating an account on GitHub.
Microblog about coding stuff
https://youtu.be/TUxj2TS5pNo?si=LSXjQ91MhYk_gAQB
YouTube
Build a Command Line Utility
Learn to build a command line tool using Deno's standard library. You'll explore how to parse arguments, handle flags, and provide helpful messages using utility functions. Follow along as we build a ski resort information app, handle errors gracefully, and…
Microblog about coding stuff
https://justin.searls.co/posts/running-rails-system-tests-with-playwright-instead-of-selenium/
justin․searls․co
Running Rails System Tests with Playwright instead of Selenium
Sick of flaky Rails system tests? Try blaming Selenium and swapping it with Playwright! I did and it's going great. Here's how
Microblog about coding stuff
https://jpcamara.com/2024/07/15/ruby-methods-are.html#some-context
Jpcamara
Ruby methods are colorless
👋🏼
This is part of series on concurrency, parallelism and asynchronous programming in Ruby. It’s a deep dive, so it’s divided into 12 main parts:
Your Ruby programs are always multi-threaded: Part 1 Your Ruby programs are always multi-threaded: Part 2 Consistent…
Microblog about coding stuff
https://youtu.be/txzzCyTI7Qk?si=0WS_Gb9GykEFWkp-
YouTube
7 Vim Tips and Tricks I Wish I Learned Sooner
Learn about 7 Vim tips and tricks I wish I would known earlier!
*https://www.youtube.com/watch?v=-2Nz8rn05bk&list=PLAgc_JOvkdovpZmFvDAgOs8m_0UIgG6QK&index=2*
In this video you will learn about seven vim motions and commands, that will make your Vim experience…
Microblog about coding stuff
https://omakub.org/
Omakub
Turn a fresh Ubuntu installation into a fully-configured, beautiful, and modern web development system by running a single command.
Microblog about coding stuff
https://youtu.be/_HSYTIEXa5w?si=YwYsjr3cvBHA3dl-
YouTube
How Google Maps fixed India's street name problem
When Google first expanded Maps to India in 2008, there was a problem. Many streets did not have names. This was before phones had accurate GPS, so unless you had a compass telling you how far you've travelled, directions on Google Maps were pretty much useless.…
Microblog about coding stuff
https://github.com/PRQL/prql
GitHub
GitHub - PRQL/prql: PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement
PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement - PRQL/prql
Microblog about coding stuff
https://github.com/jesseduffield/lazydocker
GitHub
GitHub - jesseduffield/lazydocker: The lazier way to manage everything docker
The lazier way to manage everything docker. Contribute to jesseduffield/lazydocker development by creating an account on GitHub.
Microblog about coding stuff
https://www.youtube.com/watch?v=gDkvLxbA5ZE
YouTube
1 minute coding tip: git diff-words to see diffs on a per-word basis instead of per line
1. Open ~/.gitconfig in your favorite editor.
2. Find the [alias] section. If it doesn't exist, add "[alias]" this to the bottom of your .gitconfig.
3. Under the alias section, add this text:
diff-words = diff --color-words='[^[:space:]]|([[:alnum:]]|UTF_8_GUARD)+'…
Microblog about coding stuff
https://www.fullstackruby.dev/fullstack-development/2022/06/03/what-would-it-take-for-roda-to-win/
Fullstack Ruby
What Would It Take for Roda to Win?
Roda’s stated goals are simplicity, reliability, extensibility, and performance. Those are the very reasons why I have become such a Roda stan. It’s so malleable, you can take it in any number of directions in terms of architecture—particularly on the view…
Microblog about coding stuff
https://github.com/SebLague/Geographical-Adventures
GitHub
GitHub - SebLague/Geographical-Adventures
Contribute to SebLague/Geographical-Adventures development by creating an account on GitHub.
Microblog about coding stuff
https://byroot.github.io/ruby/json/2024/12/15/optimizing-ruby-json-part-1.html
byroot’s blog
Optimizing Ruby’s JSON, Part 1
I was recently made maintainer of the json gem, and aside from fixing some old bugs, I focused quite a bit on its performance, so that it is now the fastest JSON parser and generator for Ruby on most benchmarks.
Microblog about coding stuff
https://youtu.be/C2w45qRc3aU?si=IJx-BbN1ZimqSAnb
YouTube
The Absolute Best Intro to Monads For Software Engineers
If you had to pick the most inaccessible terms in all of software engineering, monad would be a strong contender for first place, because of its spooky math background that uses terms like endofunctor and monoid. As it turns out, monads are an extremely powerful…
Microblog about coding stuff
https://youtu.be/DjYZk8nrXVY?si=UZLvZb7tSWpqgWFU
YouTube
LeetCode was HARD until I Learned these 15 Patterns
Master DSA patterns: https://algomaster.io/
Subscribe to my tutorial channel: https://www.youtube.com/@algomaster-io
Resource mentioned in the video:
15 LeetCode Patterns: https://blog.algomaster.io/p/15-leetcode-patterns
20 Dynamic Programming Patterns:…
Microblog about coding stuff
https://github.com/copiousfreetime/amalgalite
GitHub
GitHub - copiousfreetime/amalgalite: SQLite database engine embedded in a ruby extension.
SQLite database engine embedded in a ruby extension. - copiousfreetime/amalgalite
Microblog about coding stuff
https://www.youtube.com/watch?v=qlfh_rv6khY
YouTube
A simple procedural animation technique
Let's design some procedurally animated animals!
This video is a tutorial/explanation for a simple procedural animation technique I recently learned about. Essentially, it's animation rigging using a 2D chain simulation. I provide an animated explanation…