Entries Tagged as 'Uncategorized'

Saturday, January 3rd, 2009

Your Setup and Efficiency

I’m always keen on discovering and using tools that help to boost efficiency and  get more fun. That’s why it’s very important to learn and type as fast as you phisically can, that’s why you need to learn vim emacs and use their hot-keys. Coding and typing routines shouldn’t interfere with your thinking, designing and problem-solving process.
I found [...]

Friday, December 12th, 2008

Adobe Alchemy - running C++ code in the browser

Adobe keeps playing with alternative approaches in the lab. Just meet their Alchemy project
Brief overview:
Alchemy is primarily intended to be used with C/C++ libraries that have few operating system dependencies. Ideally suited for computation-intensive use cases, such as audio/video transcoding, data manipulation, XML parsing, cryptographic functions or physics simulation, performance can be considerably faster than [...]

Tuesday, November 25th, 2008

Pondering Over The Next Big Thing

The Next Big Thing will come soon. It’s not here yet but it’s close.
Let’s consider symptoms:
– it was growing number of Web 1.0 users who read the web. Also there was small group of content authors who published stuff. Actually these numbers constantly keep growing even now. Less developed countries keep joining a club.
– Web [...]

Monday, November 24th, 2008

Sorting 1PB with MapRaduce at Google

In the following article there is an interesting comparison of Yahoo MapRaduce Stack vs Google One.
Google numbers, numbers…
 

Monday, November 24th, 2008

Java Profiling in Eclipse

Recently we needed to resolve some performance issues, so I looked for the tool and started in eclipse plugin list. Luckily I found a one.
You need to have binary dump of your heap in order to load it there and analyse. You can find how to do that here
But this tool is not a silver [...]

Monday, November 3rd, 2008

Насколько важен хороший технический анализ

Недавно Volkswagen обошел Google и Microsoft по капитализации, без каких-либо видимых фундаментальных причин
Здесь можно почитать как зарабатывать деньги из воздуха и сколько стоила неосведомленность хедж-фондам.

Wednesday, October 22nd, 2008

Multi-Dimensional Analog Literals in C++

funny one - http://www.xs4all.nl/~weegen/eelis/analogliterals.xhtml

Monday, April 14th, 2008

Об архитектуре и строительстве.

Мы - представители одной из самых молодых профессий. Мы как строители и зодчие, которые каждый день кирпич за кирпичиком возводят новые сооружения. Некоторые строения иногда сносят - они уже свой век отжили-отсулжили.
В отличии от сроительства в программировании “сносить” приходится довольно часто. Здесь “здания” могут стремительно еволюционировать и достраиваться очень даже в непредстказуемых местах (зависит [...]

Tuesday, April 1st, 2008

Some Details of Flickr DB Architecture

Here is the article that describes how Flickr uses MySQL for its needs.

Thursday, March 13th, 2008

English-Russian Translation using Google Talk

For a long time I’ve been using Lingvo on Windows, despite the fact that it’s not able to translate some words from modern english.
On Linux it was Google Translate.  Though, it’s boring sometimes to do the round trip:  Open new tab in FF -> go to google transate -> pick necessary translation direction -> translate [...]

Wednesday, March 12th, 2008

Poster of Http Headers Flow

Discovered a nice poster here

Friday, March 7th, 2008

Аналоги Windows-программ в Ubuntu

Встретил прикольную довольно большую таблицу соответсвтий здесь

Wednesday, February 27th, 2008

Амазон как платформа - интервью с Amazon’s CTO Werner Vogels

Многие слышали о технологиях которые используют Google, Microsoft, Yahoo у себя внутри.
В основном, это благодаря количеству усилий, которые они тратят на популяризацию себя.
Многие другие популярные ресурсы также имеют свои технологии, разработанные in-house, некоторые со временем выпускают их в мир(как например LiveJournal’s Memcached)
Одним из таких интересных ресурсов является Amazon.com. Недавно я встретил интервью с Werner Vogels [...]

Sunday, February 24th, 2008

Inside MySQL

Majority of us knows that databases are read-optimized products and most of them are not optimized for writes.
In this post I would like to describe what’s going on under the hood of mysql that can help us to find origins of some well-known rules.
So, let’s start with MySQL MyIsam table:
- MyIsam tables caches only key [...]

Tuesday, February 12th, 2008

Web-based Grid Computing

The article at codeproject describes framework that uses client-side Silverpoint CLR to implement web-based volunteer grid computing. Not a cool one, but the idea’s interesting.
Taking into account dramatic grouth of AJAX popularity and its adoption by a community, the paradigm shift towards grid-computing-in-the-browser is quite possible.

Tuesday, February 12th, 2008

Yahoo! launches 4,000 processor supercomputer availble for researchers

It’s a cool platform for distributed computing and research.
Just check out the numbers:
approximately 4,000 processors, three terabytes of memory, 1.5 petabytes of disks, peak performance of more than 27 trillion calculations per second (27 teraflop).
-Source

Tuesday, February 12th, 2008

Machine Architecture: Things Your Programming Language Never Told You (by Herb Sutter)

On September 19, 2007 Heb Sutter did a presentation on a subject at MS.
Snippet from description:
High-level languages insulate the programmer from the machine. That’s a wonderful thing — except when it obscures the answers to the fundamental questions of “What does the program do?” and “How much does it cost?”
The C++/C#/Java programmer is less insulated [...]

Tuesday, February 12th, 2008

Desktop Cube on Ubuntu Gutsy

Almost everyone posted news on Ubuntu Gutsy. New enhanced desktop, flash support in firefox and etc.
I decided to give it a try, and… spent a lot of time playing with cube, visual effects and so on. Yeah, it’s fancy but eventually I’ll switch it off and get back to work ;). IMHO the most useful [...]

Tuesday, February 12th, 2008

Материалы с HighLoad.Ru

24 и 25 сентября в Москве прошла конференция посвященная высоконагрузочным системам.
Часть докладов уже доступна на RuTube. Не буду дублировать все доклады, приведу лишь те, что успел просмотреть и мне понравились:

Anatolix рассказал о трудностях с которыми сталкивались в Яндексе при борьбе с высокими нагрузками.
http://rutube.ru/tracks/197396.html?v=377843ff9b0f9eec261b9b8378e238d7
Большинство проблем в принципе классические в Information Retrieval, +/- специфика архитектуры [...]

Tuesday, February 12th, 2008

Full-Text Search in MySql and the Minimum Indexed Word Length

MySql comes with extremely useful feature full-text search. The minor thing that bored me was the minimum word length that mysql can index to. It was 4 letters by default on my machine.
To change the value to desired one you need to:

set ft_min_word_len variable up in my.ini file
restart mysql
ensure that the change [...]

Tuesday, February 12th, 2008

To Realize…

 
To realize the value of ONE YEAR,
ask a student who failed a grade
To realize the value of ONE MONTH,
ask a mother who gave birth to a premature baby.
To realize the value of ONE WEEK,
ask the editor of a weekly newspaper.
To realize the value of ONE HOUR,
ask the lovers who are waiting to meet
To [...]

Tuesday, February 12th, 2008

Which podcasts to listen to?

http://channel9.msdn.com/rss.aspx?ShowID=13&format=mp3
Dot Net Rocks
Hanselminutes
Dr Neil’s Notes
Fly With Me (Joe D’On - pilot in the US)
Fly With Me X (extra bits)
Betty In The Sky With A Suitcase (flight attendant)
Inside the Net (I like the interviews with web 2 startups - Leo Laporte and Amber Macarthur)
Mark Kermode’s film reviews (from Five Live and Simon Mayo at the BBC)
Milahseconds
Mondays
New Scientist [...]

Tuesday, February 12th, 2008

Amazon EC2 gotchas

Today I meet a strange one working with ec2 using command line tools.
Each request could not be executes and I received each time Unknown host: ‘https://ec2.amazonaws.com’
Nslookup gave me:
Non-authoritative answer:
Name: ec2.amazonaws.com
Address: 72.21.210.54
And finally, traceroute died with “Request timed out” message.
After some digging I found a workaround
export EC2_URL=https://72.21.210.54
 Now it works perfectly fine

Tuesday, February 12th, 2008

Data clustering methods

For hierarchical clustering have a look at this resource
Browsing the web I met interesting open source framework for search clustering engines.
here is their table of algos (Original source)
 

.algorithms, .algorithms td
{
border:1px solid silver;
}

Algorithm
Author
Speed s*
Hierarchical
clustering
Other features
Example results

100
200
400

FuzzyAnts
Steven Schockaert
2.17
8.70
16.93
yes

london

HAOG-STC
Karol GoЕ’embniak
0.04
0.11
0.28
yes

london

Lingo**
Stanislaw Osinski
0.34
0.52
0.84
no
multilingual clustering
london

Rough k-means
Ngo Chi Lang
1.38
6.76
27.73
no

london

STC
Oren Zamir
(impl: Dawid Weiss)
0.04
0.10
0.23
no

london

Lingo3G***
StanisЕ’aw OsiЕ”ski
(Carrot Search)
0.03
0.06
0.13
yes
multilingual clustering, synonyms, advanced tuning, scalability (5000 snippets in [...]

Tuesday, February 12th, 2008

Real-Time Garbage Collection, Interview from JavaOne 2007

In most Java VM implementations, the garbage collector has the right to stop a thread in order to reclaim memory no longer used by that thread. Such garbage-collection pauses are the main reason threads running in a regular JVM cannot guarantee the exact timing of their execution…
 
Original source - http://www.artima.com/lejava/articles/javaone_2007_realtime_gc.html
mp3 podcast is also available there.

Tuesday, February 12th, 2008

Google Patent Search

Accidently met this resource surfing the web.
http://www.google.com/patents
A quite useful one, seems to me.
E.g. you can have a look at such stuff as:

System and hardware module for incremental real time garbage collection and memory management
Packet processing system including a policy engine having a classification unit
Type checking in java computing environments

Java C++ proxy objects
System and methodology [...]

Tuesday, February 12th, 2008

Google Code Search - a wonderful way to find security wholes

It looks like I blog a lot on google :). But today I found an interesting thing.
For instance:

you can find buffer overflows , one more example
or backdoors

Simple, doesn’t it? Yes, it simplifies a code inspection a lot…

Tuesday, February 12th, 2008

Teach Yourself Programming in Ten Years

Browsing the web met an interesting resource - Peter Norvig’s aritcle (Peter is Research Director at Googe).
It looks like he gives obvious directions, sometimes funny, but formed in a good way. Yeah, 10 years is a time frame that makes developer a mature one…
Snippets:

“the maximal level of performance for individuals in a given domain [...]

Tuesday, February 12th, 2008

Northwest C++ Users Group videos: Exception Handling Cost, Concurrency

Discussion of the assembly language cost of exception handling on the x86 Windows and x64 Windows platform

Herb Sutter - Discussions of concurrency & C++ futures September 2006 meeting of the Northwest C++ Users Group.

Scott Meyers @ NWCPP: Red Code/Green Code - Generalizing Const
C++ compilers allow non-const code to call const code, [...]

Tuesday, February 12th, 2008

Exciting Resource on Building Scalable Websites

Do you want to know how Big Boys(like Digg, Google, YouTube, Flickr) look like inside? In this case the resource I found recently will be interesting for you.
Let’s look under the hood:

YouTube Architecture
Flickr Architecture
LiveJournal Architecture
Amazon Architecture
Google Architecture
GoogleTalk Architecture
FeedBurner Architecture
MySpace Architecture
Wikimedia architecture

source - http://highscalability.com/