jexp | 9 months ago | on: Open-sourcing circuit tracing tools
jexp's comments
jexp | 1 year ago | on: Ask HN: Do you track how your email address is used?
jexp | 1 year ago | on: What Is a Knowledge Graph?
Did you see the two blog posts that Tomaz Bratanic did on the topic?
For the ingestion: https://neo4j.com/developer-blog/global-graphrag-neo4j-langc... For the retrievers: https://neo4j.com/developer-blog/microsoft-graphrag-neo4j/
My general point on GraphRAG is that it extracts and compresses the horizontal topic-clustering across many documents and makes that available for retrieval.
And that by creating the semantic network of entities, you can use patterns in the graph structure to answer questions that rely on information coming together from different documents. Think the detectives board connecting facts with strings from many different sources.
Feel free to ping me for a deeper discussion: michael at neo4j
jexp | 1 year ago | on: The Algorithm Behind Jim Simons's Success
Very secretive all external partners were bought out. Only hundred or so people benefited in the billions per person. Including Robert Mercer of Trump campaign financing and Cambridge Analytica fame.
Very interesting but also disheartening episode about smart people only caring about getting richer.
jexp | 1 year ago | on: Long-Term, Personalized Memory for AI Agents Using Graph DBs
You can also construct graphs with an llm out of text. See here. https://neo4j.com/labs/genai-ecosystem/llm-graph-builder/
jexp | 1 year ago | on: TSMC was founded by Morris Chang when he was 55 years old
jexp | 2 years ago | on: Running Hugging Face GGUF Models Locally with Ollama [video]
jexp | 2 years ago | on: God writes Haskell
https://www.prometheus-music.com/audio/eternalflame.mp3
Refrain (full lyrics): http://www.songworm.com/lyrics/songworm-parody/EternalFlame....
For God wrote in Lisp code
When he filled the leaves with green.
The fractal flowers and recursive roots:
The most lovely hack I’ve seen.
And when I ponder snowflakes, never finding two the same,
I know God likes a language with its own four-letter name.
jexp | 2 years ago | on: Inside Google Founder Sergey Brin’s Plan to Build Airships
They operated in the early 2000s and went bankrupt.
They construction dome is as high as the Statue of Liberty and as long as the Eiffel Tower. Now used as indoor tropical resort.
jexp | 2 years ago | on: Germany’s Nuclear Phase-Out Has Been a Disaster
The renewable energy transition was blocked and delayed by the same Merkel govt. Germany was once leading in wind and PV energy and all those industries were destroyed and almost 100k jobs lost. 60bn subsidies per year go to fossil fuel companies including coal mining and burning. Often under the disguise of job retention. All through industrial lobbying and strong unions in the fossil fuel industries.
jexp | 2 years ago | on: Ask HN: What lesser-known accessories do you use with your computer?
jexp | 2 years ago | on: Ask HN: How do you track your work hours?
It even made it on LifeHacker back then: https://lifehacker.com/track-your-time-with-lego-bricks-3997...
The article is only on the internet archive these days https://web.archive.org/web/20081206084136/http://jexp.de/bl...
jexp | 3 years ago | on: Ask HN: What Is Going on with Neo4j?
jexp | 4 years ago | on: Generating JSON Directly from Postgres
MATCH (e:Employee) RETURN e { .* } as employee;
MATCH (e:Employee) RETURN collect(e { .* }) as employees;
MATCH (e:Employee)-[:IN]->(d:Department) WITH d, collect(e {.*}) as employees
jexp | 4 years ago | on: Neo4j raises $325M series F
When I started back then in 2016 with it, it was pretty cool how directly graphql mapped to the graph model in the db.
jexp | 4 years ago | on: Neo4j raises $325M series F
jexp | 5 years ago | on: Build your next app with a graph database
And changing the tagline on relational database from "Relational databases: a software engineering fail" to "Relational databases: engineering success is not always the best software engineering fit"
https://dgraph.io/blog/post/graphdb-for-your-next-app/
Fortunately internet archive still has the previous version, that the comments here were discussing. https://web.archive.org/web/20200709192510/https://dgraph.io...
jexp | 8 years ago | on: Ask HN: If you've used a graph database, would you use it again?
Every database benefits from having the _hot_ dataset in memory, so that's the same with Neo4j.
2011 was many years ago, since then the memory management has been completely rewritten. You very probably wouldn't use the Neo4j Browser in production as it is meant to be a developer tool. Usually, you would build an app that uses the drivers to connect to the db.
jexp | 8 years ago | on: Ask HN: If you've used a graph database, would you use it again?
In the graph databases book (graphdatabases.com) there is a chapter on the internal architecture of Neo4j.
jexp | 8 years ago | on: Ask HN: If you've used a graph database, would you use it again?
"Claiming ACID" what is ambiguous about that? Transaction support with different serialization levels, like other databases that offer it.
And Neo4j originally started b/c RDBMS was not able to execute the complex deep traversals needed in real time. Dedicated storage & query engine for graphs allow you to run statements quickly that would otherwise take too long to execute.
Regarding the data model, the property-graph model is much closer to the object model but with richer relationships, it doesn't suffer from the object-rdbms impedance mismatch and is better suited to express real-world domains & scenarios. It also represents semantic relevant relationships as first class citizens in the database, allowing for proper information representation and much faster retrieval.
Disclaimer: I work with/for Neo4j, for 8+ years and still love it.
Have fun
https://gist.github.com/jexp/8d991d1e543c5a576a3f1ee70132ce7...