Hacker News
The Missing Semester of Your CS Education (2020)
vincent-manis
|next
[-]
commandersaki
|root
|parent
|next
[-]
This would be more appropriate to fit in a curriculum of a vocational IT course or bootcamp.
Meekro
|root
|parent
|previous
[-]
aleph_minus_one
|root
|parent
|next
[-]
When you attend a university, but you at least want to have the option to get a programming job if you realize that academic research is not for you (which is in my opinion a very good idea considering the job prospect uncertainty in academia), you will of course additionally invest an insane amount of your free time (outside of your academic studies) to learn the necessary skills for this. If you don't do this, don't complain.
port11
|root
|parent
[-]
I've had to interview people for whom academia didn't work, and they were simply ignorant in terms of real-world skills. Writing a Bash script shouldn't be an hobby pursuit, I'm sure a Master's in CS can spare 6 credits (one course, one semester) to teach Git, scripting, encoding, linting, etc.
Academia-grade code can be much better if you look past the purity of their pursuits.
olooney
|next
|previous
[-]
* Text file encodings, in particular Unicode, UTF-8, Mojibake
* Time: Time Zones, leap day / seconds, ISO-8601
* Locales, i18n, and local date/number formats
* IEEE 754 floats: NaN and inf, underflow, overflow, why 0.1 + 0.2 != 0.3, ±0, log1p
* Currencies, comma/dot formats, fixed-point decimal representations, and exchange rates
* Version strings, dependencies, semantic versioning, backwards compatibility
There's another list for web/REST developers, and one for data scientists, but this is the core set.
What'd I miss?
aleph_minus_one
|root
|parent
|next
[-]
Having colleagues for who this topic is "daily business", I really don't know what you intend to teach about this topic to computer science students:
It's either
- basically trivial: you use the provided exchange rate tables which can vary from day to day; you thus just have to thoroughly pay attention concerning the exchange rates of which day you have to use for a given calculation (but this is something the business people will tell you), the rest is like unit conversion, which you learn in school: If the "exchange rate" between yards and inches is 36 in/yd, then 2.5 yd = 2.5 yd * 36 in/yd = 90 in. Similarly, if the f/x rate that is to be used is 1.1612 USD/EUR, then 2.50 EUR = 2.5 EUR * 1.1612 USD/EUR = 2.903 USD (you now just need to ask the business people whether they want to use this raw result, or the result is to be rounded. In the latter case, they will tell you which kind of rounding they want).
- or it is something that you rather need to become an auditor (or a similar qualification) for.
olooney
|root
|parent
[-]
badc0ffee
|root
|parent
|next
|previous
[-]
High school AP computer science had this in the 90s.
shrikant
|root
|parent
|next
|previous
[-]
NetMageSCW
|root
|parent
[-]
akoboldfrying
|root
|parent
|previous
[-]
* Similar to encodings and locales: Variation in line endings, path separators, command line quoting, case sensitivity
* OS and language-specific package management
* CI/CD
* VMs, containers
* Licenses
tomhow
|next
|previous
[-]
The Missing Semester of Your CS Education (2020) - https://news.ycombinator.com/item?id=41125733 - Aug 2024 (16 comments)
The Missing Semester of Your CS Education (2020) - https://news.ycombinator.com/item?id=34934216 - Feb 2023 (336 comments)
The Missing Semester of Your CS Education (2020) - https://news.ycombinator.com/item?id=27154577 - May 2021 (185 comments)
The Missing Semester of Your CS Education - https://news.ycombinator.com/item?id=22226380 - Feb 2020 (196 comments)
tjpnz
|next
|previous
[-]
aleph_minus_one
|root
|parent
[-]
It's a strange game. The only winning move is not to play.
pjmlp
|next
|previous
[-]
kristianp
|next
|previous
[-]
baconbrand
|next
|previous
[-]
noosphr
|root
|parent
|next
[-]
This quote is very relevant for my career progression:
>Within a month of his arrival, Randy solved some trivial computer problems for one of the other grad students. A week later, the chairman of the astronomy department called him over and said, “So, you’re the UNIX guru.”
>At the time, Randy was still stupid enough to be flattered by this attention, when he should have recognized them as bone-chilling words. Three years later, he left the Astronomy Department without a degree, and with nothing to show for his labors except six hundred dollars in his bank account and a staggeringly comprehensive knowledge of UNIX.
lisbbb
|root
|parent
|next
[-]
BubbleRings
|root
|parent
|previous
[-]
Neal Stephenson’s Cryptonomicon
A wonderful historical fiction novel with two main timelines, WW2 and the 1990’s, that includes the invention of the first computers, cool as heck battle scenes, adventure love sex music math statistics horror Churchill Turing Goering and wow the wrecked German submarine U553 crashing up and down on an exposed coral reef in the North Atlantic waves.
How do you benefit from reading someone’s mail without letting them know you are reading their mail?
thenthenthen
|next
|previous
[-]
Traubenfuchs
|next
|previous
[-]
d3m0t3p
|root
|parent
[-]
baconbrand
|root
|parent
[-]
It was very helpful. I would have appreciated “how to create a maintainable codebase” as well though. “Singleton” was not a part of my vocabulary until 3 years into my career :/
aleph_minus_one
|root
|parent
|next
[-]
If you are a more old-school style programmer, you simply use the older term "global variable". :-)