ch00f

joined 2 years ago
[–] [email protected] 1 points 1 hour ago

Peeing in your helmet. Smart.

[–] [email protected] 5 points 3 hours ago (1 children)

For us it was strips of paper rolled up super tight and bent across a rubber band. We called them wasps and a well-aimed wasp could give you a sizeable welt.

[–] [email protected] 3 points 4 hours ago

My favorite part of this game is that the developers had to write special code so that Mickey's ears are always facing the camera as is canon in Disney animations.

My wife is playing through Dreamlight Valley and they used a static model and it's depressing.

[–] [email protected] 8 points 5 hours ago (3 children)

With some pens, you can jam the spring between the button and the silver thing on the bottom right and the white thing next to it. Then jam it into the top of the pen with the ink stick until it sticks.

Then press the button on the top of the pen and the white thing shoots across the room.

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

Rsync will compare the contents of the source directory with the target directory. If it finds a match, it won't copy the files, if there's no match, it copies.

If your goal is to have 1:1 copies, you can use the --delete flag to remove extraneous files in the target directory that aren't in the source directory.

If you use the -a flag, it'll maintain all of your permissions.

You can literally rsync a linux installation from one machine to another. While the source machine is running. Pretty nuts.

[–] [email protected] 3 points 17 hours ago (1 children)

But the j-“ism” creates us. It’s a cycle.

[–] [email protected] 6 points 17 hours ago (1 children)

Nah, I think he'd go full Lawnmower Man.

[–] [email protected] 45 points 17 hours ago (3 children)

My personal rule is female adjective is okay, female noun is not.

[–] [email protected] 15 points 19 hours ago (1 children)

I'm guessing it's a kitchen implement for stripping fat from some cut of meat or something.

[–] [email protected] 3 points 20 hours ago (5 children)

I got an external ORICO USB hard drive dock and two 3.5" hard drive cases (also by Orico). Every month or so, I plug them in and rsync files over. I'm lucky that one specific folder is about the size of one drive, so I just manually split them. There's probably a better way to do that if you don't have an obvious split.

Then the 3.5" drives in their colorful cases go into a fireproof safe in the basement. I also added another pair for semiannual backups that go to my inlaws.

[–] [email protected] 12 points 20 hours ago

a loan for a used car sounds wild to me.

Predatory car loans has entered the chat.

I don't know about Carvana, but plenty of scummy dealers will give insane rates to people with no credit check, repo the car while they're still underwater on the loan, and sell it to someone else. You can have two or three people paying off the same car.

Oh, also, they somehow encourage the most gullible people who can't afford their loans to just let the car get reposessed instead of attempting to sell it back to the dealer.

[–] [email protected] 29 points 20 hours ago (1 children)

I bet this person would struggle to put into words what exactly it is he wants to have coming.

 

Just noticed this a week or so ago. When I try to scroll the feed on lemmy.world, my page will halt and go even though I'm scrolling consistently on my trackpad. No other website has this problem to my knowledge.

Info: Framework 13 AMD laptop 32 gigs memory Firefox 136.0.1 64-bit

Any ideas? It's really irritating.

 

You always hear about gun sales in the US, but you never hear about what happens to the guns at the end of their lifecycle. I assume guns wear out eventually, and I assume you can't just chuck them in the garbage when they do. What happens to them?

6
submitted 1 month ago* (last edited 3 weeks ago) by [email protected] to c/[email protected]
 

I'm working on trying to streamline the process of ripping my blu-ray collection. The biggest bottlneck in this process has always been dealing with subtitles and converting from image-based PGS to textbased SRT. I usually use SubtitleEdit which does okay with occasional mistakes. My understanding is that it combines Tesseract with a decent library to correct errors.

I'm trying to find something that works in the command line and found pgs-to-srt. It also uses Tesseract, but it appears without the library, the results are...not good:

Here's the first two minutes of Love, Actually:

00:01:13,991 --> 00:01:16,368
DAVID: Whenever | get gloomy
with the state of the world,

2
00:01:16,451 --> 00:01:19,830
| think about
the arrivals gate
alt [Heathrow airport.

3
00:01:20,38 --> 00:01:21,415
General opinion
Started {to make oul

This is just OCR of plain text on a transparent background. How is it this bad? This is using the Tesseract "best" training data.

Edit: I’ve been playing around with ocr-to-pgs which also uses tesseract and discovered that subtitles having black outlines really messes with it. I made some improvements.

https://github.com/wydengyre/pgs-to-srt/pull/348

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

Upgrading a server for the first time in 10 years, so I’m a little out of the loop. I was surprised to find that the RAM I bought didn’t fit.

This is my first time dabbling in ECC RAM, so I figured there was some minor detail I missed when purchasing, but I eventually came across the data sheet for this stick, and the dimensions given don’t match the measurements I’m making. The tip of the caliper should be in the middle of the notch at 68.1mm.

What’s more is that the dimensions in the data sheet seem to match the dimensions on my motherboard. What’s going on here?

[SOLVED] I and Kingston are morons. I ordered RDIMM instead of UDIMM. The Kingston datasheet gives the wrong dimensions.

 

I hate the cloud.

 

This requires either multiple trips or a quick view theough your gadget into the new future.

 

Since 2016, I've had a fileserver mostly just for backups. System is on 1 drive, RAID6 for files, and semi-annual cold backup.

I was playing with Photoprism, and their docs say "we recommend placing the storage folder on a local SSD drive for best performance." In this case, the storage folder holds basically everything but the pictures themselves such as the database files.

Up until now, if I lost any database files, it was just a matter of rebuilding them by re-indexing my photos or whatever, but I'm looking for something more robust since I'll have some friends/family using Pixelfed, Matrix, etc.

So my question is: Is it a valid strategy to keep database files on the SSD with some kind of nightly backup to RAID, or should I just store the whole lot on the RAID from the get go? Or does it even matter if all of these databases can fit in RAM anyway?

edit: I'm just now learning of ZFS caching which might be my answer.

 

I’m working on driving a very finicky lcd. I have it working now with an FPGA dev kit. I had to use an FPGA because some of the timing requirements are in the tens of nanoseconds.

At the end of the day, I wrote a block for a one shot/continuous clock with a programmable duty cycle and initial delay. This block was repeated six times for the various clocks with their specific values.

Moving to the final product, this feels like overkill. In the past, I’ve managed to make this kind of thing work with a Rube Goldberg collection of on-board timer/counters on the microcontroller.

I’d like to avoid that mess this time around. If I can generate the clocks externally, I can have the host MCU send the data quickly using DMA.

An FPGA works great, but they’re expensive and there’s the issue of licensing for FPGA and and CPLD software.

I’ve seen this problem solved with a lookup table, but there aren’t a lot of cheap/small rom/ram options for what I’m trying to do.

Basically, what I’m asking is is there a component that can be easily programmed to generate a number of clocks, doesn’t need any costly software licensing, and comes in a very small package? (Like wlcsp)

 

Just finished 12 Minutes and Indika with my wife. Enjoyed the tight 5-ish hour gameplay with decent not-too-challenging puzzles and great story.

Basically 5-hour date night that’s more engaging than a movie.

Any other games that you can recommend in this category?

 

Given the amount of pull individual influencers have managed to amass over the last decade, it looks like the original 1985 prediction aged better than this 2009 rebuttal.

 

Back in my day, you could usually sip a few mA from a USB2 port without any trouble.

When I try that now, Windows pops up with a “device not recognized” error. I know you can draw up to 150mA before enumeration, but it looks like after some time, Windows will complain that you haven’t enumerated yet.

Is there an easy way to keep from getting this error without having to actually make the device smart?

I’m hoping for something dumb along the lines of USB-PD but facing the other direction. For the record, it has to work on a USB-A port, so USB-C hacks won’t work.

view more: next ›