Viewing profile — bburky
bburky
HN member- Joined
- Sun, Jan 09, 2011, 5:30 AM UTC
- HN karma
- 89
- Public activity
- 50 items
- HN profile
- View on Hacker News ↗
About bburky
Recent public activity
-
comment
Comment #47171455
Is that the same feature as vlanid= in openwrt's wpa_psk_file? https://openwrt.org/docs/guide-user/network/wifi/basic#wpa_p... I was leaning towards using this configuration for sp…
-
comment
Comment #45689206
Kaitai is pretty nice. Hex editors with structure parsing support used to be more rare than they are now, so I've used https://ide.kaitai.io/ instead a few times. Also, the newest …
-
comment
Comment #32742572
https://xsleaks.dev/docs/attacks/experiments/scroll-to-text-... may be a better description about the security impact, and has more context about this and similar cross site leaks …
-
comment
Comment #30383184
There was a conversation on their mailing list contemplating dropping NSS support. https://curl.se/mail/lib-2022-01/0120.html If you have a use case for NSS in curl, you may want t…
-
comment
Comment #19971809
When I built an ARM based NAS, I chose to use the Banana Pi BPI-R2 because it was one of the very few boards with 2x SATA ports using PCI-E. It worked fine and got good speeds. It'…
-
comment
Comment #17711955
Technically `git push --signed` also exists which could fix the issue of rolling back commits. It would verify that the person doing the push also holds the GPG key at least. But a…
-
comment
Comment #17233361
Or many of the other issues that plague archive formats: duplicate files in the archive at the same path, symlinks in the archive or relative links enabling directory traversal.
-
comment
Comment #14988919
Wow, git's url bugs always seem to become easily exploitable due to .gitmodules. I found CVE-2015-7545 a few years ago, a malicious URL using the ext:: scheme could cause code exec…
-
comment
Comment #13198434
I prefer YoNTMA: https://github.com/iSECPartners/yontma-mac If the laptop is disconnected from AC, it hibernates. It will switch to hibernate if power is removed while already slee…
-
comment
Comment #13148394
This reminds me of the time my party argued about how much modern information theory we were allowed to use in D&D. We wanted to maximize the amount of information to communicate u…
-
comment
Comment #12133992
> The LE HTTP challenge gives no guarantee which A record it will use. That almost changed[0], but the current consensus[1] seems to be that you should be using dns-01 for validati…
-
comment
Comment #11885223
Done.
-
comment
Comment #11884728
If anyone wants these steps fully automated you can use this script: https://gist.github.com/bburky/40317e6375b1262b1a1fc31072acf... Just use it as a User Data file on DigitalOcean…
-
comment
Comment #11214212
Even better: allow using CSS transitions to make moving turrets.
-
comment
Comment #10758354
Nice trick. It looks like this is actually a POSIX shell feature too, so feel free to use this in portable shell scripts even. Here's the rest of the parameter expansion options. I…
-
comment
Comment #10611904
While strace is awesome in general, git has some very useful debug environment variables: GIT_TRACE, GIT_TRACE_PACKET, GIT_CURL_VERBOSE and a few more[1]. Try: GIT_TRACE_PACKET=1 G…
-
comment
Comment #9906416
I have this bookmarked for some reason, it may help: http://stackoverflow.com/questions/3205819/bezier-path-widen... Half the links are dead now. This is the openjdk Stroker.java c…
-
comment
Comment #9676431
Yep, that's mine. Actually, it was you Christian, who was describing the git graphs as train tracks and prompted me to do this. vbarbaresi, you should include the script or whateve…
-
comment
Comment #9444494
Also, curl gained a --next command line option somewhat recently. It lets you send off multiple requests in the same curl invocation. These requests will all be pipelined in the sa…
- comment
-
comment
Comment #9344385
Also, is there any reason Git LFS can't be used as a special remote for git-annex? It would provide an easy way for people to host their git-annex repos entirely on GitHub.
-
comment
Comment #8821356
I want to see someone implement surround sound with head tracking. Some Googling turns up some research projects that have done this with either face tracking or accelerometers. An…
- comment
-
comment
Comment #8338463
Video: https://archive.fosdem.org/2014/schedule/event/servo_buildin...
-
comment
Comment #8012913
Yeah, using definitions on symbols to store key-values is indeed incredibly limiting. Association seems very similar to List: immutable, really good Part syntax for accessing thing…