HackerTrans
TopNewTrendsCommentsPastAskShowJobs

m0wer

no profile record

Submissions

Embeddings based RSS recommendation system

github.com
2 points·by m0wer·last year·1 comments

Court lifts OFAC sanctions on Tornado Cash

twitter.com
2 points·by m0wer·last year·0 comments

Where to hate daylight saving time and where to love it – Andy Woodruff

andywoodruff.com
1 points·by m0wer·2 years ago·2 comments

Failure Mitigation for Microservices (DoorDash)

careersatdoordash.com
1 points·by m0wer·2 years ago·0 comments

Qwen2.5-Coder: Code More, Learn More

qwenlm.github.io
1 points·by m0wer·2 years ago·1 comments

Airlines Became Banks [video]

youtube.com
2 points·by m0wer·2 years ago·0 comments

Homomorphic Encryption for Cloud Users

techxplore.com
1 points·by m0wer·2 years ago·0 comments

Progressive or Thrash? How Metal Detectors Discriminate

hackaday.com
1 points·by m0wer·2 years ago·0 comments

How Often Should I Charge My Phone to Prolong the Battery Life?

charbycharge.com
5 points·by m0wer·2 years ago·0 comments

Aibot: Ollama Telegram bot, capable of handling text and voice messages

github.com
1 points·by m0wer·2 years ago·0 comments

Python Task Queue Latency

gpxz.io
7 points·by m0wer·2 years ago·1 comments

What Business Can Learn from Open Source(2005)

paulgraham.com
1 points·by m0wer·2 years ago·1 comments

RQ: Simple Job Queues for Python

python-rq.org
2 points·by m0wer·2 years ago·1 comments

Demystifying Python Celery: Understanding the Key Components and Result Storage

vintasoftware.com
1 points·by m0wer·2 years ago·0 comments

Task Queues, Redis, Python, Celery, RQ

offlinemark.com
1 points·by m0wer·2 years ago·1 comments

Postgres, varchar, and silent white space trimming

til.hashrocket.com
2 points·by m0wer·2 years ago·0 comments

The Standard of Code Review

google.github.io
3 points·by m0wer·2 years ago·0 comments

Booting from GPT (Disk)

rodsbooks.com
2 points·by m0wer·2 years ago·0 comments

Jitsi Videobridge Performance Evaluation

jitsi.org
2 points·by m0wer·2 years ago·1 comments

How to Speed up Pandas by 4x with one line of code

kdnuggets.com
1 points·by m0wer·2 years ago·2 comments

comments

m0wer
·last year·discuss
You missed the point. The IP protocol doesn't scale! Ethernet MTU is just 1500 bytes how are we ever going to transfer a movie over the Internet!

Ethernet does not need to carry the whole movie in one packet. If it does the job of delivering the MTU to the host on the other side of the cable, it's good. Websockets can be figured out somewhere else. The IP stack is not shit because each layer does just one thing, it's good because of that.

But hey, time will tell.
m0wer
·last year·discuss
Not sure. IMO the best thing that could happen for the next generation is to be born in a Bitcoin standard were politicians don't control money, people are incentivized to save, and the world does not need to use housing and stocks as a way of saving and protecting against inflation.

Technological progress makes the world deflationary. Your money should be able to buy more every time as we improve the productive efficiency of everything. And for poor countries, the best thing they could get is a censor resistant and value preserving tool.

Even if there was a tail emission, newer generations wouldn't have the capital needed for mining rigs. That's not just something unique to this case, same happens with stocks, real state or any other investment asset.
m0wer
·last year·discuss
Isn't being able of anonymously send you something of value that no one can take away from you a pretty big use case?

A third of the world is unbanked. A permissionless monetary system makes a huge difference for those.

When I was still very skeptical about Bitcoin, I met a guy in Turkey who was from a very poor African country and was just studying there. His father would buy Bitcoin in their home country with the local currency (P2P) and send it to his son, that would then convert it also P2P for Turkish Liras. They could do this securely an within minutes. The alternative was using Western Union and paying taxes in both countries, which in total added up to ~50% of the sent amount.

It's great not needing Bitcoin, as it is great not needing Tor. But that doesn't mean there's no use case for them.
m0wer
·last year·discuss
Blockchains don't scale. But that's a feature, not a bug.

Great protocols are built in layers.

You have decentralized instant settlement for an average of 0.005% even for micropayments with the Lightning Network (another protocol built on top of Bitcoin). That's orders of magnitude away from the settlement time and resilience of the current payment networks.
m0wer
·last year·discuss
Would it change your view if they mined instead of buying?

If you were to create a decentralized and limited supply currency, how would you distribute it so that it's “fair”?

Sounds a bit like if the world was running only on proprietary software created by Microsoft and you criticized the move to open source because that would enrich Linus Torvalds and other code creators/early adopters.

Are people better off by continuing to use centralized broken software that they have to pay a subscription for (inflation) than if they did a lump sum buy of a GNU/Linux distro copy from a random guy and become liberated for the rest of their life?
m0wer
·last year·discuss
The “cool” thing about embeddings is that you can use a generic one that can even support multiple languages. Just with the plot/description of the movie you could see “similar” ones in different aspects such as movies that also talk about dogs or more complex relations. Here is a short post about how it works: https://blog.sgn.space/posts/embeddings_based_recommendation...
m0wer
·last year·discuss
Probably what you want is not an LLM but just the embeddings for clustering. It's much lighter and would work well with new material as well.

I've tested it out for filtering RSS feeds and has worked pretty well [1].

[1] https://github.com/m0wer/rssfilter
m0wer
·last year·discuss
Always has been.
m0wer
·last year·discuss
About a year ago I created rssfilter to help me out catching up with my RSS feeds.

I was getting too many new posts per day from HN and other sites and started not enjoying it as much. I wanted to have 50% of the posts but missing out as little as possible about the topics I'm most interested in.

After a year using it, I'm pretty satisfied about the results and other users are too.

How rssfilter works is by being a proxy to your existing RSS subscriptions. It replaces the article links to a redirect that stores what articles you open. This information is what's used for the recommendations.

The embeddings of your read articles title and description are clustered. And from then on, you will only get 50% of the articles from all feeds, mostly what's closest to your areas of interest but also some percentage of unfiltered posts to allow for discovery.

It can be self hosted and there is also a live version that I host. No registry, the user ID is just a random UUID.

You can also use the API (FastAPI btw) directly: https://rssfilter.sgn.space/api/docs

Let me know if you like it!
m0wer
·2 years ago·discuss
TabbyML! Autocompletion like GitHub Copilot, using qwen-2.5-coder 7B.
m0wer
·2 years ago·discuss
Faster and better experience than DeepSeek Coder V2 Lite (which was already impressive). I've been using it for the last few days with Tabby + Ollama.
m0wer
·2 years ago·discuss
feeder + rssfilter.sgn.space
m0wer
·2 years ago·discuss
not working...
m0wer
·2 years ago·discuss
Pretty accurate predictions about Linux servers, startups, and remote work.
m0wer
·2 years ago·discuss
Was submitted already 12 years ago but got no traction: https://news.ycombinator.com/item?id=4202529
m0wer
·2 years ago·discuss
Similar thing, but automated with AI based on what you read: https://github.com/m0wer/rssfilter
m0wer
·2 years ago·discuss
Not my article, but thanks for the comment.
m0wer
·2 years ago·discuss
Very cool!
m0wer
·2 years ago·discuss
That's exactly what happens. And even if you unfollow most feeds, it's normal to not be interested in most articles (e.g. HN feed alone).

Nevertheless, I think the sweet spot is having a curated list of feeds and then filtering a bit the posts. I've been pretty happy with a side project that does just that: filtering posts based on past reads using AI. Takes out half of the work and makes your feed more enjoyable.
m0wer
·2 years ago·discuss
"PGTune: calculate configuration for PostgreSQL based on the maximum performance for a given hardware configuration. It isn't a silver bullet for the optimization settings of PostgreSQL. Many settings depend not only on the hardware configuration, but also on the size of the database, the number of clients and the complexity of queries. An optimal configuration of the database can only be made given all these parameters are taken into account."

It's a nice tool thaqt I've been using for years and was surprised to find out that it wasn't posted yet on HN.