HackerTrans
TopNewTrendsCommentsPastAskShowJobs

gdgghhhhh

no profile record

Submissions

Fixing a Buffer Overflow in Unix v4 Like It's 1973

sigma-star.at
7 points·by gdgghhhhh·il y a 6 mois·1 comments

The Evolving Landscape of Yocto Project Setup: Bitbake-Setup vs. KAS

sigma-star.at
6 points·by gdgghhhhh·il y a 9 mois·0 comments

Data leak at Sonicwall: All cloud backups of firewalls stolen

heise.de
24 points·by gdgghhhhh·il y a 9 mois·0 comments

Possible GPL Violation by Banana Pi RiscV

github.com
14 points·by gdgghhhhh·il y a 11 mois·2 comments

German Blogger fefe is absent

old.reddit.com
14 points·by gdgghhhhh·l’année dernière·4 comments

EuroBillTracker – Follow your Euro notes

en.eurobilltracker.com
1 points·by gdgghhhhh·l’année dernière·0 comments

A Mess in the Python Community

lwn.net
15 points·by gdgghhhhh·il y a 2 ans·5 comments

Palo Alto Networks execs apologize for 'hostesses' dressed as lamps at Black Hat

theregister.com
2 points·by gdgghhhhh·il y a 2 ans·3 comments

Extensible scheduler class to be merged for 6.11

lwn.net
10 points·by gdgghhhhh·il y a 2 ans·0 comments

Lazy Dog (Bomb)

en.wikipedia.org
17 points·by gdgghhhhh·il y a 2 ans·2 comments

Linux Process Priorities Demystified

sigma-star.at
5 points·by gdgghhhhh·il y a 2 ans·0 comments

Restricting network access using Linux Network Namespaces

sigma-star.at
3 points·by gdgghhhhh·il y a 2 ans·0 comments

Thoughts on Linux CNA's Approach and the Resulting CVE Flood

sigma-star.at
1 points·by gdgghhhhh·il y a 2 ans·0 comments

Pseudo Graceful Process Termination Through Injection

sigma-star.at
1 points·by gdgghhhhh·il y a 2 ans·0 comments

Let's Embed a Go Program into the Linux Kernel

sigma-star.at
4 points·by gdgghhhhh·il y a 2 ans·0 comments

Atomically exchange vfat files in Linux

blog.dowhile0.org
2 points·by gdgghhhhh·il y a 2 ans·0 comments

Exit0 – Terminate any program with exit code 0

github.com
2 points·by gdgghhhhh·il y a 2 ans·0 comments

comments

gdgghhhhh
·le mois dernier·discuss
So, they "decided" it's not a derivative and thus can be listened under MIT instead of GPL....
gdgghhhhh
·il y a 2 mois·discuss
https://nvd.nist.gov/vuln/detail/CVE-2026-21250
gdgghhhhh
·il y a 6 mois·discuss
Oh. I was not aware of that
gdgghhhhh
·il y a 6 mois·discuss
/proc is a Linux thing.
gdgghhhhh
·il y a 11 mois·discuss
It's amazing how many of the "experts" here don't get that bcachefs != btrfs
gdgghhhhh
·il y a 11 mois·discuss
Also consider putting Firefox itself into a jail. E.g. using bubblewrap on Linux: https://gist.github.com/richardweinberger/cae9edeafeec4cdf65...
gdgghhhhh
·il y a 11 mois·discuss
FWIW, the missing source has been released.
gdgghhhhh
·l’année dernière·discuss
In this context, this is worth a read: https://hachyderm.io/@josefbacik/114755106269205960
gdgghhhhh
·l’année dernière·discuss
politely, yes.
gdgghhhhh
·l’année dernière·discuss
I wonder how well it works with heavily nested files. AFAIU, this is a recursive parser.
gdgghhhhh
·l’année dernière·discuss
The title really confused me until I realized this has nothing to do with https://millcomputing.com/ :-)
gdgghhhhh
·l’année dernière·discuss
Speaking of helix, does is support vim key bindings? Last time I tried, it was kinda disappointing to be forced to learn a completely key binding set.
gdgghhhhh
·il y a 2 ans·discuss
I wonder how the code looks, it must be a maze of "on error goto" lines to not crash at the slightest error.
gdgghhhhh
·il y a 2 ans·discuss
The program doesn't look like a typical VB6 application, I guess the author draws all UI elements himself?
gdgghhhhh
·il y a 2 ans·discuss
No Kent, really.
gdgghhhhh
·il y a 2 ans·discuss
I suggest reading the whole mail thread before judging. The CoC decision was the last resort.
gdgghhhhh
·il y a 2 ans·discuss
Don't get me wrong, OSS does not mean it will build in any random configuration on any distro. The source is there. Maybe 7zip could do better, but still...
gdgghhhhh
·il y a 2 ans·discuss
Perf trace is also worth noting. It was much less performance overhead than strace. https://man7.org/linux/man-pages/man1/perf-trace.1.html
gdgghhhhh
·il y a 2 ans·discuss
Since you are writing to the location where rip is pointing to, you need to rewind to the beginning of the page first. Otherwise the program will crash if you're unlucky and rip is currently exactly at the end of an executable mapping. Low chance, but still...
gdgghhhhh
·il y a 2 ans·discuss
One use case I have faced more than once are stuck processes in legacy build systems. For example, generating docs takes ages. Just killing the generator process will fail the build because the parent will notice. And since the build system is buggy/old, restarting the build will start from zero.