_009 | 3 years ago | on: Scrum has failed the developers
_009's comments
_009 | 3 years ago | on: 35 years of 'RoboCop': An unforgettable vision of techno-fascist America
> my friends call me murphy you call me robocop
_009 | 4 years ago | on: AWS is not a dumb pipe
_009 | 4 years ago | on: Tesla pulled its latest ‘Full Self Driving’ beta after testers complained
If you watch Tesla's AI presentation, https://www.youtube.com/watch?v=HUP6Z5voiS8, you will notice that they have multiple AI's stacked on each other, which IMO is a step back from truly e2e multimodal AI system. So even with their custom fancy hardware, multimodal is too hard.
I wonder, wouldn't it be better to use geo fencing (using H3), and have the car download the model depending on the zone where it is driving? And optimize multiple models based on "driver engagements"? This could fix the problem of zones where there are particularities in the driving, road, or human activities, and allow for model optimization to happen on a smaller vector space than the whole world. For example, why not have a model for US highways, LA, New Deli, UK, so on.
Tesla also knows where the cars are, and control their expansion plans worldwide, which could inform model prioritization roadmap.
In my mind, it will be easier to test, debug, label, optimize, and guarantee quality to users, that at the end of the day, without knowing exact statistics, I am dare to say spend more than 70% of the time driving around the same county/city/area/town?
_009 | 4 years ago | on: Anthony Levandowski to Larry Page: Google's self-driving project is broken (2016)
Old days where different, today, it's about leetcode and being overly happy on zoom calls, and playing along investors playbooks... Capitalist only left the hoodies, and that's because another 100m funded startup from their portfolio are selling them.
Feeling nostalgic...
_009 | 4 years ago | on: A primer on the OpenAI API – Part 1
I would say that anything that can be stated as a large-scale supervised reinforced learning problem is a gold mine -- if the output of course, has value and supervision is free.
Tesla self-driving and Comma.ai, from an eagle's eye view, exploit the same concept.
_009 | 4 years ago | on: NASA's “Tour of Asteroid Bennu” Selected for Siggraph Film Festival
From wikipedia:
> Such asteroids are considered "primitive", having undergone little geological change from their time of formation. In particular, Bennu was selected because of the availability of pristine carbonaceous material, a key element in organic molecules necessary for life as well as representative of matter from before the formation of Earth. Organic molecules, such as amino acids, have previously been found in meteorite and comet samples, indicating that some ingredients necessary for life can be naturally synthesized in outer space.
_009 | 4 years ago | on: Ask HN: Are there any toolkits, ref arch, designs, for DIY low orbit sats?
Wow, hardware already made it to low-orbit, https://upsat.gr/?p=418 (2017-04-20)
> At April 18th 11:11 EDT at Cape Canaveral in Florida, an Atlas-V rocket launched a Cygnus cargo spacecraft to dock to the Internation Space Station with supplies and scientific experiments. Among its cargo UPSat, the first open source hardware and software satellite bound to be released in orbit by the NanoRacks deployment system on-board ISS in the coming weeks.
_009 | 4 years ago | on: Nearest neighbor indexes for similarity search
Currently, ES and Solr, both based on Lucene, can't really manage vector representations, as they are mainly based on inverted indexes to n-grams.
ANNs potential applications extend to audio, bioinformatics, video, among any modality that can be represented as a vector. All you need is an encoder! How nice.
Faiss is definitely powerful. I have been running experiments using 80 million vectors that map to legal documents, and vectorizing protein-folds (using Alphafold). While it is an interesting technology, at this moment, perhaps for my usecases, I see it more as a lib or tool than a full-featured product like ES or Solr.
For instance, ATM, updating a Faiss index is a non trivial process, with many of the workflow tools you would expect in ES missing. There is also the problem of encoding the input into vectors, which takes a few milliseconds (do you batch, parallelize, are you ok with eventual consistency?).
I recently been found with pgvector (postgres + vector support) https://github.com/ankane/pgvector. Perhaps less performant, but easier to work with for teams. With support of migrations, ORM, sharing, and all the postgres goodies.
Another interesting/product-ready alternative is https://jina.ai.
And Google's ScaNN, https://www.youtube.com/watch?v=0SvrDtnUgV4
_009 | 4 years ago | on: Ask HN: What are you using to replace shared iCloud Photos albums?
While KimDotCom is an impressive hacker, I am not sure that I would love to be the target of the FEDs around the world as he is still in the eye of the US.
Fun story about MegaUpload.
I once lived in Argentina back in the MegaUpload days. At the time, piracy was the norm (not only in Argentina), the gov didn't care, and people where selling pirated, burned DVD on the streets. This was a downtown, a high transited area.
Then MegaUpload started to grow like fire, and I remember that starting at 4 pm, the internet would get awfully slow. As people get off their jobs to download the latest movie or episode out there. Then PopcornTime, and things got even worst. Cant find the stat, but I remember something along the line of 60% of Buenos Aires traffic being MegaUpload's at peak time (4-10pm), which caused a lot of controversy at the time.
Old days...
_009 | 4 years ago | on: Postgres Full-Text Search: A search engine in a database
I worked with ActiveColab in 2007, Skype 2007, Yammer 2009, Trello 2011, Pivotal Tracker 2013, Trello 2016, Confluence 2022, Slack 2013, Google Meet, and sometimes I think, scrum became _less-relevant_ over the years as more advanced product management tools became the norm and the product manager role matured by leveraging them.
These days, it's not rare to see lead developers manage kanban-like boards very effectively, releasing on time, with grace, without the need of a scrum master to coordinate efforts.
I do like asynchronous scrum daily standups using http://geekbot.com on slack, when on-site or/and distributed and doing sprints. I seen this work well on startups going from pre-seed to series B.
Personally, I am fascinated with team dynamics and how they've changed over the years. We are definitely living the best of times as a developer and I still see sparkles of well-applied scrum every now and then that works nicely.