dbilitated

joined 1 year ago
[–] [email protected] 12 points 1 month ago

it's a case where he knows a guy just like Ronald but he's not naming him, so he's just talking about "Ronald"

[–] [email protected] 7 points 1 month ago

I have one of the affected CPUs 😒

[–] [email protected] 13 points 1 month ago

I often quote light switch rave 😁

[–] [email protected] 32 points 2 months ago

because the thing on the screen doesn't really exist, so when it appears to really exist it feels like magic

[–] [email protected] 2 points 2 months ago (1 children)

looks really pretty. has it recently been repotted?

[–] [email protected] 11 points 4 months ago

that's amazing

[–] [email protected] 11 points 4 months ago

All Corgis Are Beautiful 😍

[–] [email protected] 3 points 4 months ago
[–] [email protected] 11 points 4 months ago

I just had a provider issue take a server down after we swapped into production.my code was fine, still didn't get to knock off on time.

[–] [email protected] 53 points 4 months ago

capitalism preys on insecurity 🤷‍♂️

[–] [email protected] 6 points 4 months ago (1 children)

The whole article listing the various uses of flamethrowers, like environmental conservation, then mentioning concerns that flamethrowers can double as weapons is just... I don't even know what to do with that.

it even lists napalm as an intended use. gonna conserve the hell out of that commie rainforest, I guess?

[–] [email protected] 12 points 4 months ago

..regularly scans the North Korean internet as a hobby.

hell of a hobby!

 

As an Australian, no we didn't. We just had it put in context. Jews around the world are great people, the Israeli government and the hardline supporters are absolute monsters. I hope the Australian government tells them as much. Israel deserves no support and everything that may happen when it's withdrawn.

-5
Yemen (aussie.zone)
 
 

Well, chat.openai.com is down today. I've been using it quite a bit recently, mainly to ask questions about physics and history but also for some low level work help - it's great for fire-once functions I can easily describe.

I don't really want to use microsoft's - the privacy policy and forced "free" feature make it seem dubious. I'd rather pay and have limited control over the data.

Are there any other options of a similar quality?

 

The one I linked might be a good one, I think I've used it but I'm on holidays so I can't check.

The real wisdom here is, where possible, implement a basic configuration class and serialise it out to a file using a library, then only tweak it.

In your class you can have everything strongly typed and assigned and so forth and all the joy of a good IDE helping you along, then you can use the tiniest console app to just serialise it to a file for you and the syntax is guaranteed to be perfect because it's a tested library.

You don't even really have to learn yaml and it'll be perfect. If you need to tweak it it'll still be pretty easy because all the values and structure will make it clear what's happening.

Obviously less useful for people who aren't devs, but we are so we might as well play on easy.

148
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 

I've always hated the idea of using a subscription/cloud hosting for password management. I feel like I should have a LOT more control over that stuff and I don't really want to hand all my keys over to a company.

All my secrets have been going in a highly encrypted archive with a long passphrase, but obviously that isn't convenient on all devices. It's been fine, I can open it on any computer but it's not super quick. It does have the advantage of being able to put in multiple files, notes, private keys but it's not ideal.

Anyway, finally found something that isn't subscription, and has a similar philosophy - a highly encrypted archive file, and it's open source and has heaps of clients including web browser plugins so it's usable anywhere, and you can sync the vault with any file sync you like.

Thought you guys might appreciate the find, password managers have always been a bit of a catch 22 for me.

Note for android i found keepassxc the best app, and i'm using KeePassHelper browser plugin, and the KeePassXc desktop app as well as the free official one. Apps all seem to be cross platform.

174
ja rule (aussie.zone)
 
 

We can get a computer to tag the birds, answer questions about them, and generate new pictures of them.

 

After his first game venture failed, Peter Molyneux started a baked bean export business. Commodore International mistakenly offered him ten free Amiga systems because they confused the baked bean company's name "Taurus" with a software company "Torus", and he used the hardware to create a database system for the Amiga, which was successful.

Which is just such a weird story.

Full text of the paragraph:

Due to the game's failure, Molyneux retreated from game design, and started Taurus Impex Limited—a company that exported baked beans to the Middle East—with his business partner Les Edgar.[5][6] Commodore International mistook it for Torus, a more established company that produced networking software, and offered to provide Molyneux with ten[5] free Amiga systems to help in porting "his" networking software.[2][7] Molyneux later said "it suddenly dawned on me that this guy didn't know who we were. I suddenly had this crisis of conscience. I thought, 'If this guy finds out, there go my free computers down the drain.' So I just shook his hand and ran out of that office."[2] Taurus designed a database system for the Amiga called Acquisition – The Ultimate Database for The Amiga[5] and, after clearing up the misunderstanding with Commodore, released the program to moderate success.

 
 

Just out of curiosity. I have no moral stance on it, if a tool works for you I'm definitely not judging anyone for using it. Do whatever you can to get your work done!

 

I didn't find this anywhere convenient when I was troubleshooting so I thought I'd post this here.

We have some large projects with a lot of dependency injection, and it was taking up to a minute to start a local dev API. After a lot of troubleshooting we found it was the dependency injection validation, which is optional and disabled in production - you can turn it off using:

webBuilder.UseDefaultServiceProvider(o =>
{
  o.ValidateScopes = true;
  o.ValidateOnBuild = false;
});

in the ConfigureWebHostDefaults() section, before the webBuilder.UseStartup() call. (I'm pretty sure this is the default template but it's been a while since I set it up..)

Saves around 50 seconds when waiting for a local API to start - obviously you don't get nice messages if you've created an issue with your dependencies so be aware of that.

I'd probably also explicitly disable ValidateScopes when it's not a dev environment but that has a lower performance impact.

view more: next ›