HN user

socrateslee

19 karma

personal blog: https://valarmorghulis.io

Posts23
Comments33
View on HN
en.wikipedia.org 3mo ago

Polanyi's Paradox

socrateslee
8pts1
news.ycombinator.com 5mo ago

Ask HN: Any mechanism to build for AI-only services to filter off human?

socrateslee
1pts2
valarmorghulis.io 5mo ago

Geo Is Not the Next Generation of SEO

socrateslee
1pts1
valarmorghulis.io 8mo ago

Python dependencies states managed via uv(illustrated)

socrateslee
1pts0
valarmorghulis.io 1y ago

Call MCP Server(stdio) directly in the shell

socrateslee
2pts1
valarmorghulis.io 1y ago

Tac – The Ignored Reverse of Cat

socrateslee
2pts0
www.theatlantic.com 1y ago

Yuval Noah Harari on Why Technology Favors Tyranny(2018)

socrateslee
5pts1
valarmorghulis.io 1y ago

Use Python -m http.server in SSL

socrateslee
1pts0
valarmorghulis.io 1y ago

The contextvars and the chain of asyncio tasks in Python

socrateslee
2pts1
medium.com 2y ago

Unix pipe to clipboard with WSL, and in UTF-8

socrateslee
3pts0
medium.com 2y ago

Several tips for better working with Python in Excel

socrateslee
1pts0
medium.com 3y ago

Thoughts on the fading away of the age of IE

socrateslee
37pts106
medium.com 3y ago

AI-generated content, SEO, and Embeddings

socrateslee
2pts1
flowing-horse.medium.com 3y ago

Why ChatGPT may not help SEO – Explained by a simple example

socrateslee
3pts0
unix.stackexchange.com 3y ago

Create a temp file within the scope of a script(even the script crashes)

socrateslee
2pts1
medium.com 6y ago

Faster Python in Docker via disabling some Docker security settings

socrateslee
1pts2
daily.jstor.org 7y ago

Can Science Fiction Predict the Future of Technology?

socrateslee
2pts1
news.ycombinator.com 7y ago

Ask HN: What are the data needed for quantitative trading?

socrateslee
4pts2
medium.com 7y ago

The Tiny Chips from Chinese Hackers: When Falsifiability Meets Public Perception

socrateslee
2pts1
news.ycombinator.com 8y ago

Ask HN: What are the apps connected Dropbox with “App Folder Access” permission?

socrateslee
1pts0
valarmorghulis.io 8y ago

The Ponzi Software Development Scheme

socrateslee
3pts0
productforums.google.com 11y ago

Android 5.0.2 OTA bricked lots of Nexus 9

socrateslee
3pts1
www.bloomberg.com 12y ago

'Big Bang' Isn't Porn, So Why Is China Censoring Hollywood?

socrateslee
1pts2
Polanyi's Paradox 4 months ago

We can know more than we can tell.

The paradox arises when humans develop SaaS, apps, workflows, etc. The question is "will AI simply do things or know things more than we can tell?"

SEO became a standardized industry discipline pretty much after Google dominated the market and stabilized the rules of engagement. The search engine giants evole their ranking algorithms mostly to fight exploiting of their mechanims, the core principles of SEO don't change much.

In contrast, LLMs are still constantly evolving. Not only the models, the way of agents doing things, the tools/skills agent shall use, the whole system may be completely different next month. GEO is merely an attempt to ride the LLM hype,clumsily stitching together unrelated concepts.

Gemini 3 on Gemini CLI (free version) would meet quota limit for about 3-4 messages, but it will take much longer time since it responses pretty slow.

For the OAuth part, the access_token is all an MCP server needs. So users could do an OAuth Authorization like in the settings or by the chatbot, and let MCP servers handle the storage of the access_token.

For remote MCP servers, storing access_token is a very common practice. For MCP servers hosted locally, how to deal with a bunch of secret keys is a problem.

In the late 20th century, democracies usually outperformed dictatorships, because they were far better at processing information. We tend to think about the conflict between democracy and dictatorship as a conflict between two different ethical systems, but it is actually a conflict between two different data-processing systems. Democracy distributes the power to process information and make decisions among many people and institutions, whereas dictatorship concentrates information and power in one place. Given 20th-century technology, it was inefficient to concentrate too much information and power in one place.

However, artificial intelligence may soon swing the pendulum in the opposite direction. AI makes it possible to process enormous amounts of information centrally. In fact, it might make centralized systems far more efficient than diffuse systems, because machine learning works better when the machine has more information to analyze. If you disregard all privacy concerns and concentrate all the information relating to a billion people in one database, you’ll wind up with much better algorithms than if you respect individual privacy and have in your database only partial information on a million people.

May be the case is that filtering user by browser UA is no longer a feasible solution(new browsers and alike are growing), and neither running javascript(headless chrome everywhere).

For local physical store, geo-location is a naturally filter for customers as long as beaming a person from a spaceship to earth is not invented. For web, a equally effective solution is very hard to find.

The VCs thinked that the scaling law may build a moat for very large computing powers like Google and OpenAI, and VCs rushed into the area the foundation models.

The emerging of DeepSeek V3 and DeepSeek R1 somehow make the moat vulnerable with their much smaller training cost. The fact verified the claim of Google.

When we say “the contextvars is somehow like thread local, but mostly for coroutines”, we think that coroutines are just another types of threads. But actually we are not right. The coroutines are not threads. A thread has its own life cycle and its own stack space, so a thread local storage actually belongs to a thread. But a coroutine is just a function that can be paused and resumed, scheduled by a loop. So the context of a coroutine belongs not to the coroutine itself. When in a chain of coroutines, like the calling chain of Tasks, we need to be aware that the consistency of context are manually kept by the users, not automatically kept by the system.

ChatGPT only swallows data or content but bring back no traffic to content creators. Maybe this is how Google is different from ChatGPT. But what will become of Google if the experimental generative AI's answer replace all the SERPs? An closed web where no search engine no AI can actually enter?

I have been thinking about two questions for a long time. First, why the market share of IE is so resilient to die? Second, why did IE lose to Chrome from the position of market domination while Windows has always been dominating the desktop OS market? Now I realized that the answers to the two questions are the same — the mechanism of the software update.

It just seems that when compared with TikTok, Instagram Reels is still much smaller as a short video platform. Where the creator communities is yet to be built, the data is probably weighted heavily on the Instagram followers, what do we do on such a new but may be potentially large platform? how do we cold start based what we already have? We snap some historically hot videos from TikTok. I think that's why videos on Reels are kind of old.

A new platform is not built on a single day. Even creators found a new platform and decided the first thing they do should be re-posting their old works.

- On an Ubuntu host, the benchmark execution time in Docker was about twice the native time; this difference could be negated by modifying the security settings of the container - The difference was much smaller when running well-optimised code — rather than code with (unnecessary) for-loops - On a Windows host, Python code actually ran faster inside Docker, and the container security settings did not appear to affect execution speed as much

Quote from the article: A fundamental change in human thinking about the future began in the 18th century, as technological change accelerated to a point where its effects were easily visible in the course of a single lifetime, and terms such as progress and development entered human discourse…Speculation about the future became more common as human beings increasingly reshaped the world during the 19th and early 20th centuries, though it was seen largely as entertainment, a diversion from the often stark realities of everyday life. Yet some of that speculation proved surprisingly close to the mark.