Skip to content

Instantly share code, notes, and snippets.

View emregozel's full-sized avatar
🏠
dev

Emre Anıl Gözel emregozel

🏠
dev
View GitHub Profile
@gkmngrgn
gkmngrgn / urls.txt
Last active April 7, 2023 10:59
My Feeds
http://lucumr.pocoo.org/feed.atom "Python" "Rust" # Armin Ronacher
http://feeds.feedburner.com/ScottHanselman "Csharp" # Scott Hanselman
https://www.joelonsoftware.com/feed/ "Csharp" # Joel Spolsky
http://www.norvig.com/rss-feed.xml "Python" # Peter Norvig
http://nicktasios.nl/rss.xml "Cpp" # Nick Tasios
http://feeds.feedburner.com/SolarianProgrammer "Cpp" # Paul Silisteanu
https://alexgaynor.net/feed.xml "Python" "Rust" # Alex Gaynor
http://feeds.feedburner.com/codinghorror?format=xml "Csharp" # Jeff Atwood
https://drewdevault.com/feed.xml "Golang" # Drew DeVault
http://dave.cheney.net/feed
@crizstian
crizstian / solid.js
Last active March 15, 2023 02:40
Code examples of SOLID principles for JavaScript
/*
Code examples from the article: S.O.L.I.D The first 5 priciples of Object Oriented Design with JavaScript
https://medium.com/@cramirez92/s-o-l-i-d-the-first-5-priciples-of-object-oriented-design-with-javascript-790f6ac9b9fa#.7uj4n7rsa
*/
const shapeInterface = (state) => ({
type: 'shapeInterface',
area: () => state.area(state)
})