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.

AllNewTypeFace , (edited ) in R U A Cyberpunk
@AllNewTypeFace@leminal.space avatar

The guy in the photo is still dressed like that, but now he’s the weird hobo who lives in the junkyard

devious , in Always commit

Well maybe if she had shown more interest in his pull requests, he wouldn’t be off forking other repos!

Cqrd , in Always commit

Dude just stopped before he got to a logical stopping point where it would make sense to commit and push

GigglyBobble ,

That's actually not that rare when I work later than usual. Some stupid problem my brain is too fried to solve. Eventually I give up, feeling defeat for the whole evening and solve the problem in 10 mins the next morning. Get enough sleep, people.

sunbeam60 ,

However, much research shows the hand banging against the wall period is required for you to achieve the morning breakthrough.

The sleeping break is where your neurons form new connections based their activity yesterday. The “thinking hard” and the frustration is a required part of the morning epiphany.

God I love programming.

GigglyBobble ,

Thanks. I did not need to know that. Oh well, off to more headbanging then.

Bipta , in My poor RAM...

This meme is really only true for things like Slack where the app is just the webpage in an app, and even then it's not quite true because Electron is a lot heavier than a webpage because it has to now run the webpage and the app - which I think is terrible.

But then also, Electron enables actual apps to be developed using web standards - which I think is great.

TLDR: Use Electron to make apps, not glorified webpages.

habanhero ,

??

Slack IS an app.

Chadus_Maximus ,

??

Slack IS a webpage.

habanhero ,

Calling Slack a webpage is like calling an office building a room.

Slack is just as much a complex app as anything else even if it’s built on web tech and standards.

firelizzard ,
@firelizzard@programming.dev avatar

The point is that Slack does not take advantage of Electron at all. It’s no better than running it in a browser.

habanhero ,

For Slack it does. Building an app via Electron means it’s cross-platform by default, so Slack doesn’t need to invest in separate platform teams to solve the same problem (Windows, macOS, Linux).

Electron also has better support for things like native notifications, video and voice calls, offline capabilities, and to other native APIs etc that are either unsupported or spottily supported via the browser.

pkill ,

Flutter?

habanhero ,

What about Flutter?

pkill ,

It’s a much more lightweight option for building cross platfrom apps than Electron. Heck, even Tauri is better than Electron even though it also uses web technologies for UI.

habanhero ,

Flutter came to market much later. It wasn’t even a thing when Slack started building using Electron. I’m sure the same applies to Tauri as well.

railsdev ,

It has all this support for native platforms yet it’s always a clunky memory hog that makes zero effort to respect the design language of the OS it’s running on.

I’m on macOS, I want the app to be a native macOS app. If I wanted it to look like a webpage, or Windows, or Linux GTK then I’d switch to one of those and expect it to match those paradigms.

habanhero ,

It has all this support for native platforms yet it’s always a clunky memory hog

Maybe so but it has improved a lot over time. The app devs share some responsibility too so it’s not all on Electron.

zero effort to respect the design language of the OS it’s running on.

That’s the Dev’s design choice, not a limitation of Electron.

I’m on macOS, I want the app to be a native macOS app. If I wanted it to look like a webpage, or Windows, or Linux GTK then I’d switch to one of those and expect it to match those paradigms.

I don’t disagree but at the end of the day it doesn’t matter to enough people for it to become an issue. People are used to Slack and the way it works.

Moreover the cost of building the same app 2x or 3x simply doesn’t make business sense.

railsdev ,

I’m a web developer but is there no concept of classes, libraries, etc in other programming languages?

What happened to writing the “core” of an app that doesn’t rely on UI then simply writing the front ends for each platform you want to support?

You keep saying Electron is used for better compatibility and listing out Linux, Windows, macOS but here’s the thing — most companies are only targeting those. That’s just three (if you don’t write for a million desktops on Linux).

Is it really so hard to support just three environments with only the UI being tailored for the OS it’s running on?

Honestly, it just feels like poor tooling and a poor excuse.

habanhero ,

What happened to writing the “core” of an app that doesn’t rely on UI then simply writing the front ends for each platform you want to support?

What do you mean? I can’t speak for Slack but I’m sure some degree of business logic / client side logic separation exists.

By the way, what you just described is the essence of cross-platform development, rather than an argument for building apps natively.

simply writing the front ends for each platform you want to support?

But why would you rewrite the “front-end” for each platform if you have one you could just port over? Who is going to pay for those 2x developers and what would be the ROI on this effort?

That’s just three (if you don’t write for a million desktops on Linux).

Is it really so hard to support just three environments with only the UI being tailored for the OS it’s running on?

In Slack’s case I’d wager the answer to be a resounding YES. I don’t think you fully grasp the full scope Slack’s capabilities, and the amount of work involved to build native clients for not just one or two, but three different platforms - it’s definitely not just the “UI”.

Honestly, it just feels like poor tooling and a poor excuse.

Quite the opposite - frameworks like Electron let’s devs with your skillset build with the stack you already know, and abstracts away quite a bit of the cross-platform complexities, which strangely enough is what you are suggesting but also what you are arguing against

physcx , in Easy peasy

If a basic Wordpress on aws (no load balancers or auto scaling) is all you need… it is super easy to run on aws. Like a few clicks easy. https://aws.amazon.com/lightsail/projects/wordpress/

AnUnusualRelic ,
@AnUnusualRelic@lemmy.world avatar

But then, why use AWS?

slazer2au ,

Because how else do you tick off Cloud presence in your business bingo?

AnUnusualRelic ,
@AnUnusualRelic@lemmy.world avatar

A fair point.

ikidd ,
@ikidd@lemmy.world avatar

You might have too much money and wish to give a large portion of it to Jeff Bezos?

jcg ,

~ ~ scale ~ ~

Anticorp ,

Installing WordPress through a traditional Apache server shared hosting account only requires one click, and you can host as many sites as you want for like $9 per month.

amio , in It's a mass extinction event

You think C# is a Unity thing?

GlitchyDigiBun ,
@GlitchyDigiBun@lemmy.dbzer0.com avatar

Me writing my silly little forms apps in silly little VS Pretty drop-down fields :)

amio ,

Oh, VS is not "little", it's one of the bloatiest pieces of software on earth.

Also, Forms? How dare you. :p

Lmaydev ,

It’s not so bad in the newer version. The switch x64 and put of process architecture helps a decent amount.

I always have a pretty beefy dev machine though.

Aux ,

Once upon a time, a content management system for microsoft.com was a plug in for VS. And also a plug in for Word. And these two plugins had different feature sets, so you had to use both to manage content on microsoft.com. Don’t ask how I know.

TurtleTourParty ,

My boss: add this field to this old form.

Me: open the form, add my field. Now VS crashes. I have to open the form code in a different editor and delete all the code VS added to the form when I opened it in the form editor.

oldfart ,

Oh, so it hasn’t changed since I used VS6 back in the early 2000s (bought at the auto parts market from Russians on an almost transparent CD)

EnderMB ,

I doubt the number of C# developers would drop even 1% due to Unity fucking itself.

yiliu , in Always commit

“No, wait, it’s not what you think! There’s a continuous integration system, a commit would’ve triggered a new build! It might have paged the oncall! Babe! The test suite has been flaky lately!

Ocelot , (edited ) in How the IT guys see the users

Yeah one of these views is more valid than the other:

“I got an error message! It says, Please right click the application and select ‘Run As Administrator…’ What does it mean?! What do I do!!! Why are these instructions so confusing?!”

“I got an error on the page! It says ‘Password incorrect’ What does that mean? How do I fix it?” “Have you tried using the correct password?”

original_ish_name ,

Why on earth are you putting double quotation marks inside double quotation marks? We have single and double quotation marks for this exact reason. It took me forever to understand what you’re saying

Ocelot ,

lol sorry I broke your mental regex filter

cobra89 ,

I love how you actually edited it too. What a nice person you are lol.

drcobaltjedi ,

Yeah, I’m in the IT dept (companys conatantly flop between throwing software into engineering, IT, or its own dept) and the other day, 5 minutes before I leave for a week long vacation a user comes up and asks if we’re ignoring her.

Outlook is constantly asking for a password to one of the emails she uses. She doesn’t know it and keeps clicking close on the popup. So she sends an email, FROM THE ACCOUNT SHE IS LOGGED OUT OF, to helpdesk a few days earlier.

w2tpmf ,

I’ve had to walk someone over the phone through a prompt that says “Click OK to continue” and there was nothing else except the OK button.

Also when I used to work for Federal Student Aide help center it was common for (people who were about to enter into higher education) to get stuck at the end of the online form when a final screen came up with the options “Submit” and “Cancel”

DreadPotato ,
@DreadPotato@sopuli.xyz avatar

That just seems like bad software design with a prompt like that, unless its for audit trail purposes and it’s used to log the user is actively accepting to continue.

______ , in Always commit

I worked today and have O commits.

war , in R U A Cyberpunk
@war@kbin.social avatar

I use my highly portable computer for PGP key exchanges, etc.

gitstash , in Always commit

git stash, girl

llama , in Easy peasy
@llama@midwest.social avatar

Gets a $3000 bill because they picked the wrong instance type.

Father_Redbeard , in Markdown everywhere
@Father_Redbeard@lemmy.ml avatar

I was looking for a journaling app that didn’t have vendor locking, or required some weird export dump that messed your formatting and folders up. That lead me to Markdown and Obsidian. I love it. And when I die, that shit will still be readable by any basic text editor.

NightAuthor ,

LogSeq is similar, but FOSS

storcholus ,

Does it have an app that will sync with my GitHub?

smileyhead ,

Why you need special app for that? Just sync the files with Git.

stewsters ,

I think he means from his phone. Obsidian is great to just sync if you have a git client, but kinda a pain from the phone app unless you pay.

smileyhead ,

At least on Android and iOS. Other systems like PostmarketOS or Mobian can use Git just like computers.

(This is mostly a joke)

Father_Redbeard ,
@Father_Redbeard@lemmy.ml avatar

I’ll admit I’m a sucker for a good UI, and I’m very picky apparently. And as much as I like Markdown, I like looking at rendered Markdown more, lol. I was just looking at GitJournal and Markor and my god…hideous apps.

I came from DayOne, and their format is some json that I wasnt too keen on for future proofing.

storcholus ,

I do that on my computer’s, but I mean on my phone

Father_Redbeard ,
@Father_Redbeard@lemmy.ml avatar

I don’t remember why, but there was some reason I wrote off LogSeq. I tried so many apps but Obsidian was the best fit for me. Maybe I’ll have to try Logseq again and remember…

NightAuthor ,

Shoulda wrote down your issues with LogSeq in Obsidian. /shrug

Father_Redbeard ,
@Father_Redbeard@lemmy.ml avatar

I actually started that afterwards! I have a whole section about my self hosting adventures and hunt for a Google Keep replacement.

NightAuthor ,

Did you find a suitable Keep replacement?

I’m still figuring out how exactly I want to use LogSeq, but for now it’s kinda acting as a Calendar, Journal, Me Wiki, ToDoList, and general notes scratchpad. I’m not sure how organized I can keep it, but it definitely is nice opening 1 app, and being able to put anything and everything in the journal page for today, just topics for searchability/Discoverability.

Father_Redbeard ,
@Father_Redbeard@lemmy.ml avatar

Sort of…I’m still testing various apps. The big draw for me to Keep was mobile and web apps. I will often sit at a computer to input even short ToDo because phone swipe keyboards and me do not get along. There is no shortage of Keep clones, but a bunch are missing sync function entirely or require Nextcloud, which is way too much app for my hardware and I’m not standing up an instance just to sync some notes. Here’s a not very formal rundown of what I’ve so far:

  • Joplin - seems like a solid app and you can easily selfhost the server. But the android app is awful. That and the fact it stores Markdown files in a sqlite db had me look elsewhere
  • Quillpad - a fork of Quillnote. Looks identical to Keep. Only syncs with Nextcloud and has some quirks. The big one was creating a To Do list with checkboxes from the Notes app in NC displays correctly in Quillpad, but you cannot interact with them at all. So strange.
  • Zoho Notebook - Zoho as a company is likely the closest you’ll get for a straight up Google replacement. But their privacy policy has some concerning statements regarding sharing data with “market partners”. It was enough for me to keep looking.
  • Carnet - only syncs with Nextcloud and for some reason the Android app is stupid slow.
  • Memos - more of a microblogging app. Similar format to Twitter but you can keep it all private and publish nothing. This one has no official app, in favor of a well done progressive web app. Also stores .md in a db file. Incredibly easy to self host. I keep wanting to love this one, but the single column view (think Twitter threads) as opposed to Keeps grid…i don’t know. I still have it up on my server since it takes almost nothing to run and I keep playing with it.

The two contenders for me right now have some amazing promise and nice features already, but it’s whats on their roadmaps that has intrigued me more:

  • Acreom - not FOSS yet and the mobile app can only sync with their cloud. No E2EE…yet. On desktop it’s great. You can use it without an account and like Obsidian, it stores it in flat .md. The To Do/Task function has some natural language processing that can recognize date/time for due dates like “Deploy patches Wednesday at 4am” would recognize Wednesday as Sept 20th since that’s the next closest date and the time at 4am. I think once they open source it and at least allow local only storage on a phone, it’ll be killer. I’d love to use Syncthing to just keep my pile of notes up to date between multiple devices. Not possible on mobile yet. This one is geared more towards developers to track projects, even offers a Jira tie in (gross).
  • Notesnook - somewhat recently open source. Has great apps for all OSes as well as a web app. And what is really nice is that the UI is consistent across platforms. They have a paid tier that’s a bit spendy for my liking, but they are working on a self hosting option that will be free of course. The dev did tell me they’re toying with the idea of a charge for commercial self hosters, but definitely not for individuals. This one isn’t in plain .md due to their selling point, which is encrypted everything.
NightAuthor ,

Wow, thanks for the write-up. Joplin, Memos, Acreom sound/look the most interesting. Notesnook’s feature lockouts on the free tier makes me feel like they may not be included in the self-hosted option, that seems like a common practice. But I’ll keep an eye out… I’m gonna copy this whole thing into my page on notes-apps for later reference.

Father_Redbeard ,
@Father_Redbeard@lemmy.ml avatar

One I didn’t include because it either requires specific hardware, or some hacky workaround is Synology Note Station. Great app, and I got it up and running using a docker container that runs their proprietary OS. Other problem is the mobile app is not nearly as good.

As you can tell, I love notes apps. So the trend of all these Personal Knowledge Management/second brain apps is amazing.

ruffsl , in R U A Cyberpunk
@ruffsl@programming.dev avatar

Private Eye - essential for staying online 24/7

What was that device, an early cellular modem or 802.11 wireless bridge? The thing ontop of the briefcase looks like a head visor with an antenna. Google search keywords are just noise.

hikeandbike , (edited )

Quick searching, looks like its a head-mounted display, something akin to Google Glass

PupBiru ,
@PupBiru@kbin.social avatar

and years later the image in people’s head of people who used google glass didn’t change a bit

scottywh , in R U A Cyberpunk

”…a computer geek who likes Ministry"

😂

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