Live data from Hacker News

Viewing profile — vespakoen

vespakoen

HN member
Joined
Thu, Mar 29, 2012, 11:57 AM UTC
HN karma
113
Public activity
42 items

About vespakoen

No profile information was provided.

Recent public activity

  1. comment
    Comment #25845982

    marcan, who is working on AsahiLinux, is streaming at this time of writing and just got the framebuffer working, this is one of the most interesting live-code-streams I have seen. …

  2. comment
    Comment #24798912

    Thanks for letting me know, looks like I didn't extend the domain and somebody else bought it ;)

  3. comment
    Comment #24796470

    I had an idea some years ago to make this app but based around a community of helping others find their song by humming and finding your own songs, i have a 2 year old react-native…

  4. comment
    Comment #19405182

    I really like the clocks made by Maarten Baas, it's basically a 24 hour long video of a guy "updating the time" every minute. He has made a couple different ones: http://maartenbaa…

  5. comment
    Comment #19405149

    Perhaps this could be used for "curve fitting" [0]? (used in CAM software to optimise CNC toolpaths) [0] https://en.wikipedia.org/wiki/Curve_fitting

  6. comment
    Comment #18944648

    I re-implemented (most of) TPLang (mentioned above) in pure JS , and called it openjscam [1] And am working on open source software for CAM (as a hobby), just 2.5D gcode generators…

  7. comment
    Comment #13801072

    I guess d3 ( https://github.com/d3/d3/blob/master/API.md ) can handle most of these things. Others you can check out: - http://turfjs.org - https://two.js.org - http://paperjs.org …

  8. comment
    Comment #13321692

    I tried to install this on OSX (10.12.1), it doesn't seem to handle tar.xz files well, when extracted using the (default) "Archive Utility", it produces a ".cpgz" file, which, when…

  9. comment
    Comment #12896570

    You probably have already seen this, but I just found this ffmpeg library compiled with emscripten and thought it was pretty cool http://bgrins.github.io/videoconverter.js/demo

  10. comment
    Comment #11668339

    I shouldn't try to be joking on the internet, especially not on HN, anyways, my "eco" comment was meant as a joke, hence the wink.

  11. comment
    Comment #11668120

    Cool, I'll wait it out as it isn't really an issue for me, thanks for helping out though, it's really appreciated!

  12. comment
    Comment #11667654

    That I might have invested 100+ hours tweaking & patching stuff to get linux to run properly on apple hardware. a lot of this time was spent with getting nvidia drivers to work on …

  13. comment
    Comment #11667507

    Typing the commands manually didn't work either, I also tried disabling LID0 (sudo sh -c 'echo LID0 > /proc/acpi/wakeup') No luck with that too, I verified the command working with…

  14. comment
    Comment #11667316

    Webcam works now, thanks for that! I added that script to echo XHC1 to wakeup here: /usr/lib/pm-utils/sleep.d/100macfix without any luck (made it executable) I also removed light-l…

  15. comment
    Comment #11667156

    Cool! will give those a try, lspci -v now gives me: http://hastebin.com/yosicucoku.xml It seems to have loaded bdc_pci by default, will try your suggestions and report back.

  16. comment
    Comment #11667076

    I go to great lengths to be able to run Linux, cannot live without a properly functioning tiling window manager. I don't mind that the webcam support is coming in a (couple of) yea…

  17. comment
    Comment #11667035

    My (6 year old) macbook pro got bricked and I was daring enough to get the new Macbook Pro retina (MacBookPro11,4). Before installing Arch (assuming I needed the latest kernel for …

  18. comment
    Comment #11341646

    The array + join is slower http://jsperf.com/leftpadtesting Repeat + slice is too http://jsperf.com/leftpad

  19. comment
    Comment #11341570

    So this I guess module.exports = function leftpad (str, len, ch) { str = String(str); if (ch === 0) { ch = '0'; } return Array(Math.max(0, len - str.length)).join(ch || ' ') + str;…

  20. comment
  21. comment
    Comment #11341543

    Cool, I like the Math.max. Two liner then str = String(str);\n...

  22. comment
    Comment #11341182

    Ahh you are right, all makes sense now, thanks!

  23. comment
    Comment #11340989

    (bit offtopic) but what about: module.exports = function leftpad (str, len, ch) { return Array(len).join(ch || ' ') + String(str); };

  24. story
  25. comment
    Comment #11327899

    Yeah it's a GPS module, it reports an "angle" and I guess it calculates that by comparing the previous position to the current one. Not very accurate while standing still but works…