Live data from Hacker News

Viewing profile — p4l4g4

p4l4g4

HN member
Joined
Wed, Mar 25, 2020, 6:39 AM UTC
HN karma
58
Public activity
37 items

About p4l4g4

No profile information was provided.

Recent public activity

  1. comment
    Comment #36219445

    Great for steganography! We can finally put our passwords on post-its again!

  2. comment
    Comment #36061921

    Having meaningful output is useful, artificial pauzes like this are only for dramatic effect. I rather have a linear, timestamped log, so I can confirm my suspicions, than a progre…

  3. comment
    Comment #35618644

    I like the idea. I guess you could do something with pubsub to simulate this model. A regular http stack (load balancer and reverse proxies in front of some http framework) would p…

  4. comment
    Comment #35305775

    This happens more often than I'd like to admit. More often it's on work chat or a call, but the principle holds: I try to explain my problem to someone else and while deepening the…

  5. comment
    Comment #35127144

    I would say you can get a long way with trying to prevent your own code from emitting interrupts. But how do you stop libraries or the JVM from emmiting them?

  6. comment
    Comment #35127064

    You can't just lock on the file operations, since this problem comes from thread interruptions. No interrupt, no problem. So, instead you need to make file operations and _any_ thr…

  7. comment
    Comment #35125823

    Awesome snippet! I organize most of my work using something similar to the Johnny decimal system[0] and use CDPATH for quicker lookups. But I love how you build a dynamic system wi…

  8. comment
    Comment #35124088

    I work at a database heavy company as an infra engineer. From time to time we get requests from devs or customer success to run a query on all customer databases to see or certain …

  9. comment
    Comment #35019592

    I maintain the cloud infrastructure at my company and I went the other way around: from laptop only to an 3 screens (laptop on a stand + two screens on the side at a 90 degree angl…

  10. comment
    Comment #34715399

    How i love these quirky side project! Do you have a link to a repo? Would like to see his setup!

  11. comment
    Comment #34419104

    A logic bug can be dangerous too though. E.g. Bumping a user ID, to get a "fresh" one or calculate port to open based on offset. When not bounded to a known range, this kind of log…

  12. comment
    Comment #34389303

    That's why we only allow RFC9225 compliant packages on our systems!

  13. comment
    Comment #34073291

    Did a lot of data wrangling this year. The usual grep, sed, awk, jq and even find has sped up my days significantly. Sed is among my favorites to whip up some quick, ad hoc, transf…

  14. comment
    Comment #32058590

    I have the same experience! On the integration side of things, ldap is often easy to configure. Most software just works, when you know your parameters. The server side, however is…

  15. comment
    Comment #31799496

    I think this analog is close to the dynamic vs static debate. However, there are probably more factors to consider, such as competence of the driver (will the driver even care to s…

  16. comment
    Comment #31402950

    I know the feeling. We use ansible extensively in our company. While it is probably the best tool at the moment to get the job done, it is not a pleasant tool for larger/complex se…

  17. comment
    Comment #31114382

    Same here! Tcl/tk is a lovely little language and much under appreciated by many! Interesting software started in tcl, such as redis, expect and sqlite. Still use some tcl through …

  18. comment
    Comment #29360621

    "Optimizing based on a lottery event seems counter-productive" I think it depends on how often you "win" the lottery. If a lottery event happens once or twice a year and it's fairl…

  19. comment
    Comment #29225377

    Took me a while to appreciate rx. I like the conciseness of normal regexes, but rx is so much more readable and maintainable! I love the extensibility options and the fact it's jus…

  20. comment
    Comment #28628756

    Just charged my phone with my laptops Usb-C charger, without any issue. Apart from special features like fast-charge, I'd say compatibility is very good.

  21. comment
    Comment #28598037

    My eye was drawn to the graphs. Especially the house price / income graphs. There seems to be a trend in the US graph: if you zoom in far enough, you can see a consistent drop in J…

  22. comment
    Comment #27247815

    Forgot a crucial parameter in the first xclip call: -t image/png. Without this, your system don't know its png data and will paste the raw data when you hit ctrl-v.

  23. comment
    Comment #27247743

    Nice! Although I'm linux user, I got inspired by the idea. I often combine imagemagick import with xclip to quickly snap parts of the screen to clipboard (import png:- | xclip -sel…

  24. comment
    Comment #26927699

    I used this a lot! Combined with scripting support, you can make the experience even more interactive. Used gdb scripts in the past to make debug sessions repeatable. Stuck beyond …

  25. comment
    Comment #26867164

    This, yes! Not necessarily the copy/paste part, but definitely the debug part! I generally like deeper debug sessions, preferably without too much pressure. Getting deep understand…