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·6 months ago·1 comments

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

sigma-star.at
6 points·by gdgghhhhh·9 months ago·0 comments

Data leak at Sonicwall: All cloud backups of firewalls stolen

heise.de
24 points·by gdgghhhhh·9 months ago·0 comments

Possible GPL Violation by Banana Pi RiscV

github.com
14 points·by gdgghhhhh·11 months ago·2 comments

German Blogger fefe is absent

old.reddit.com
14 points·by gdgghhhhh·last year·4 comments

EuroBillTracker – Follow your Euro notes

en.eurobilltracker.com
1 points·by gdgghhhhh·last year·0 comments

A Mess in the Python Community

lwn.net
15 points·by gdgghhhhh·2 years ago·5 comments

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

theregister.com
2 points·by gdgghhhhh·2 years ago·3 comments

Extensible scheduler class to be merged for 6.11

lwn.net
10 points·by gdgghhhhh·2 years ago·0 comments

Lazy Dog (Bomb)

en.wikipedia.org
17 points·by gdgghhhhh·2 years ago·2 comments

Linux Process Priorities Demystified

sigma-star.at
5 points·by gdgghhhhh·2 years ago·0 comments

Restricting network access using Linux Network Namespaces

sigma-star.at
3 points·by gdgghhhhh·2 years ago·0 comments

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

sigma-star.at
1 points·by gdgghhhhh·2 years ago·0 comments

Pseudo Graceful Process Termination Through Injection

sigma-star.at
1 points·by gdgghhhhh·2 years ago·0 comments

Let's Embed a Go Program into the Linux Kernel

sigma-star.at
4 points·by gdgghhhhh·2 years ago·0 comments

Atomically exchange vfat files in Linux

blog.dowhile0.org
2 points·by gdgghhhhh·2 years ago·0 comments

Exit0 – Terminate any program with exit code 0

github.com
2 points·by gdgghhhhh·2 years ago·0 comments

comments

gdgghhhhh
·last month·discuss
So, they "decided" it's not a derivative and thus can be listened under MIT instead of GPL....
gdgghhhhh
·2 months ago·discuss
https://nvd.nist.gov/vuln/detail/CVE-2026-21250
gdgghhhhh
·6 months ago·discuss
Oh. I was not aware of that
gdgghhhhh
·6 months ago·discuss
/proc is a Linux thing.
gdgghhhhh
·11 months ago·discuss
It's amazing how many of the "experts" here don't get that bcachefs != btrfs
gdgghhhhh
·11 months ago·discuss
Also consider putting Firefox itself into a jail. E.g. using bubblewrap on Linux: https://gist.github.com/richardweinberger/cae9edeafeec4cdf65...
gdgghhhhh
·11 months ago·discuss
FWIW, the missing source has been released.
gdgghhhhh
·last year·discuss
In this context, this is worth a read: https://hachyderm.io/@josefbacik/114755106269205960
gdgghhhhh
·last year·discuss
politely, yes.
gdgghhhhh
·last year·discuss
I wonder how well it works with heavily nested files. AFAIU, this is a recursive parser.
gdgghhhhh
·last year·discuss
The title really confused me until I realized this has nothing to do with https://millcomputing.com/ :-)
gdgghhhhh
·last year·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
·2 years ago·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
·2 years ago·discuss
The program doesn't look like a typical VB6 application, I guess the author draws all UI elements himself?
gdgghhhhh
·2 years ago·discuss
No Kent, really.
gdgghhhhh
·2 years ago·discuss
I suggest reading the whole mail thread before judging. The CoC decision was the last resort.
gdgghhhhh
·2 years ago·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
·2 years ago·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
·2 years ago·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
·2 years ago·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.