• talles a day ago

    Tanya Rai - Introducing Bento: Jupyter Notebooks @ Facebook | JupyterCon 2020 : https://www.youtube.com/watch?v=f3UfVX4_PD4

    • sk11001 a day ago

      I kind of love Meta for all the seemingly unnecessary internal stuff they do. They have so many projects that are absolutely not critical for them, maybe not even net positive, but they spend who knows how many hours building and maintaining them.

      • apwell23 a day ago

        > Meta for all the seemingly unnecessary internal stuff they do.

        Netflix would like to have a word.

        • Narhem a day ago

          Netflix’s situation is caused by their business model.

          • fwip 21 hours ago

            Is it? It seems like 90% of what Netflix is (from a technical PoV), is a CDN + video playback. There's a lot more value in the content library they've negotiated and the business agreements with ISPs than there is in the software stack.

            Apologies if this response is delayed, 6 posts today is "too fast."

            • scottyah 20 hours ago

              I'm not sure anyone has access to the real data, but I've had a suspicion that Netflix is able to remain a lot more profitable due to their superior tech. Cloud hosting and streaming (not to mention labor) can get very expensive, and I think while it's easier to set up nowadays (in comparison to when they started) a lot of the other companies are burning cash to try to keep up. HBO Max (just Max now?) has always had poor streaming quality compared to netflix and I imagine they're paying a lot more for it.

              • 3eb7988a1663 15 hours ago

                Surely that has more to do with having a fleet of edge nodes that mirror content close to consumers? There are only so many ways to ship video bytes across the internet. Best way to save money is to move fewer bytes.

              • rNULLED 21 hours ago

                Netflix now builds many of the video production tools they need to produce their own content. This now includes games as well.

        • bbor 18 hours ago

          Internal startups have the same value proposition as external ones, I think; most fail, but every once in a while you hit a React or a Gmail.

        • woadwarrior01 4 hours ago

          Having used both Bento and later Colaboratory, a few years ago, I think I liked the latter a lot more. Google's internal tools are usually much more polished and better-designed, perhaps because they've been around for much longer.

          • quantadev 16 hours ago

            The original "Block Editor" (that Jupyter modeled itself after) is the one that's now called "Quanta", and has been around for decades in various forms and incantations:

            https://github.com/Clay-Ferguson/quantizr

            I'm thinking that Jupyter might still not be "Tree Based" but that would be a heck of a leap in capability if they "fix" that.

            • chthonicdaemon 9 hours ago

              I always thought Jupyter was based on other notebook-style interfaces like Mathematica or Maple.

              • mkl 4 hours ago

                Yes, but it's closer to Sage (browser and Python based).

                I don't know what quantadev is thinking of, but Quanta seems totally different and not a programming notebook at all. Its README also claims "Quanta is a new kind of platform with a new kind of architecture", while quantadev claims it "has been around for decades".

            • tantalor 21 hours ago

              Glad to see people using the term "serverless" to mean "actually without a server" instead of what other places are doing.

              • talles a day ago

                I wish more people used marimo, so much better than jupyter

              • fauria a day ago

                Can this be downloaded somewhere?

                Couldn't find any link in the open source site: https://opensource.fb.com/ nor the ELI5: https://developers.facebook.com/blog/post/2021/09/20/eli5-be...

                • tqi a day ago

                  TBH the value of bento over other notebook offerings was almost entirely how well it plays with the rest of the data and infra stack within facebook. It was super easy to go from raw data (entire DE and DI orgs responsible for ETL and cluster maintenance) to a cleaned up table (usually built by DEs) to an ad hoc table to support a specific use-case that could then be accessed via bento, analyzed, and then published / shared to anyone in the company.

                  • jamra a day ago

                    If you use jupyterlite, you're using the same thing. Bento is just the internal Meta version and the only potential benefits is the internal integration.

                    • ipsum2 21 hours ago

                      Probably not. It's written in Hack, and heavily tied to internal frameworks, so it'll be practically impossible to extract into a standalone package, unless they do a "clean room" implementation (like they did for Sapling UI https://sapling-scm.com/docs/addons/isl/).

                      But it has some cool features that notebook developers can take inspiration from.

                      • michaelmior a day ago

                        I don't believe Bento has been open-sourced.

                        • make3 a day ago

                          interesting that they make external articles about it

                          • rovr138 a day ago

                            "Oh that's cool.", "It'd be interesting to work on problems like that.", "That's a neat solution"

                            If anyone's on the fence about applying, that could be enough to nudge them in the direction. If anyone's worked in similar areas, could be worth applying and looking at the team, etc.

                            • michaelmior a day ago

                              Totally agree, although odd that the post was tagged as "open source."

                              • tqi a day ago

                                I think thats because it's based on an open source project

                      • Fraterkes a day ago

                        A bit off-topic, but my problem with any notebook type of tool (ie you create a document that mixes code, the output of that code, and text/media) is that they always feel like they're meant to be these quick, off the cuff ways to present data. But when I try to use them they just feel awkward and slow. (I tried doing a jupyter notebook with the vscode plugin, and while everything was very polished, it feld like I was ponderously coding in Word or something. The same was true for R-notebooks in rstudio. Maybe it's a better experience if you have a decently fast laptop)

                        • taeric 19 hours ago

                          I'm assuming you've seen https://www.youtube.com/watch?v=7jiPeIFXb6U&t=61s? I know I found it far more amusing than I should have when it was released.

                          I will confess that I found Mathematica kind of neat back in the day. I never got as good with it as peers did. I'm curious if that would be different for me today.

                          • 3eb7988a1663 15 hours ago

                            That video cannot be seen without watching Jeremy Howard's rebuttal: I Like Notebooks. I also believe this was the video that got him kicked out of a conference(?) because it was too confrontational? Which was just ugly for a guy who clearly loves being an educator.

                            [0] https://www.youtube.com/watch?v=9Q6sLbz37gk

                          • lamename a day ago

                            IME notebooks in VS Code are even worse (but improving). Jupyter lab is faster...but that depends on how fast you prefer ;)

                            • wenc 21 hours ago

                              I have the exact opposite experience — VS Code notebooks are much snappier and are possibly the best Jupyter implementations I’ve ever used (better and more responsive than vanilla Jupyter or Jupyter labs).

                              VS code notebooks also support LSPs with refactoring, typing etc. Black is supported. Step by step debugging is supported. Venv is built in.

                              There are so many conveniennces in VS Code that whenever I have to use Jupyter Lab I feel a lot of stuff is missing.

                              • undefined 3 hours ago
                                [deleted]
                                • 3eb7988a1663 15 hours ago

                                  I agree with you that the VSCode experience feels superior. It integrates a lot of the other various IDE widgets into the notebook experience. Code formatting, variable definitions, spell checker, non-garbage tier code hints, etc. The little timer noting the time it takes to run a cell alone is a huge boon.

                                  My only complaint is how white space heavy the VSCode layout is by default. Probably can be customized, but I have never dug into it.

                                  • adolph 17 hours ago

                                    Killer feature of VS Code notebooks is Vim keybindings. It also manages movement between cells, so you have to be very aware of the current mode.

                                    • dmurray 15 hours ago

                                      Hitting Escape in normal mode takes you out of editing the cell and into "notebook manipulation mode" instead. This is so counter to the way Vim normally works - Esc should leave you in normal mode no matter where you started - that I found it almost unusable until I realised I could just remap that binding. I made it Shift-Esc and am very happy with it now.

                                • bsimpson 16 hours ago

                                  I've only used them in Colab, which feels a lot like a Codepen. It's a self-contained scratchpad that's easily linkable to send to others.

                                  • Fraterkes a day ago

                                    Also I always think it's a littly sad that Jupyter was one of the best shots for Julia to get more mainstream attention, and instead the notebooks people write are basically exclusively python

                                    • paddy_m 16 hours ago

                                      Also the Julia people wrote their own notebook system called Pluto. Which is so on brand for them. It might be technically better, but they miss out on the whole jupyter ecosystem, further isolating the language.

                                    • wenc 21 hours ago

                                      Sounds like you’ve diagnosed your issue in the last line.

                                      Notebooks are usually not inherently slow — I use Jupyter in VS Code running off a remote server and it’s snappy.

                                      I have a MacBook Pro 2020.

                                      • zeofig 14 hours ago

                                        I have to admit that I hate them and view them as abominations. But that's just my personal opinion.

                                        • undefined 21 hours ago
                                          [deleted]
                                        • mhh__ 17 hours ago

                                          I've been using Marimo along these lines recently. I'm fan. So so glad to not use Jupyter.

                                          • undefined 16 hours ago
                                            [deleted]
                                            • bsimpson 16 hours ago

                                              I love that notebooks started as a student hacking together a Python fork and now they're core infrastructure for all these places trying to make sense of GenAI.

                                              • undefined a day ago
                                                [deleted]
                                                • kyrrewk a day ago

                                                  this is cool! wish there was a commerical product that did this. marimo does something similar, but you have to do the deployment yourself

                                                  • mscolnick 21 hours ago

                                                    marimo has a playground to run notebooks via WebAssembly - similar to Bento - without having to deploy yourself: https://marimo.app/

                                                  • big-chungus4 a day ago

                                                    can I, a mere mortal, use it?

                                                    • web3aj a day ago

                                                      The internal tools at Meta are incredible tbh. There’s an ecosystem of well-designed internal tools that talk to each other. That was my favorite part of working there.

                                                      • Random_BSD_Geek a day ago

                                                        Polar opposite of my experience. To achieve the technical equivalent of changing a lightbulb, spend the entire day wrangling a dozen tools which are broken in different ways, maintained by teams that no longer exist or have completely rolled over, only to arrive at the finish line and discover we don't use those lightbulbs anymore. Move things and break fast.

                                                        • loeg a day ago

                                                          IMO there's a mix of a few really good, widely used, well-supported tools as well as a long tail of random tiny tools where the original team is gone that are cruftier.

                                                          • uuddlrlrbaba a day ago

                                                            Mmm breakfast

                                                            • grantsucceeded 20 hours ago

                                                              haha the reason I stayed as long as i did

                                                              • undefined 13 hours ago
                                                                [deleted]
                                                            • extr a day ago

                                                              Yeah 100%. I found it immensely frustrating to be using tools with no community (except internally), so-so documentation, and features that were clearly broken in a way that would be unacceptable for a regular consumer product. If you have a question or error not covered by an internal search or documentation, good luck, you'll need it. Literally part of the reason I left the company.

                                                              • landedgentry 20 hours ago

                                                                Well, you're supposed to read the code and figure it out. And if you can't, you're not good enough an engineer. According to people at Meta.

                                                                • KaiserPro 6 hours ago

                                                                  Welcome to meta! where everything is a murder mystery.

                                                                  Except you're not really sure if there has been a murder, or sometimes you wonder if you're the murderer, because at every turn you're told that you've been a bad dev for trying x,y and z

                                                                  • extr 19 hours ago

                                                                    People probably think you’re exaggerating but it’s true. Sometimes when I would get blocked the suggestion was to “read the source code” or “submit a fix” on some far flung internal project. Huge fucking waste of time and effort, completely unserious.

                                                                    • tru3_power 13 hours ago

                                                                      No matter what, tools will be broken. Having access to the source and being able to land a diff to fix the issue is awesome imo.

                                                                      • extr 12 hours ago

                                                                        That’s how open source already works by default. The difference is if an OSS tool is broken my boss doesn’t imply landing a fix is my responsibility on top of my regular job duties.

                                                                        • majormajor 9 hours ago

                                                                          Working around it is somehow is. A huge part of my work has been plumbing and hacking around limitations in mediocre-at-best OSS tools.

                                                                          Lots of nonserious companies that take those issues as enough of a reason to move slowly.

                                                                          Many fewer serious ones where bad tooling is expected to be fixed, smoothed over, or replaced entirely in the interest of future dev time.

                                                                        • KaiserPro 5 hours ago

                                                                          > Having access to the source

                                                                          Yes, thats great.

                                                                          > being able to land a diff to fix the issue is awesome imo.

                                                                          yes, if its a one off. but for my last project that would involve spinning up many "XFNs" (multi-team chat fests) to argue that actually they don't want to have that change because of reason x,y and z.

                                                                          At which point you just give up and make a stupid fucking hack.

                                                                          So much is not about engineering excellence, its about trying to get people to accept change.

                                                                        • hnav 16 hours ago

                                                                          Doesn't sound like your type of company tbh, the flipside is that a "serious" company will often have broken bs too except now nobody is going to look at your contribution/fix.

                                                                          • KaiserPro 6 hours ago

                                                                            Pfft.

                                                                            "your type of company" sod off. Meta is only like this because its got a massive advertising revenue stream.

                                                                            the sheer amount of engineering time wasted because we don't document stuff is astounding.

                                                                            For example, how many message queue systems do we have?

                                                                            how many half arsed message queues have been created because they didn't know about FOQS?

                                                                            • extr 2 hours ago

                                                                              Yes lmao, the number of times I would start off on some nominally useful task only to find out 3 weeks later that there is actually already a solution to that created by team XYZ that nobody in my reporting chain has ever heard of…(3 weeks was optimistic case, I remember my team member getting like 2 months in to some new data pipeline before finding out some tables already existed that did what he needed…)

                                                                        • moandcompany 18 hours ago

                                                                          Same as Google. Many internal tools have painful interfaces and poor or documentation because the hiring bar was high and it was acceptable to assume that the user's skill level is high enough to figure it out. That attitude becomes a bigger problem when trying to sell tools to the public (e.g. Google Cloud Platform).

                                                                          • yodsanklai 18 hours ago

                                                                            As an outsider, I was always under the impression that Google had a tradition of engineering excellence (robust tools, clean and while tested code following strict guidelines), while Meta has more of a Hacker culture (move fast and break things).

                                                                        • fsociety 13 hours ago

                                                                          Or you know, go chat with the tool maintainers because they want people using them for impact.

                                                                        • zer0zzz a day ago

                                                                          Agreed. I often get my work done using open source build instructions and tools and then when everything works I port it to internal infra. Other people are the opposite though, which for open source based code bases has a nasty side effect of the work having no upstream able tests!

                                                                        • aprilthird2021 11 hours ago

                                                                          But you're both talking about different things. The tools are both often left in disuse, lacking documentation, etc. But they also have a really tight integration with each other that allows for unparalleled visibility and ability over enormous systems with many moving parts.

                                                                          • bozhark 18 hours ago

                                                                            Move Smooth and Fix Things (tm) is our nonprofit corporation’s version of this atrocious motto.

                                                                            • ElonChrist 12 hours ago

                                                                              It's been awhile, but I recall fighting with the massive checkout sizes to do anything of consequence with the internal tooling causing the vms to run out of disk space and corrupt my work. I got very used to rsyncing to my laptop every few minutes and rebuilding the vm multiple times per day. Totally frustrating and pointless waste of time.

                                                                          • moandcompany 21 hours ago

                                                                            My opinion: Many Meta tools and processes seem like they were created by former Googlers that sought to recreate something they previously had at Google, during the Google->FB Exodus, but also changed aspects of the tool that were annoying or diverged from their needs. This is not a bad thing.

                                                                            Since Bento doesn't appear to be usable by the public, aparallel version of this that people can get a feel for cross-tool integration would be Google's Colaboratory / Colab notebooks (https://colab.research.google.com/) that have many baked-in integrations driven by actual internal use (i.e. dogfooding).

                                                                            • kridsdale3 20 hours ago

                                                                              As someone from both, I confirm/support your opinion 100%.

                                                                              • mark_l_watson 6 hours ago

                                                                                I agree, the paid for Pro version of Colab just seems to have the features I need. I often use it because it simply saves me time and hassles.

                                                                              • KaiserPro 6 hours ago

                                                                                You and I must be working in different areas.

                                                                                For any kind of general Python/C++ work, its a _massive_ pain.

                                                                                The integrated debugger rarely works, and its a 30 minute recompile to figure that out. The documentation for actually being efficient in build/run/test is basically "ask the old guy in the corner". You'd best hope they know and are willing to share.

                                                                                The code search is great! The downside is that nobody bothers to document stuff, so thats all you've got. (comments/docstrings are for weaklings apparently)

                                                                                You want to use a common third party library? You'd best hope its already ingested, otherwise you're going to be spending the next few days trying to get that into the codebase. (yes there are auto tools, no they don't always work.) Also, you're now on the hook to do security upgrades.

                                                                                • JohnMakin a day ago

                                                                                  One of the crazier things a L4 meta colleague of mine told me, that I still don’t believe entirely, is that meta pretty much has their own fork of everything, even tools like git. is this true?

                                                                                  • tqi a day ago

                                                                                    Facebook actually doesn't use git, they use mercurial (https://graphite.dev/blog/why-facebook-doesnt-use-git).

                                                                                    That decision is also illustrative of why they end up forking most things - Facebook's usage patterns at the far extreme end for almost any tool, and things thats are non-issues with fewer engineers or a smaller codebase become complete blockers.

                                                                                    • kridsdale3 20 hours ago

                                                                                      Yes when I used to talk about this to interviewees, I described that every tool people commonly use is somewhere on the Big-O curves for scaling. Most of the time we don't really care if a tool is O(n) or O(10 n) or whatever.

                                                                                      At Meta, N tends to be hundreds of billions to hundreds of trillions.

                                                                                      So your algorithm REALLY matters. And git has a Big-O that is worse than Mercurial, so we had to switch.

                                                                                      • steventhedev 12 hours ago

                                                                                        I'm gonna disagree with you there. The difference was with stat patterns, and the person at Facebook who ran the tests had something wrong with the disk setup that was causing it to run slowly. They ignored multiple responses that reproduced very different results.

                                                                                        Nail in the coffin on this was a benchmark GitHub ran two years ago that got the results that FB should have: git status within seconds.

                                                                                        Facebook didn't use mercurial because of big O, they used it because of hubris and a bad disk config.

                                                                                        • sangnoir 7 hours ago

                                                                                          > Facebook didn't use mercurial because of big O, they used it because of hubris and a bad disk config.

                                                                                          Half-remembering a blog post I read - the git maintainers also wouldn't give Facebook the time of day on code changes to accommodate FBs requirements. Mercurial was more amenable. This also disproves the "Facebook has a fork of evertyhing, because the attempted to upstream the changes they wanted)

                                                                                          • deadmutex 11 hours ago

                                                                                            This sounds plausible, but would love a source

                                                                                            • steventhedev 9 hours ago

                                                                                              I should probably just write it up into a post, but the git mailing list at the time is the source (I remember reading it from the side a few months after convincing our VP R&D to switch from svn to git). We were chuckling around the same time that FB had to reallocate the stack on Galaxy S2 phones because they were somehow unaware of proguard or unable to have it work properly with their codegen.

                                                                                              Anyways:

                                                                                              1. Github benchmark: https://github.blog/engineering/infrastructure/improve-git-m...

                                                                                              2. The original email thread: https://public-inbox.org/git/CB04005C.2C669%25joshua.redston...

                                                                                              3. There's another email thread that gets linked everywhere - but in light of the prior thread, the numbers don't track: https://public-inbox.org/git/CB5074CF.3AD7A%25joshua.redston...

                                                                                              I recall there being a message from someone either at AirBnB or Uber who mentioned that they have a similar monorepo but without the slow git status, but can't seem to find it now - it's likely on one of the other mailing list archives but didn't make it to this one.

                                                                                              Point being that painting this as "the community was hostile" or "git is too slow for FB" is just disingenuous. The FB engineer barely communicated with the git team (at least publicly) and when there was communication, it was pushing a single benchmark that was deeply flawed, and then ignoring feedback on how to both improve the performance of slow blame, commit by repacking checkpoint packfiles (a one-off effort) and also ignoring feedback that the benchmark numbers didn't make sense in absolute terms.

                                                                                          • undefined 19 hours ago
                                                                                            [deleted]
                                                                                            • master_crab 12 hours ago

                                                                                              If git is blocking you, you are using it wrong. Lotta instances of people treating it as an artifact repository. Use it correctly with a branching strategy that works for your use case and it's bulletproof.

                                                                                              Plenty of other customers with the same magnitude problems as Meta are using Git perfectly fine.

                                                                                              • quicklime 11 hours ago

                                                                                                Who are the others with the same magnitude as Google and Meta’s monorepos?

                                                                                                • master_crab 3 hours ago

                                                                                                  No one. Because people should know better than to use monorepos. Most teams at Amazon (which works at the same scale) religiously avoided them.

                                                                                                  • ec109685 2 hours ago

                                                                                                    Microsoft has all of windows in a single repository.

                                                                                                    • disgruntledphd2 9 hours ago

                                                                                                      Particularly in 2014, when the git thing happened.

                                                                                                    • KaiserPro 6 hours ago

                                                                                                      > Plenty of other customers with the same magnitude problems as Meta are using Git perfectly fine.

                                                                                                      I mean there aren't. there are perhaps three places that have the same scale problem.

                                                                                                      A monorepo for a place with about 50k developers, that has been operating at that scale for 5 years.

                                                                                                      The current checkout if not sparse would be >80gigs

                                                                                                      The commit rate is > 20 a second.

                                                                                                      no amount of branching strategy is going to help on that.

                                                                                                      I love git, I used it professionally since 2010, but git is not a good fit for something _massive_

                                                                                                • herval 4 hours ago

                                                                                                  FB uses mercurial _for most things_, but like any company that size, there's teams that use git and even teams that use perforce

                                                                                                  • LarsDu88 18 hours ago

                                                                                                    They use sapling. An in-house clone of mercurial that was open sourced 2 years ago

                                                                                                  • ipsum2 21 hours ago

                                                                                                    Yep. Zeus is a fork of Zookeeper, Hack is a fork of PHP, etc. It's usually needed to make it work with the internal environment.

                                                                                                    The few things that don't have forks are usually the open source projects like React or PyTorch, but even those have some custom features added to make it work with FB internals.

                                                                                                    • gcr 21 hours ago

                                                                                                      This is also how things work at Google.

                                                                                                      Google also maintains a monorepo with "forks" of all software that they use. History diverges, but is occasionally synchronized for things like security updates etc.

                                                                                                      • zhengyi13 19 hours ago

                                                                                                        Am I completely off-base/confused thinking that the GFE originally started life (like back under csilver) as a fork of boa[0]?

                                                                                                        [0]: http://www.boa.org/

                                                                                                        • lacker 18 hours ago

                                                                                                          I thought it was GWS that originally started as a fork of boa.

                                                                                                      • grantsucceeded 20 hours ago

                                                                                                        Few companies experienced the explosive growth fb did, though many will claim to have done so. Hack made the existing codebase of php scale to insane levels while reaching escape velocity for the overall company to even attempt to transition away or shrink the php codebase, as i recall (i was an SRE, not a dev)

                                                                                                        zeus likewise.

                                                                                                        • ipsum2 19 hours ago

                                                                                                          You worked at FB, but you call yourself an SRE, not a PE? ;)

                                                                                                          • KaiserPro 5 hours ago

                                                                                                            PEs are still quite new remember....

                                                                                                            • fragmede 18 hours ago

                                                                                                              You still call it Facebook?

                                                                                                              • undefined 18 hours ago
                                                                                                                [deleted]
                                                                                                          • ahupp 10 hours ago

                                                                                                            nit: HHVM was a completely new implementation of a runtime for a PHP-like language, it wasn't a fork of Zend.

                                                                                                          • jamra a day ago

                                                                                                            Meta doesn't use git. It uses mercurial. It does fork it because they have a huge monorepo. They created a concept of stacked commits which is a way of not having branches. Each commit is in a stack and then merged into master. Lots of things built for scaling.

                                                                                                            • sdenton4 a day ago

                                                                                                              It wouldn't be terribly surprising. Forking everything provides a liiiitle bit of protection against things like the 'left pad' incident.

                                                                                                              • undefined 20 hours ago
                                                                                                                [deleted]
                                                                                                                • 3eb7988a1663 15 hours ago

                                                                                                                  Left pad was from the creator pulling the code from the public source forge, not from a destructive code change.

                                                                                                                  I assume all of the big tech companies host internal mirrors of every single code dependency + tooling. Otherwise they could not guarantee that they can build all of their code.

                                                                                                              • jchonphoenix a day ago

                                                                                                                Meta tools are best in class when the requirement is scale. Or that the external tools haven't matured yet

                                                                                                                • undefined a day ago
                                                                                                                  [deleted]
                                                                                                                  • crabbone a day ago

                                                                                                                    A friend of mine is doing his PHD while being an intern at Meta. He does not share your excitement... at all. To summarize his complaints: a framework written a long while ago with design flaws that were cast in stone, that requires exorbitant effort to accomplish simple things (under the pretense of global integration that usually isn't needed, but even if was needed, would still not work).

                                                                                                                    • sangnoir 7 hours ago

                                                                                                                      How long has he been interning? Is it long enough for him to have learned how long the timescale big-tech roadmaps operate on? If he wants a feature, he better write it himself (if his PR doesn't conflict with an upcoming rewrite, coming "soon"), or lobby to get it slotted for the second quarter of 2026.

                                                                                                                      • crabbone 3 hours ago

                                                                                                                        He started right about the time COVID started, so... about four years now, I think. I'm not sure if those were contiguous though.

                                                                                                                        I'm not sure what your idea about PRs and features has to do with the above... he's not there to work on the internal infra framework. He's there for ML stuff. Unfortunately, the road to the later goes through the former, but he's not really a kind of programmer who'd deal with Facebook's infrastructure and plumbing.

                                                                                                                        The point is, it's inconvenient. Is it inconvenient because Facebook works on a five-year plan basis or whatever other reason they have for it doesn't really matter. It's just not good.

                                                                                                                        I also have no problems admitting that all big companies (two in total, one being Google) I worked for so far had bad internal tools. I don't imagine Facebook is anything special in this respect. I just don't feel like it's necessary to justify it in any way. It's just a fact of life: large companies have a tendency to produce bad internal tools (but small often have none whatsoever!) It's a water is wet kind of thing...

                                                                                                                      • almostgotcaught 13 hours ago

                                                                                                                        > A friend of mine is doing his PHD while being an intern at Meta

                                                                                                                        I interned thrice as phd student at FB. your friend isn't entirely wrong but also just doesn't have enough experience to judge. all enormous companies are like this. FB is far and away better than almost all such companies (probably only with the exception of Google/Netflix).

                                                                                                                        • crabbone 3 hours ago

                                                                                                                          I don't see why saying that Facebook's tools are bad should be invalidated by saying that Google's or others' tools are bad too. Google being bad doesn't vindicate or improve Facebook tools. There's no need for perspective: if it doesn't work well for what's it designed to do, then that's all there is to it.

                                                                                                                          • jonathanyc 9 hours ago

                                                                                                                            Agreed. I'm reading some complaints in the thread about being told to "just read the source code" for internal tools at Meta. When I worked at Apple we didn't even get the source code!

                                                                                                                          • slt2021 a day ago

                                                                                                                            how else can you build empire as Engineering Manager and get promo?

                                                                                                                            fork open source, then demand resources to maintian this monster.

                                                                                                                            easiest promotion + job security.

                                                                                                                            its even called "Platform Engineering" these days

                                                                                                                          • Qshdg a day ago

                                                                                                                            Looking at some of the bureaucracy in their open source projects, I'd say that they need less tooling and more thinking. These tools help to keep spaghetti code bases from imploding totally.

                                                                                                                            • baggiponte 21 hours ago

                                                                                                                              Uuuh can you tell a bit more about wasabi, the Python LSP? Saw a post years ago and been eager to see whether it’d be open sourced (or why it wouldn’t).

                                                                                                                              • undefined 3 hours ago
                                                                                                                                [deleted]
                                                                                                                              • undefined 3 hours ago
                                                                                                                                [deleted]
                                                                                                                                • ryannz 11 hours ago

                                                                                                                                  we are building libro notebook, you can try on https://github.com/difizen/libro