I would rather
understand the basics really well than memorize all kinds of
complicated concepts I can’t stitch together and can’t rederive
from the basics. If you can’t rederive concepts from the basics
as you need them, you’re lost. You’re just memorizing.
((NAVAL RAVIKANT))
Give someone state and they'll have a bug one day,
but teach them how to represent state in two separate
locations that have to be kept in sync and
they'll have bugs for a lifetime
Question is a dangerous word.
It poses the threat to silent tyranny.
...never question the narrative...
qsort [] = []
qsort (x:xs) =
qsort smaller ++ [x] ++ qsort bigger
where
smaller = [y | y <- xs, y < x]
bigger = [y | y <- xs, y >= x]
qsort [] = []
qsort (x:xs) = qsort [y | y <- xs, y < x] ++ [x] ++ qsort [y | y <- xs, y >= x]
let rnd = Math.random().toString(2).slice(2)
return [...Array(10)].map((_,i)=>+rnd[i])
let rnd = Math.random()*10**10
return [...Array(10)].map((x,i)=>(rnd>>i)&1)
function quads(a,b,c){
let z = Math.sqrt((b*b)/(4*a))
let w = Math.sqrt(c+z*z)
let y = Math.sqrt(a)
let x0 = (w-z)/y
let x1 = (w+z)/-y
return [x0,x1]
}
'Growing up' is currently accepting a process,
of the fearful teaching others how to be afraid.[Neurohacking series]
Are you quite sure
that all those bells and whistles,
all those wonderful facilities of your so-called
“powerful” programming languages,
belong to the solution set
rather than to the problem set?
EDSGER W. DIJKSTRA
Companies prefer employees who will prioritize social approval
from the team over personal ambitions or needs,
and call such a person a team player.
LINK
The number of people that are pretending to understand how to do this whole software thing correctly vastly outstrips the number of people who can do it correctly. And since most of the market is playing at it, it turns out that a lot of jobs do not exist for people that honestly present their achievements, because people are looking for indicators that you will either bullshit alongside them or are that you aren't going to say the emperor has no clothes.
LINK