Live data from Hacker News

Viewing profile — pixelbeat__

pixelbeat__

HN member
Joined
Wed, Feb 01, 2017, 6:41 PM UTC
HN karma
567
Public activity
103 items

About pixelbeat__

https://twitter.com/pixelbeat_

Recent public activity

  1. comment
    Comment #47876077

    A direct link to the Ubuntu post https://discourse.ubuntu.com/t/an-update-on-rust-coreutils/8...

  2. story
  3. comment
    Comment #47044973

    Some of this elegance discussed from a programmatic point of view https://www.pixelbeat.org/docs/utf8_programming.html

  4. comment
    Comment #46368626

    LOL (I used to work for Meta, so appreciate the facetious understatement)

  5. comment
    Comment #45758485

    It seems dotslash would complement uv well https://dotslash-cli.com/docs/ DotSlash to get the interpreter for your platform, and uv to get the dependencies. Perfect for corporate s…

  6. comment
    Comment #45707733

    GRUB is mentioned but not detailed. Here are some details: https://www.pixelbeat.org/docs/disk/

  7. comment
    Comment #45688187

    https://github.com/coreutils/coreutils/commit/14d24f7a5 That bring GNU date(1) line coverage from 79.8% to 87.1%

  8. comment
    Comment #45435121

    I see you use flags to determine if a file needs syncing. When we used fiemap within GNU cp we required FIEMAP_FLAG_SYNC to get robust operation. (We have since removed the fiemap …

  9. comment
    Comment #45344740

    The benchmark is against unibyte text. You would get more accurate results by doing `export LC_ALL=C` in your benchmark script

  10. comment
    Comment #44592400

    Note the terminal -> HTML conversion used to serve wttr.in is based on https://github.com/pixelb/scripts/blob/master/scripts/ansi2h...

  11. comment
    Comment #41285446

    A similar tool for ini files https://www.pixelbeat.org/programs/crudini/

  12. comment
    Comment #41049329

    I wrote about ASCII and UTF-8 elegance at: https://www.pixelbeat.org/docs/utf8_programming.html

  13. comment
  14. comment
    Comment #39856585

    The commit with more details on that perf change is: https://github.com/coreutils/coreutils/commit/fcfba90d0d27a1... A summary of other changes just released in GNU coreutils 9.5 a…

  15. comment
    Comment #38896661

    (Hi Giuseppe!) Right, the standard centos system binaries are used to provision services and manage hardware. The internal services linking against the runtime libs you mention, ar…

  16. comment
    Comment #38896540

    Use ldd on any service binary to see that it's linked against a separate distro. (It's best to use the ldd from the corresponding platform). There are actually three distros on eac…

  17. comment
    Comment #38896170

    It's worth noting that this discusses the centos based provisioning and hardware management platform. The actual distribution used to _run_ all Meta backend services is completely …

  18. comment
    Comment #38831058

    Reminds me of my website from 2006 (not entirely reproduced) at https://web.archive.org/web/20060208131821/http://www.pixelb...

  19. comment
    Comment #38522467

    Definitely not

  20. comment
    Comment #38514305

    All the main platforms have realpath(1). It was added to GNU Linux over 10 years ago now, to aid portability, and be a more natural command to access this functionality than readli…

  21. comment
    Comment #38420194

    Yes, macos takes its utils from FreeBSD. An interesting factoid is that FreeBSD/macos sort(1) was using GNU code until recently, since this is quite tricky to implement. Eventually…

  22. comment
    Comment #38152330

    czkawka is basically a rust port of my python FSlint tool, which I no longer have time to maintain: https://www.pixelbeat.org/fslint/

  23. comment
    Comment #37988377

    Padding is only required if concatenating / streaming encoded data. I.e. when there are padding chars _within_ the encoded stream. Padding chars at the end (of stream / file / stri…

  24. comment
    Comment #37444357

    We generally give credit if at all possible. Even if a patch is extensively adjusted, we'll commit under the original author's name

  25. comment
    Comment #37441140

    I optimized yes because: * The fast version is still simple enough * The general functionality being provided is to output arbitrary data repeatedly, and it can be useful to do thi…