HackerTrans
TopNewTrendsCommentsPastAskShowJobs

TrustPatches

no profile record

Submissions

Filling in the Gaps: HTTPS/TLS Certificates

blog.bityard.net
1 points·by TrustPatches·3 năm trước·0 comments

comments

TrustPatches
·7 tháng trước·discuss
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 năm trước·discuss
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 năm trước·discuss
Gossip Glomers might be fun if you’re looking for some hands-on exercises :)

https://fly.io/dist-sys/
TrustPatches
·3 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
CSE 374, good times :)
TrustPatches
·3 năm trước·discuss
+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 năm trước·discuss
I’ve always felt that strings are a little abused, we say “string” when we actually mean 100 different things.
TrustPatches
·4 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
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 năm trước·discuss
Love it, procedural world generation is a ton of fun