HackerTrans
TopNewTrendsCommentsPastAskShowJobs

gregoryjjb

no profile record

comments

gregoryjjb
·2년 전·discuss
This is a very broad question, but the most straightforward answer is to use a popular full stack framework like Ruby on Rails. It'll give you most of what you need out of the box, and there's 3rd party packages for the rest.
gregoryjjb
·5년 전·discuss
Announcement blog post https://tailwindcss.com/blog/tailwindcss-v3
gregoryjjb
·5년 전·discuss
It did cause some price spiking, but the FOMO caused a much bigger spike and eclipsed the effects of the squeeze. Why do you think they "kicked the can down the road"? Short interest is still around 1%, down from over 100% in January. The hedge funds in question realized huge losses in Q1.
gregoryjjb
·5년 전·discuss
They were mostly closed prior to the huge price spike, the spike was caused by retail buying, probably thinking they were causing a squeeze. You can read the details in the SEC report on the topic (note the massive drop in short interest in Figure 5).

https://www.sec.gov/files/staff-report-equity-options-market...
gregoryjjb
·5년 전·discuss
An SSN is a username, not a password. We need an identity system with real passwords that can be changed in the case of a breach.
gregoryjjb
·5년 전·discuss
await won't block Node from handling other requests but it will block the thread that is awaiting. For example, these will execute one after the other (the "bad way"):

  await slowThingOne();
  await slowThingTwo();
but these execute in parallel, awaiting until both are finished (the "good way"):

  await Promise.all([slowThingOne(), slowThingTwo()]);
gregoryjjb
·5년 전·discuss
You used to be able to with registry hacks, but those hacks don't work anymore.
gregoryjjb
·5년 전·discuss
I recreated this feature ad-free with a Powershell script: https://github.com/gregoryjjb/fake-spotlight