Cosmin Dolha

3.1K posts

Cosmin Dolha banner
Cosmin Dolha

Cosmin Dolha

@CosminDolha

Technologic

Arad, România, Europe, Earth Katılım Nisan 2015
1.9K Takip Edilen1.4K Takipçiler
Sabitlenmiş Tweet
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Everybody will have a built-in app replicator.
English
0
0
0
67
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Good results for $QCOM - can’t wait to see the data center custom silicon.
Cristiano R. Amon@cristianoamon

My thoughts on @Qualcomm’s Q2 FY26 Financial Results. For a cautionary note regarding forward-looking statements, information regarding our use of non-GAAP financial measures and a reconciliation to the most directly comparable GAAP measures, please see our earnings presentation available on our Investor Relations website: investor.qualcomm.com/news-events/in… $QCOM

English
0
0
0
111
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Speculating a bit, how would a new device with $QCOM chips from OpenAI work? I expect an NPU made for voice decoding (think Whisper in hardware), but also STT. That alone would be a big win and cut latency down significantly. If you solve audio on the device, the latency will be good enough for natural speech and all-day interaction. On top of this, they might enable some efficient LLM on the device for simple tasks, like controlling the ui, different functions like reminders, calendar, weather, simple summarization, etc. Not all interactions need a powerful state-of-the-art model. It’s about time we have a new more useful device.
English
0
0
0
54
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Is OpenAI going to release the wearable device soon cough, cough $QCOM ?
English
0
0
0
121
Cosmin Dolha retweetledi
NASA
NASA@NASA·
HOME. The Artemis II crew has arrived back on Earth, ending a nearly 10-day journey around the Moon. The trip took them farther into space than humans have ever gone before, and now they're safely home with us. go.nasa.gov/41r9eL0
NASA tweet media
English
2.4K
33.7K
201.7K
5.3M
Cosmin Dolha
Cosmin Dolha@CosminDolha·
ChatGPT Pro saved the day again and found the solution to today's problem, implementing an USB audio plug-and-play device in RP2040 with a microphone (INMP441). Tomorrow, I’ll start with audio output as well. I wanted this for my uConsole device, so one config will be mic only since the device already has speakers, and once the other add-ons come, I can stick it inside and put the mic in a good place that can pick up sounds really well. Ran out of XIAO RP2040 boards, this little things are extremely useful, so ordered a few more from @seeedstudio and the cool thing is that they arrive fast since they are from EU warehouse.
Cosmin Dolha tweet media
English
0
0
0
83
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Similar but for coded projects. I have a few folders, with a lot of projects and experiments, some Python, C, ESP-IDF, CircuitPython, Micropython, Lua, etc. Each in its own folder, some of them interact across multiple languages. I made Codex go through each folder, index what it is about, put it in an index HTML with a short description for each. Now when I tell Codex to do something, it goes to that index, looks if there is something there it can re-use, and sometimes finds stuff there that is useful, modifies them and uses them in the current project. Then re-index them with Codex again. The benefit is that I get ready-almost-made complex components that Codex does not have to spend tokens to reinvent, and just use them, or modify them for current use.
Cosmin Dolha tweet media
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
1
0
1
85
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Here is a hack for your ChatGPT, Codex, OpenClaw, whatever you use: Go to principlesyou.com, take the test, download the PDF, feed it to ChatGPT Pro, or a similar powerful model, tell it to analyze it carefully, and build an instruction prompt that will make it work better for your personality, so that it fits, helps you, etc. Not only do the LLMs need grounded truth, you do too! And the agents will be better if they work with your real personality, as opposed to what you think about yourself. You can use other professional-validated personality tests too; it does not have to be the one from Ray Dalio; it's just that this one is focussed more on discovering your "work" mode personality, so it will help you being more productive with AI, if that is your thing.
English
0
0
0
59
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Having kids should be a status thing, then it will work.
Joscha Bach@Plinz

@mboudry @clairlemon See how rational you feel when you die rich and alone, mourned by your cat, and ask yourself what this life was for

English
0
0
0
11
Cosmin Dolha
Cosmin Dolha@CosminDolha·
TTS models with design capabilities are really cool and this one works very fast on my macstudio: mlx-community/Qwen3-TTS-12Hz-1.7B-VoiceDesign-8bit
English
0
0
0
59
Cosmin Dolha
Cosmin Dolha@CosminDolha·
Low power, and with BLE Audio! = Always on listening, AI client. Advertising without CPU involvement Direction Finding (AoA/AoD) for high-accuracy indoor positioning This chip is very well thought for the incoming massive AI distributed computing, smart, very smart Espressif! espressif.com/en/news/ESP32_…
English
0
0
0
30