Live data from Hacker News

Viewing profile — jackalope

jackalope

HN member
Joined
Sun, Jan 01, 2012, 5:41 PM UTC
HN karma
571
Public activity
251 items

About jackalope

No profile information was provided.

Recent public activity

  1. comment
    Comment #8749139

    "mpg123 has no controls..." It does with the -C option: -C, --control Enable terminal control keys. By default use 's' or the space bar to stop/restart (pause, unpause) playback, '…

  2. comment
    Comment #8730860

    Doesn't it seem that configuration is needlessly complex for certificates? I think it would be easier to list the entire chain in one directive: TLSCertificates /path/to/host.crt /…

  3. comment
    Comment #8694810

    I'm guessing your third sentence triggered a penalty. Replace "current captchas" with a blank and you'll see why. I agree that the reCAPTCHA experience is terrible and assume many …

  4. comment
    Comment #8694378

    I always assumed Google's use of reCAPTCHA was to augment the OCR used to digitize Google Books, particularly in results the software couldn't confidently match to a word. Is this …

  5. comment
    Comment #8662418

    "Get a decent editor and don't leave whitespace at the end of lines." Trailing whitespace always raises a huge red flag for me whenever I look at someone's code. It's not just slop…

  6. comment
    Comment #8641622

    I thought the whole point of High-DPI was to was to free us from the need to render graphics pixel-perfect at native resolution. While scaling bitmaps will probably be necessary fo…

  7. comment
    Comment #8635863

    I've just set up 3 different work areas consisting of laptops with external second monitors. I've settled on the configuration having the external monitor above the laptop display …

  8. comment
    Comment #8625252

    I'd still be more comfortable if the process never went anywhere near the private key (and I'm concerned that a proprietary competitor or look-alike would prey on naive users by le…

  9. comment
    Comment #8624855

    My concern is that your reach is too far. Asking domain administrators to trust your software to manipulate private keys (and server configurations) is as troubling as asking end u…

  10. comment
    Comment #8624558

    There is no reason for the CA to ever see the private key. All they need is a CSR. This approach is fundamentally broken.

  11. comment
    Comment #8624499

    I run Apache httpd, and there's no way I'd let a wizard anywhere near my configuration files or private keys, much less run it on a production server. I think it's about time for a…

  12. comment
    Comment #8612491

    I have this to use the arrow keys without any modifier: # Use up/down arrows to search on partially typed command bind '"\e[A"':history-search-backward bind '"\e[B"':history-search…

  13. comment
    Comment #8593404

    I use Slackware and run stock dwm as my window manager. Once I tweak it to my preferences, I never have to think about it again. My configuration is portable to different versions,…

  14. comment
    Comment #8589548

    I think it's fair to say that if your kid comes home with a ChromeBook that you didn't purchase, it's being subsidized somewhere. My local high school just issued them to all fresh…

  15. comment
    Comment #8577502

    When I used to install Cygwin, it was to get (in order of importance): ssh, vim, rsync & X11. Gow doesn't include the last two, so it feels like an apples/oranges comparison (for m…

  16. comment
    Comment #8532188

    There are times I wish I could leave GPS tracking on all the time, with a simple way to add markers either now or later, and with the ability to share the data with any app I want.…

  17. comment
    Comment #8520415

    Mutt has had excellent built-in SMTP/IMAP/POP3 support for years. I'm always surprised to see guides suggesting helpers like msmtp, offlineimap, etc. And with a few macros and save…

  18. comment
    Comment #8518870

    Vim users might consider the dbext plugin: http://vim.sourceforge.net/scripts/script.php?script_id=356 It supports a long list of databases, a variety of common development languag…

  19. comment
    Comment #8506003

    Surprise, that's a software-based feature you could build for just about any phone. That's an interesting comment. Isn't "phone" a software based feature you could build for just a…

  20. comment
    Comment #8488828

    You can do something similar to target *nix platforms like Darwin|FreeBSD|Linux|NetBSD|OpenBSD with: if [ -f ~/config/bashrc_$(uname -s) ]; then source ~/config/bashrc_$(uname -s) …

  21. comment
    Comment #8488770

    I prefer dedicated repositories (I use mercurial) for each app (vim, mutt, etc.) or context (X11) that include Makefiles for creating the necessary links or handling some environme…

  22. comment
    Comment #8473631

    That's ridiculous. There are plenty of ways to lose a private key that doesn't involve or lead to compromise. I generate and store my private keys in my secure CA environment and c…

  23. comment
    Comment #8471102

    Indeed. In fact, that's one of the reasons I switched to Windows Phone 8: It was the closest I could get to the linux+dwm environment where I do most of my computing. Why would any…

  24. comment
    Comment #8458253

    With name-based virtual hosts (those that rely on the server selecting the appropriate resource based on the Host header), typical clients depend on the IP address returned by DNS …

  25. comment
    Comment #8456767

    Or better yet, don't serve any content from the default. I actually return a 403 error for the default host or any request without a Host header.