Viewing profile — creese
creese
HN member- Joined
- Wed, Sep 04, 2013, 2:56 AM UTC
- HN karma
- 131
- Public activity
- 46 items
- HN profile
- View on Hacker News ↗
About creese
No profile information was provided.
Recent public activity
-
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.
-
comment
Comment #34382266
Try yabai.
-
comment
Comment #29734014
Yes, Org Mode.
-
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.
-
comment
Comment #28519451
I've been a FF user for years. This week, FF became so unusable under Wayland I had to install Brave.
-
comment
Comment #28119368
They've updated the title. The title now reads: "U.S. Senate Bill Threatening Crypto Industry Moves Forward"
- story
-
comment
Comment #27926802
Can the USB4 expansion card transmit data at 40Gbps? Do you have any plans for Thunderbolt 4?
-
comment
Comment #27388744
We used clojure.spec in production for years. "Alpha" just means the API could change.
-
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…
-
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...
-
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
-
comment
Comment #26796478
Dvorak is suboptimal for the command-line. Try typing 'ls -l'.
-
comment
Comment #26745246
Make the swap partition equal to 1.5 times your RAM. That's always worked for me.
-
comment
Comment #26745157
I've never had an issue with hibernation. Both suspend to ram and suspend to disk just work.
-
comment
Comment #25906385
There is only one level across Netflix: Senior Software Engineer.
-
comment
Comment #25129578
How would anyone block a crawler? A crawler is just a headless browser.
-
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.
-
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…
-
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…
-
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…
-
comment
Comment #19194587
When combined with Colemak, Vim's default keybindings are particularly bad. On Colemak, HJKL all map to the same finger.
-
comment
Comment #19194526
Try typing "ls -l" on Dvorak. Not fun.
-
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.
-
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…