The ghost doesn’t get a gravestone
The ghost doesn’t get a gravestone
Did some digging and I think it’s these projects:
The prison system also doesn’t actually make a net-profit even in the US, it only makes money for specific people (the owners of the private prisons and the systems benefitting off of prisoners’ free labor). The government actually loses billions of dollars per year maintaining prisons 🙃
Is it bad that I already knew what this would print the moment I read the meme?
… and are keeping the hate to the appropriate boards (X, I believe it’s called nowadays). Should we contract his work and apply it where applicable?
There is no “appropriate board” for hate speech, whether it’s antisemitism, transphobia, or anything else. If you wouldn’t want someone to be a nazi in your office, why would you pay them if you know they’re a nazi somewhere else? Is it fine as long as it’s someone else’s problem?
On another level, if you had to pay a developer, and you have reason to think they might donate the money you give them to an antisemitic cause, or directly use it to fund their own antisemitism, would you still want to give them that money? Or maybe look elsewhere, even if it means getting something slightly worse?
Somehow this post has negative down votes and I’m all for it.
Isn’t servo mostly a Mozilla-led project? I thought servo would probably just replace gecko as the engine firefox used if it ends up succeeding
Reaching a middle ground on an Internet discussion? No, it can’t be. There must be something wrong here. I need to keep arguing about minor things like daily routines. Why else would I be here?
/s if it wasn’t obvious. This thread makes me happy, have a good day :)
Obviously, it’s a silly semantic debate, and someone could equally judge me for wanting my coffee beans roasted and ground “why not eat the berries fresh if you say you love coffee‽”.
My point is that it would be silly to judge someone for this, just like it’s silly to judge someone for putting creamer in coffee.
Edit: also, what about drinks like mochas, cappuccinos, macchiatos, etc. which also have other ingredients mixed in? Generally it’s still fine to call those forms of coffee, no?
Random side note: I’ve had chocolate-dipped espresso beans before and they’re actually a pretty good snack. You just can’t eat too many of them because of the caffeine content.
I think the idea is that you can eventually get an approximation of whatever wave-like curve you want by merging several pure sin/cos functions with varying amplitudes, wavelengths, and offsets
Fun fact: this is mostly how JPEG works - it uses fourier transforms to approximate an image in a way that takes up much less storage than storing information about each pixel.
Yeah that’s still gatekeeping though. Coffee is coffee regardless of what you put in it. Even if it’s gross according to my own individual taste, it’s still coffee. Saying anything else is just “better-than-you” gatekeeping.
Edit: it’s also nothing like your example at all, because coffee with creamer is still literally made with real coffee, while an apple jacks pop tart is almost definitely not made with real apples.
Imagine gatekeeping caffeine
If you have a weak sense of smell then you can’t taste them at all. I can taste most things fine though (la croix excluded) without them tasting bland. Smell definitely adds to flavoring but it’s not like it’s the only thing responsible for how you taste food/drinks.
They aren’t actually flavored at all, they’re just scented. If you plug your nose you can’t taste them
I’d say it is (was? It’s been ~a year and a half since I used it consistently but I’m guessing it hasn’t changed too much since then) moderately left by US standards but definitely not progressive left - you don’t have to go very far to find thinly-veiled sexism/racism/homophobia, though that might just be because a large portion of the people there are terminally online in a bad way. That being said, there are definitely also communities ranging from conservative to hardcore conservative as well but I actively tried to avoid those so I didn’t really see them in my feeds. The same is true with progressive communities but they tended to drift away from being actually progressive once they got to a certain size.
The date on this is 2017 so that would be pretty impressive if these were bots
Hey how did you get into my cities skylines world?
That’s entirely fair for the usecase of a small script or plugin, or even a small website. I’d quickly get annoyed with Python if I had to use it for a larger project though.
TypeScript breaks down when you need it for a codebase that’s longer than a few thousand lines of code. I use pure JavaScript in my personal website and it’s not that bad. At work where the frontend I work on has 20,000 lines of TypeScript not including the HTML files, it’s a massive headache.
This is the case for literally all interpreted languages, and is an inherent part of them being interpreted.
It’s actually the opposite. The idea of “types” is almost entirely made up by compilers and runtime environments (including interpreters). The only thing assembly instructions actually care about is how many bits a binary value has and whether or not it should be stored as a floating point, integer, or pointer (I’m oversimplifying here but the point still stands). Assembly instructions only care about the data in the registers (or an address in memory) that they operate on.
There is no part of an interpreted language that requires it to not have any type-checking. In fact, many languages use runtime environments for better runtime type diagnostics (e.g. Java and C#) that couldn’t be enforced at runtime in a purely compiled language like C or C++. Purely compiled binaries are pretty much the only environments where automatic runtime type checking can’t be added without basically recreating a runtime environment in the binary (like what languages like go do). The only interpreter that can’t have type-checking is your physical CPU.
If you meant that it is inherent to the language in that it was intended, you could make the case that for smaller-scale languages like bash, Lua, and some cases Python, that the dynamic typing makes it better. Working with large, complex frontends is not one of those cases. Even if this was an intentional feature of JavaScript, the existence of TypeScript at all proves it was a bad one.
However, while I recognize that can happen, I’ve literally never come across it in my time working on Typescript. I’m not sure what third party libraries you’re relying on but the most popular OAuth libraries, ORMs, frontend component libraries, state management libraries, graphing libraries, etc. are all written in pure Typescript these days.
This next example doesn’t directly return any
, but is more ubiquitous than the admittedly niche libraries the code I work on depends on: Many HTTP request services in TypeScript will fill fields in as undefined if they’re missing, even if the typing shouldn’t allow for that because that type requirement doesn’t actually exist at runtime. Languages like Kotlin, C#, and Rust would all error because the deserialization failed when something that shouldn’t be considered nullable had an empty value. Java might also have options for this depending on the serialization library used.
Reminder: Most devs actually care about the things they make. This is a management/timeline problem, not a developer one.