spacemanspiffy

joined 2 years ago
 

Many moons ago I was in a band, and we had a website with our songs stored in Amazon AWS. I recently found that our site was archived on the Way Back Machine. But unfortunately, the audio was in S3 and those URLs don't work.

<Code>NoSuchBucket</Code>
<Message>The specified bucket does not exist</Message>

WBM did not archive these URLs (understandably).

I no longer have any AWS account because Amazon is poopy.

Are these files lost to time, or is there some magic way to retrieve them?

[–] [email protected] 3 points 6 days ago

No, my keyboard doesn't support it, and I don't much like it, anyways. It forces me to slow down slightly and re-read what I wrote.

[–] [email protected] 5 points 6 days ago

Everything on this list is my favorite, basically

[–] [email protected] 1 points 1 week ago

20, no blanket (unless its really cold). I do wad up the blanket between my knees often, though.

[–] [email protected] 5 points 1 week ago

This was a fun game. Recommend if you like the open world Zelda games but want something more relaxed.

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

Single. I don't much like how weather.

[–] [email protected] 1 points 2 weeks ago

Nope, this isn't too bad. The song I am thinking of I believe is from the i0s or 90s.

I may even have those words wrong, too.

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

Tie between that Uncle Kracker song and this one country rock song that I dont know the name or artist of. Starts off with a gut saying "jingle jingaling" or something.

I don't just change the station if these come on. Radio just goes off, no more music that day.

[–] [email protected] 4 points 2 weeks ago

OpenVPN into my router

[–] [email protected] 8 points 3 weeks ago (1 children)

Newegg for most things. Some electronics, I know of smaller online stores and I prefer to order from them.

The only brick and mortar store near me is a Best Buy and that is no good for anyone.

[–] [email protected] 2 points 3 weeks ago

Space Jam website, I am quite sure this was the first thing my dad showed me. That or something else WB related.

[–] [email protected] 1 points 3 weeks ago

Firefox, but I am mildly Zen-curious.

[–] [email protected] 7 points 4 weeks ago (2 children)

Acidic foods effect my belly more. Tons of tomato sauce, for example, and I get some acid reflux.

But spicy? Bring it on.

 

For background, I am a programmer, but have largely ignored everything having to do with AI (re: LLMs) for the past few years.

I just got to wondering, though. Why are these LLMs generating high level programming language code instead skipping the middle man and spitting out raw 1s and 0s for x86 to execute?

Is it that they aren't trained on this sort of thing? Is it for the human code reviewers to be able to make their own edits on top of the AI-generated code? Are there AIs doing this that I'm just not aware of?

I just feel like there might be some level of optimization that could be made by something that understands the code and the machine at this level.

3
Frost* - Evaporator (www.youtube-nocookie.com)
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 

I recently came across this band and can't recommend this enough to prog or prog metal fans. This whole album is gold.

 

I have been using Lollypop on my phone for about 2 years now. I have tried a few other apps but nothing worked quite as well for me as Lollypop.

That said, I still have a lot of gripes with Lollypop. Rather than complain about it, though, I'd rather hear about something new.

The last time I went looking for a new app was in 2023. Is there anything new in 2025 worth checking out?


My wants:

  • Large-ish local library (350gb) and I want it to load/scroll through fast. Lollypop is quite slow here.
  • I really prefer the UI to list artists, open one, then list albums, open one, then list songs. Too many apps list all your albums, or all your individual songs, and I hate this.

Edit: I guess I need to specify, I am looking for Linux-native apps. A few of the suggestions so far have been Android, and I am not seeking to run anything in Waydroid for this.

 

I'm your average American citizen with no contacts to Trump, the Whitehouse, or the Federal Government.

I'm sure the answer is no, but is there any way I could send him a message that he would actually receive?

Ex.

Donnie,

Go choke on broken glass.

From, {My Name}

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

I'm normally pretty ok at naming things in code, but I'm struggling here and would love some new ideas.

I'm building part of a game for the dialog with NPCs. It functions just like Fallout:

  • Player initiates dialog with NPC.
  • NPC says a few sentences.
  • Player gets a list of replies and can pick one.
  • Depending what the player picks, either the conversation will end, or the NPC will say some new stuff and start this over.

Here's the names of objects that I have so far that I'm not exactly in love with. I'd love suggestions on any of these.

  1. Dialog: This is a "container" object. Clicking on an NPC will start the Dialog. This contains many Chats.
  2. Chat: This is the name I dislike most. A Chat contains the text the NPC will say, and a list of ChatReply objects.
  3. ChatReply: This contains the text of the reply (what the player is saying back to the NPC), as well as a pointer to either a new Chat, or to end the Dialog.

Any suggestions?


Update: From the replies, I think I like Dialog / Prompt / Reply.

 

This is admittedly a lazy post where I show that I haven't done much research.

Whenever I start searching around online, I find tons of smaller companies selling ergo keyboards or parts for keyboards, but they are always very pricey and don't match the layout I want. I quickly give up since it can take long to search store-by-store online.

The keyboard of my dreams has:

  1. All (104) the keys. This means arrow keys and as numpad. I like the layout of my current keyboard (below). I guess this is called a "full keyboard"?
  2. Mechanical and with plenty of clackedy clack in the keys.
  3. Corded with USB (I still miss PS/2 :))
  4. Is curved, similar to this one.
  5. Has the "Y" key on the left side of the gap! This is my biggest sticking point. I have realized that I type the "Y" key with my left hand 99% of the time and I don't want to change.
  6. I am also willing to investigate split design keyboards if the "Y" is on the left and a numpad can exist separately which I could put to the right of my mouse. But still I'd prefer that to be attached.
  7. I don't care about RGB or lights or much else. Take it or leave it.

For reference, this is my current keyboard and I actually quite love it. I just wish it was curved.

 

Background: I am working on a Python project where, given a set of input files (text/image/audio), it generates an executable game. The text files are there to describe the rules of the game.

Currently, the program reads and parses the files upon each startup, and builds a Python class that contains these rules, as well as links to image/audio files. This is fine for now, but I don't want the end executable to have to bundle these files and re-parse them each time it gets run.

My question: Is there a way to persist the instance of my class to disk, as it exists in memory? Kind of like a snapshot of the object. Since this is a Python project, my question is specific to Python. But, I'd be curious if this concept exists anywhere else. I've never heard of it.

My aim is not to serialize/de-serialize the class to a text file, but instead load the 1's and 0's that existed before into an instance of a class.

 

Why doesn't this exist?

Take dried beans, roast 'em, grind 'em, and brew some bean juice?

I have no idea if it would taste good or not, but we don't know if we don't try.

Edit: I need to see what dried beans I have and maybe go shopping. I will give this a try with a couple different types of beans and report back if I fart or not.

 

Current setup: We have four beautiful hens. We have a small (https://s3.amazonaws.com/images.ecwid.com/images/17432132/1357042818.jpg) metal container right now in our chicken run. It's set up on a small wooden platform that I built, and it sits on top of a water heater that turns on/off via a timer during the cold months (similar to this but different brand/model https://www.picclickimg.com/40EAAOSwewpmTaBO/Chicken-Water-Heater-Heated-Chicken-Waterer.webp). It works, but it's not a great solution.

Problems:

  • It is maybe 1.5 years old max, and it already starting to rust along the bottom where they drink from.
  • 3 gallons is ok, but we don't have running water out near the chicken run, and so we need to bring this back and forth to the house to fill it up. It's fine in warm months (can fill from the hose), but it sucks in the winter since I need to bring it inside and fill it in the tub in our basement.
  • Even 4-5 inches off the ground, they kick a lot of dirt, feathers, and probably chicken shit in here. I spray it out clean with each re-fill.
  • The heater barely works to thaw out the bottom so they can drink. It works, but often I find I still need to go out with some warm water to break up the ice a bit.

What I'd like:

  • Bigger container
  • Doesn't rust
  • Rain water collection?

I'm open to any suggestions on products or DIY projects to help improve this for our chickens. Below is a picture of our chicken run so y'all can see what I have to work with.

https://imgur.com/a/D0SmkYn

So, cool chicken-havers of Lemmy... Do you have any suggestions on how I can up my game here? Especially any recommendations on how I can do something to collect rainwater for this. Any guides that may have worked well for you. I'm open to any information.

9
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

cross-posted from: https://lemmy.world/post/15144957

Can anyone help me figure out Frigate/go2rtc

I have two cameras in Frigate.

One is a Raspberry Pi 3 running Monocle server, and this stopped working in Frigate some time back (driveway). The second is a Galayou G7 (nursery). The nursery camera is the one I am concerned about with this post.

Problem: Up until a month or two ago (I must have ran an update but I don't know) the audio from the Galayou camera worked in Home Assistant. I'd like to get that working again. Some searching led me to try setting up go2rtc in my config.

Here is my config before making any changes:

mqtt:
  host: 192.168.1.10
cameras:
  nursery:
    ffmpeg:
      inputs:
        - path: rtsp://redacted:[email protected]:554/live/ch1
          roles:
            - detect
    detect:
      width: 1280
      height: 720
  driveway:
    ffmpeg:
      inputs:
        - path: rtsp://192.168.1.240:554/recording/7824851880350319106/replay?trackid=8836591
          roles:
            - detect
    detect:
      width: 1920
      height: 1080

This currently provides only jsmpeg video in Frigate. If I add something like this to the end:

go2rtc:
  streams:
    nursery:
      - rtsp://redacted:[email protected]:554/live/ch1

this adds mse and webrtc as options in Frigate. But, mse plays only video, no audio. And webrtc loads neither audio nor video. I have tried adding lines like - "ffmpeg:nursery#video=h264#audio=aac" and also with opus but to no avail.

Finally, if I ffplay rtsp://redacted:[email protected]:554/live/ch1 it loads audio/video without a problem. I'm also able to connect via ONVIF at onvif://192.168.1.241:8899 from onvif-gui.

So, something is wrong in my Frigate config, and I don't know what. I'm hoping someone here is a little more familiar and can give me a pointer or two here?

Update: Here is the fix, in case anyone comes across this later:

go2rtc:
  streams:
    nursery:
      - "ffmpeg:rtsp://[email protected]:554/live/ch1#video=copy#audio=copy#audio=opus"
  webrtc:
    candidates:
      - <server-ip>:8555

The webrtc section got webrtc to work in the Frigate and video back in HASS. The #audio=copy#audio=opus got audio working in webrtc.

view more: next ›