Jesse Li
Jesse Li
I'm currently manually writing a [ton of DOM operations](https://github.com/veggiedefender/hn-friends/blob/c4cfd3d521710cd15f7e2349658c3a1ad9c60469/hn-friends/src/user.js#L37-L63) that are a pain to write and read.
https://news.ycombinator.com/item?id=17717696 Tag should be visible without hovering. Maybe implement a length limit on tags?
Use regex table or trie Flask does them like this: ```python @app.route("/id/") def user_info(user_id): # ... ```
https://github.com/veggiedefender/lhp/blob/6b5e131d7867a263faa28756ed5f7a3b68eae459/src/main.c#L22-L28 if haystack is not null terminated, the `strstr` call in `index_of` will not do the right thing :(
From BitTorrent's [BEP 3](https://www.bittorrent.org/beps/bep_0003.html), we need to calculate a hash of the `info` value (itself a bencoded dict) from a .torrent file: > Note that this is a substring of...
I'm evaluating flareact for a project—looks incredible so far! One feature I'm missing is something like Next's [catch-all routes](https://nextjs.org/docs/routing/dynamic-routes#catch-all-routes). From their docs: > `pages/post/[...slug].js` matches `/post/a`, but also `/post/a/b`, `/post/a/b/c`...
It's annoying to resize/move the game and calibrate the webcam every time. This PR persists those values to localStorage using a hooks-ish API. * Also enables strict typechecking * and...