Fubaredness Is Contagious

by Dmitriy Samovskiy

Fubaredness Is Contagious header image 4

Entries Tagged as 'technology'

Firefox 3 and Revoked SSL Certificates

June 19th, 2008 · 3 Comments

Today I discovered that Firefox 3 will refuse to display a site over HTTPS if its SSL certificate is revoked. And even though I am not questioning merits of this decision, I still would have preferred to have this behavior configurable, either somewhere deep in Preferences or at least via about:config (quick scan of the […]

[Read more →]

Tags: technology

CohesiveFT Named One of 2008 Hottest Tech Startups by InfoWorld

May 19th, 2008 · No Comments

http://www.infoworld.com/article/08/05/19/21FE-startups-intro_1.html and http://www.infoworld.com/article/08/05/19/21FE-startups-winners_2.html

[Read more →]

Tags: technology · work

Terminology Fun - IT vs Economics

May 14th, 2008 · No Comments

What we in IT call a “bad state” (as in “application ended up in a bad state and needed to be restared”) in economics is called “bad equilibrium.” Here is more on General Equilibrium theory.

[Read more →]

Tags: Economics · technology

VcubeV Idea Getting Followers?

May 9th, 2008 · No Comments

Check this out - someone else is thinking along the same lines - http://elasticvapor.com/2008/05/virtual-private-cloud-vpc.html

[Read more →]

Tags: cloud computing · technology · work

On project management

April 4th, 2008 · No Comments

What is the most important phase of a software development project? Some people might say planning, others might think it’s QA. Probably nobody will say actually doing it (aka development), as that would be too boring.
I think all these answers are wrong. In my opinion, the most important phase of a software development project is… […]

[Read more →]

Tags: technology

Best April Fools’ Day Joke Today

April 1st, 2008 · No Comments

http://damienkatz.net/2008/04/couchdb_language_change.html
Or is it not a joke?…

[Read more →]

Tags: erlang · technology

“Least Used” Load Balancing

March 14th, 2008 · No Comments

See an interesting discussion on benefits and shortcomings of “least used resource” mode of load balancing at High Scalability.
Here is what I think:
When dealing with TCP-based services (say http), my solution is not to use this load balancing mode at all precisely for this reason [you bring a new server online - and all of […]

[Read more →]

Tags: technology

VcubeV review on Highscalability.com

March 4th, 2008 · No Comments

Check out this great review of my VcubeV article by Todd Hoff of Highscalability.com.

[Read more →]

Tags: technology

My VcubeV Article Now Publicly Available

March 3rd, 2008 · No Comments

Have you ever needed to expand your colocated servers at more than one provider and allow applications to communicate as if they were on the same LAN, possibly over multiple sets of firewalls and layers of NAT? Or, maybe you’ve wanted to move from one hosting service to another to take advantage of lower […]

[Read more →]

Tags: technology

Python AMQP client and non-blocking sockets

March 2nd, 2008 · No Comments

We put together an add-on for py-amqplib that implements AMQP client with non-blocking sockets in python.
There are at least 2 scenarios where non-blocking sockets help, and both are applicable to consumers:
1) when you want to be able to interrupt consumer’s event loop without waiting for a next incoming message;
2) when you want to consume messages […]

[Read more →]

Tags: python · rabbitmq · technology