Viewing profile — shariqm
shariqm
HN member- Joined
- Tue, Jan 22, 2013, 8:05 PM UTC
- HN karma
- 78
- Public activity
- 24 items
- HN profile
- View on Hacker News ↗
About shariqm
You can reach me at shariq.mobin@gmail.com
Recent public activity
-
comment
Comment #40923367
if you can't view the video in the link from your location, it's on youtube too: https://www.youtube.com/watch?v=sHKopqVI_cw
-
comment
Comment #36607074
We're building hearing aids that work in noisy places (AudioFocus[1], YC S19). We use novel machine learning and microphone array design to help patients hear better in loud restau…
-
comment
Comment #35754172
Those are pretty cool screen reader add-ons. Do you use JAWS, NVDA, or something else?
-
comment
Comment #28384010
AudioFocus | Oakland, CA | Hardware Design Co-Founder | Full-time AudioFocus (YC S19) makes hearing aids that work in noisy places like bars. We use a combination of an in-house bu…
-
comment
Comment #27133310
Thought this paragraph was particularly interesting: “The notion that any risk assessment instrument can account for bias ignores the racial disparities in current and past policin…
- story
-
comment
Comment #26763262
I agree it's still not going to win the cost-benefit tradeoff in most markets. OTOH - I imagine making your software support more OSs is much more expensive than designing your web…
-
comment
Comment #26763212
Ah yeah it does say that here: https://www.eeoc.gov/laws/guidance/ada-primer-small-business Good to know
-
comment
Comment #26762818
I see some people are feeling conflicted trying to balance 1) Making the web more accessible with 2) Increasing business/startup costs. It's important to remember making websites m…
-
comment
Comment #26701340
Yeah, this isn't the first time: https://dralegal.org/case/national-federation-of-the-blind-o...
-
comment
Comment #26701274
Uber settled a case similar to this in 2016 [1,2] and agreed to "Require that drivers provide equal service to people with disabilities who travel with service animals." Seems like…
-
comment
Comment #25961300
Very cool! I like the idea of a longer period (1-year) to develop your idea, good science takes time.
-
comment
Comment #24585122
A big hurdle for doing this is latency, every time you hop from one device to another you're adding at least ~10ms of latency if it's over anything like bluetooth. There might a cl…
-
comment
Comment #24585096
In this demo there is only one microphone on the phone. But we're working on stereo (2) microphones now. That will help make it more reliable, lower latency, and give you spatial a…
-
comment
Comment #24580862
I agree! We're working on this at AudioFocus (YC S19). You can see an old demo here: https://www.audiofocus.io/demo There are a lot of challenges with putting this in a hearing aid…
-
comment
Comment #23595842
I would definitely call that low power. Our entire brains only use 20 watts of power, compare that to the 85,000 Watts IBM's Watson uses.
-
comment
Comment #23595832
As someone with a PhD in neuroscience I like the sentiment of this post but it’s off the mark in some key ways. From a high level @foone is right, our eyes and visual system are no…
-
comment
Comment #23318922
As someone who was often distracted from grad school research to work on grant applications this is great news. I would caution against making the NSF more like DARPA though. DARPA…
-
comment
Comment #21321382
Yeah, the OTC (over-the-counter) hearing aid act passed in 2017 [1]. It says the FDA has to release reduced regulations for the sale of hearing aids OTC by August 2020. There will …
-
comment
Comment #21321357
The most common type of hearing loss is age related hearing loss. This type of hearing loss makes it difficult to hear high frequencies. The main thing a hearing aid does is compen…
-
comment
Comment #21321239
There's plenty of hearing aid apps on iOS and Android. They haven't really taken off because of the delay introduced by the mobile OS and the wireless transmission (> 10ms) causing…
-
comment
Comment #5099676
Sorry, I'm not following. If you have 2 rows storing how much money you have in 1 account then your data isn't normalized and serializability isn't going to solve your problem, if …
-
comment
Comment #5099615
"MVCC can't stop two competing transactions debiting the same account pair (i.e., I have two linked accounts A & B with $100 in each and I launch two simultaneous transactions to t…
-
comment
Comment #5099487
Clustrix says it provides repeatable-read because it complies with the ANSI spec. In truth we actually provide something closer to snapshot-isolation by default. Snapshot isolation…