There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

zeet ,
@zeet@lemmy.world avatar

You’re supposed to put each machine on top of each other, hence the term full stack developer.

ZeroCool OP ,
@ZeroCool@vger.social avatar

Well, now I feel like an idiot. I’ve always assumed that was just an expression!

Zachariah ,
@Zachariah@lemmy.world avatar

Yes, but it’s a regular expression.

jaybone ,

I run perl on arch btw

And009 ,

Stacks are real

abbadon420 ,

Stacks are for idiots, racks are what we need and blades are the real deal.

And009 ,

I’m a Deck man myself

zea_64 ,

It’s called a tower PC for a reason

kelargo ,

I thought Tower PC was named after the record store.

fibojoly ,

For most devs, it’s a Jenga tower. Only fancy algorithm devs get a nice Hanoi towers setup.

zea_64 ,

Do you get two empty spaces next to your tower? For maintenance if the lower elements.

zaphod ,

And I thought it meant those programmers are bad at memory management because their stack is always full.

Zagorath ,
@Zagorath@aussie.zone avatar

Actually long desks are no longer considered best practice. At my work, some devs have a lazy suzan, while others prefer a circle that they can pivot around to face the right computer.

key ,

I got one of those desks with a vertical pneumatic lift so I can stack the computers vertically in a rack and just raise/lower it so the right one is at eye height

AmidFuror ,

Waste of money. Build the chair to go up and down instead.

variants ,

The trick is you hire a runner who comes over when you ring a bell and he unplugs your computer and plugs in the one you need and then takes the other computer to someone else that needs it, I think they call him a vm short for vamoose machine

And009 ,

I don’t like my feet hanging when using the top monitor. My floor splits in half and goes up instead

vk6flab ,
@vk6flab@lemmy.radio avatar

At one point, before we virtualised everything, I had a custom desk built in an L-shape. Instead of a desk and a return, I had the refurbishment team put together a desk with two desks instead. It gave me two sets of drawers, two computer cubby holes and the gap was too small for the horrible keyboard adjustable shelf that kept hitting your knees, so they replaced it with a fixed surface instead.

People laughed.

Colleagues sniggered.

Then they wanted one too.

Now I have a mobile lectern with an iMac clamped to it. Height adjustable, wheels, enough space for keyboard, trackpad and USB hub. I move around my office as the mood or light takes me.

dejected_warp_core ,

I swear, overcoming fixed functional-ness is like a superpower when you can apply it.

I once shared a small office with a co-worker. I had the idea to move the desks away from the walls and place them back-to-back, diagonally, in the middle of the room. Other co-workers scoffed and remarked at how dumb and unconventional this looked. Then I explained that we each now had nearly full privacy from each other, much more personal space in our respective corners, no more glare from the window, and nobody could sneak up on us from the door anymore. Things got pretty quiet after that.

flerp ,

Ah, the Neil Peart drum kit solution

WhiskyTangoFoxtrot ,

A TARDIS console.

dejected_warp_core ,

Useful? Not exactly. But you’d never look lazy or idle, that’s for sure.

Semi_Hemi_Demigod ,
@Semi_Hemi_Demigod@lemmy.world avatar
renzev ,
Aceticon ,

An this was back in the 80s where there were only 8 programming languages…

Classy ,

Rocking those classic 990s

vk6flab ,
@vk6flab@lemmy.radio avatar

So, when you use 40 or so programming languages, your employer needs to supply a mansion…

I’m okay with that.

Now, where is the boss?

30p87 ,

'Yes boss, I need 16-Bit, 32-Bit and 64-Bit Arm and x86_64 ASM as well as MySQL, SQLite, Postgres, Firebird, Mongo and all other stuff too, so I need a lot of computers … of course all with Threadripper PRO 7995WX’s.

ZeroCool OP ,
@ZeroCool@vger.social avatar

Corporate be like “mandatory return to office aircraft hangar.”

Rai ,

Reminds me of a scam call center person telling Kitboga “your IP address is tied to your house address. You don’t get a new one unless you move houses”

MaggiWuerze ,

I wish

Skullgrid ,
@Skullgrid@lemmy.world avatar

I hate working in frontend because I have to keep switching computers between Javascript, HTML, CSS and sometimes SVG

iarigby , (edited )

come on, only one out of those four is a programming language

edit (begrudgingly): ok fine, half, but still

gamma ,
@gamma@programming.dev avatar

CSS is turing conplete.

Skullgrid ,
@Skullgrid@lemmy.world avatar

come on, only one out of those four is a programming language

that’s part of the joke ;)

marcos ,

SVG? SVG isn’t half a language, it’s a completely functional one!

Ephera ,

Early on in my career, I had to do a project in Python, together with another junior. Neither of us had any clue how to handle Python and he was on Windows, so, if I remember correctly, he had to install some dependencies from Pipenv, others from Conda, and his setup would break every two weeks in novel ways.

Eventually, we became quite good at installing a working setup, but correctly removing the broken setup was a pain. Often times, I thought that just reinstalling the whole OS would be quicker. 🫠

ignotum ,

Every now and then a new hire comes along with a windows pc, every time they decide they want to try to get everything working on windows, after a week they give up.

On linux it’s one pip install and you’re done

WalrusDragonOnABike ,

On linux it’s one pip install and you’re done

Isn’t that how packages/dependencies work on windows as well? Once I got pip updated, I’ve never had any issues with it.

ignotum ,

No clue, all i know is that i never have to do more than that, and noone has managed to get it working on windows 🤷‍♂️

When i started learning programming, everything was always a pain to set up, needed to install weird IDEs from shady websites and they only worked half the time. Then a friend showed me linux where stuff just worked out of the box, just slap some code in a textfile and compile it, i never looked back (was working in c/c++ but from what i’ve seen it’s not much better for python)

OsaErisXero ,

Since some wsl features started coming with windows out of the box python has been pretty trivial to install. It's a far cry from the conda/cygwin nightmare hell scape it used to be

Ephera ,

I believe, it’s because various Python libraries ship with a pre-compiled C/C++/Rust library. That library needs to be compiled for a specific target, and you often only get Linux x86_64 on Pypi, because that’s what most library devs use themselves.

Conda tries to solve that by providing a separate repository, where they do have builds for more targets available, but as a result, they have fewer libraries available in that repo. That’s why we needed to install some via Conda and some via Pipenv/Pypi.

HappyRedditRefugee ,

We have a development system for python on Windows at work, works very well also.

On linux is one pip install, buy maybe first do a venv^^

Aceticon ,

Last time I checked, it was way easier in Windows to have a VM running Linux just for Python, than to get Python to reliably work nativelly in Windows.

southernwolf ,
@southernwolf@pawb.social avatar

This is why we need 3, 4, or even 5 monitors at a time.

Varven ,
@Varven@lemmy.world avatar

More monitors the better

numberfour002 ,

HTML CSS XML JSON SQL CRAYONS

Okay, it’s starting to add up.

ricdeh ,
@ricdeh@lemmy.world avatar

Not a single real language 😈

Aceticon ,

It really depends on whether that SQL is the standard one (such as SQL92) or with the database specific extensions (such as PL/SQL).

The latter often adds up to a “real” programming language (were you can define your own functions and everything), depending on the database.

But yeah, the rest not so much.

kelargo ,

Features to enhance vendor lock in.

Aceticon ,

Indeed.

frezik ,

JSON and XML can be “real” languages. Mostly because of people who didn’t stop to ask if they should.

frank ,

I have a KVM switch so I can control my array of computers with one monitor setup. I have a normal desk and a big closet to house all the computers.

PlexSheep ,

We just have a warehouse with a few big computers. We just use our desks to access them.

1rre ,

Docker fan mindset

thefartographer ,

I use a KVM switch tree and run it off an alternator connected to my desk bike

lolola ,
@lolola@lemmy.blahaj.zone avatar

That’s why programmers have all those monitors. They’re each hooked up to a different computer.

rem26_art ,
@rem26_art@fedia.io avatar

Those people you see on LinkedIn with like 20 programming languages on their resume are really looking for a job just to pay off the debt of buying 20 computers

HamsterRage ,

Many, many years ago I used to have two Wyse50 terminals, running split screens each with two parts. I did a lot of support on remote systems (via modem!) and I would have a session on a customer system, source code and running on our test system and internal stuff. I didn’t have space for a third terminal.

At another job I had an office with a “U” shaped desk. I would spread printouts across half the “U” and swivel around between the computer and the printouts.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines