dfalzone
|
5 years ago
|
on: Ask HN: Please stop writing tutorials/tech articles on Medium
What's a "dark pattern" company? I've never heard that term before.
dfalzone
|
5 years ago
|
on: Wikimedia is moving to Gitlab
Would it make sense to implement a peer-to-peer protocol for sharing git repositories, similar to torrenting, with the goal of overcoming these kinds of issues?
dfalzone
|
5 years ago
|
on: What Chinese looks, feels and sounds like when you're from Korea or Japan (2009)
Article mentions Altaic theory without mentioning that Altaic theory is utter horseshit. Still an interesting article though.
dfalzone
|
5 years ago
|
on: From its name to its drug interactions, there’s a lot going on with grapefruit
I wonder if this is at all related to the common pairing of citrus fruits with psychedelic drugs. A lot of people recommend eating an orange or drinking orange juice when you take LSD, and a lot of people recommend using lemons to enhance psilocybin mushroom trips. Maybe grapefruit would pair even better with these drugs.
dfalzone
|
5 years ago
|
on: The Jargon File
How come the Jargon File hasn't been updated since 2003?
dfalzone
|
5 years ago
|
on: In Unix, what do some obscurely named commands stand for? (2018)
That sure sounds like GNU. Instead of building tiny tools that each do one things, just make one big tool that can do a bunch of things depending on which of a hundred flags you use. Not to shit on GNU; I use GNU/Linux on all my own computers. But I notice that a lot of GNU software suffers from severe feature creep.
dfalzone
|
5 years ago
|
on: A Requiem for a Dying Operating System (1994)
Funny, today one of my coworkers was talking about how she used IDL at one of her previous jobs, and later I happened to see this comment. Neat coincidence :)
dfalzone
|
5 years ago
|
on: Do we really travel through time with the speed of light?
Source(s):
Saw this in a salvia trip once
Edit: Why the downvotes? This was clearly supposed to be a joke.
dfalzone
|
5 years ago
|
on: My AI Timelines Have Sped Up
Why?
dfalzone
|
5 years ago
|
on: Is Hacker News Bullshit?
Don't forget posts about psychedelic drugs.
dfalzone
|
5 years ago
|
on: Berners-Lee 'Sorry' for Slashes (2009)
Hashtag include open-angle-bracket ess tee dee eye oh dot aitch close-angle-bracket...
dfalzone
|
5 years ago
|
on: Nano 5.0
I'm a professional developer and I use Nano as my main text editor, entirely by choice. I've never missed the cool features that other editors like Vim and Emacs have, even though I've used both in the past.
dfalzone
|
5 years ago
|
on: LSD chemist William Pickard to be released from prison
Kilos? Jesus, what would that even look like? I can't imagine that that much LSD would exist in the world at the same time. Amazing
dfalzone
|
5 years ago
|
on: LSD chemist William Pickard to be released from prison
> about 15 years ago, back when psychedelic use was still a relatively underground phenomenon and the so-called Psychedelic Renaissance was just beginning,
15 years ago? Huh, I thought it had only started a couple years ago.
dfalzone
|
5 years ago
|
on: Ask HN: Great programming language features, other languages should steal?
This is pretty minor but I like how in Rust you can use constructs like if-statements and match-statements as expressions. For example:
let foo = if some_condition {
"condition is true"
} else {
"condition is false"
};
let bar = match x {
0 => "string",
1 => "another string",
_ => "default"
};
It's not super significant but I think it's an elegant syntactic feature.
dfalzone
|
5 years ago
|
on: macOS 11: copies of dynamic libraries are no longer present on the file system
How would we write our own libraries?
dfalzone
|
5 years ago
|
on: macOS 11: copies of dynamic libraries are no longer present on the file system
How will we write our own libraries, then?