read or learn more
λ λ λ
Fogus' Thoughts on life, programming, and thinking
❤ c clj erl pl frink fth cl org pure icl qi ❤
Follow me on Twitter... or RSS...
Run this blog in mobile
2024 2023 2022 2021 2020 2019 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005 2004 2003 2002
There are no programming languages that will make you “elite”. In fact, there are no “elite” programming languages. “Elite” is as loaded a term as there could possibly be, but I would like to use (abuse?) it for the purpose of this post. I hope you will bear with me as I attempt to make […]
Thanks to some nice work by Bobby Calderwood ClojureScript now has Atom validators and watchers. Some commentary below: Setting a validator Placing a validator on an Atom is as easy as: (def A (atom 0 :validator (fn [new-val] (== 0 new-val)))) @A ;=> 0 (swap! A inc) ;; AssertionError @A ;=> 0 As you see, […]
Ru·bris Noun /ˈroōbris/ Excessive pride in one’s programming language or framework. (in Greek tragedy) the eternal drive to reinvent the wheel as a hexagonal protuberance. RELATED TO: ru·bris·tic /ˈroōbristik/ adjective SYNONYMS: va·node·ty /vannōdtē/ noun see more in the Devil’s Programming Glossary
Let me preface this post by saying that no programmer should feel compelled to read any of these papers. I list them because I think that they provide a breadth of information that is generally useful and interesting from a computer science perspective. What you do with that information is your prerogative, including ignoring it […]
this post inspired by Volkswagen’s excellent marketing campaign ‘Drivers Wanted’ An unfortunate meme1 dogging Scala is the notion that it is a notoriously complicated language. For better or worse, I do believe that the lion-share of this general perception is fueled by both fear and lack of familiarity. That’s not to say that Scala doesn’t […]