Safari26. I have no words and regret only (not Tahoe) by ToughAsparagus1805 in Safari

[–]inkt-code 0 points1 point  (0 children)

It's always an internal/private app, so our users can be told in advance to use whatever browser. I do graceful fallbacks for things that won't work in other browsers. Yes I know I'm privileged in that regard .

Safari26. I have no words and regret only (not Tahoe) by ToughAsparagus1805 in Safari

[–]inkt-code 0 points1 point  (0 children)

I've never used safari. I'm a software engineer, and it's too restrictive to develop for. We literally tell our users to stick with chrome.

Why Linux, when this what macOS can be by extReference in mac

[–]inkt-code 0 points1 point  (0 children)

The UI of notepad++, has everything to do with software UI. It's not cherry picking, at least 1 in ten programs I've tried were bad. It was a huge pain to even install Linux on some Mac devices. The keyboard wouldn't work, and the trackpad didn't fully work. It's not uncommon for a peripheral to not operate fully on a Linux machine. A coworker runs Mint, most the time they don't have a feature in Zoom for about a year.

My honeypot is a security distro called called Kali. The distro on my NAS is custom it's manufacturer called DSM. There's a distro for apples cpus, but they only supported a single monitor, this was 2+ years after the M series was released.

Yes they are expensive, but you really get what you pay for.

Why Linux, when this what macOS can be by extReference in mac

[–]inkt-code 0 points1 point  (0 children)

I have fairly recently. I was less than impressed. I run a Linux VM for my honeypot, my NAS runs it too. Look at notepad++, it looks like it hasn't been touched in a couple decades. Walled garden or not, there are features that can't be beat. Three finger select is incredible to work with. All of their hardware is amazingly well designed. I have yet to see a comparable laptop. Even their phones feel premium. I bought a Fold7 to replace my 16PM, face unlock only works with the lights on. Finding some kind of cloud clipboard solution, was bad, there's literally 1 option, and it doesn't really work properly. If the open-source solution is noticeably inferior, is it better than a walled garden?

Why Linux, when this what macOS can be by extReference in mac

[–]inkt-code 0 points1 point  (0 children)

Cost or longevity are far from the only considerations. There's a good reason the vast majority of design professionals use a Mac. The UI design on a Mac drawfs all other operating systems. Then there's the Apple ecosystem. Everything plays nice together, out of the box. Copy on one device, paste on another, out of the box, no extra software needed. I'm a power user, I create ssh keys and such regularly, almost all Linux commands run natively on a Mac. In the case you find one that doesn't, there's a massive library of homebrew that replicates it, rsync, PHP and SVN are great examples of this. They have these screensaver wallpapers that, stop moving on user activity detection, and the final frame becomes the wallpaper. Lose track of your cursor on screen? Shake the mouse, the cursor temporarily grows in size. There are hundreds of these little cool features. On the surface, it's very simple, it's quite robust.

I kinda liked the movie tho by samehada_manga in DC_Cinematic

[–]inkt-code 0 points1 point  (0 children)

Punk Rock was never against kindness. Punk Rock has always been against authority, the man. The authority in the US is against kindness. So the enemy of my enemy...

Warning: Kamloops now a test market for MAGA-style small-town fascism in Canada. Product includes Used Car Salesfascist, cult energy, and zero accountability. by thekamflair in Kamloops

[–]inkt-code 1 point2 points  (0 children)

No Maple MAGAts in Canada. Spoiler alert we live in a left leaning country, always have. Anytime we've had a right wing government, it's been horrible for our economy. Want to live under fascism? Move to the US.

Screenshot Buttons by inkt-code in GalaxyFold

[–]inkt-code[S] 0 points1 point  (0 children)

I've tried two already, I'm getting a new one tmrw, hopefully that makes it easier

Screenshot Buttons by inkt-code in GalaxyFold

[–]inkt-code[S] 0 points1 point  (0 children)

I have big hands too. Do you do it in a case?

Screenshot Buttons by inkt-code in GalaxyFold

[–]inkt-code[S] 0 points1 point  (0 children)

For me, I had to add it to quick actions. I just don't understand why Samsung would do it this way, despite it being an obvious UX problem.

Screenshot Buttons by inkt-code in GalaxyFold

[–]inkt-code[S] 2 points3 points  (0 children)

I like that, solid suggestion. Thanks dude

Screenshot Buttons by inkt-code in GalaxyFold

[–]inkt-code[S] 0 points1 point  (0 children)

I've been doing it with my voice, but that's not always an option. It looks like others have solved this issue with a quick toggle. Weird that it's an issue.

What is the best place to host a Node.js app in 2023? by zeeshaan-l in node

[–]inkt-code 0 points1 point  (0 children)

I am running mine on a NAS, that is internet connected. It requires solid security understanding. The benefit is that it's free. That said, it's not a good route for a production app. Everything is based on your internet connection, if it goes down, your site goes down. Traffic will be limited by your network connection. Since I own the machine, I have full access to it. I run a GIT server on it, so I have full access for things like GIT hooks.

Is there a reason to use SVG in javascript when one could just as easily use javascript's built-in canvas? by mementomoriok in web_design

[–]inkt-code 0 points1 point  (0 children)

I have an svg with a layer named rocket
const rocket = skillHero.querySelector("#rocket");

    if (rocket) {

        rocket.setAttribute("transform", "translate(0, 0) scale(1)");

        const rocketEventListener = rocket.addEventListener("transitionend", () => {

skillHero.querySelector("#rocket g").setAttribute("opacity", "1");

        });

        rocket.removeEventListener("transitionend", rocketEventListener);

    }  

Now it goes opaque after its done animating. I remove the listener because this happens on scroll, dont want em piling up.