OP is just atheist propaganda. It’s actually because of ghosts. Don’t get complacent near the corn fields.
- 4 Posts
- 49 Comments
Is there any plans for yunohost integration?
I’d love to self host piefed just so I can munge my peertube and threadiverse feeds.
manicdave@feddit.ukto
Games@lemmy.world•The Steam controller was ahead of its timeEnglish
4·6 months agoI think it was only like 24 hours. It’s all automated though. So you get a thirty second countdown mashing buttons to try and work out how to get your headlights on if you spawn at night.
manicdave@feddit.ukto
Games@lemmy.world•The Steam controller was ahead of its timeEnglish
11·6 months agoI actually made it because I got banned because I couldn’t use my lights in euro truck simulator 2 multiplayer mod. I’m not sure I’d want to use it in any competitive games as it’d likely break off if I got mad.
manicdave@feddit.ukto
Games@lemmy.world•The Steam controller was ahead of its timeEnglish
8·6 months agoIt’s an extra 12 button Bluetooth controller using an esp32 dev board. So your games need to allow you to use multiple controllers. You could also program it to send keyboard keys but I haven’t tried it.
manicdave@feddit.ukto
Games@lemmy.world•The Steam controller was ahead of its timeEnglish
11·6 months agoYou can download an stl for the battery cover. I modified it to allow the backpack controller to attach to/detach from the main controller. The original is in a box somewhere safe and well.

manicdave@feddit.ukto
Games@lemmy.world•The Steam controller was ahead of its timeEnglish
25·6 months agoWhen your villain origin story is getting banned from a truck simulator mod because you forgot the macro to turn the headlights on.
manicdave@feddit.ukto
Games@lemmy.world•The Steam controller was ahead of its timeEnglish
57·6 months agoThen there’s the back paddles. Only two of them.
Speak for yourself. Mine has 14 lol

Discourse already has an activitypub plugin

One million hours in gimp
manicdave@feddit.ukto
politics @lemmy.world•Trump now says farmers may continue employing migrants under a system where they assume ‘responsibility’ for them
9·7 months agoThat’s always been the system. That’s how they keep the wages so low.
manicdave@feddit.ukto
Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•New Dad Can't Wait to Show Newborn Child Hard Drives Full of Pirated Movies Once He's Old EnoughEnglish
3·8 months agoI’m already planning a Minecraft world with my 7 month old. Been trying to find a TV that allows multiple HDMI connections so we can do three way split screen with the wife when he’s old enough.
Why though? I’ve genuinely never had a problem with it. If something is wrong, it was always going to be wrong. Why is it preferable to have to write a bunch of bolierplate than just deal with the stacktrace when you do encounter a type error?
Yeah I’m into indie hip hop and medieval beekeepers
manicdave@feddit.ukto
Programmer Humor@programming.dev•muskrat's data eng expert's hard drive overheats while processing 60k rows
2·10 months agoWhen it comes to searching the database, the index will have already been created. When you create an index, it might take a while as the database engine reads all the data and creates a structure to shadow it. Each engine is probably different and I don’t know if any work exactly like that, but it’s an intuitive way to understand the basics of how B-trees work. You don’t really need to think much about how it works, just that if you want to use a column as a filter, you want to index it.
However, when you’re thinking about the structure of a database it’s a good idea to think what you’ll want to do with it before hand and how you’ll structure queries. Sometimes searching columns without an index is unavoidable and then you’ve got to come up with other tricks to speed up your search. Like your doctor might find you (i’m presuming gaz is sort for gary and/or gareth here) with a query like
SELECT * FROM patients WHERE birthdate = "01-01-1980" AND firstname LIKE "gar%"The db engine will first filter by birthdate which will massively reduce the amount of times it has to do the more intensive LIKE operation.
manicdave@feddit.ukto
Selfhosted@lemmy.world•How do you like to transfer large files between friends across the internet?English
5·10 months agoI’d go for syncthing over nextcloud for your specific usecase. Nextcloud isn’t good for unreliable connections and they’re sticking with the annoying decision of not supporting server to server synchronization.
manicdave@feddit.ukto
Programmer Humor@programming.dev•muskrat's data eng expert's hard drive overheats while processing 60k rows
5·10 months agoIf there’s something you want to search by in a database, you should index it.
Indexing will create an ordered data structure that will allow much faster queries. If you were looking for the username gazter in an unindexed column, it would have to check literally every username entry. In a table of 1000000 entries it would check 1000000 times.
In an indexed column it might do something like ask to be pointed to every name beginning with “g”, then of those ask to be pointed to every name with the second letter “a” and so on. It would find out where in the database gazter is by checking only six times.
Substring matching is much more computationally difficult as it has to pull out each potentially matching value and run it through a function that checks if gazter exists somewhere in that value. Basically if you find yourself doing it you need to come up with a better plan.
Cartesian explosion would be when your query ends up doing a shit load of redundant work. Like if the query to load this thread were to look up all the posters here, get all their posts, get the threads from those posts and filter on the thread id.
manicdave@feddit.ukto
Selfhosted@lemmy.world•Advice for quick and easy pet cam with remote accessEnglish
1·11 months agoLol why are people such dicks? My vets sent pics when my dog was recovering from an operation. It’s a pretty normal thing.
Anyway, if it was me I’d just set up a stream of the webcam on peertube via OBS.
manicdave@feddit.ukto
Selfhosted@lemmy.world•File sync without wasting bandwidthEnglish
1·11 months agoI don’t know how far owncloud and nextcloud have diverged, but in the nextcloud client you can add filters to ignore files by clicking the three dots on the folder in settings.
You can also free up local space by using virtual folders, but it only works properly on windows.






Tribler has inbuilt onion routing. If I understand it correctly, tribler <-> tribler connections don’t need exit nodes and it’s fast enough to stream video