HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dsp_person

no profile record

comments

dsp_person
·29 วันที่ผ่านมา·discuss
Also have realized at some point that reviewing the PKGBUILD and code in github repo still doesn't check whether the github release files are compromised.
dsp_person
·2 เดือนที่ผ่านมา·discuss
Thanks that's interesting. The docs are aimed at developers, but I'm curious about the use case for the end user.

So would a user have to do some kind of `gh attestation verify PATH/TO/YOUR/BUILD/ARTIFACT-BINARY ...`? (assuming the plugin dev provides an sbom?)
dsp_person
·2 เดือนที่ผ่านมา·discuss
One thing that bugged me when I made a community plugin was that you have to attach non-git-controlled files to the release (e.g. main.js).

To check if any community plugin is safe, it seems like you'd have to not only review the code on github, but also analyze the github release files to be sure nothing malicious packed in there.

Maybe I'm misunderstanding something about the process, I'd appreciate if anyone could confirm or explain otherwise.
dsp_person
·4 เดือนที่ผ่านมา·discuss
When I was on ubuntu it was easy to uncomment a couple lines in /etc/inputrc for this
dsp_person
·7 เดือนที่ผ่านมา·discuss
In a pinch one way to deal with memory leaks is to wrap the offending work in a multiprocessing pool, forcing it to live in an ephemeral process
dsp_person
·7 เดือนที่ผ่านมา·discuss
I've been thinking about playing with something like this.

I'm curious to what limit you can randomly replace words and reverse it later.

Even with code. Like say take the structure of a big project, but randomly remap words in function names, and to some extent replace business logic with dummy code. Then use cloud LLMs for whatever purpose, and translate back.
dsp_person
·7 เดือนที่ผ่านมา·discuss
I'm on webOS24 with 23.20.68, and CanI.RootMy.TV says it was patched in 23.20.68
dsp_person
·7 เดือนที่ผ่านมา·discuss
it's pretty tempting when it's one of the few ways to watch 4k netflix and the likes
dsp_person
·7 เดือนที่ผ่านมา·discuss
Ya I regret updating mine. The UI both significantly slowed down, and lost the chance to root :(
dsp_person
·7 เดือนที่ผ่านมา·discuss
Can I use something like syncthing to easily backup the recordings and transcripts off my phone?

Google's Recorder app makes this a big PITA if I don't want to enable upload to cloud storage, there is a very tedious manual way to export recordings.

I really just want plain old data and to be able to copy or delete files via the filesystem. And not be required to use some cloud service.
dsp_person
·7 เดือนที่ผ่านมา·discuss
now I wanna try running office 2013 in wine

running a VM just for occasional office use is annoying to deal with

edit: activation is probs the main issue
dsp_person
·7 เดือนที่ผ่านมา·discuss
Cool to see C++ reflection getting somewhere.

> The Docker image includes clang-p2996, Bloomberg’s experimental Clang fork that implements the reflection proposal. As P2996 moves toward standardization, expect this to land in mainline compilers.

Possible to use that C++26 compiler just to do code generation for the binding code, and then use any other compiler for your actual build? I suppose alternatively could use a parser. Is the reflection code easy to work with in comparison? A year or two ago I spent some hours pulling my hair out trying to do some reflection in C++ until I gave up and spent the 20mins needed to write a python script to read my source files and do the code generation I needed.
dsp_person
·7 เดือนที่ผ่านมา·discuss
Wdym, the thing that lists how many speech synthesis voices are available?
dsp_person
·7 เดือนที่ผ่านมา·discuss
I've heard not to take vitamin D right before bed because it will kinda keep you up. Maybe the vitamin D as a stimulant is what's gives you the extra dream awareness.
dsp_person
·7 เดือนที่ผ่านมา·discuss
linux kde plasma wayland with vivaldi
dsp_person
·7 เดือนที่ผ่านมา·discuss
I clicked everything on the page but couldn't figure out how to join a room. Clicking a room card no worky. I can however view song history
dsp_person
·8 เดือนที่ผ่านมา·discuss
It helps that it is built on the same Open Source software that powers the New York Stock Exchange and computers on the International Space Station.

per https://zorin.com/os/
dsp_person
·8 เดือนที่ผ่านมา·discuss
What about file-based catalogs with Iceberg? Found one that puts it in a single json file: https://github.com/boringdata/boring-catalog
dsp_person
·8 เดือนที่ผ่านมา·discuss
It's possible to run a full DE bwrapped.

    bwrap --dev-bind /dev /dev --tmpfs /tmp -- labwc
    bwrap --dev-bind /dev /dev --tmpfs /tmp -- kwin_wayland konsole
    bwrap --dev-bind /dev /dev --tmpfs /tmp -- startplasma-wayland
eglgears_wayland and nvtop show gpu works.

That's obviously super permissive, but from there can take things away to expose as much or little of the host system as needed.

For my system I'm working on making a few bwrapped "zones". E.g. start a terminal that can see a certain subset of files, and can configure whether it should use gpu or not, have internet or not, have access to local network or not, etc. A bit more project/environment focused than bwrapping programs one by one.
dsp_person
·8 เดือนที่ผ่านมา·discuss
Even if it is doing a wavelet transform, I still see that as made of Fourier transforms. Not sure if there's a good way to describe this.

We can make a short-time fourier transform or a wavelet transform in the same way either by:

- filterbank approach integrating signals in time

- take fourier transform of time slices, integrating in frequency

The same machinery just with different filters.