Hacker Newsnew | past | comments | ask | show | jobs | submit | oil7abibi's commentslogin

Do you have any open APIs? I’m working on a portfolio application and would love to offer an integration like this.


It said to have characteristics of a holy grail stimulant: increased performance without the crash or heavy tolerance build.


That’s an odd assertion to make when the full pharmacodynamics and mechanism of action are unknown. Modafinil doesn’t increase your cognitive performance in the way that a substituted phenethylamine would. Focus and attention are certainly related to wakefulness, but wakefulness in and of itself doesn’t increase cognitive performance.


Can you tell me what substituted phenethylamine is?


Substituted phenethylamines[1] are derivative compounds of phenethylamine. Many substituted phenethylamines are stimulants, while some are psychedelic too. Dopamine, epinephrine, amphetamine, pseudoephedrine, MDMA, and many others are considered to be substitued phenethylamines.

[1] https://en.wikipedia.org/wiki/Substituted_phenethylamine


No crash might be the problem with it: you try to go to sleep and end up just kind of laying there half the night.


Modafinil interferes with sleeping less than other drugs - it's only a problem if you rely on the "crash" of running out of energy over the day to fall asleep.


it's heavily dependent on the right genetic makeup from what i know.

for some it provides clarity, for others, fog. the dopamine transporters are very mysterious to me.


Idk, seems like that would be a pretty standard abstraction layer to implement at a large company.


Sorry if this is an naive question. If every large companies are doing it, why aren't there a standard open source abstraction library available?


I used Jclouds [1] a few years back to do this. While it's very powerful, it's also fairly complex (abstracts not just storage but also compute/etc). At the time, I remember wanting a simpler abstraction layer over it, and ended up building my own. Maybe something like that exists now, I'm not sure.

The devil is in the details of how each provider offers vendor-specific things and you want to take advantage of them. For example Reduced-Redundancy storage is iirc an Amazon-specific offering, or if others offer it, it's probably under different SLA terms/measurements. This rapidly breaks many generic abstractions; maybe this is why everyone ends up writing their own little shim layer for their situation.

In some sense it reminds me a bit of building database-connection-pools in the 90's, before they were really standardized everyone rolled their own and learned all the awful lessons about reference counting along the way. Then along came ODBC, then JDBC, and things were so much easier because you only had to deal with one API, and the databases would conform to their side of it. So I think, isn't that what OpenStack (or something?) is supposed to be for cloud services? But whoa, the depth and complexity of these services far exceeds that of a 90's database. It will take a while -- but over time and with patterns of common use well established, a stable base of standard APIs will abstract away most differences, making things so much nicer. I can dream.

[1] https://jclouds.apache.org/


The S3 API signature seems to be the defacto abstraction. Network appliance supports it for their (on premisis) hardware. Minio supports it in their open source object storage software. The API signature seems to support competition via tags[1] and other features. Not feeling a lot of lock-in specific to S3.

[1] https://docs.aws.amazon.com/AmazonS3/latest/dev/object-taggi...


"Sorry if this is an naive question. If every large companies are doing it, why aren't there a standard open source abstraction library available?"

I think Tahoe LAFS is the open source solution for this.

https://tahoe-lafs.org/trac/tahoe-lafs

https://en.wikipedia.org/wiki/Tahoe-LAFS


There are probably 10 already in existence, but they don't meet some exact legal or technical requirements that these companies demand.



Often the reason to open source is to get developer mindshare (tensorflow) or in the hope of gaining traction to compete against existing closed source tech (opencompute).


Yeah I don't know how many companies do it, but it seems like a process that in some form is a good best practice.


The problem there being that small companies get fooled into thinking they need it and spend a bunch of time abstracting away (and complicating!) a service layer they'll likely never change.


Yeah, as if you could whip this up in an afternoon.


I didn't realize that was a requirement for something being standard...


Ah IOTA, the same ‘company’ that created a fake partnership with Microsoft to pump up their cryptocurrency price...


Good to see that's still the only broken argument you can muster up.


A completely new account with all comments defending IOTA. Hmm...


Plenty of cultures attach identities to their societies - Sunni/Shi’a, Hutu/Tutsi, etc. Other cultures don’t focus as much on their “work identity” as you described, but they fill their identities with others.

Source: lived overseas and been to 25+ countries.


All his visualizations are open source.


For future reference, I find the back ticks to decrease readability, at least on iOS.


Agree, I keep forgetting that those don't turn into monospace on HN. Changing that.


So if Tether was FDIC backed, then you’d technically be OK with this situation?


Actually yes, because FDIC backing would mean they've gone through all of the necessary steps to become a real bank. I would have some confidence that they actually have the USD to back up their holdings as they claim. If still turn out to be a scam then at least I'd have something to fall back on, and some people over at the FDIC would have some questions to answer.


Not OP, but I presume the regulations would be important too. Part of being FDIC backed is maintaining a certain amount of currency that is VERIFIED.

Issue here is that there is no one giving confidence that Bitfenix has any currency at all, we have to trust their word.


If Tether was FDIC backed, it'd essentially be a bank with weird procedures for putting money in and getting money out.


No, as I said,

> Tether is sold as a fully-backed instrument, so there's major (potentially billions of dollars of) fraud if it's not fully backed

The fraud issue (not to mention the securities price manipulation issue) is still a big deal.


I’ve ridden some Bird scooters in Santa Monica. They’re amazingly fun. But yes, scooters are left at night, especially on the beach bike path when they finally run out of battery. I can’t imagine Bird not sinking a lot of money into gathering those scooters and charging them every night.


Which gave the biggest performance boost? I’d wager #3. 20 seconds sounds pretty absurd unless you’re being really inefficient on your server or are moving around lots of data.


Definitely #3. That's when I went from an amateurish 1s page generation times to a respectable and professional 50ms or so, just by cutting down on the number of SQL queries from hundreds to a few. This also massively cut down CPU usage.

Using materialized views cut down the 50ms page generation to about 10-15ms, by flattening queries into a flat table so there aren't joins.

Using prepared statements cut down 10-15ms page generation to 5ms. Each Postgres query has an entire setup process that involved about 7ms of overhead, and prepared statements cut all that overhead. You won't notice this overhead when your queries are 50-100ms each, but when your queries are only 10ms, it matters.

Getting rid of Gzip in the page generation by serving cached gzip cut down page generation times down to sub-millisecond range for cache hit fragments.


Consider applying for YC's Winter 2026 batch! Applications are open till Nov 10

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: