HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mrtimo

no profile record

Submissions

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

youtube.com
1 points·by mrtimo·قبل شهرين·0 comments

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

deepstrike.io
2 points·by mrtimo·قبل 6 أشهر·0 comments

Mistral misspelled Ministral on HuggingFace and Ollama

huggingface.co
4 points·by mrtimo·قبل 7 أشهر·1 comments

comments

mrtimo
·قبل 8 أيام·discuss
Thanks for sharing all this. Where is the submission page on claude / openAI to submit MCP servers to their directories?
mrtimo
·قبل 9 أيام·discuss
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
·قبل شهرين·discuss
Can it be run as a static site(github pages) ?
mrtimo
·قبل شهرين·discuss
This is awesome. Is your code open source? It would be cool to make a textbook for SQL in this format.
mrtimo
·قبل 3 أشهر·discuss
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 أشهر·discuss
Nice work. Have you blogged about how you built it?
mrtimo
·قبل 6 أشهر·discuss
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 أشهر·discuss
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 أشهر·discuss
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 أشهر·discuss
Me too
mrtimo
·قبل 8 أشهر·discuss
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 أشهر·discuss
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 أشهر·discuss
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 أشهر·discuss
Love this! Here is a similar product: https://sql-workbench.com/
mrtimo
·قبل 9 أشهر·discuss
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 أشهر·discuss
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 أشهر·discuss
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 أشهر·discuss
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/