Reddeet

49 readers
0 users here now

Welcome !

This instance is open to ideas as to where it should go. Contact the admin at admin@reddeet.com if you have any suggestions/issues.

Like the old Reddit style ?

Cool links !

Technical

This instance is hosted on an ARM based server (Hetzner CAX Server) :

Analytics

You can check out the data we collect when you visit this instance right there : analytics.kawa.zip/reddeet.com

None of this data is sold to anyone, it is used for educational purposes only.

founded 2 years ago
ADMINS
1
 
 

I don't know how to get thumbnails working

I was hoping for a little more gameplay

P.S all three games are 90% off right now if you want to get caught up or haven't played them before

2
2
IPv6 (downonthestreet.eu)
 
 

I noticed by accident that in my home network IPv6 is not functional, so I decided to fix that, and started studying about IPv6.

I have an opnSense firewall which connect to my ISP port as WAN, and then the LAN. The point is that o do not get a GUA on my WAN, but I get it if I connect directly a pc to the ISP port....

The opnSense seems to be configured properly, and the ISP itself do provide IPv6 as I can get a GUA address when I connect my Linux laptop to the ISP router, so I am not sure...

Anybody has any hints?

3
4
5
6
44
i made this (lemmy.ca)
submitted 2 hours ago by Pxtl@lemmy.ca to c/memes@lemmy.ml
 
 
7
 
 

Some good changes, including a server browser! Anyone still playing the game?

8
 
 

À la frontière entre Rohan et Saint-Barnabé, une anomalie vieille de plusieurs décennies va être corrigée. Résultat : près de 1 000 m² vont officiellement passer des Côtes-d’Armor au Morbihan.

9
 
 

Any thoughts on building your own phone?

Recently I had the idea of building my own phone with a Raspberry Pi. I started searching and I found this article where someone had already done this. Unfortunately this article is from 2014 and I can't find a newer article with a functional phone with SIM card. At some point this guy says he's running Raspbian. Are there mobile desktops for Debian? Mobian doesn't look very real.I don't want Android although Lineage/etc might be acceptable... (Although now I'm thinking of putting Droidian on an old phone...)

Anyway does anybody have any info, thoughts, or advice on this? Am I a total idiot for wanting to attempt this?

10
 
 

Tired of streaming services dictating my music discovery, I resurrected an old internet relic to reclaim my listening experience.

11
6
submitted 1 hour ago* (last edited 1 hour ago) by SolarPunker@slrpnk.net to c/games@lemmy.world
 
 

This network related error code randomly appeared today and looks like it can find nearby connection but it doesn't wants to connect. It's fixable?

I've tried factory reset, I can login with the Xbox app and complete the initial setup, then the network stop working after the wizard is completed. I haven't tried ethernet since the router is far from my room but every other device works perfectly with wifi (and also this Xbox until yesterday).

12
 
 

The question is prompted by the age verification app that the EU has just presented.

Some EU countries want to ban social media for young people. If that were to happen, what then?

13
14
 
 

With google following apple's walled garden, and limiting third party app installations, can someone else big (nonprofit like GNU or Linux foundation) fork and maintain android? Reason for choosing someone big is for mass adoption and that google is slowly boiling the pot to see what enshittification it could get away with

15
 
 

She was trying to beat a record, and that's apparently why she did not answer the welfare check-in calls.

Officers entered the home to find the woman playing a "bubble pop" video game and attempting to break her previous record. Body camera footage was released as part of the police activity, but it doesn't show the moment that officers found the woman due to privacy reasons.

16
 
 
17
18
19
 
 

cross-posted from: https://discuss.tchncs.de/post/58572620

there is a site called "fedimap" which displays approximate physical locations for each fediverse instance. super cool if you want to connect to people irl and want to find physically close organizations :)

20
 
 

Spotify and several major record labels, including UMG, Sony, and Warner, secured a $322 million default judgment against the unknown operators of Anna's Archive. The shadow library failed to appear in court and briefly released millions of tracks that were scraped from Spotify via BitTorrent. In addition to the monetary penalty, a permanent injunction required domain registrars and other parties to suspend the site's domain names.

21
23
submitted 8 hours ago* (last edited 8 hours ago) by not_IO@lemmy.blahaj.zone to c/piracy@lemmy.dbzer0.com
22
 
 

Today's game is Halo 2. All my friends have been busy with their fancy shmancy Tomodachi Life 2 that they bought. So i've been left alone. So what better to do when left alone than play Halo 2? I played the first 3 levels, and when i got too the 3rd one i decided too take the Gauss Hog up too the roof and ramp off it too get on the Scarab with it. It ended up taking multiple attempt but i pulled it off. I ended up getting it all the way too that T-Shaped hallway before getting stuck. Leaving Sgt. Stacker behind i went on my own and killed the last Elite that was blocking my way.

If you notice i'm playing at a low resolution, that's because i decided too play at the OG xbox resolution. I even went in and limited the FPS too 30 FPS. I have a old VGA monitor i would have even hooked it up too but currently i don't have a GPU that can do VGA nor do i have an adapter. I do think i want too see if it's possible too get an ancient one on my system though just too use with that monitor for retro games.

I'm gonna keep this short because it's Halo 2 and i've said lots about it before, but it really is a pretty game. It feels like a balance between CE and 3. CE is stellar gameplay, while 3 is all hype epic moments. This strikes a nice balance of both. It does feel as if it loses a bit of CE's "Acid trip" feel, but i think that serves too accentuate CE's vibe more and make it unique. 2 Feels as if it's trying to be an epic movie and i love it for that. It embodies what i think of when i think Xbox.

23
 
 
24
 
 

We open sourced Voiden a few months ago: an offline API tool where API requests live as executable Markdown and are versioned in Git. We wanted to build something that combines the power and flexibility of Obsidian-style files with the simplicity of curl.

The basic idea of Voiden is that instead of being static forms, API requests are composed by using blocks (endpoint, auth, params, body). Blocks that you can add, reuse, override, and stitch together across files (more like functions than requests).

Most of the feedback, requests and contributions that we have gotten since Open Sourcing, have been around defining workflows, chaining requests, scripting them, and structuring everything in reusable .void files.

These are some of the key highlights that I wanted to share:

-- Real scripting, (instead of sandboxes): In most API tools scripting lives in a constrained JS sandbox, an environment that doesn't take advantage of powerful runtimes that might be available locally for a developer. The biggest limitation here is the assumption that the tool should define the runtime. Voiden runs fully locally, so this allows you to just run your scripts with actual runtimes (JS, Python, shell, with support for others being added).

-- Multiple requests per file (mini workflows): Allowing multiple requests in a single .void file turned out to be surprisingly useful. Instead of scattering related requests, you can group them naturally: an order flow (create - pay - confirm), or a full CRUD cycle in one place. The file effectively becomes an executable flow: run one request, or the entire sequence end-to-end. And since Voiden is executable Markdown, docs and tests are in the same .void file that can be organised better, preventing duplication and drift.

-- Stitch (composable workflows across files): Instead of a single large collection, workflows (“Stitch”) are built from .void files that you can combine across scenarios. You define small flows (auth, setup, CRUD, etc.) and stitch them together into larger workflows, without duplication. This is just the first version of this capability, we still have a lot to do here.

-- Agents :The file-based, local-first model also works well with agents. Since Voiden has a built-in terminal and uses Markdown, we added “skills” so that Claude and Codex agents can work directly with .void files (using your own subscriptions).

We also published an SDK for community plugins, and made improvements to performance, reliability, and DX (keyboard-first), with careful attention to performance given the Electron base

Looking for feedback and suggestions.

Github : https://github.com/VoidenHQ/voiden

Download : https://voiden.md/download

Latest Lemmy discussion : https://lemmy.world/post/43922166

25
 
 

Ladies and gentlemen. We got'em!

OG post

view more: next ›