HackerTrans
TopNewTrendsCommentsPastAskShowJobs

presz

no profile record

comments

presz
·3 माह पहले·discuss
We really need to get more designers interested in Scheme, because that logo is awful
presz
·3 माह पहले·discuss
I'm Satoshi Nakamoto. AMA.
presz
·3 माह पहले·discuss
Didn't he molest his sister?
presz
·5 माह पहले·discuss
This blog reads like it was written by ChatGPT.
presz
·5 माह पहले·discuss
We all yearn for the BlackBerry. I wish we got a modern one with support for the popular messaging apps (WhatsApp, Slack, etc). I know there are some smartphones out there with physical keyboards that run Android, but they feel more like a prototype than a full product.
presz
·5 माह पहले·discuss
You can't call it Ivy! That's an emacs package!
presz
·7 माह पहले·discuss
This is the same problem with cheating on tests and homework. By making getting a higher education degree mandatory for entry level jobs to be able to afford a normal life, people are incentiviced to get the degree, not the education. By tackling this particular case of students with fake disabilities, the universities will hurt people with real disabilities. Same thing with anti cheating measures that affect people that don't cheat. The root case of all this is making degrees mandatory on our society.
presz
·12 माह पहले·discuss
In TypeScript you can enable this by using BrandedTypes like this:

  type UserId = string & { readonly __tag: unique symbol };

In Python you can use `NewType` from the typing module:

  from typing import NewType
  from uuid import UUID

  UserId = NewType("UserId", UUID)