HackerTrans
トップ新着トレンドコメント過去質問紹介求人

mrtimo

no profile record

投稿

iPhone Launch – Studio C (Comedy Sketch) [video]

youtube.com
1 ポイント·投稿者 mrtimo·2 か月前·0 コメント

Dark Web Data Pricing 2025: Real Costs of Stolen Data and Services

deepstrike.io
2 ポイント·投稿者 mrtimo·6 か月前·0 コメント

Mistral misspelled Ministral on HuggingFace and Ollama

huggingface.co
4 ポイント·投稿者 mrtimo·7 か月前·1 コメント

コメント

mrtimo
·8 日前·議論
Thanks for sharing all this. Where is the submission page on claude / openAI to submit MCP servers to their directories?
mrtimo
·9 日前·議論
Question: I have an MCP server that is working well with Auth (Google Only), running on vercel. What benefit would I get from running it on manufact?

On monetizing my MCP... How do the different MCP "Stores" handle this? Do some take a cut? Or are they agnostic? Does manufact help with monetization?
mrtimo
·2 か月前·議論
Can it be run as a static site(github pages) ?
mrtimo
·2 か月前·議論
This is awesome. Is your code open source? It would be cool to make a textbook for SQL in this format.
mrtimo
·3 か月前·議論
If you are a data scientist or do anything with data... duckdb is like a swiss army knife. So many great ways it can help your workflow. The original video from CMU in 2020 [1] is a classic. Minutes 3-8 present a good argument for adding duckdb to your data cleaning/processing workflow.

And if you want to add a semantic layer on top of data, Malloy [2] is my favorite so far (it has duckdb built in):

[1]: https://www.youtube.com/watch?v=PFUZlNQIndo [2]: https://docs.malloydata.dev/documentation/
mrtimo
·5 か月前·議論
Nice work. Have you blogged about how you built it?
mrtimo
·6 か月前·議論
Spotify says it will take 30 days for the export... it really only takes about 48 hours if I remember correctly. While you wait for the download here is an example listening history exploration in malloy - I converted the listening history to .parquet: https://github.com/mrtimo/spotify-listening-history
mrtimo
·6 か月前·議論
What I love about duckdb:

-- Support for .parquet, .json, .csv (note: Spotify listening history comes in a multiple .json files, something fun to play with).

-- Support for glob reading, like: select * from 'tsa20*.csv' - so you can read hundreds of files (any type of file!) as if they were one file.

-- if the files don't have the same schema, union_by_name is amazing.

-- The .csv parser is amazing. Auto assigns types well.

-- It's small! The Web Assembly version is 2mb! The CLI is 16mb.

-- Because it is small you can add duckdb directly to your product, like Malloy has done: https://www.malloydata.dev/ - I think of Malloy as a technical persons alternative to PowerBI and Tableau, but it uses a semantic model that helps AI write amazing queries on your data. Edit: Malloy makes SQL 10x easier to write because of its semantic nature. Malloy transpiles to SQL, like Typescript transpiles to Javascript.
mrtimo
·6 か月前·議論
Nice work Andy. I'd love to hear about semantic layer developments in this space (e.g. Malloy etc.). Something to consider for the future. Thanks.
mrtimo
·7 か月前·議論
Me too
mrtimo
·8 か月前·議論
I'm using DuckDB WASM on github pages. This will take about 10 seconds to load [1] and shows business trends in my county (Spokane County). This site is built using data-explorer [2] which uses many other open-source projects including malloy and malloy-explorer. One cool thing... if you use the UI to make a query on the data - you can share the URL with someone and they will see the same result / query (it's all embedded in the URL).

[1] - https://mrtimo.github.io/spokane-co-biz/#/model/businesses/e... [2] - https://github.com/aszenz/data-explorer
mrtimo
·9 か月前·議論
DuckDB can read JSON - you can query JSON with normal SQL.[1] I prefer to Malloy Data language for querying as it is 10x simpler than SQL.[2]

[1] - https://duckdb.org/docs/stable/data/json/overview [2] - https://www.malloydata.dev/
mrtimo
·9 か月前·議論
I have experience with duckDB but not databricks... from the perspective of a company, is a tool like databricks more "secure" than duckdb? If my company adopts duckdb as a datalake, how do we secure it?
mrtimo
·9 か月前·議論
Love this! Here is a similar product: https://sql-workbench.com/
mrtimo
·9 か月前·議論
Based on this comment, you might enjoy the Malloy data language. It compiles to SQL and also have an open source explorer to make filters like what you are saying easy.
mrtimo
·10 か月前·議論
It’s 2025. Let’s separate storage from processing. SQLite showed how elegant embedded databases can be, but the real win is formats like Parquet: boring, durable storage you can read with any engine. Storage stays simple, compute stays swappable. That’s the future.
mrtimo
·10 か月前·議論
Same. But, I use Malloy which uses duckdb to query data stored in hundreds of parquet files (as if they were one big file).
mrtimo
·10 か月前·議論
I agree with this 100%. The creator of duckdb argues that people using pandas are missing out of the 50 years of progress in database research, in the first 5 minutes of his talk here [1].

I've been using Malloy [2], which compiles to SQL (like Typescript compiles to Javascript), so instead of editing a 1000 line SQL script, it's only 18 lines of Malloy.

I'd love to see a blog post comparing a pandas approach to cleaning to an SQL/Malloy approach.

[1] https://www.youtube.com/watch?v=PFUZlNQIndo [2] https://www.malloydata.dev/