Earlier quoted context omitted.
Reminds me of how after learning how CPUs, memory, operating systems etc work I thought "wow, it really is all ones and zeroes". A simple phrase but it became more meaningful with deeper understanding.
Sorry, but ”computers work by ones and zeroes” is one of my pet peeves. It is true in the sense that 1 and 0 are common representations for true and false in computer science, but really, it is false and almost certainly establishes magical thinking in the layperson. Modern computers run on electricity, and in electrical circuits such as computers, true/false is represented as a transistor semiconductor being in a co…
From novice to master, and back again (2013)
71–80 of 150 posts
Re: From novice to master, and back again (2013)
#72This reminds me of an old joke I heard a while back, which is that the opposite of "it's like riding a bike" is "it's like the UNIX command line". No matter how many times you do it, you will have to re-learn it every single time.
I use the `ln` command a lot. I use the `man ln` command _almost_ as much.
ln -s /foo/bar/baz
will create a soft link in the CWD named baz, pointing to /foo/bar/baz.So you see, if you know that you can always skip the destination, then, logically, the source must be the first one!
Re: From novice to master, and back again (2013)
#73Earlier quoted context omitted.
Reminds me of how after learning how CPUs, memory, operating systems etc work I thought "wow, it really is all ones and zeroes". A simple phrase but it became more meaningful with deeper understanding.
Sorry, but ”computers work by ones and zeroes” is one of my pet peeves. It is true in the sense that 1 and 0 are common representations for true and false in computer science, but really, it is false and almost certainly establishes magical thinking in the layperson. Modern computers run on electricity, and in electrical circuits such as computers, true/false is represented as a transistor semiconductor being in a co…
Long before standing for true or false, 1 and 0 have stood for the presence or absence of something arbitrary, so I don't see any issue here.
Re: From novice to master, and back again (2013)
#74Re: From novice to master, and back again (2013)
#75Earlier quoted context omitted.
Worse : You Google a question and realise you yourself asked it many moons ago and it never got answered.
Worst: you find your own answer that says: “Nvm, fixed the issue.”
Re: From novice to master, and back again (2013)
#76Re: From novice to master, and back again (2013)
#77Earlier quoted context omitted.
I use the `ln` command a lot. I use the `man ln` command _almost_ as much.
What finally got the `ln` argument order engraved in my mind was learning that you can skip the destination argument: ln -s /foo/bar/baz will create a soft link in the CWD named baz, pointing to /foo/bar/baz. So you see, if you know that you can always skip the destination, then, logically, the source must be the first one!
Re: From novice to master, and back again (2013)
#78Earlier quoted context omitted.
Where does existential dread fit in there?
There’s plenty of opportunity to ponder one’s own existence while chopping wood and carrying water. Or to listen to a podcast.
If you can’t be alone with your own thoughts then brother are you in a bad place. Everything in moderation.
Re: From novice to master, and back again (2013)
#79Earlier quoted context omitted.
Reminds me of how after learning how CPUs, memory, operating systems etc work I thought "wow, it really is all ones and zeroes". A simple phrase but it became more meaningful with deeper understanding.
Sorry, but ”computers work by ones and zeroes” is one of my pet peeves. It is true in the sense that 1 and 0 are common representations for true and false in computer science, but really, it is false and almost certainly establishes magical thinking in the layperson. Modern computers run on electricity, and in electrical circuits such as computers, true/false is represented as a transistor semiconductor being in a co…
There's lots of different answers here in different contexts. The reason 1s and 0s are good is because they represent the information in the digital domain, not the implementation in the analogue.
Re: From novice to master, and back again (2013)
#80Earlier quoted context omitted.
I use the `ln` command a lot. I use the `man ln` command _almost_ as much.
What finally got the `ln` argument order engraved in my mind was learning that you can skip the destination argument: ln -s /foo/bar/baz will create a soft link in the CWD named baz, pointing to /foo/bar/baz. So you see, if you know that you can always skip the destination, then, logically, the source must be the first one!