Author Archive

Backup & Restore mySQL database | quick guide

Create a backup: mysqldump -u username -p password –databases database1 database2 db_name3 > multi_db_names.sql mysqldump –all-databases > alldatabases.sql mysqldump –all-databases | bzip2 -c > databasebackup.sql.bz2 mysqldump –all-databases | gzip > databasebackup.sql.gz Restore from a backup: mysql -u [username] -p [password] [database_to_restore] < [backupfile] gunzip < backup_name.sql.gz | mysql -u username -p password db_name If you […]

Posted on June 28, 2010 at 12:55 by admin · Permalink · Leave a comment
In: mySQL

mySQL csv import via LOAD DATA INFILE

Well it’s actually quite simple. That sample worked for me like a charm: LOAD DATA INFILE “C:\\\\us_mag_sizes.csv” INTO TABLE support_sizes_US FIELDS TERMINATED BY “,” OPTIONALLY ENCLOSED BY “””” LINES TERMINATED BY “\r\n” IGNORE 1 LINES LOAD DATA INFILE “C:\\\\time_pojas.csv” INTO TABLE pt_time FIELDS TERMINATED BY “,” OPTIONALLY ENCLOSED BY “””” LINES TERMINATED BY “\r\n” IGNORE […]

Posted on February 11, 2010 at 18:33 by admin · Permalink · Leave a comment
In: English, sql

New cool web site about… cats and fun :) And more!

Web site called www.mapikcha.com and everybody welcome to visit and create new funny pictures! Like this for example: see more funny pictures on www.mapikcha.com

Posted on January 18, 2010 at 12:05 by admin · Permalink · Leave a comment
In: English, Fun · Tagged with: , ,

Backup and Restore PostgreSQL database

I am not quite sure why phpPGAdmin doesn’t have “import” feature and only have “export”, but… who cares? Dump Individual DBs with pg_dump PostgreSQL provides the utility program pg_dump for dumping individual DBs: pg_dump dbname > outfile pg_dump writes its results to the standard output. pg_dump is a regular PostgreSQL client application. This means that […]

Posted on November 11, 2009 at 17:42 by admin · Permalink · Leave a comment
In: Uncategorized

Here I go. I am oficially gonna create new jQuery plugin.

Just one link to follow: Simple tutorial http://www.queness.com/post/112/a-really-simple-jquery-plugin-tutorial http://docs.jquery.com/Tutorials possibly more to follow….

Posted on June 8, 2009 at 18:11 by admin · Permalink · Leave a comment
In: Uncategorized

WordPress plugin for nice colourfull code in posts

Today is gonna be a very short post. Oddly enough I asked myself – why I still don’t have any nice plugins to display programming languages code with different colours? And now here we go: Dojox WordPress Syntax Highlighter Available codes: PHP, Phyton, Java, Javascript, Delphi, Css, HTML, HTML+Django Syntax: <pre> <code class=”HTML”> // Put […]

Posted on June 8, 2009 at 17:37 by admin · Permalink · 2 Comments
In: Uncategorized

RPM’s on Red Hat 5 and “yum”

RPM on Reh Hat Linux seems like a good solution, but sometimes it just gives you headakes and nothing else. Here are few good comand samples to use with RPM’s: To list all installed modules with “mysql-” name: rpm -qa | grep -i ‘^mysql-‘ Forced Update: rpm -Uhv –force MySQL-server-community-5.1.34-0.rhel5.i386.rpm And one more thing… don’t […]

Posted on May 7, 2009 at 12:01 by admin · Permalink · Leave a comment
In: English, Fighting the system · Tagged with: , ,

How to find duplicated values in MySQL (or/and probably any other RDBM)

As an example I take one real (almost) table I have in my db. Structure is very simple : Table name: “words”, field “filename” name of the file and “words” just some information about each file. +—————–+———————+ |   filename     |     words         | +—————–+———————+ Suddenly we had a few files with exactly same name and […]

Posted on February 16, 2009 at 14:55 by admin · Permalink · Leave a comment
In: English, sql · Tagged with: , ,

Not very often used HTML tags

We all know <form> tag, as well as <ul><li> and so on… but how many of web developers used good old (and sometimes not just usefull, but VERY usefull) html tags in forms: <fieldset> <legend> and <optgroup label=”label”></optgroup> in <select> ? here are two good samples to use (taken from my new template engine version): […]

Posted on February 16, 2009 at 14:54 by admin · Permalink · Leave a comment
In: English, JavaScript, WEB2.0 · Tagged with: , ,

Ukulele Orchestra of GB – The Good the Bad the Ugly

These guys really rock! I’ve heared their other compositions and they always do everthing look and sound so-o-o-o cool 🙂

Posted on January 12, 2009 at 21:17 by admin · Permalink · Leave a comment
In: English, Fun, JavaScript · Tagged with: , , ,