That totally threw me off. “Literally unplayable,” as they say.
- 0 Posts
- 18 Comments
nebeker@programming.devto Programmer Humor@programming.dev•I want a programming language that supports German style composite wordsEnglish1·5 months agoThat makes sense. I’m also involved in localization efforts. In niche cases, it’s paid off to work with the clients directly on that. You get you a good balance between correctness and day-to-day usefulness.
nebeker@programming.devto Programmer Humor@programming.dev•I want a programming language that supports German style composite wordsEnglish2·5 months agoSince ladder is mostly diagram-based it almost doesn’t need to be localized and isn’t jarring when you use non-English variable and function names with English keywords.
Apart from being strictly left-to-right.
nebeker@programming.devto Programmer Humor@programming.dev•I want a programming language that supports German style composite wordsEnglish1·5 months agoIf he worked in Germany, did he use English or German mnemonics?
nebeker@programming.devto Programmer Humor@programming.dev•I want a programming language that supports German style composite wordsEnglish1·5 months agoIf he worked in Germany, did he use English or German mnemonics?
nebeker@programming.devto Programmer Humor@programming.dev•I want a programming language that supports German style composite wordsEnglish7·5 months agoIndustrial controls equipment made by German companies can be programmed in English or German. You can also switch languages (German/English) at any time and the IDE switches over all the keywords.
nebeker@programming.devto Programmer Humor@programming.dev•Nanowar Of Steel - HelloWorld.javaEnglish1·6 months agoSemicolon!
nebeker@programming.devto Programmer Humor@programming.dev•Now we are doing advanced debuggingEnglish7·6 months agoShared with my favorite blind iOS dev. Should be a good laugh!
nebeker@programming.devto Programmer Humor@programming.dev•Interview with 90s Computer Nerd [Upscaled 4K]English4·7 months agoI also can’t get the printer to work.
Sounds like you may be interested in a certain manifesto.
Don’t mind me, I’m just picking the very best grains of sand to make my own silicon, like a real programmer (xkcd).
nebeker@programming.devto Programming@programming.dev•How proficient do you rate yourself in your most coded language?English2·9 months agoThere’s a lot to talk about from this point alone, but I’ll be brief: having gone through university courses on processor design and cutting my teeth on fighting people for a single bit in memory, I’m probably a lot more comfortable with that minutia than most; having written my first few lines of C in 10 years to demo a basic memory safety bug just an hour ago, you’re way way ahead of me.
There are different ways to learn and gain experience and each path will train us in different skills. Then we build teams around that diversity.
nebeker@programming.devto Programming@programming.dev•Why Copilot is Making Programmers Worse at ProgrammingEnglish42·10 months agoWe’ve all read this post multiple times. Isn’t it just the “young people are lazy” that’s been going around for thousands of years?
https://historyhustle.com/2500-years-of-people-complaining-about-the-younger-generation/
At most it’s a tangent on it…
nebeker@programming.devto Programming@programming.dev•wtf I hate using AI for programming, but today it was useful for RustEnglish32·11 months agoI’m shocked and appalled! Isn’t the whole point of using Rust to prove you’re a better developer by using an extra hard language? At least that’s what I like about it.
I’m kidding, of course. Whoever has never copied and pasted code they didn’t understand from Stack Overflow can go ahead and complain about using a local LLVM.
Ultimately, what makes a good developer includes understanding and being really good with the tools they use, but the biggest impact comes from identifying problems and asking the right questions to solve them.
nebeker@programming.devto Programming@programming.dev•wtf I hate using AI for programming, but today it was useful for RustEnglish2·11 months agoIf you’re interested in learning more about SQL, throwing EXPLAIN at your query and the AI’s version may be really interesting.
I’m usually perfectly happy trusting my ORM, but even then it’s really helpful to dig a little deeper to figure things out, both in development and in production.
nebeker@programming.devto Programming@programming.dev•[SQL/MariaDB] How will the YEAR data type transform in the future?English1·1 year agoI’m inferring based on the deprecation of YEAR(4) and the conversion time window that obviously needs to be updated at some point.
nebeker@programming.devto Programming@programming.dev•[SQL/MariaDB] How will the YEAR data type transform in the future?English3·1 year agoTo answer the part of your question I think is most fun, there is a standard for SQL. There are many dialects of SQL, but you’ll often hear of “ANSI SQL.” The latest version is SQL:2023.
Looking at the MySQL manual entry for the YEAR type, I think we can conclude two things:
-
The developers consider the possibility of deprecating and removing support for time data type features;
-
They use “reasonable defaults” for conversions of 2 digit years, based on the current year.
The good news is it sounds like this issue is being taken into account. I’m sure the conversion window will be adjusted in future version and the data type may be changed or deprecated altogether. I wouldn’t be surprised if they added a YEAR2 though. T-SQL has a datetime2, after all.
-
Common criticisms here would be that these endeavors stifle creativity and show the adoption of modern solutions. That said, I find conducting “code archeology” to figure out the idiomatic way of doing something in an old project very rewarding. Because computer programs exist in people’s mind’s, doing that with the support of original developers or subject matter experts is some of the most effective knowledge transfer I’ve ever witnessed.