HackerTrans
トップ新着トレンドコメント過去質問紹介求人

TrustPatches

no profile record

投稿

Filling in the Gaps: HTTPS/TLS Certificates

blog.bityard.net
1 ポイント·投稿者 TrustPatches·3 年前·0 コメント

コメント

TrustPatches
·7 か月前·議論
A lot, but my favorites of the year:

- Children of Time

- Hyperion & The Fall of Hyperion

- Red Dragon & Silence of the Lambs

- Cat's Cradle

- The Book of the New Sun
TrustPatches
·2 年前·議論
Started playing fantasy football last year. Vastly improved my enjoyment of football, find myself following players and teams I wouldn’t care about before. I use my fantasy app for scores, news, etc.

I watch RedZone, and created a multireddit for nfl, teams, fantasy, etc. for the rest + YouTube for highlights
TrustPatches
·2 年前·議論
Gossip Glomers might be fun if you’re looking for some hands-on exercises :)

https://fly.io/dist-sys/
TrustPatches
·3 年前·議論
Almost done with Beej's Guide to Networking Concepts[1] and absolutely loving it, following along in Go. Gotta check this out and his other guides afterwards

[1]: https://beej.us/guide/bgnet0/html/split/index.html
TrustPatches
·3 年前·議論
One problem I’ve experienced doing something like this is you end up with both exceptions and error values since the standard library and 3rd party libraries are still primarily exception based. You either have to live with it or create wrappers that catch errors and return them as values.
TrustPatches
·3 年前·議論
I always thought it would be cool to build an entire toy “stack”. Maybe start with a language, DB, and web server. You could start out simple, for example building a language that transpiles to JS, and overtime replace parts with lower level implementations
TrustPatches
·3 年前·議論
CSE 374, good times :)
TrustPatches
·3 年前·議論
+1, being able to write tests that access private fields and functions means you never need to expose behavior or data purely for testability
TrustPatches
·3 年前·議論
I’ve always felt that strings are a little abused, we say “string” when we actually mean 100 different things.
TrustPatches
·4 年前·議論
I got it to solve day 1 while playing with it yesterday, not shocked at all that this happened. Wonder if they'll try to prevent this somehow to preserve the competitive nature of AoC...
TrustPatches
·4 年前·議論
Very cool, I guess one the the advantages of rust macros is that you could write your own to do something more advanced in theory
TrustPatches
·4 年前·議論
Not sure if it’s an exact parallel, but you can also embed files into rust binaries with “include_bytes!” and “include_str!”.
TrustPatches
·4 年前·議論
Really liked this post. One of the hardest things for me as a junior engineer is navigating complicated codebases and understanding them enough to make the change I want. This gives useful insight on how one might approach a similar problem.
TrustPatches
·4 年前·議論
What about the web? The browser isn’t a perfect sandbox and certainly limits capabilities but many apps these days could be (and are) served via the browser
TrustPatches
·4 年前·議論
Halfway through crafting interpreters and I couldn’t recommend it enough, the entire book is free on the website, and contains every line of code you need to create your own programming language. Very practical, with just the right amount of theory.

Even if you don’t care about language design, it’s a great way to get you to think about the tools we use everyday, how they get made, and why their limitations exist.
TrustPatches
·4 年前·議論
Same, I’ve found it incredibly productive for scaffolding web apps, also helps when I’m less familiar with a language or framework.
TrustPatches
·4 年前·議論
Love it, procedural world generation is a ton of fun