Readit News logoReadit News
1996 commented on Gamestonk Terminal – Stock and crypto market terminal   github.com/GamestonkTermi... · Posted by u/sexy_year
xyzelement · 4 years ago
This is both true and false. Out of the box, the Bloomberg terminal comes with data required to make it functional for most professional purposes. If I had my terminal, I can load up a random Taiwanese (or any market) stock right now and see the price, tape history, etc. with no prior setup.

However, if I was a Taiwanese trader or market maker, I'd likely pay Taiwanese exchange fees to get access to richer, real-time data (specifically, non-delayed quotes and more market depth.)

I can get this access in under 5 seconds by opting into the desired exchange privileges under EXC<GO> or most likely just pinging my Bloomberg rep. If I remember correctly, I have to log out and back in for the new permissions to permeate my terminal. The cool thing is that all functions automatically leverage the highest level of subscribed data.

Whether I need to jump through more procurement hoops than that depends on where I work. If I am in a small hedge fund, I can just "do this" and if I am in a big firm, we likely already have this data subscribed for.

One of the many reasons Bloomberg exists and continues to be immensely valuable is that it prevents you from having to mess around with individual exchange permissions and data in a one-off way. And don't get me started on normalizing data across exchanges - the fact that Bloomberg does that for you is worth the price alone.

Source: Former Bloomberg employee, former Bloomberg market data client.

1996 · 4 years ago
> I can get this access in under 5 seconds by opting into the desired exchange privileges under EXC<GO> or most likely just pinging my Bloomberg rep

Because there is a marketplace. If Gamestonk is successful, there will be a marketplace for low latency feed + commercial support to configure them for you.

1996 commented on Gamestonk Terminal – Stock and crypto market terminal   github.com/GamestonkTermi... · Posted by u/sexy_year
random3455699 · 4 years ago
1996 · 4 years ago
Exactly: features will be coming.

It just takes time for free software to match commercial offering at first, but eventually it surpasses them (too many example to list) for 90% of the uses.

If it let me cancel my Bloomberg subscription, why not?

All I want is reddit + twitter firehose sentiment mining, accurate plot of basic (EURUSD, wood futures) and not so basic (VIX) things.

I do not need to keep track of cargo ships on a map.

1996 commented on Ask HN: Do software engineers have leverage?    · Posted by u/5444r1f4tg
dukeyukey · 4 years ago
There's "boring" and there's "content", and OP is probably talking about the latter. Once you have a family it takes over a lot of the energy you could previously use for work, and that's both expected and desirable.
1996 · 4 years ago
> and desirable.

evidence required.

1996 commented on Ask HN: Do software engineers have leverage?    · Posted by u/5444r1f4tg
academonia · 4 years ago
What's wrong with boring, especially if you have a family?

Not everyone is up to writing textbooks and compilers all day.

1996 · 4 years ago
> What's wrong with boring, especially if you have a family?

You are waiting for death. That is the only thing wrong.

1996 commented on Biggest health insurer plans to deny ER bills if it doubts you had an emergency   arstechnica.com/science/2... · Posted by u/peanutbutter_
1996 · 4 years ago
So when threatened to have their source of funding cut (as most people wouldn't be able to pay out of pocket), a union of professionals attacked the moved as dangerous/cost cutting/etc? And they were supported by their employer industry representative associations??

Color me surprised!

1996 commented on Text Classification by Data Compression   maxhalford.github.io/blog... · Posted by u/Lemaxoxo
felixhandte · 4 years ago
Two points worth noting:

1. Gzip is not a suitable compressor for this use case, because it's limited to a 32KB window. So the input can only be correlated with the last 32KB of the reference texts.

2. You can save a great deal in computation by avoiding recompressing the reference texts over and over and over. Some compression algorithms support checkpointing the compression state so that it can be resumed from that point repeatedly ("dictionary-based compression", which is a distinct capability from just streaming compression, which generally can only be continued once).

I would personally shill for using Zstandard [0] instead for this purpose. Although I should disclose my bias: I'm a developer of Zstd. A few salient facts:

1. Zstd supports very large windows (up to 128MB, or up to 2GB in long mode).

2. Zstd is much faster than zlib.

3. Zstd has well-developed support for dictionary-based compression.

4. Additionally, it has a dictionary trainer that can reduce a corpus of reference documents to a compact summary document that aims to capture as much of the content as possible of the reference corpus. [1]

5. It has (more than one) python binding available. [2][3]

[0] https://github.com/facebook/zstd

[1] https://github.com/facebook/zstd/blob/dev/lib/zdict.h#L40

[2] https://pypi.org/project/zstandard

[3] https://pypi.org/project/zstd

1996 · 4 years ago
> Some compression algorithms support checkpointing the compression state so that it can be resumed from that point repeatedly ("dictionary-based compression"

Is it some kind of memoization?

1996 commented on Perl Data Language: Scientific Computing with Perl   pdl.perl.org/... · Posted by u/smartmic
sivoais · 4 years ago
Hi, PDL core dev here. Feel free to ask me anything about it.

The last release wasn't in February, it was just last week! <https://metacpan.org/release/ETJ/PDL-2.050>.

I agree with many of the commenters here that Python has a lot of great libraries and is a major player for scientific computing these days. I also code in Python from time to time, but I prefer the OO modelling and language flexibility features of Perl.

Speaking for myself and not the other PDL devs, I don't think this is an issue for Perl-using scientists as Perl can actually call Python code quite easily using Inline::Python. In the future I will be working on interoperability between the two better specifically for NumPy / Pandas. This is also the path being taken by Julia and R.

1996 · 4 years ago
Very interesting, thank you!

Do you have a tutorial and some examples? If not, could you write one?

I sometimes deploy perl code at large scale for financial computing where only performance matters: with XS the overhead is low while gaining language flexibility.

Even in 2021, this is usually faster than alternatives by orders of magnitude.

PDL could be a good addition to our toolset for specific workloads.

1996 commented on English medical records are about to be given away. As GPs, we’re fighting back   theguardian.com/commentis... · Posted by u/Symbiote
Silhouette · 4 years ago
There are quite a few problems with that in the case of medical records.

Some of this information may be urgently needed at a time when the patient is not capable of giving informed consent for its disclosure or does not have it immediately available.

Some of the information may be vital to the future healthcare of the patient and would cause serious harm to them if it were lost.

And in more of a more morally grey area, some information might be harmful to the patient if they had it. For example, consider the implications of bluntly disclosing various mental health diagnoses to someone who doesn't fully understand what they mean and whose condition means they won't necessarily respond rationally or beneficially to the information.

In this case, having the records kept locally by exactly one organisation that is run by medical professionals who are bound by strong professional ethics seems like a reasonable policy.

1996 · 4 years ago
> There are quite a few problems with that in the case of medical records.

Only if you have a paternalistic view

> Some of this information may be urgently needed at a time when the patient is not capable of giving informed consent for its disclosure or does not have it immediately available.

What if I accept the risk I may die due to bad luck/odd circumstances to still refuse the information being handled out by anyone but me?

> Some of the information may be vital to the future healthcare of the patient and would cause serious harm to them if it were lost.

Likewise, what if I accept future risks? I have more skin in the game from losing my records than an hospital losing them anyway.

> And in more of a more morally grey area, some information might be harmful to the patient if they had it.

Then what about I refuse having the information, in exchange of the information also being unavailable to anyone else?

Many people here seem to have the view "more information is good" but not collecting it in the first place seems better to me.

Hence I do no healthcare in the US, only in SE Asia where most services are available in English and Chinese anyway.

1996 commented on Simone Biles Makes History as First Woman to Ever Land Yurchenko Double Pike   teenvogue.com/story/simon... · Posted by u/Tomte
nikolay · 4 years ago
Well, maybe I won't be more accomplished in your eyes as obviously your value system differs from mine. But I've tried hard in many way to change things for better - not for me, but for others and for the future generations to come. And I have some successes. What is she going to accomplish? Make money and make others follow her lead? And that would be great, right? Well, not for the planet - that's for sure!
1996 · 4 years ago
> What is she going to accomplish? Make money and make others follow her lead? And that would be great, right?

She inspired me and other in her boldness

> Maybe she is. I see no grace in her performance though. Maybe I'm too used watching Soviet Bloc gymnastics. Isn't this artistic gymnastics? I see no artisticism in her performance, just routine - it's like a robot doing it, but failing to land properly

Your lack of interest in pushing the boundaries or rejecting pre established rules (Who said gymnastics should only be about art? Why do you think soviet block country must forever be the model?) strikes me as dull and classicist.

You would be very happy in China mainland, where you have one model to obey and follow, coming from the top down, with no room for inspiration or breaking the mold.

1996 commented on Simone Biles Makes History as First Woman to Ever Land Yurchenko Double Pike   teenvogue.com/story/simon... · Posted by u/Tomte
krapp · 4 years ago
You have a reductionist view of both people and society that I find uninteresting.

Your fixation on "great man" view of history, in which only those who affect society on a grand scale matter, belongs in the last century, as does your reductionist view that societies "progress" along some linear axis of "good" or "bad." Everyone affects society, everyone matters, and society moves in countless directions at once.

Nevertheless.

However unimportant you may consider Simone Biles, the fact still remains that she's accomplished far more than you likely ever have or will. So apply your own rubric and find a bit of humility. She has achieved master status in her art. She has doubtless inspired generations of gymnasts with a lifetime of practice, effort and skill, and made an indelible mark on her field. She's the best in the world at what she does. What have you done, Nikolay?

...that's a rhetorical question, I don't actually care.

1996 · 4 years ago
> However unimportant you may consider Simone Biles, the fact still remains that she's accomplished far more than you likely ever have or will. So apply your own rubric and find a bit of humility

I love your take. It makes me happy to find the rare soul on HN who gets it.

u/1996

KarmaCake day246July 2, 2018
About
I deal with stats, finance, sysadmin and networking. But you will find no email in my profile. No website either. I'm not here to sell or astroturf, but to laugh at what HN has become as a young crypto retiree へ‿(ツ)‿ㄏ

So instead, please find some copy-pasted comic gold, stuff I read here on HN that mirror my thoughts on why HNers (especially in the FAANG) hates Bitcoin : "because we ushered in a paradigm shift that makes them question if they wasted their time/life entirely and we are incredibly vocal about that, not because we want to brag (most times) but because we want you to apply your Human capital and skill set to this movement as we need so much more infrastructure to make it become what we all think it can become as its still possible to be incredibly rewarded for doing so."

"Blockchain is to Millennials what the internet was to Boomers"

"I enjoy reading comments about Bitcoin here because even without any venture backing, it achieved a bigger valuation than all of the Y Combinator companies COMBINED, yet people still think it is unstable and has no future."

"Ethereum has said they're moving from Proof of Work to Stake; I'm not surprised, given the Ethereum developers seem to abhor Work in all of its forms, including making progress on Ethereum itself"

"You say 'I can't do XYZ because I have kids and a mortgage?' - well maybe you should have thought about the long term ramifications of your actions."

View Original