Mind the gap

Русские идут!

Ну что же вот мы и дождались. Ð’ славном городе Лимассоле начала вещание настоящее русское радио. На частоте 105.6 можно послушать как русскую музыку, так и местную и европейскую. Формат радио охватывает самые разные музыкальные стили, которые очень качественно и продуманно смешаны в эфире. Радио не надоедает, ведущие просто супер. По уровню мало отличаются от питерских радиодиджеев, например. Ð’ общем, рекомендую настроиться на русскую волну. […]

Read Me 2 Comments

Nano or Shuffle for iPOD

Cool stuff for iPOD:

Read Me Leave comment

Whisky PC

What you can do with a bottle of whisky? To drink it with your firends, for example. And then? And then you’ll throw out the empty bottle to the waste-bin. But don’t hurry! There is a better way to use it. The empty whisky bottle can be a computer case. Sounds unbelievably? Have a look this article with detailed explanation how to do it! P. […]

Read Me Leave comment

Measure your programmer’s level

On reaching some level of programming developers want to measure their knowledge and experience some how. For example, Perl developers built a monastery where they do meditation, ask and asnwer questions, demonstrate cool and useful stuff. The church hierarchy is used to measure experience of monks. I belong to Perl monastery too (I’m just a Deacon there :)). I like this virtual place. You can […]

Read Me Leave comment

Cyprus WRC Rally

I was on WRC.com yesterday and saw that Cyprus Rally was shifted on September, 19 . Usually it starts at the end of May or begin of June. It seems this WRC stage to hot for cars and organizators decided to chose Autumn. So, let’s see how many cars will be desroyed in this year 🙂

Read Me 1 Comment

Create a custom hands-free Linux install image

It’s difficult for the begginners to install Linux. The project Instalinux can help to chose needed parts of famous Linux distributions, create custom install image and download it. Currently you can try to create yourown disribution for Fedora, SUSE, Debian and Ubuntu. Good luck!

Read Me Leave comment

Extended INSERT

To insert many records in one time it’s better to use extended INSERT: INSERT INTO table_name (field1, field2, …, fieldN) VALUES(value11, value12, …, value1N), (value21, value22, …, value2N), … , (valueN1, valueN2, …, valueNN); There is an one default restiction in MYSQL. It doesn’t allow execute query with more than 1 MB. The speed of this kind of insert is amazing! For example, extended insert […]

Read Me 3 Comments

How to get Mysql table structure via mysql shell

Note: it maybe useful if you need to copy existing table srtucture somewhere. To do that just type: show create table table_name; For example, let’s run this command for table ‘test’: mysql> show create table test; and there is our result: mysql> show create table test1; +——-+————————————-+ | Table| Create Table | +——-+————————————-+ | test1 | CREATE TABLE `test1` ( `f1` varchar(20) default NULL ) […]

Read Me 3 Comments