Saturday, May 12, 2012
High Scalability Blog
The High Scalability blog is on large data web applications. A very good site!
Monday, May 7, 2012
Friday, May 4, 2012
Wednesday, May 2, 2012
Use TOP and DISTINCT together in t-sql
Surprisingly it is difficult to use TOP and DISTINCT together in SQL.
This will not work:
select top 2 distinct t.ID as tID, t.Name as tName from Table1 order by tID
It can be replaced by something like this to work:
select top 2 * from
(select distinct t.ID as tID, t.Name as tName from Table1 t) y
order by tID
Also see some other web links, such as Here
Friday, April 27, 2012
Friday, April 20, 2012
ACM classic - Reflections on Trusting Trust
Reflections on Trusting Trust, by Ken Thompson.
See how Ken Thompson implanted a back door into unix by hacking the compiler.
See how Ken Thompson implanted a back door into unix by hacking the compiler.
Subscribe to:
Posts (Atom)
Blog Archive
-
▼
2026
(36)
-
▼
June
(19)
- C10K to C10M: from thread-per-connection model to ...
- Benchmark server performance
- Application server for php, python, java, node.js,...
- Application server for C++, Go and Rust
- Nginx as reverse proxy and load balancer
- Infrastructure running: nginx, apache, php, python...
- Flow chart of nginx+apache+uvcorn infrastructure
- Flow chart of apache+uvcorn infrastructure
- Uvicorn and Gunicorn
- What's deadsnakes PPA
- What's the optional lsb-core package
- Codex known logging bug
- Daemonsize a service
- Train text to image model, to generate images of c...
- Train a model based on OpenAI API
- Open port 8080 for WebSocket
- Add websocket support on Bluehost Ubuntu VPS for D...
- Install Claude Code on ubuntu VPS of Bluehost
- Install PostgreSQL on Mac
-
▼
June
(19)