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.

programmer_humor

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

xantoxis , in Movies vs life

Ugh I keep getting memory bounds errors, time to fire up the dodecahedron

stoicmaverick ,

Just don’t look directly at it for too long or it’ll cause a buffer overflow in your brain and you’ll start yelling out your private keys instead of saying words.

troyunrau ,
@troyunrau@lemmy.ca avatar

Snow Crash, is that you?

thebardingreen ,
@thebardingreen@lemmy.starlightkel.xyz avatar

Was THAT what was on this USB stick the crazy dude at the bar sold me…? Things make so much more … HAIL ENKI, GOD OF -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: AES-128-CBC,6784434422A3B98781F157CFCEA6FA3D

ks8A38SJahkdh339AKShdhaAks9aj3SJfooPazz91JS8S9Sanshriz…

r1veRRR , in Until there's a community for Enterprise Networking you have to suffer my meme.

To get annoyingly serious on a funny post, the one huge danger of GUIs that I’ve personally witnessed in many of my juniors is that they abstract away the need to understand the tool you’re using.

I regularly use a Git GUI, and I might have to google the rebase command for more complex tasks, but I know how Git works. I know what I can do with rebase, even if I don’t exactly know how to. If you only live in the GUI, you can get far never understanding the system. Until one day, when you fuck up a commit or a push, and you’re totally hosed because there isn’t a pretty button with the exact feature you want in your GUI.

DrM ,

Yeah, fuck that. It’s perfectly fine to build a GUI that makes things a bit easier, but make the GUI so that it resembles the fucking workflow. I hate that when I want to automate something thats super easy in the GUI and it takes AGES because there is no equivalent to what I’m doing in the GUI

computertoucher5000 ,

I hate that when I want to automate something thats super easy in the GUI and it takes AGES because there is no equivalent to what I’m doing in the GUI

glares angrily at Azure CLI

whatisallthis , in Why is it so hard finding up-to-date docs and guides?

Yeah I built a few react apps that made it to production about 7 years ago.

Now the react syntax I used back then is basically a dead language.

NatoBoram ,

Pretty typical in web frameworks tbh

Sheltac , in Why is it so hard finding up-to-date docs and guides?

Because things keep changing and no one ever updates any docs or guides.

BlueKey OP ,
@BlueKey@kbin.social avatar

It would be nice to have a kind of central hub where all the lastest resources are listed.
I could be updated by the community.

Well... one can dream.

narc0tic_bird ,

If it’s updated by the community, it’s probably also created by the community. Instead of dreaming, why not create it?

Sheltac ,

Be the change you want to see in the world 🌈

GammaGames ,

Stack Overflow tried that with their documentation project

NerdyPopRocks ,

Someone should build a system that scrapes all open source repositories and uses an LLM to generate up to date documentation, and puts it in one big searchable place

2ez ,

If using docstrings/docblocks to generate SDK documentation, adding something like an OPA policy to validate their existence and semantic structure could help with coverage. Then we have the issue of accuracy, and that needs humans or AI to weigh in. I have a feeling test-driven development would make this process smoother.

You could also add git hooks to facilitate accountability / run the policies.

fmstrat , in Movies vs life

This is why I loved Mr Robot

traches , in Movies vs life

Live your dreams :)

github.com/GitSquared/edex-ui

sxan , in Until there's a community for Enterprise Networking you have to suffer my meme.
@sxan@midwest.social avatar

So… my only requirement for my tools is that they have a well-supported CLI, and can be installed headless without graphical dependencies. Tools must be scriptable.

That said, it’s nice to have a UI. My ideal configuration is a scriptable tool with a good API, and a separate GUI tool that can drive it.

Sparrow_1029 , in Until there's a community for Enterprise Networking you have to suffer my meme.
@Sparrow_1029@programming.dev avatar

"graphical user interfaces make easy tasks easy, while command line interfaces make difficult tasks possible"

  • William E. Shotts Jr., The Linux Command Line: A Complete Introduction

It has taken me a long time to get comfortable using a Linux CLI (definitely not as familiar with windows cmd prompt/powershell), and I know that if I log into a box anywhere, If it has sh or bash or some variant of those shells, I’ll be able to get by.

Now, on my home server, moving & renaming a bunch of media files has me really wishing I had a DE installed there to Ctrl + click/Drag-n-drop…

Also, I love using VScodium/Code as an IDE bc of its configurability & rich plugin ecosystem – but recently I had some performance hiccups with extensions not playing nice together and started (again) down the masochistic path of configuring neovim to use as an “IDE”…

nehal3m ,

Why not mount your server as a share and use your desktop GUI to manipulate files? Then you can do both.

BravoVictor , in Until there's a community for Enterprise Networking you have to suffer my meme.
@BravoVictor@programming.dev avatar

Pshaw! CLI and GUI? Real network engineers make hand crafted API calls!

andrew ,
@andrew@lemmy.stuart.fun avatar
simonced , in OK, now what?

wait a little bit, electron is still loading…

squirrel , in OK, now what?
@squirrel@discuss.tchncs.de avatar

Install Task Manager Manager

maeries , in Alpha Programmer

Bow down to the LTS male

mtchristo , in PlEaSe CeNtEr ThAt DiV

The web is beyond bloated.

The heavy reliance on JavaScript has suck the joy out of browsing the web for me

AnonymousLlama ,
@AnonymousLlama@kbin.social avatar

I'd say the over exploitation of JavaScript to leverage tracking, interaction and marketing has helped create the poor experiences we now have on web. The underlying technology when used for creating interactive and helpful UIs is very beneficial

ExperimentalGuy , in Writing C++ is easy.

One of the reasons i started learning rust was bc of how easy it is to get into it, or at least that’s how it felt for me. It wasn’t until a few months into consistently writing that I started to encounter things that I didn’t understand.

marcos ,

The good thing about Rust is that if you have no idea of any problem in your code, it very likely because your code is ok.

On C++ things are different.

glad_cat , in Writing C++ is easy.

Rust is nice, unless you have a traits compilation error from a 3rd party library using types that are more difficult to write than C++ templates.

philm ,

yeah as nice as it is what you can achieve with trait-bounds there are definitely trade-offs, being compile time and error messages, and sometimes mental complexity, understanding what the trait-bounds exactly mean… I really hope, that this area gets improvement on at least the error-messages and compile time (incremental cached type-checking via something like salsa)

Flipper ,

I much prefer getting told of that it doesn’t match a trait than get 600 characters of which the majority is implementation detail of global allocators und from what exactly the string is derived.

philm ,

Depends on what trait bound error messages you have had yet, I had 1000 lines long already, where it’s not obvious at all what is meant (and is often a very simple fix). But I’m sure this will get better over time, there’s already a bigger ongoing redesign of the type system solver, so maybe it will be integrated into stable rust soon.

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