HackerTrans
TopNewTrendsCommentsPastAskShowJobs

apaprocki

no profile record

Submissions

A First Look at the Future of the Bloomberg Terminal in the Age of Agentic AI

bloomberg.com
1 points·by apaprocki·hace 5 meses·0 comments

comments

apaprocki
·hace 24 días·discuss
This paper, “Whole Cross-Sectional Human Ultrasound Tomography”, goes into more detail.

https://arxiv.org/pdf/2307.00110
apaprocki
·hace 2 meses·discuss
Maybe he drank a little too much Malört with the DENIC team last night?
apaprocki
·hace 2 meses·discuss
We’re integrating AI tooling into the Bloomberg Terminal for everyone to use.

https://www.bloomberg.com/professional/insights/press-announ...
apaprocki
·hace 2 meses·discuss
The battlefield changes as kids age. It’s impossible to have any realistic discussion about sleep habits without discussing the elephant in the room. What is your device policy and how do you manage screen time, what your bedtime routine is (you better have one!) and how good you are at sticking to the timing on a daily basis.
apaprocki
·hace 2 meses·discuss
Same, as the father of three children, I believe a lot of it has to do with sleep pattern conditioning. You are literally training minds to sleep on a rigid schedule to keep your own sanity. That implies sticking to rigid timing as much as possible and creating the optimal environment for success. E.g., correct lighting, air movement, sound (I highly recommend “Hey Siri, play Pure Meditation playlist”) at a low volume, and if you live in an otherwise particularly hectic environment, appropriately dosed and timed melatonin supplements. You reap the rewards of your own hard training work, or suffer the consequences of the lack thereof.
apaprocki
·hace 3 meses·discuss
> async/await came out of C# (well at least the JS version of it).

Having been instrumental in accelerating bringing async/await to JS, it definitely was the case that it came from C# and we eagerly were awaiting its arrival in JS and worked with Igalia to focus on it and make it happen across browsers more quickly so people could actually depend on it.
apaprocki
·hace 3 meses·discuss
You should always seek out the best. From watching lots of Everyday Astronaut streams over the years, I knew the stream would be the best live experience because they care about and focus on the production. NASA cares and focuses on the rocket, astronauts, mission. I'm fine with that.
apaprocki
·hace 4 meses·discuss
And for parents: 1.1.1.3 blocks adult content :)
apaprocki
·hace 4 meses·discuss
I feel like those not involved in this space might not realize so much stuff that benefits the entire web/world comes from volunteers like anba and companies outside the usual browser vendors. Whether you’re an individual contributor or you want to push your employer to contribute or let you contribute, the best time to get involved is always now. We owe anba a big one. Thank you!!
apaprocki
·hace 4 meses·discuss
Yes, please try! One of the main motivations for doing all this work is to slim down both the amount of code that has to be delivered and executed by providing everything that's needed by the platform. In addition, you're slimming the potential bug/attack surface as well, which is always nice.
apaprocki
·hace 4 meses·discuss
Depending on the situation, the data lives either within the browser or within the OS. Chrome releases ship versions of tzdata that correspond to the version of tzdata shipped with the ICU it uses, and they do backport updates to prior Chrome releases within a certain window. Apple has a sideband way of deploying tzdata to all devices that doesn't appear via the normal Software Update mechanism. So it all depends on which particular OS/browser combo you're interested in and the decisions those owners made.
apaprocki
·hace 4 meses·discuss
I would characterize it more as Joda likely informed Moment.js, which better informed TC39 because it was within the JavaScript ecosystem. As we discussed in plenary today when achieving consensus, every programming language that implements or revamps its date time primitives has the benefit of all the prior art that exists at that instant. TC39 always casts a wide net to canvas what other ecosystems do, but isn't beholden to follow in their footsteps and achieves consensus on what is best for JavaScript. So my view is this more represents what the committee believes is the most complete implementation of such an API that an assembled group of JavaScript experts could design over 9 years and finalize in 2026.
apaprocki
·hace 4 meses·discuss
Node 26! Only a matter of time... :)
apaprocki
·hace 4 meses·discuss
Welcome to the club. It’s like when people say “Bloomberg Terminal for X”. You just can’t really say anything because everyone knows it’s not Ghostty, based on it or will ever be it, but it’s about the vibe… and if you then chase after them, it only serves as free advertising :)
apaprocki
·hace 6 meses·discuss
Check out Binary Ninja if you haven’t. Especially if you have large binaries!
apaprocki
·hace 6 meses·discuss
I’m simply stating how actual Gtk is written:

https://gitlab.gnome.org/GNOME/gtk/-/blob/main/gtk/gtklabel....
apaprocki
·hace 6 meses·discuss
Completely possible. In the early 90s everyone was buying SGI Indys to run Apache on and put the cool “Powered by SGI” badge on their site. I admin’d a local ISP then and that Indy was on my desk and IRIX was my daily driver. Their UI just felt leagues beyond other commercial Unices of the time, so rather than being plausible, I’d expect it due to the lab/science/dataviz aspect.

edit: Just last night a friend was watching MiB and Tommy Lee Jones looks at a Motif UI. It was obviously SGI but it was IRIS ViewKit and not the later Interactive Development Environment. Narrowed down likely creator being Van Ling from Banned From The Ranch Entertainment. If you’re out there…
apaprocki
·hace 6 meses·discuss
Yes, using the same Gtk example, the way you’d forward declare GtkLabel without including gtklabel.h in your header would be:

    struct _GtkLabel;
    typedef struct _GtkLabel GtkLabel;
    // Use GtkLabel* in declarations
apaprocki
·hace 6 meses·discuss
`-Wvla` Friends don’t let friends VLA :)
apaprocki
·hace 6 meses·discuss
Sure, the parent was commenting more about the capability existing in Ada in contrast to C. Ada variable length local variables are basically C alloca(). The interesting part in Ada is returning variable length types from functions and having them automatically managed via the “secondary stack”, which is a fixed size buffer in embedded/constrained environments. The compiler takes care of most of the dirty work for you.

We mainly use C++, not C, and we do this with polymorphic allocators. This is our main allocator for local stack:

https://bloomberg.github.io/bde-resources/doxygen/bde_api_pr...

… or this for supplying a large external static buffer:

https://bloomberg.github.io/bde-resources/doxygen/bde_api_pr...