Live data from Hacker News

Viewing profile — hafthor

hafthor

HN member
Joined
Thu, Nov 21, 2013, 7:58 PM UTC
HN karma
44
Public activity
14 items

About hafthor

meet.hn/city/us-Atlanta

Socials: - x.com/hafthor - reddit.com/user/hafthor - linkedin.com/in/hafthor - hafthor.at.hn - github.com/hafthor

Interests: Networking, Mobile Development, Open Source, Programming, Technology, Web Development

---

Recent public activity

  1. comment
    Comment #47188257

    What about embedded RTOS, like WindRiver or Zephyr? What if I write a memory manager and flash storage file manager for a really barebones MCU like a PIC? It didn't even define wha…

  2. comment
    Comment #40032426

    hehe. I added an alternative JSON inner format spec to the readme. I need to add JSON and CSV support to the zsvutil itself next. I may actually change the spec to default to JSON.…

  3. comment
    Comment #40032011

    There's two ways to limit the number of column-rows you have to read. One is by file partitioning, that is having many ZSV files rather than one giant one, ideally organized by par…

  4. comment
    Comment #40029415

    Thanks for taking a look.

  5. comment
    Comment #40027874

    There's two ways to limit the number of column-rows you have to read. One is by file partitioning, that is having many ZSV files rather than one giant one, ideally organized by par…

  6. comment
    Comment #40027838

    Thanks for taking a look. Regarding seekable columns, that's the reason why I use the ZIP file format. It has a central directory at the end of the ZIP file that has locations to e…

  7. comment
    Comment #40027709

    I like your idea of storing columns as JSON arrays. I might play around with that. Thanks for giving it a look.

  8. comment
    Comment #40026255

    doh. fixed. thanks!

  9. comment
    Comment #40026121

    yeah, this is a limitation from the TSV format this is based on - there is an extension to the format that supports storing binary blobs - ref: https://github.com/Hafthor/zsvutil?t…

  10. story
    Show HN: ZSV (Zip Separated Values) columnar data format

    A columnar data format built using simple, mature technologies.

  11. story
  12. comment
    Comment #19523091

    Interesting. Safari will let you Cmd+A Cmd+C copy all the page text, but Chrome excludes the text marked as user-select:none.

  13. comment
    Comment #18764150

    Java affected in exactly the same way.

  14. comment
    Comment #18763812

    Java: new java.text.SimpleDateFormat("YYYY-MM-dd").parse("2018-12-30") returns Sun Dec 31 2017 new java.text.SimpleDateFormat("YYYY-MM-dd").format(new java.util.Date("12/30/2018"))…