Gloomberb

(gloom.sh)

323 points by rbanffy6 hours ago

26 comments

  • slowin3 hours ago
    I really wish people would mention their stack when they have these curl install scripts. I&#x27;d rather use a real package manager, but I&#x27;m not <i>totally</i> against installing a compiled binary this way. I am, 100%, not going to install some Java&#x2F;Type-script nightmare like this though. How is it resolving the dependencies? Is it installing some version of node, bun... on my machine? How&#x27;s that working with other versions I have installed?<p>Related: please don&#x27;t write command line tools in non-compiled languages! Don&#x27;t make the runtime your user&#x27;s problem.
    • alaudet2 hours ago
      I don&#x27;t know man, seems like a cool project and is open source. I guess he could have just sat on it and used for himself exclusively. It&#x27;s auditable and totally fine for an open source project and nobody is forced to use it. It&#x27;s free to use under the MIT license, what else can you really ask for.
      • slowin54 minutes ago
        I actually don&#x27;t mean to bag on the author, but I think my complaint is valid. Maybe if they had a note right next to the curl command that said &quot;This installs a single bun bundled executable. Here&#x27;s a link to the GitHub releases if you&#x27;d like to install it yourself&quot;, that would be helpful.<p>My point about interpreted languages stands though. These bundled javascript runtime &quot;apps&quot; eat at least 500M of RAM on boot. That&#x27;s totally not needed for a CLI tool. If it&#x27;s not bundled, then it&#x27;s even worse as you hit the supply chain and tooling interference problems. There are a lot of good, modern, compiled languages. CLI builders should pick up those stacks imho.
      • nemomarx2 hours ago
        <a href="https:&#x2F;&#x2F;gloom.sh&#x2F;cloud" rel="nofollow">https:&#x2F;&#x2F;gloom.sh&#x2F;cloud</a><p>Is it? I see some kinda subscription, so there&#x27;s gotta be some non MIT portion of it
        • alwa1 hour ago
          That page seems to indicate that the subscription is to a real-time data feed, rather than the software itself—am I mistaken?
          • nemomarx54 minutes ago
            Unless you&#x27;re paying to turn on access to purely a third party feed (which would be odd to me) there&#x27;s some server side code taking those feeds and that the app is calling. Is that server code MIT licensed?<p>An open source interface to a proprietary backend isn&#x27;t really fully auditable.
    • CharlesW3 hours ago
      The source is prominently linked: <a href="https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb</a><p>&gt; <i>please don&#x27;t write command line tools in non-compiled languages!</i><p>Around 40% of Linux CLI tools are written in interpreted languages.
      • antonvs2 hours ago
        The standard Linux CLI tools are installed by a package manager, which has addressed the issues raised upthread. Installs via curl | bash don’t automatically benefit from that.
      • slowin3 hours ago
        &gt; <i>The source is prominently linked: <a href="https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb</a></i><p>This is how I found out it&#x27;s a javascript project and didn&#x27;t install it. I only even bothered to do that because I actually wanted to try it. I&#x27;m just saying it would be awesome to have that right there next to the curl command.<p>&gt; <i>Around 40% of Linux CLI tools are written in interpreted languages.</i><p>And I prefer not to use those. Everything I said for Javascript holds for Python, Perl, Ruby... as well.
      • rtaylorgarlock3 hours ago
        Let those be the 40% we prefer less :) Revealing stack does not validate the framework, but we appreciate some foss sauce &#x27;round these parts.
    • zeroq15 minutes ago
      disclaimer: I haven&#x27;t seen the code<p>TS&#x2F;JS is not the problem.<p>You can, and you should eject your dependencies and package them with your releases. And I don&#x27;t understand why it&#x27;s not a common practice.<p>You can even bundle your releases with a runtime, but that&#x27;s not always the best solution. For something like this I&#x27;d actually prefer interpreted code I can inspect line by line rather than having a blob of unknown origin.
    • bobajeff3 hours ago
      I know where you&#x27;re coming from. I&#x27;ve been worried about all the supply chain attacks on npm too. And I&#x27;m far from a security expert. However, if you&#x27;re okay with installing binary packages via `curl somesite.com | sh` I don&#x27;t think you are in a better position with regards to security.
      • slowin3 hours ago
        Security is just one of my concerns. I&#x27;m actually more worried about borking my system because it&#x27;s doing some out of band stuff with various javascript pieces that already exist on my system (not by my choice!).
    • Pooge2 hours ago
      And in the GitHub release page they include compiled binaries anyway... Why would you advertise `curl | bash` as a way to install if there&#x27;s a binary available?!<p>Download it, put it wherever you like (probably `~&#x2F;.local&#x2F;bin&#x2F;`) and you&#x27;re good to use it.<p>Sometimes I truly wonder...
      • seanw4442 hours ago
        Convenience. That&#x27;s usually the answer.
    • lavela3 hours ago
      Agree. If you really want to know what&#x27;s used here: probably uses bun single-file executables[0] so shouldn&#x27;t clash with anything else on your system.<p>[0] <a href="https:&#x2F;&#x2F;bun.com&#x2F;docs&#x2F;bundler&#x2F;executables" rel="nofollow">https:&#x2F;&#x2F;bun.com&#x2F;docs&#x2F;bundler&#x2F;executables</a>
      • mistercheph3 hours ago
        lmao curling and exec&#x27;ing a vibe coded script running in a vibe-coded runtime, what could possibly go wrong!
        • otabdeveloper42 hours ago
          Don&#x27;t worry about it, it was code reviewed by Claude.
    • tingletech1 hour ago
      you can test it out with<p><pre><code> bunx gloomberb</code></pre>
    • YeGoblynQueenne44 minutes ago
      &gt;&gt; Related: please don&#x27;t write command line tools in non-compiled languages!<p>... unless, of course, it&#x27;s Perl. Right?
    • talentedcoin2 hours ago
      I really wish this was not the top comment on HN. It’s a cool project! Maybe try it??! Or just be silent!
      • Pooge2 hours ago
        I agree with you that the author of this project is catching a stray bullet, but I also have to agree with GP that `curl | bash` got way too out of hand.<p>I don&#x27;t know where that came from but it should definitely disappear.<p>At least the developer includes the binaries for all platforms in the GitHub release page.
      • enquirewithin2 hours ago
        You can have any opinion, so long as it’s mine.
        • talentedcoin2 hours ago
          Why should anyone care about your opinion if you are adding no value to the conversation?
          • xp842 hours ago
            How is it &quot;adding no value&quot;?<p>It&#x27;s not crazy to prefer a package manager package to a curl|bash YOLO. OP is stating that preference, which various people have agreed with. If you posted &quot;I love curl|bash install method - please do more of this&quot; that is also fine. Either way it&#x27;s a signal for both the author and anyone considering shipping this type of software, that their audience may have a certain preference.
          • nemomarx2 hours ago
            I know it&#x27;s kind of a nitpick, but is there really no value at all in &quot;your install is just curl | bash and that seems insecure and risky&quot;<p>I would want to know that about any project before I try and evaluate it personally.
    • baist047 minutes ago
      yeah! agree. this shity approach when user solves technical problems.
  • rdiddly4 hours ago
    Useful on its own merits.<p>Everybody who&#x27;s distracted by the name and can&#x27;t get past it, there&#x27;s a thread developing here somewhere, where they&#x27;re comparing it to Bloomberg.
    • ynac3 hours ago
      100% agree. It&#x27;s a fun name, but it ends up begging the comparison. The look and feel of it was an instant download for me. It&#x27;s actually exactly what I want and even tried &#x2F; failed to build on my own for years. I&#x27;ll be supporting this project.
    • nancyminusone2 hours ago
      the name makes it seem like it only delivers bad news
      • justsid1 hour ago
        I definitely assumed it was a Bloomberg terminal for doom scrollers.
    • brendoelfrendo4 hours ago
      Yeah, I think a few of the widgets here are neat and useful. It&#x27;s not a Bloomberg replacement, but it might be a good replacement for a few tabs? You could get the info elsewhere, but I like this presentation more.<p>Edit: Ah, they&#x27;re offering a pro subscription. While I appreciate that cloud services aren&#x27;t free, I&#x27;m not sure that I&#x27;m willing to pay to replace a few browser tabs. Not for me, but maybe for someone!
    • m0k167eh2 hours ago
      ditch the name<p>explain where you got the data from<p>else this will just be bit of Bloomberg meme
  • u85 hours ago
    Yeah... people aren&#x27;t paying Bloomberg $31,980 per year for a TUI. They&#x27;re paying for the data source... and I don&#x27;t think you have Bloomberg&#x27;s connections.
    • ryukoposting4 hours ago
      Asked a dear friend in the finance industry what he thought about Bloomberg. He&#x27;s the type of guy who uses these systems daily. Mostly paraphrasing:<p><pre><code> 1) Bloomberg was lightyears ahead of anything else in the pre-internet days, so there&#x27;s a lot of UI familiarity. 2) Bloomberg&#x27;s chat is important because, as a hedge fund or investment bank, the chat is how you buy and sell bonds. You agree to the trade in the chat, then tell the back office folks to execute the trade. Direct quote: &quot;I&#x27;d wager 90% of the ~400 trillion in annual bond trading value happens over Bloomberg DM&quot; 3) Bloomberg is the biggest and best aggregator </code></pre> This is fascinating to be because I always assumed latency was the key. After all, the only Bloomberg terminal I&#x27;ve ever seen in person was hooked up to its own dedicated fiber drop. It seems like the chat and sheer breadth of data are the differentiators.
      • _fat_santa3 hours ago
        I&#x27;ve heard the same thing about Bloomberg&#x27;s chat many years ago. Since everyone you&#x27;re chatting to also has to fork over ~$30k&#x2F;yr to use it, there&#x27;s the implicit assumption that you&#x27;re talking to a serious person.
      • pid-111 minutes ago
        The terminal is also sort of an app platform for brokers and other firms to sell services to the buy side.<p>A few examples:<p>1. As a researcher, you can develop indexes and portfolios, then make those available to customers via bbg<p>2. Goldman has a service that let&#x27;s you buy equities via SWAPs, if a fund can&#x27;t hold said equities for regulatory or operational reasons. The whole service is a series of menus within the terminal.<p>3. Many brokers offer automatic trading services like &quot;sell this notional but do it very slowly&quot; etc etc... they do that via bbg
      • mattnewton4 hours ago
        TIL Bloomberg terminal is the original iMessage blue bubbles network
      • pizzalife4 hours ago
        It&#x27;s funny to think some of the world&#x27;s largest trades are being done in something that resembles a game&#x27;s tradechat. (WTS bonds)
        • ConcernedCoder9 minutes ago
          Unlocked a core memory for me!<p>Anyone else old enough to remember scripting a tradebot in Asheron&#x27;s Call?
        • lq9AJ8yrfs3 hours ago
          For a long time fixed income trading took place over AOL Instant Messenger and later Yahoo chat rooms.<p>I am not making this up.<p>There were custom frontends that would enrich things like cusips.
        • globular-toast4 hours ago
          I find it a bit less funny. There is this perception that what finance people do is super important and grown up but following a brief stint in the industry I realised it literally is just a game. We used to trade bits of stationery and trading cards for fun at school. They never stopped. The only difference is people who never consented to any of this are paying for it all, especially when it all goes wrong.
          • allthetime3 hours ago
            That should have been obvious from the mere fact that the bottom rungs are almost completely populated by silver-spooned nepo-babies.
            • JumpCrisscross2 hours ago
              &gt; <i>the bottom rungs are almost completely populated by silver-spooned nepo-babies</i><p>You’re thinking of investment banking, corporate finance. Trading has always been the place folks from less privileged backgrounds got into finance. In the old days, Jews. (Like, into the 50s.) In the 80s, poor schmucks.
              • allthetime1 hour ago
                I know a lot of traders from both university and growing up around rich kids. Their parents are invariably very wealthy. They were the ones who had the time and safety net to sit around on computers all the time (like me becoming a programmer)<p>I’m not in the trading world though so I haven’t met the ones that don’t fit this description.<p>But exactly zero of the people I know who were raised in either poverty or mediocrity are traders or involved in finance, aside from maybe accounting.<p>Of course, this is all anecdotal - but I’ve only ever seen Bloomberg terminals outside of office settings in the apartments of wealthy children.<p>Perhaps things were a bit different decades ago, in the scrappy past, but it feels like most higher earning spheres are closing in around pre-existing wealth.
                • JumpCrisscross1 hour ago
                  &gt; <i>I’m not in the trading world</i><p>I was. Algorithmic derivatives. The rich kids went into banking. Their connections bought deal flow. Those of us from public universities mostly went into trading. It’s why it’s been looked down on within Wall Street since basically ever.<p>&gt; <i>I’ve only ever seen Bloomberg terminals outside of office settings in the apartments of wealthy children</i><p>Parents buying their kids Bloomberg terminals aren’t looking for them to get into trading, they’re training them to start a hedge fund.<p>(I’d also guess a minority of folks with a BB are traders. It’s really more of a vetted calling card.)
          • linkregister3 hours ago
            Why would a trader need your consent to make a trade with somebody else?
            • grigri9073 hours ago
              I assumed they were referring to market crashes caused by irresponsible levels of risks and deceptive practices like we saw in 2008, and&#x2F;or government-funded bailouts
              • graemep41 minutes ago
                That was not caused by trading. It was caused by irresponsible lending and deceptive securitisation of that debt.<p>Trading can bring down a bank (e.g.Barings) but is not a big systemic risk.
            • yulker3 hours ago
              why should we have financial regulation at all, is that what you&#x27;re getting at?
            • johnsmith184050 minutes ago
              &quot;Capitalism bad&quot; is generally their point
            • FromOmelas2 hours ago
              often they&#x27;re trading things with externalities
          • sheeshkebab3 hours ago
            It’s pretty bad except that any other way is even worse.
      • nose3 hours ago
        I find it interesting that nobody from the finance community is directly speaking about their experience in this thread.<p>What&#x27;s the equivalent of hacker news for financial folk?
      • tikhonj4 hours ago
        Bloomberg is big enough that different aspects of the system are going to be absolutely key for substantial subsets of its customers.
        • Terr_3 hours ago
          Hence quips like: &quot;Most customers only use 10% of your features, but every customer uses a <i>different</i> 10%.&quot;
          • akk02 hours ago
            Ptuh, call me back when Bloomberg implements spacebar heating!
        • steveBK1234 hours ago
          Yes its a multi-decade long-tail of thousands and thousands of use cases all used in different combinations by different users.
      • NoboruWataya3 hours ago
        It&#x27;s really only a specific subset of traders that need close to zero latency. Many other finance professionals deal on larger timescales so it&#x27;s not that big a deal. I am more &quot;finance-adjacent&quot; so I don&#x27;t use Bloomberg personally but have worked on plenty of deals where &quot;time sensitive&quot; means &quot;it has to get done this week. Oh wait, the bank hasn&#x27;t finished its KYC checks yet. Okay, it definitely has to get done next week. Unless the KYC checks are still ongoing, in which case, for sure gotta get it done by the end of the month&quot;.
      • deadbabe3 hours ago
        There is a marketplace on Bloomberg where you can buy and sell interesting stuff you don’t really find anywhere else. Some of it stored in freeports and delivered to your freeport, etc. top tier escorts, etc.
        • tecleandor3 hours ago
          In freeports? So you mean like art?
      • dist-epoch3 hours ago
        Bloomberg Terminal is for humans. It takes about 10 clicks to do a stock BUY. your average retail stock trading platform is much quicker, many have 1 click trading.<p>The dedicated fiber drop was most likely for reliability, not for latency.
    • traceroute664 hours ago
      &gt; They&#x27;re paying for the data source<p>Yup.<p>If you want fixed-income data, Bloomberg is the only shop on the street data-wise.<p>If you want other financial data, Bloomberg&#x27;s fixed entry-point pricing tends to make more sense in terms of bang for buck than its competitors modular price sheets.<p>People saying Bloomberg is just about the chat are simply embarrassing themselves.<p>Look at the price sheets of Eikon, Factset, CapIQ etc. There is no such thing as a cheap &quot;Bloomberg killer&quot;.<p>Quality data is expensive. So are the leased-lines it arrives at Bloomberg on. So is the data wrangling architecture.
      • resters2 hours ago
        It&#x27;s a bit ironic that in a country with <i>free markets</i>, so much of the data that is relevant to modern finance is proprietary and quite expensive.<p>The exchange&#x2F;marketplace is the oldest business in the world. How absurd that in 2026 seats on exchanges cost millions and the entities that control exchanges are mechanisms of gatekeeping rather than quality control -- the cronyism shown to SpaceX reveals just how corrupt it&#x27;s become.
      • ovrnightr2 hours ago
        Bloomberg is also a channel for other data providers. You can access your gas pipeline flow data and index prices, which you buy from SP Global, via Bloomberg, for example. It brings data sources into one place.
      • dpmartinez3 hours ago
        This is what is wrong with the world today.
        • seanclayton3 hours ago
          They&#x27;re too busy dealing with their fake life problems to think about their impact on the world.
    • devin5 hours ago
      To be fair, I don&#x27;t see anywhere on this page where they try to suggest that this is competitive with a Bloomberg terminal.
      • wnmurphy4 hours ago
        Seriously. I see a cool product that someone built and is sharing with the community, and the top comment is basically a criticism that it&#x27;s not a $31k terminal.
        • dpmartinez3 hours ago
          It is almost like they want to be ripped off, the massive amount of gatekeeping is bizzare.<p>Financial information should be free for everyone.
          • nancyminusone2 hours ago
            The very fact that it isn&#x27;t is what makes it so valuable.
            • dpmartinez1 hour ago
              This is what is wrong with the world today.
          • intrasight3 hours ago
            Yesterday&#x27;s data is much cheaper and often free ;)
          • deadbabe3 hours ago
            It is, after its value has been exploited.
      • croes4 hours ago
        The name
        • NDlurker4 hours ago
          Inspired by and competing with are different things
          • pverheggen3 hours ago
            Well yes, but a lot of people immediately jump to conclusions based on name alone, it&#x27;s human nature. Definitely something to consider when you&#x27;re picking a name for a project.<p>An example that comes to mind is JSON5. People have a visceral reaction to the name, it sounds like it&#x27;s trying to be HTML4.01 -&gt; 5 but for JSON. In reality, it has its uses but doesn&#x27;t supersede JSON whatsoever. The name itself has given it a bad rap though.<p>If you pick a name like &quot;Gloomberb&quot; the most obvious interpretation is that it&#x27;s a Bloomberg alternative.
    • jimmydddd4 hours ago
      Financial companies are cutting down on the amount associates can bill the firm for a $30 dinner, and the time before they can have the firm pay for a $30 car ride home. They definitely wouldn&#x27;t pay for Bloomberg if it could be easily replaced.
      • rmah4 hours ago
        Bloomberg terminal is only $133&#x2F;day (assuming 240 work days per year). So, while $32k&#x2F;yr <i>seems</i> expensive at first glance, given the total annual cost of an analyst or trader, it&#x27;s not <i>huge</i>. Of course, they&#x27;d rather not spend the $32k&#x2F;yr if they could avoid it, if bloomberg can give you an edge on just one or two trades a year, you come out ahead. So...
        • toomuchtodo3 hours ago
          I bet its cheaper than tokens for software development with higher ROI.
          • forshaper3 hours ago
            I can say companies with less than 20 mil arr pay around $150k a year for saas and others (sometimes the same) also pay 50k a year for a niche agent harness.
      • adjejmxbdjdn3 hours ago
        Skipping a dinner is not losing you much money.<p>Making a bad trade or missing a good one due to delaying data or bad data can pay for several years worth of bloombergs for everyone in your firm in one moment.
      • jpfromlondon4 hours ago
        Nobody ever got fired for choosing Bloomberg, even if there was a viable alternative there is no way anyone is pioneering the switch.
    • mushufasa5 hours ago
      Correct. Also, Bloomberg has messaging for traders that is actually an important network effect in certain domains.
      • hmokiguess4 hours ago
        Can you elaborate on the network effect piece? Curious about that
        • lesam4 hours ago
          It&#x27;s really useful to have a chat app that is gatekept behind a 20k&#x2F;year+ subscription. It&#x27;s a particularly useful signal if someone is offering you a million+ dollar asset for sale.
          • hmokiguess4 hours ago
            I get that, was more curious if you knew how much that is used for signaling and the traffic there. I sort of expected these communities to exist in other sources (like regular SMS &#x2F; Slack &#x2F; private back channels etc).
            • brendoelfrendo4 hours ago
              I&#x27;m going to copy-paste one of the comments from ryukoposting higher up in the thread because I think it&#x27;s relevant here:<p>&gt; 2) Bloomberg&#x27;s chat is important because, as a hedge fund or investment bank, the chat is how you buy and sell bonds. You agree to the trade in the chat, then tell the back office folks to execute the trade. Direct quote: &quot;I&#x27;d wager 90% of the ~400 trillion in annual bond trading value happens over Bloomberg DM&quot;<p>You may discuss trades via SMS or Slack; maybe you&#x27;re important enough that you have a broker, and you send them your idea. But the broker at the investment bank is probably handling those trades via Blomberg terminal. That&#x27;s the network effect: all the bankers are in Bloomberg chat, and it is therefore the easiest place to find who owns an asset and negotiate a trade.
              • hmokiguess3 hours ago
                Thank you, that was the piece I wasn&#x27;t aware of! Appreciate the reposting.
        • kortilla4 hours ago
          Same effect as a country club. You know a lot about the person you’re talking to just based on their presence.
          • hmokiguess4 hours ago
            That&#x27;s a cool way of putting it, thank you!
        • quickthrowman3 hours ago
          Some assets are traded OTC aka “in a chat window”.
    • rdiddly4 hours ago
      Good thing they&#x27;re not asking $31,980 per year for it then?
    • Bluescreenbuddy2 hours ago
      You&#x27;re paying for direct lines to these firms. It&#x27;s a big chat&#x2F;social media platform. Combined with the data and news and you got yourself a hell of a platform
    • weinzierl3 hours ago
      Also, and in addition, the value of the Bloomberg Terminal is not the UI, it is the consistency. You don&#x27;t pay for an accelerator and a break pedal, you pay for the 100% guarantee to find them in the place &gt;100k people have been trained to find them.
    • storus3 hours ago
      Can&#x27;t you just use a bunch of agents to extract financial statements from company websites the moment they are published? OK, no insider info but you can still do quick agentic fundamental analysis and decide which companies are interesting.
      • nemomarx1 hour ago
        If fundamentals matter for stock performance, sure yeah. I would be interested to see the results of trying that against the kinda alpha wall street uses usually
    • rvz5 hours ago
      &gt; They&#x27;re paying for the data source... and I don&#x27;t think you have Bloomberg&#x27;s connections.<p>We keep seeing hundreds of Bloomberg competitors mimicking the interface and they always forget that the chat (with the connections), data and the newsroom are the reasons why Bloomberg&#x27;s network effect is close to impossible to break.<p>Using the Bloomberg Terminal is taught very early at colleges for any finance professional, which is how they get them as well.
      • notpushkin4 hours ago
        I think it is more oriented towards retail investors (if anybody) than professional users. In theory it could compete with TradingView?<p>(I’d especially love to see some federated social feature built in!)
      • hmokiguess4 hours ago
        Is it still though? I have a few finance friends and they all seem to be on TradingView these days
        • quickthrowman3 hours ago
          Are they trading bonds, equities, credit default swaps, options, , etc in large dollar amounts? “Finance” is pretty broad, Bloomberg is for traders and I-bankers afaict.
    • dist-epoch3 hours ago
      Many people pay the Bloomberg Terminal subscription ONLY for the chat. They don&#x27;t use anything else from it.
    • handwarmers4 hours ago
      does the author claim to be a bloomberg clone?
    • minimaltom3 hours ago
      I mean look at the name... this seems more like a fun quip than a product. I&#x27;m over here basking in the glow of dem vibes.
    • theodric4 hours ago
      Some of us are just here for the æsthetics! Plus I already have the SEA100 &quot;Centerboard&quot; with chrome accents, and this will help complete the look.
    • d--b4 hours ago
      actually a lot of data is not included in the standard bloomberg license and you have to pay extra (mostly passing through to the data vendors) to get access to it.<p>There is not a single reason for Bloomberg’s dominance but the one feature that keeps people on it is the chat.
    • sakimonkey5 hours ago
      it&#x27;s a GUI and a TUI, pay attention to the screenshots
      • passivegains5 hours ago
        Does the GUI have Bloomberg&#x27;s data source?
  • dewey2 hours ago
    There&#x27;s many competitors these days, one that Shkreli always seems to use in his streams is <a href="https:&#x2F;&#x2F;godelterminal.com" rel="nofollow">https:&#x2F;&#x2F;godelterminal.com</a> (Not open source though).
    • eudamoniac2 hours ago
      He created that company I believe. I interviewed at Godel long ago and would probably have received an offer but he was convicted during the interview process and they paused hiring.
      • dewey2 hours ago
        Ah you are right, it&#x27;s mentioned on the career page. I thought he might be an advisor there.
  • MP_17292 hours ago
    Next week, it&#x27;s my turn to create an UI for financial modeling prep API
  • thm4 hours ago
    For news: <a href="https:&#x2F;&#x2F;biztoc.com" rel="nofollow">https:&#x2F;&#x2F;biztoc.com</a>
  • grahammccain3 hours ago
    I don&#x27;t think the finance field needs a better bloomberg, I think the whole interface and everything needs to be rethought. Part of the moat is the data, and data access. But I think we need to completely reimagine the terminal interface and interactions with the introduction of AI. The finance industry probably will be slow to adapt, but I genuinely think someone could completely disrupt 99% of the wall street businesses with an original idea.
    • JumpCrisscross1 hour ago
      &gt; <i>Part of the moat is the data</i><p>Not particularly. I don’t think Bloomberg has any super-proprietary data. It’s more like Excel. There is a command or two that is so weirdly niche specific that some user somewhere really needs. And it has a social network.<p>Bloomberg, as it is, will probably work as long as humans are in the loop in trading financial assets.
    • springtimesun3 hours ago
      My observation is that finance and banking and corporate functions high enough up the ladder operate more like a clubhouse than cutthroat businesses. You’d think all you need to do is make a better interface, but if you’re not part of the club, you’re not doing the business (or even getting shot at it).
    • nancyminusone2 hours ago
      A large amount of the value is that you aren&#x27;t allowed in.
  • methodical3 hours ago
    Bloomberg&#x27;s moat is the messaging service within it, not it&#x27;s aggregation of data
    • hodder3 hours ago
      People repeat this rhetoric all the time, but I promise you, finance professionals can and do easily migrate to other messaging platforms such as ICE chat. This isn&#x27;t a moat for BBG
      • jeffbee3 hours ago
        Evidence for this being that BlackBerry Messenger and even AOL Instant Messenger had various amounts of traction during the lifetime of Instant Bloomberg.
  • hmokiguess5 hours ago
    this looks neat, what&#x27;s the data source and latency?
    • crossthestreams5 hours ago
      Looks like Yahoo and the SEC for filings: <a href="https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb&#x2F;tree&#x2F;cd82b5c61a8d0eb0d3160a7c578e101387527b77&#x2F;src&#x2F;sources" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb&#x2F;tree&#x2F;cd82b5c61a8d0eb0d...</a>
      • ComputerPerson4 hours ago
        Which is not great for history, right? Seems like a real detractor.<p>You pretty much need $30&#x2F;m subscriptions for historical data. Not that it couldn&#x27;t be worked into this.
    • tolugenius5 hours ago
      Was just about to ask on data sourcing, I imagine yfinance is used but can&#x27;t really tell for anything else (like for prediction markets or news data).
  • aanet1 hour ago
    Is there a way to run this inside a container? Like Podman?
  • andreypk4 hours ago
    Interesting project, the view looks like gpui based interface, but source code say that it is web based interface written on typescript
  • charv5 hours ago
    An aside - do tools like this (or what it&#x27;s modeling, the Bloomberg Terminal) really offer that much benefit to finance folks?
    • elictronic4 hours ago
      Here&#x27;s an article. Basically if your trading stocks no. If you are trading different instruments or want interaction with the money folks (connections) yes. <a href="https:&#x2F;&#x2F;financetracked.com&#x2F;bloomberg-terminal" rel="nofollow">https:&#x2F;&#x2F;financetracked.com&#x2F;bloomberg-terminal</a><p>From it: &quot;Bonds and Fixed Income: It provides the best data for interest rates and debt markets. Global Economics: It easily connects data from different countries, such as currency rates and government debt. The Chat Room: The messaging system is the industry standard. If you want to talk to the biggest players in the market, you often need to be on Bloomberg.&quot;
      • Ntrails4 hours ago
        Depends a bit <i>how</i> you&#x27;re trading stocks - bbg is still an extremely attractive data provider so I&#x27;d not dismiss them out of hand.
        • elictronic2 hours ago
          There are alternatives that cost much less than 30k per year for just stocks. They need to prove their value proposition for that more generalized use case.<p>My dismissal is their problem to solve.
    • Retr0id4 hours ago
      Bloomberg Terminal costs ~$24K per user per year, so the fact that people are paying for it implies it offers at least that much value. As mentioned elsewhere in the thread, most of that value lies in the data sources.
  • sigmonsays4 hours ago
    This post &#x2F; OP really needs to say if it&#x27;s AI SLOP or not and to what extent. This looks like AI slop.
    • jeffbee3 hours ago
      Any &quot;TUI&quot; you&#x27;ve seen in the past few years is 100% vide-coded slop.
      • dpmartinez3 hours ago
        Curious what you consider those that aren&#x27;t 100% &#x27;slop&#x27;, aside from the common ones.<p>Because I&#x27;m starting to see the word &#x27;slop&#x27; as a synonym for:<p>&quot;This person may or may not have used AI to build software and I don&#x27;t like it&quot;
        • jeffbee2 hours ago
          Slop is slop when the author could not have done it without the AI.<p><a href="https:&#x2F;&#x2F;simple.wikipedia.org&#x2F;wiki&#x2F;Hacker_koan#:~:text=%E2%80%9C-,A%20novice,-was%20trying%20to" rel="nofollow">https:&#x2F;&#x2F;simple.wikipedia.org&#x2F;wiki&#x2F;Hacker_koan#:~:text=%E2%80...</a>
          • dpmartinez1 hour ago
            Right but it doesn&#x27;t answer my question about what <i>you</i> don&#x27;t consider a slop TUI though.<p>&gt; Slop is slop when the author could not have done it without the AI.<p>For Vim (1.) and Linux&#x27;s AI adoption policies, there are some contributors who couldn&#x27;t have made a PR &#x2F; patch without AI. Are Vim and Linux now considered slop because they allow AI contributions?<p>(1.) <a href="https:&#x2F;&#x2F;github.com&#x2F;vim&#x2F;vim&#x2F;blob&#x2F;master&#x2F;CONTRIBUTING.md#using-ai" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;vim&#x2F;vim&#x2F;blob&#x2F;master&#x2F;CONTRIBUTING.md#using...</a>
  • TZubiri5 hours ago
    What I pressume is the text for &quot;Gloomberg&quot; in the Hero header looks very fucked up<p><a href="https:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;ssiKckF" rel="nofollow">https:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;ssiKckF</a><p>Hopefully it&#x27;s not intentional
    • nhinck25 hours ago
      How much intent can you ascribe to any of this?
    • KomoD4 hours ago
      Yeah, looks totally broken on my machine too.
    • cwnyth5 hours ago
      Looks fine on my end (Firefox).
    • timcobb5 hours ago
      what platform is that? looks fine on mine
      • TZubiri3 hours ago
        MS Edge, which is Chromium (Blink?) Based
    • 8note5 hours ago
      Gloom Harder?
    • ghjv5 hours ago
      looks fine on my machine
    • u85 hours ago
      How well do you think their terminal works if they couldn&#x27;t even spend the time to clean up their vibe coded website?
      • dpmartinez5 hours ago
        &gt; How well do you think their terminal works if they couldn&#x27;t even spend the time to clean up their vibe coded website?<p>Your website is literally down.<p><a href="https:&#x2F;&#x2F;i.postimg.cc&#x2F;YCdkwZZq&#x2F;image.png" rel="nofollow">https:&#x2F;&#x2F;i.postimg.cc&#x2F;YCdkwZZq&#x2F;image.png</a><p>And I don&#x27;t think their website is that bad.
        • KomoD4 hours ago
          &gt; And I don&#x27;t think their website is that bad.<p>The download button doesn&#x27;t even work properly.<p>Clicking download in the top right gives me a .dmg, the other download button in the hero gives me the .exe, the one in the footer gives me a .dmg<p>Docs give me a 404, blog is empty
          • dpmartinez4 hours ago
            &gt; The download button doesn&#x27;t even work properly. Clicking download in the top right gives me a .dmg, the other download button in the hero gives me the .exe, the one in the footer gives me a .dmg<p>I mean, it works for me?<p>The site is clearly not ready and maybe they didn&#x27;t expect people to find it, but that doesn&#x27;t mean the site is bad.<p>It is just a work in progress.<p>I&#x27;m not even interested in the site anyway the software and the source interests me more.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gloom-sh&#x2F;gloomberb</a>
            • KomoD4 hours ago
              &gt; I mean, it works for me?<p>Doesn&#x27;t invalidate my experience.<p>&gt; and maybe they didn&#x27;t expect people to find it<p>What do you mean? It&#x27;s linked on the Github repo.<p>&gt; but that doesn&#x27;t mean the site is bad.<p>I think a site that doesn&#x27;t work properly is a bad one. That&#x27;s just my opinion.
              • dpmartinez4 hours ago
                &gt; What do you mean? It&#x27;s linked on the Github repo...I think a site that doesn&#x27;t work properly is a bad one. That&#x27;s just my opinion.<p>I mean isn&#x27;t this the point of open source?<p>You can fork the repo and fix the problem instead of complaining?
                • echoangle2 hours ago
                  You can still give constructive criticism of an open source project though, right?
                  • dpmartinez2 hours ago
                    Never said you can&#x27;t.<p><i>You</i> can fix it though or open an issue.
                • TZubiri2 hours ago
                  So, volunteer time for free for someone else?<p>&gt;I mean isn&#x27;t this the point of open source?<p>Only if you just found what open source is.<p>In actuality, successful open source projects recruit developers by providing value to them. If there&#x27;s a failure before you even install the product, there&#x27;s 0 reason for someone to start contributing right away, why not start their own project at that point? Contributing 1 to something that has 0 value is a donation in exchange for nothing, not how Open Source usually works.
                  • dpmartinez2 hours ago
                    &gt; So, volunteer time for free for someone else?<p>Yes.<p>You know the project is OSS, you found the problem, you can fix it or open and issue instead of complaining to me about it.<p>Problem solved.<p>That benefits everyone rather than forking a project and starting all over again and wasting effort.<p>I cannot reproduce the problem, so I can&#x27;t fix it.<p>But since you&#x27;re complaining about it and you have the right skills, you can!
      • TZubiri3 hours ago
        Exactly, our time is limited, so if we are to evaluate a product, we will take any excuse possible to veto a vendor.<p>If you fail at a webpage in 2026, you have no chance at doing anything complex or innovative.
  • mistercheph3 hours ago
    total slop, who cares?
  • crimsonmoonx2 hours ago
    [dead]
  • yellowcloudx2 hours ago
    [flagged]
  • cyansunx2 hours ago
    [flagged]
  • redfrogy2 hours ago
    [flagged]
  • turquoisemoonx2 hours ago
    [flagged]
  • purplemist2 hours ago
    [flagged]
  • greenregiment58 minutes ago
    [flagged]
  • tealmoonx2 hours ago
    [flagged]
    • slater2 hours ago
      Why do you keep making new <i>[something]moonx</i> accounts?
  • gymbeaux5 hours ago
    When I see new software now, my first thought is an LLM wrote it and it makes me not want to use it. I also assume there are bugs and it’s not particularly feature-rich.
    • MyHonestOpinon3 hours ago
      It is becoming very hard not to use an LLM. I have been working on a project all this year. I started doing everything by hand, and I am using LLMs a little bit more every day. I suppose we want to use projects that were crafted with care, whether or not LLMs were used. But it is not easy to figure that out. It reminds me. 30 years ago, before code formatters were popular, you could tell good code just by looking at how carefully formatted it was.
    • m0k167eh2 hours ago
      and you think Bloomberg engineers dont use AI heavily?
    • ahahs5 hours ago
      my first thoughts too.
    • janlukacs3 hours ago
      same and for some reason people are downvoting. why would we use vibecoded stuff with sensitive information?
      • dewey3 hours ago
        What’s sensitive about displaying public information in pretty graphs?
  • RetroTechie5 hours ago
    gloom.sh&#x2F;docs - 404: This page could not be found.