Skip to content

Instantly share code, notes, and snippets.

View jozefchmelar's full-sized avatar
💭
writing bugs, fixing code

Jokinko jozefchmelar

💭
writing bugs, fixing code
View GitHub Profile
@davidfowl
davidfowl / MinimalAPIs.md
Last active May 18, 2024 18:28
Minimal APIs at a glance
@stettix
stettix / things-i-believe.md
Last active March 20, 2024 17:45
Things I believe

Things I believe

This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.

Agree? Disagree? Feel free to let me know at @JanStette. See also my blog at www.janvsmachine.net.

Fundamentals

Keep it simple, stupid. You ain't gonna need it.

@EnchanterIO
EnchanterIO / twitter_unfollow_all.js
Last active June 13, 2019 15:53
Simple browser script to unfollow all Twitter users
// Open browser console
// Navigate to: https://twitter.com/following
// Scroll till end to get all the users displayed in the DOM
// Run:
$(".user-actions-follow-button").each(function() {
$(this).children("button.EdgeButton--primary").click()
});
// Better than clicking 500x unfollow :)

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?