I’d say a bit earlier than that personally (wife and I agree that 28 is around that sweet spot). Old enough to have independence and chill out, but young enough that you don’t randomly end up with a headache all damn day because you slept slightly wrong.
- 0 Posts
- 22 Comments
The optimal age is 28. It’s late enough that you may at least be hitting a stride professionally (though don’t stress too much if you’re not), you’ve chilled out a bit from your earlier 20’s, and your body (generally) hasn’t begun to betray you yet.
Loooved Dungeon Keeper back in the day.
To preface: this is from a previous bout of hyper focus curiosity (i.e. I am not an expert). But the human genome is significantly more complex than “XX chromosome means biological female”. Other genomic markers can trigger that don’t align with the typical, which can result in male reproductive organs on a person with XX chromosome and vice versa. XX and XY are also not the only options. There are three, four, and even five somal groupings (e.g. XXY, XYY, XXX - note that to my understanding, you can’t have all Y chromosomes even in these outliers). If anyone has further information or any corrections for me, I’d welcome them - I’m going off of memory from a couple of years ago and it’s not directly relevant to me (i.e. I am cis-male with no known chromosomal abnormalities)
JustAnotherRando@lemmy.worldto Lemmy Shitpost@lemmy.world•Mr. Grey, can I go to the bathroom?121·5 个月前It really depends on the anime/show. My best example of this is Hellsing. The Japanese VA talent is fine, but the English, particularly for Alucard is so much better - he has a menacing quality that is perfect for the character. Plus, it’s set in England, so hearing English accents is more immersive.
Morning people are an oppressive class.
It absolutely should not have been named zeroth() because the reasoning for that is purely pedantic and ignores WHY arrays are 0 indexed. It’s not like the people in the early days of writing programming languages were saying “the zeroth item in the array” - they would refer to it using human language because they are humans, not machines. Arrays are 0 indexed because it’s more efficient for address location. To get the location in memory of an array item, it’s startingAddress + (objectSize * index). If they were 1 indexed, the machine would have to reverse the offset.
Function/Method names, on the other hand, should be written so as to make the most sense to the humans reading and writing the code, because the humans are the only ones that care what the name is. When you have an array or list, it’s intuitive to think “I want the first thing in the array” or “I want the last thing in the array),” so it makes sense to use first and last. That also makes them intuitive counterparts (what would be the intuitive counterpart to “zeroth”?).
JustAnotherRando@lemmy.worldto World News@lemmy.world•Andrew Tate ‘raped and strangled us’ - women tell BBCEnglish7·10 个月前Hank and John Green are pretty good role models, I’d say.
JustAnotherRando@lemmy.worldto Games@sh.itjust.works•Dev of slept-on tactical RPG says it "sold badly" despite glowing reviews: "My next project will be more focused on 'Does this sell'"English9·11 个月前I’m kinda torn because of this. I like for good games to get recognition and be successful. Part of me wants to buy the game and give it a shot because it’s been well received and I’m happy to support an indie dev… But I really do not want to help establish a trend of indies sleeping on advertising/spreading word, then crying “woe is me” after a single week when barely anybody was aware of it, as a way of guerilla marketing their game. I also need to watch a bit more gameplay to see if it’s even in my wheelhouse before I decide to spend $20 on it.
JustAnotherRando@lemmy.worldto World News@lemmy.world•Tenacious D’s Newcastle show postponed after comment about Trump assassination attemptEnglish7·1 年前That definitely feels like Jables had a “come on man, you can’t say that shit in public” moment with KG. I wouldn’t be surprised if they lay low for a while on the band and focus on other stuff until this blows over.
JustAnotherRando@lemmy.worldto Lemmy Shitpost@lemmy.world•I'm just gonna stick to slotted, thanks25·1 年前How do you feel about square drive? I’m no carpenter, just someone that’s done enough work around the house, but I’ve found that Torx are the best option but square is a close second (but I don’t think I’ve used them in any especially high torque situations, and they may fall short there).
JustAnotherRando@lemmy.worldto Asklemmy@lemmy.ml•What's the best "fuck you world" song of all time?0·1 年前Peaches - I Don’t Give a Fuck
JustAnotherRando@lemmy.worldto pics@lemmy.world•Eminem serving food to customers at his Mom's Spaghetti restaurant, 2021 in Detroit, Michigan0·1 年前The city runs a land bank you can buy decapitated houses from for $1k.
Damn, are there a lot of houses that had their heads cut off?
That’s a penisea star
JustAnotherRando@lemmy.worldto Games@sh.itjust.works•Cleared Hot - Official Game TrailerEnglish5·1 年前Man I Loved the Strike games when I was young, definitely going to be looking out for this one.
So I don’t think it’s the only solution, or that anyone that doesn’t care for C# is wrong or anything like that, but it is a suitable language for large segments of development and is both a good career and, in my opinion, rather pleasant to work with. Looking at the languages listed in that list you shared, I see a lot of C, C++, and Java, which I have no interest in working in again unless i have a good reason for it. The other languages there are fine but I never had a big interest in Go (Google’s language) - it seems fine, but in my area I don’t think there’s much of a community around it.
The .NET community is pretty active where I live which is a plus, there are lots of jobs in the language and lots of professionals that are proficient in it. I’m going to try to avoid sharing too specific of information, but I’ve used C# in industries from healthcare, to automotive, to HR, to fitness. There are absolutely no shortage of companies using the technology - according to Statista, it’s the 8th most popular language, and they are including SQL and bash in that listing. I’m not sure I believe that data, but it was the first result I clicked in a very quick Google search.
I agree that popular != good, but if we are going to use “what companies are doing,” there are clearly plenty of people that have found it to be the right choice for their projects.
I will say that if your last exposure to .NET was like 5-10 years ago, it’s worth taking a look at what it offers now - not necessarily to use it yourself but to at least understand that it does bring a lot to the table. I tend to see a lot of people that make references to C# as it related to .NET Framework (e.g. “you have to use Windows”) that haven’t been the case since .NET Core came out in 2016. I will absolutely agree that it’s not always the right choice and there are aspects to the .NET world (Microsoft has the most obnoxious versioning - .NET Framework up to 4.x -> .NET Core up to 3.1 -> .NET 5 up to 8). And I fully get not wanting to work on it because it’s Microsoft because everyone has their brands that want as little to do with as possible, but it is a good object oriented language.
It very much depends on what you’re trying to do. C# is pretty great for developing APIs, especially in an enterprise environment involving a lot of business logic. I don’t have much of an opinion on Django as I haven’t spent enough time looking into it, but I have looked at enough Node.js code to know I don’t prefer it for most of the projects I’ve been involved in.
My Python experience is largely based in working with things like Raspberry Pis, and relatively simple jobs where Python made the job pretty easy. I don’t know enough experience with larger Python projects to have a feel for what good architecture in a complex application looks like.
With C#, I can go into a large application using good practices and quickly navigate the code and be productive.
I work in C# and I find it highly preferable over working in Java or C++.
I’m still salty about Westwood.