Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
bburky
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
bburky
7mo ago
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 splitting devices in
2.
▲
by
bburky
11mo ago
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 Kaitai release added (long awaited) se
3.
▲
by
bburky
4y ago
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 possible with browsers.
4.
▲
by
bburky
5y ago
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 to speak up. Perhaps "I want
5.
▲
by
bburky
7y ago
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's difficult to run a current kernel on the BPI-R2 thoug
6.
▲
by
bburky
8y ago
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 as far as I can tell you have to manually do something with i
7.
▲
by
bburky
8y ago
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.
8.
▲
by
bburky
9y ago
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 execution. It was only easily exploitable because you can a
9.
▲
by
bburky
10y ago
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 sleeping. If I want to force a hibernate m
10.
▲
by
bburky
10y ago
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 using Sending which states that it sends "twenty-fiv
11.
▲
by
bburky
10y ago
> 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 validation behind a load balancer instead. [0] https://
12.
▲
by
bburky
10y ago
Done.
13.
▲
by
bburky
10y ago
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 or elsewhere. Edit: After doing this,
14.
▲
by
bburky
11y ago
Even better: allow using CSS transitions to make moving turrets.
15.
▲
by
bburky
11y ago
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 usually only remember half of them. http://
16.
▲
by
bburky
11y ago
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 GIT_TRACE=1 git push [1] https://git-scm.
17.
▲
by
bburky
11y ago
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 code: http://grepcode.c
18.
▲
by
bburky
11y ago
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 whatever method you used to generate the metro. I noticed you
19.
▲
by
bburky
11y ago
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 same HTTP connection, which might trigger slightly different b
20.
▲
by
bburky
11y ago
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.
21.
▲
by
bburky
12y ago
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. And at least one (expensive) commercial product. I wonder if s
22.
▲
by
bburky
12y ago
Video: https://archive.fosdem.org/2014/schedule/event/servo_buildin...
23.
▲
by
bburky
12y ago
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 things in deeper levels, etc. I've started to read some of t
24.
▲
by
bburky
12y ago
More specifically, the the previous hash-table-like method is just assigning constants as values for a function. In[1]:= mymap["abc"]=1; mymap[2]=2; mpmap[hello]=3; DownValues[mymap] O
25.
▲
by
bburky
12y ago
$ find /Applications/Android\ Studio.app/sdk/docs/images -type f | sed 's_/Applications/Android\ Studio.app/sdk/docs/images_http://developer.android.com/images_&#x
26.
▲
by
bburky
12y ago
You could just display the coordinates that are currently under the mouse. Adding two changing numbers to the statusbar is fairly minimalist.
27.
▲
by
bburky
13y ago
But aren't the unexpected difficulties half the fun? Yes. I expect many programs would have trouble, but you probably wouldn't have too much trouble making it work for typical non-interactive command line programs. But the possibi
28.
▲
by
bburky
13y ago
It would be very interesting to implement something like this atop FUSE[0]. For free you get the ability for the player to use any existing command line tool you want. You could easily make strange and artificial directory structures. And y
29.
▲
by
bburky
13y ago
Looks like you're setting the <iframe>'s contents with a data uri in the src attribute, you save some characters if you use the HTML5 srcdoc attribute: <x id=e><script>for(i=4;i--;)e.innerHTML+=(i?'<
30.
▲
by
bburky
13y ago
On a Mac set it in System Preferences > Network > Advanced... > Proxies > SOCKS Proxy. Many Mac programs will automatically pick it up.
More ›