Details
-
SkillsK
-
Github
Joined devRant on 8/3/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
The only thing cooler than magic numbers are magic no-go numbers.
Or does anyone have a reason for considering 2 or 4 spaces indent but not 3?3 -
Successfully wrote a Prolog DSL in Python with no prior knowledge of interpreting Prolog. Backtracking is implemented using the inspect module.
-
Why do people think Perl's outdated?
Until Python/Ruby get a port of Keyword::Declare Perl's niche stays unquestioned.7 -
It took me a long time to admit, but I think I'm finally ready to out myself: I kinda love JavaScript.
Seriously, if you avoid classes in favor of Object.create and if you make use of lambdas instead of bind/apply/call whenever possible, it might successfully give you the illusion of a clean language.2 -
to everyone who judges programming languages based on syntax, it's appeal and familiarity: fuck you!5
-
There should be no debate about
statically typed vs dynamic,
functional vs imperative,
single vs multi namespace
(lisp-1 vs lisp-2),
or anything like that:
it always boils down to
simple vs complex,
where
simple is the unquestioned winner.2 -
We can not create a good programming language before creating a good os.
This is why the most novel approaches to language development (lisp, smalltalk, ...) started out in their own worlds (lisp machines, smalltalk machines, ...) -
How do you become a PM?
Do you need computing science knowledge? And at which point in your career do you lose it?5 -
When will there be Haskell, Erlang or APL shirts?
I wanna have one with a cool language as my profile pic1 -
NodeJS' url module of course doesn't include __proto__ when enlisting parameters (in /?__proto__=hi for example).
People using objects as maps are insane. They are so insane, that they don't even realise that. -
My current programming language.
I am an extreme perfectionist, so it's still in its design strage.8 -
Today's achievement: wrote game of life in K3.
neigh:{(+/,/-1 0 1!'\:/:-1 0 1!\:x)-x}
life:{(x*2=neigh x)|3=neigh x}15