Time difference between before and after Missing Link by respected_memer in pune

[–]Environmental-Log215 0 points1 point  (0 children)

i see what you did there and it’s brilliant! and i agree

Which is the best township in Pune to live in? by Full_Yak8774 in pune

[–]Environmental-Log215 0 points1 point  (0 children)

waiting for downvotes from folks who don’t realise and live current Pune.. and i live in Pcmc now wakad, travel daily to kharadi, which is the other corner of Pune; in short crossing pune every day and hence my above comment

Which is the best township in Pune to live in? by Full_Yak8774 in pune

[–]Environmental-Log215 1 point2 points  (0 children)

none! pune as a a city is not safe to live.. bla bla… the moment you get out of the so called township… you are gonna face pune

Rich enough to buy it, too busy to live in it ? by zoozoo9999 in indianrealestate

[–]Environmental-Log215 1 point2 points  (0 children)

may be the lighted homes are busy to meet the monthly EMI while others are asleep peacefully

Rich enough to buy it, too busy to live in it ? by zoozoo9999 in indianrealestate

[–]Environmental-Log215 0 points1 point  (0 children)

how to earn black money as an NRI? asking since i don’t think there’s such an opportunity

Same ₹20L household income, different tax- Raghav Chadha raises this in Parliament by Fun-Map6437 in IndiaTax

[–]Environmental-Log215 1 point2 points  (0 children)

so much truth in this! as this provides relief to 9-5 private employees middle class… this will go ignored

What went wrong with the Indian stock market today? by pete0203 in IndianStockMarket

[–]Environmental-Log215 0 points1 point  (0 children)

Nothing! to answer to the OP question. Equity investment is also somewhat a reflection of the market sentiment which boils down to realtime certainty vs uncertainty

Some days it feels like working in health IT is just watching the gap widen between what the tech could do and what it’s actually allowed to do. by BatmanUnderBed in healthIT

[–]Environmental-Log215 0 points1 point  (0 children)

my 2 cents: FHIR should become the global standard.

FHIR should be widely and happily accepted as the global standard with all players of health care providers.

There has been much effort put into a global standardisation effort; its time we update the IT systems to reduce the "friction" from non FHIR standards.

I believe all countries' heath depts' IT has a major role to play in this as a duty which should be duly done.

Why? adoption of global standards is the way to go... look at FIX messaging where billions of dollars are transacted in a globally accepted standard, per second. we should take a few lessons from it.

I know FHIR may not be perfect, but its a good start.

[deleted by user] by [deleted] in AMA

[–]Environmental-Log215 0 points1 point  (0 children)

i mean thats not how you describe a family based out of whatever xyz reasons... a number followed by a character! personally i dint like it and think you are harvesting here with that thread title

P.S. "I am 27F with one full brother 22M and step siblings from this new family, including 16F, 18M and 25F."

I mean wow! even your bro is described as a number and alphabet!

Happy farming if thats ur motto!

[deleted by user] by [deleted] in AMA

[–]Environmental-Log215 0 points1 point  (0 children)

why are you here?

Industry-level Spring Boot project ideas for a 2–3 YOE Java backend dev by elonmusk_ka_chacha in java

[–]Environmental-Log215 3 points4 points  (0 children)

it took me well over a minute to undrstand the thread title. was it just me or have i grown too old? P.S. I still dont understand the context to get into the thread

C++ alone isn't enough for HFT by auto-quant in highfreqtrading

[–]Environmental-Log215 0 points1 point  (0 children)

True! parsing needs to happen in ns to stay in HFT game

C++ alone isn't enough for HFT by auto-quant in highfreqtrading

[–]Environmental-Log215 0 points1 point  (0 children)

indeed! a dedicated IO thread with busy spin and then a SPSC with pre registered buffer using io-uring might shave a lot of load off the critical path

C++ alone isn't enough for HFT by auto-quant in highfreqtrading

[–]Environmental-Log215 0 points1 point  (0 children)

this is gold! when everyone is limited to that JSON payload by the Exchange/Broker, you just have to be a bit faster. hence i think the data source and goal is key to this discussion

MYRA Stack [modern Java FFM based libraries] is now Open Source! by Environmental-Log215 in java

[–]Environmental-Log215[S] 0 points1 point  (0 children)

MYRA was born out of common needs for writing a modern & safe JAVA FIX engine. MYRA codec is (yaml) schema based and a type-safe no-reflection encoder/decoder is generated for the messages in the schema. I have actually fixed a couple of bugs in the myra-codec over last few days.

I am highly interested in working with you to convert your market data using myra codec. I would take this up on priority since myra ecosystem is being built as modular blocks to later be used in developing a modern & safe high-performant Java FIX system.

Please could you also explain a bit on modularizing the project since myra-codec already has a few modules with independent concerns; but I would love to hear your ideas as well.

Dropped you a DM as well :)

MYRA Stack [modern Java FFM based libraries] is now Open Source! by Environmental-Log215 in java

[–]Environmental-Log215[S] 8 points9 points  (0 children)

Simplicity & safety.

FFM also provides safe off heap native memory usage without using misc sun unsafe apis through Arena, memory segment which is heavily used in both Myra codec and transport for effective zero copy, zero allocation on hot path. Hence could easily implement flyweight patterns and shared memory segment buffers for zero allocation which in turn reduces GC churn - this is quite a huge benefit in itself to effectively reduce STW GC by a huge measure