

Hehe. The manager troll was perfect.
Hehe. The manager troll was perfect.
I mean, that’s how it used to be when I was growing up.
The fact that “how it used to be” in your childhood produced a scumbag like you is a compelling argument to not let people’s childhoods be like that anymore.
A) And yet, not long after, Andor was massively successful.
B) Then stop making games exclusively based off of third party IPs.
Add a submission fee that gets refunded as part of the bounty payout, or if the reviewer otherwise judges the submission as obviously legitimate.
Donate all fee proceeds to charity, if you want to counter the any incentive to deny submissions for financial gain.
Have never seen a link to a “Trending” page or a “Trending Now” list in any of those spots.
I’m not really sure that being open source here means much of anything, but an SO alternative definitely sounds good. Thanks for the tip.
Sounds loke she found the line for being a fall guy that she wasn’t willing to cross.
Not that anyone really believed Elon isn’t calling all the shots here.
Dude, you obviously have never set FOOT on a farm or tractor, in your LIFE. Stop spreading misinformation.
These are raw marshmallows. Yeah, it’s unbelievable how big they are, but that’s just cause they’re fresh and haven’t dried out yet.
Lots of folks mentioning VSCode as the alternate to VS, but it is very much not that. VS is an IDE, VSCode is a text editor that just has a big plugin community. Do not expect a low learning curve. The VS alternative that’s an actual IDE, and does have a low learning curve, is JetBrains Rider. Unfortunately it is neither F nor OSS.
No question, this is what the moneymen want. They see programmers (all human employees, really) as a liability.
Then the second part of my statement applies.
Not to short-circuit the joke, but in this case, it’s because the valid JavaScript version is…
let a
…and one of TypeScript’s main design goals is to be a superset of JavaScript, that only adds syntax, and doesn’t re-write it.
Beyond that, it’s probably a case of some new language just using what the designer is familiar with.
That’s a perfectly valid approach, yes. We do exactly this, at work. It’s pretty common, if not ubiquitous, to have your database schema consist of not only structure, but data as well. We call it static data, and it’s all defined in deployable scripts, just like our tables and views are. If ISO makes changes to the dataset, then it’s just a table update to match it. And ISO is nice about keeping backwards compatibility inb their standards.
Since this is not strictly your own data, you could also go with just storing the code value on your tables, and letting the UI layer do the lookup, either with built-in features of your language/framework, or with a static csv file, like you mention. You may not want to do this for static data that is entirely your own, like, say, a status or type enum, since it makes your database schema less-self-descriptive, and more prone to becoming invalid.
You could also set the country code up as a not-strictly-enforced foreign key, where your app will lookup additional info (E.G. the proper name) for a country code, if it’s a standard one, but just skip that if it’s not a standard one.
It’s up to you what you think is most appropriate.
A derivative of English, with different syntax and rules to help eliminate ambiguities? We in the industry tend to call that “code”.