Same! Senior dev here with both dyscalculia and dysgraphia. Numbers literally transpose for me, for example when I’m filling out a restaurant receipt and calculating tip+total. It’s wild.
Same! Senior dev here with both dyscalculia and dysgraphia. Numbers literally transpose for me, for example when I’m filling out a restaurant receipt and calculating tip+total. It’s wild.
Fun fact, Caesar salad is named after the guy who invented it, an Italian living in Mexico at the time.
I could go in-depth, but really, the best way I can describe my docker usage is as a simple and agnostic service manager. Let me explain.
Docker is a container system. A container is essentially an operating system installation in a box. It’s not really a full installation, but it’s close enough that understanding it like that is fine.
So what the service devs do is build a container (operating system image) with their service and all the required dependencies - and essentially nothing else (in order to keep the image as small as possible). A user can then use Docker to run this image on their system and have a running service in just a few terminal commands. It works the same across all distributions. So I can install whatever distro I need on the server for whatever purpose and not have to worry that it won’t run my Docker services. This also means I can test services locally on my desktop without messing with my server environment. If it works on my local Docker, it will work on my server Docker.
There are a lot of other uses for it, like isolated development environments and testing applications using other Linux distro libraries, to name a couple, but again, I personally mostly just use it as a simple service manager.
tldr + eli5 - App devs said “works on my machine”, so Docker lets them ship their machine.
That work has already started with Fediseer. It’s not automatic, but it’s really easy, which is probably the best we’ll get for a while.
The reason this works well for certain applications and not others comes down to programming language / framework and compilation optimization.
If the application was compiled directly into an executable binary and optimized, it can be decompiled, but it won’t be human-readable. Programmers would have to delve in and manually trace the code paths to figure out how it works. Fun fact, this is how a lot of the retro game decompilation projects are happening. Teams of volunteers are going through the unreadable decompilations and working together to figure them out.
Dotnet and Java based applications are easier, because they don’t usually get directly compiled into machine-executable binaries, and even when they do, it’s still easy to decompile them. This is because they’re both compiled to an intermediate language that’s more optimized than the original, then that IL is run by a runtime. Dotnet’s IL is called Common Intermediate Language and Java’s is called bytecode. This sounds weird, but it’s kinda cool, because it lets people write different languages without having to have a full compiler. They just have to be able to get it compiled to an intermediate language, and then the existing runtime can take it from there.
Layoffs for three of their most successful studios? That’s surprising.
I like Ruby most of the time, but honestly, I’m not surprised at “sometimes” behavior from the language created by someone who, when asked for the formal definition of something in the language, said he’s “not really a formal kind of guy.”
Haha, yeah, I’m familiar with the work culture in Japan. I’ve heard from other developers currently working there that it’s much better working for newer and/or international companies.
I’m taking my conversation-level Japanese courses this year and have been looking to land a dev job in Japan. From the sound of it, I’d like working for Pocket Pair a lot. But then again, most companies make their employment sound fantastic…
My ISP says my IP is technically dynamic, but it hasn’t changed once in the 6 years I’ve had their service. But that’s for the best, since they’re the only choice for symmetrical gigabit and their only option for static IPs is for business accounts.
So I continue to trust that they won’t change it. Fingers crossed.
I find that I need to restart VSCode occasionally for reasons similar to this. I write C# daily, and sporadically VSCode will just completely lose track of all namespaces and everything is now a syntax error.
She’s Jewish and (unfortunately) famous, so she feels like she needs to have a say.
I was just having this conversation the other day. The person was absolutely confounded how in the world this law would be enforced. I essentially said that it doesn’t matter. Cops will stop you for whatever, arrest you for whatever, send you to jail for whatever, doesn’t matter. If they’re wrong, oh well, that’s the court’s job.
Definitely ancient since C# has been cross-platform for 4 years with Dotnet Core. If you include Mono, make that 19 years.
Moral and ethical implications aside, I really want Discord to die specifically for this reason. Discord servers are increasingly becoming home to things that belong on forums and/or wikis, and it’s ridiculously frustrating. Literally 90% of the servers I’m in are designed for support for some piece of software or hardware. Just make a forum, I beg.
I’ve seen the same speculation. The video in question is here. I’m skeptical because it looks like the area has power, but then some people are saying the area with power is actually Ashkelon and Gaza is the dark section. But then this video also apparently made the rounds in 2022? There’s a lot of disinformation going on.
Reuters and the AP are officially reporting it as an Israeli airstrike, though, so until we hear anything else, I’m believing them.
Holy hell Java on a Smartwatch?
WearOS is based on Android, which uses Android Runtime (ART) as the application runtime. ART uses Java (or any other JVM-compatible language, such as Kotlin) as the development language, but compiles the app to native code when it’s installed on a client device.
So… Kind of?
Essentially confirms the game is Mario, but on drugs. Stoked to play it.
Yes, I’ve got community icons and avatars working. Which are actually the only things I see in my pictrs volume.
Thus, Docker was born.
“Works on my machine, ship the machine.”