Live data from Hacker News

Viewing profile — creese

creese

HN member
Joined
Wed, Sep 04, 2013, 2:56 AM UTC
HN karma
131
Public activity
46 items

About creese

No profile information was provided.

Recent public activity

  1. comment
    Comment #34742937

    This article is a bit disingenuous. Optimism, Arbitrum, and Starknet are all part of the Ethereum ecosystem. Technically, Polygon PoS isn't, but Polygon zkEVM definitely is.

  2. comment
    Comment #34382266

    Try yabai.

  3. comment
    Comment #29734014

    Yes, Org Mode.

  4. comment
    Comment #28761091

    You can also type `about:profiles` in the address bar. This opens a page where you can create profiles and/or launch them in a new window.

  5. comment
    Comment #28519451

    I've been a FF user for years. This week, FF became so unusable under Wayland I had to install Brave.

  6. comment
    Comment #28119368

    They've updated the title. The title now reads: "U.S. Senate Bill Threatening Crypto Industry Moves Forward"

  7. story
  8. comment
    Comment #27926802

    Can the USB4 expansion card transmit data at 40Gbps? Do you have any plans for Thunderbolt 4?

  9. comment
    Comment #27388744

    We used clojure.spec in production for years. "Alpha" just means the API could change.

  10. comment
    Comment #27281194

    I use a bash function: pass () { if [ $# -eq 0 ] || ( [ $# -eq 1 ] && [ $1 = "-c" ] ); then find ~/.password-store -name '\*.gpg' -printf '%P\n' | sed -e 's:.gpg$::gi' | fzf | xarg…

  11. comment
    Comment #27278065

    If you're using HJKL to navigate more than a few lines, you're doing it wrong. Use 'search' instead. https://www.gnu.org/software/emacs/manual/html_node/emacs/In...

  12. comment
    Comment #27196321

    find ~/.password-store -name '*.gpg' -printf '%P\n' | sed -e 's:.gpg$::gi' | fzf | xargs pass -c There is also an extension: https://github.com/ficoos/pass-fzf

  13. comment
    Comment #26796478

    Dvorak is suboptimal for the command-line. Try typing 'ls -l'.

  14. comment
    Comment #26745246

    Make the swap partition equal to 1.5 times your RAM. That's always worked for me.

  15. comment
    Comment #26745157

    I've never had an issue with hibernation. Both suspend to ram and suspend to disk just work.

  16. comment
    Comment #25906385

    There is only one level across Netflix: Senior Software Engineer.

  17. comment
    Comment #25129578

    How would anyone block a crawler? A crawler is just a headless browser.

  18. comment
    Comment #24946008

    Remember you can only have one mutable reference whereas you can have any number of immutable references. The ownership rules incentivize immutability.

  19. comment
    Comment #24945679

    I've found I can get the same tight feedback loop at least for the times where the code will not compile. I use Cargo mode and an after-save hook so that each save runs `cargo chec…

  20. comment
    Comment #24945505

    In Emacs, there is tight integration between the editor and the REPL. You can write code in an Emacs buffer, and you can enter that namespace from the REPL and the code from the bu…

  21. comment
    Comment #24921025

    I switched to Sway recently. I couldn't believe how snappy it is. Some of your issues are solved: CLI clipboard access: wl-clipboard: https://github.com/bugaevc/wl-clipboard App la…

  22. comment
    Comment #19194587

    When combined with Colemak, Vim's default keybindings are particularly bad. On Colemak, HJKL all map to the same finger.

  23. comment
    Comment #19194526

    Try typing "ls -l" on Dvorak. Not fun.

  24. comment
    Comment #14833663

    I tried this for a couple of years but have since returned to iTerm/Bash. When live tailing logs in production, the Emacs renderer is just too slow.

  25. comment
    Comment #9874294

    The following works pretty well. (defvar packages '(pkg1 pkg2 magit)) (require 'package) (add-to-list 'package-archives '("melpa" . " http://melpa.milkbox.net/packages/" ) t) (pack…