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

thatspartan

22 カルマ登録 10 年前

投稿

QAT: Speeding SSL with Nginx [video]

youtube.com
2 ポイント·投稿者 thatspartan·3 年前·0 コメント

Learn Like a Pro: Science-Based Tools to Become Better at Anything

barbaraoakley.com
1 ポイント·投稿者 thatspartan·5 年前·0 コメント

コメント

thatspartan
·7 日前·議論
TIL that the Star Trek Stamets character is based on a real world Paul Stamets working on actual Mycelium. Wow
thatspartan
·14 日前·議論
I think they're referring to "then" vs "than"
thatspartan
·12 か月前·議論
Ahh, half-timbered houses, parties and pirate hunting. It was a nice day when GoG put it up as one of their good old games.
thatspartan
·昨年·議論
Speaking of laptop batteries as a UPS source, some laptops come with battery management features that keep the battery healthy even when plugged in full time, usually exposed as a setting in the BIOS/UEFI. I've found that business/enterprise type laptops like Thinkpads and Probooks have this as standard, for example Thinkpads from 2010 already had this, assuming you're lucky enough to find one with a usable battery of course.
thatspartan
·昨年·議論
Congratulations on launching William. There's quite a bit of criticism here that'll help you refine your app I think. I'm working on a something similar and already learning from the discussion here around user experience and privacy. All the best.
thatspartan
·昨年·議論
Thanks for landing the mtmd functionality in the server. Like the other commenter I kept poring over commits in anticipation.
thatspartan
·5 年前·議論
As I read this, Greenspun's tenth rule of programming humorously came to mind: "Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp."

Generalized by replacing "C or Fortran" with a language where the user wants more power over it's syntax and semantics, to witness the author pull it off in just 44 lines of JavaScript was a joy.
thatspartan
·5 年前·議論
You make fair points in that micro services are not a silver bullet, the functional wins I perceive aren't automatic and I intentionally build a service in that way to get the functional benefits.

So yes there is a caveat, if a service doesn't return the same output for the same input then some benefits of the approach are lost. I would like to add an additional benefit for teams of programmers, in that each team gets the ability to build out a service using whichever technology they find suitable i.e language, frameworks etc. Something I personally find difficult to do with a monolith.
thatspartan
·5 年前·議論
TLDR: Micro services offer a REPL like experience for application architecture. The way I see it, micro-services are the architectural analogues of functional programming. They let me build pieces of an application similar to a function, including tests and debugging in isolation without the fear of unintentionally messing up data somewhere. This similarity to functions even extends to how micro services are used, calling their API's with keyword arguments e.g get post name id json etc