This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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) | |
}) |