Engineer and coder that likes memes.
It’s so christians can eat bees during fasting. duh.
deleted by creator
While he advocates for it, that’s also a point that Martin brings up multiple times when he talks about his project “fitnesse”.
Basically saying that they left it open how stuff can be saved, but the need has never arisen to actually pivot to a different system.
I mean yeah, funny greentext, fake and gay and all, but is that an actual thing that happens across the big pond?
If someone did that in Europe they’d be in serious legal trouble if the threatened party sues.
Now your weapons break in just one swing! 😂
I did check the bios settings but couldn’t really find anything that would directly affect a pcie card.
Most power management stuff that could cause issues is turned off. Fast boot itself was also off.
Thanks! It’s really funny. Especially since KDE updated to version 6 and caused a lot of issues for other users - so it had to be the a software issue of course!
I’m still not entirely convinced, that it wasn’t a software issue that caused the device to misbehave.
It’s my cat, I am the user 😄
Like many others already said. Being self taught is ok, but employers need at least some kind of confirmation about your skills. So getting some kind of officisl certificate will make your job search a lot easier.
Microsoft offers a bunch of .NET certificates if you do their C# courses for example. You can also become a certified Linux professional.
Find something that interests you and then start learning by doing some tutorials. The most important thing is that you have fun and won’t burn yourself out working in a field you don’t enjoy.
Where I’m from there’s demand for Web Devs, Java devs, .NET devs, It Support, Network Engineers, Embedded systems, whatever.
It doesn’t compile or transpile in actuality. It generates Java based on an abstract syntax tree. The concrete syntax is not considered in Java generation by MPS.
Because it was easier to use Java primitives than implement the constants myself.
MPS uses projectional editing. Which means for the user that everything you do is free from concrete syntax, and you basically edit a graphical representation of that abstract syntax tree directly, while it looks like you’re in a textual editor.
So I define abstract nodes that may have certain relationships with each other and then give them a representation in the editor (which is what you see in the screenshot). These nodes may also have generators assigned to them, which use map/reduce operations to generate whatever source code I desire. It usually includes its own bit of code, and triggers code generation of its children as well.
I hope that was somehow clear 😄
Great idea if I have to extend it
I like the way you think! 😂
Yes, it pretty much just wraps the expression in a “System.out.println(<expression>);”
Fortunately I generate Java source code from it. However MPS generates both source and byte code when you build the solution. For some reason I can’t get the byte code to run though, but the source code does, so I don’t care too much.
Very cool, I’d be interested in your publications once you’re done. I like metaprogramming, but once you realise you might have needed it, you’re already knee deep in fresh legacy code.
Agreed. It’s really shit for new code, but if I’m writing glue code stuff or repetitive code it saves a lot of time spent on typing.