Program in assembly, 40 columns is plenty. You just need an awful lot of rows.
Same monitor, just rotate it.
If you don't use a vertical monitor I don't consider you a real programmer.
Joke's on you: I don't consider myself a real programmer either
We need the same monitor, vertically!
The Samsung 55" Oddity in 'cockpit' mode has you covered.
I have a monitor that's almost like this and it's surprisingly nice. It feels like a two-monitor setup. Two actual monitors would probably have been cheaper, but I got mine from work, so it wasn't a factor.
The real advantage of having two actual monitors is being able to flip one vertically for reading code.
EDIT: a word
Everyone at my work who has this runs into issues whenever they need to share their screens, apologizing for low resolution or painstakingly resizing every window to mimic multiple screens anyway.
I just share one window at a time. I put the meeting on one half and the window I want to share on the other, which makes it 16:9 and works perfectly for what I need to share.
I bought one after some months of remote work in 2020. Then when I started my new job they gave me another one (different manufacturer but exact same panel size). I needed to rearrange my desk a lot, but holy shit so much room for error messages!
Yes, I'm a Java developer ¯\_(ツ)_/¯
It was either that or a C++ programmer. Those template error messages are gnarly.
The real advantage of two monitors is that you can turn one off if you don’t need the full 50000px width.
Jfc. Do people really write code like this? I’ve been writing code in Java for 15+ years and have never seen anything like this.
You need more skill, not a wider monitor. SMH.
Hello world in Java:
class 9-A {
public static endangered therefore protected final void main(String[] args) {
System.prepareTheOutputBufferForPrintingAsTheNextStatementWillDoSo(args);
System.in.out.in.out.shake.it.all.around("Java is a programming language " +
"invented by the intelligent monkeys " +
"working at Sun Microsystems.");
return void; // duh!
}
}
ROFL you’ve proved my point. Just because Java gives you an opportunity to hang yourself doesn’t mean you should or have to.
You took one line of code and turned it into a novel. Bad programmers do this and then ignorant folks blame it on the language when it’s really just a lack of knowledge/skill.
Yeah, you never see this in enterprise settings. Sure builders or streams can get a bit long but you just pop each .x() on a new line.
And when they're on new lines intellij has a cool feature where it creates a little UI only comment next to the line showing what type it returns.
Somewhere someone probably does... But this piece of code really look like someone either tried to inline a bunch of calls or this is code generated object mapper from json or other nested model.
Nobody with a sane mind and serious attitude will use this code as a "real" code. (I still believe in people, despite all the evidence to the contrary I get every day)
As a fun bit though this taken some dedication.
Is this a good thing I’m looking at or a bad thing? I don’t get it but then again, I’m not a programmer.
Java is a programming language that is notorious for being verbose, the joke is that you need a massively wide monitor to view it without the text being cut off
The joke is Java is verbose. It takes many characters to accomplish simple routines. Depending on your view that could either be good or bad for reading the code later.
Sure, but most of the lines in the screenshot break down to:
object1.setA(object2.getX().getY().getZ().getI().getJ().getK().getE().getF(i).getG().toString())
Aside from creating a method inside the class (which you should probably do here in Java too) how would another language do this in a cleaner way?
You shouldn’t reach through an object to invoke a method. That tightly couples the classes which getJ and getG (for instance) return.
Kotlin would represent the getter/setters as synthetic properties (and do so automatically, since Kotlin interops with Java).
object1.A = object2.X.Y.Z.I.J.K.E.getF(i).G.toString()
Of course it's still not great (there's still too much nesting, there's something fundamentally wrong with how the data is structured) but at least the code is less noisy.
Had an ultra wide for a while, went back to 2 27" monitors after 2 years. 2 monitors is more convenient imo. I can flip one vertical whenever. Less fiddly to have multiple things open at once. One is centered while the other is on the side and angled, much nicer way of separating what's my focus. Easier to screen share. I always found the curve distracting for text.
The ultra-wide's big appeal is definitely more for gaming than programming.
I use a Ultrawide as my main monitor, a 1440p vertical one on the right and 2 portable 15" 1080p under the Ultrawide.
When I need to share, I share one of the 15". I keep my notes and the call on my Ultrawide. I think it's a great setup.
But if you don't want as many monitors, for sure 2x 16:9 is much better than 1x 21:9 or even 1x 32:9.
You're dangerously close to the edge there bud, what's your plan B when that starts to overflow huh?
Buy a second monitor with the same space
...and that, kids, is why java has this thing called imports
Imports wouldn’t help. It’s setters with a ton of chained getters
Mostly they're all the same up to the last one or two methods - just set the common part as a variable?
Definitely. I’m pretty sure they modified the code to look as bad as possible just to take the photo though. You can clearly see all the lines are marked as modified in the gutter.
Is he using VScode?
no, he's using a very old version of IntelliJ Idea
Oh come on, first time I actually want someone to post a link for an “ad” and not one in sight
I'm using this one, highly recommend it! 240hz refresh rate, HDR, perfect for coding and gaming. Don't know if it's the exact same as the one in OP's pic, but same concept for sure.
https://www.samsung.com/us/computing/monitors/gaming/49--odyssey-g95na-gaming-dqhd-led-monitor-ls49ag952nnxza/
I've bought one and sent it back again. I felt like I'm not utilizing most of the space since I had to move my head too much to see windows on either side.
I'm now using two 4k Screens. In in the middle and one to the side, but rotates by 90 degrees. Can recommend that. Though for gaming... I can imagine it there.
Personal preference I guess.
I recently switched desks at my company and found one with two monitors. The seam was right in front of me. So if you have a task that has you watching a single monitor most of the time, you’re always looking to one side.
I stopped wondering why the colleague who sat there before was complaining of neck pain.
LOL, that said. The BEST thing I ever bought when WFH started was a 4k monitor.
The extra screen real estate is amazing
that's some serious chaining lol
Type aliasing in java could have saved us from the current pixel shortage, but at least kotlin is giving us a cheaper path forward.
Programmer Humor
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics