Prihlásiť

Software


Move emails from one Gmail account to another

7. 1. 2010 Zobraziť článok

From account

Settings -> Forwarding and POP/IMAP -> Enable POP for all mail

To account

Settings -> Accounts -> Add a mail account you own

Fill out and leave default settings.

Wait. You will see something like: Last checked: 2 minutes ago. 200 mails fetched .View history 373 mails remaining.


Zobraziť článok

crontab

25. 11. 2009 Zobraziť článok
crontab -e

@reboot	    Run once, at startup.
@yearly	    Run once a year, "0 0 1 1 *".
@annually   (same as @yearly)
@monthly	Run once a month, "0 0 1 * *".
@weekly	    Run once a week, "0 0 * * 0".
@daily	    Run once a day, "0 0 * * *".
@midnight   (same as @daily)
@hourly	    Run once an hour, "0 * * * *".

# run five minutes after midnight, every day
5 0 * * *       $HOME/bin/daily.job >> $HOME/tmp/out 2>&1
# run at 2:15pm on the first of every month -- output mailed to paul
15 14 1 * *     $HOME/bin/monthly
# run at 10 pm on weekdays, annoy Joe
0 22 * * 1-5    mail -s "It's 10pm" joe%Joe,%%Where are your kids?%
23 0-23/2 * * * echo "run 23 minutes after midn, 2am, 4am ..., everyday"
5 4 * * sun     echo "run at 5 after 4 every sunday"

Zobraziť článok

Upgrade to Windows 7

10. 11. 2009 Zobraziť článok

Get List Of Installed Apps

Run Command Prompt as administrator.

wmic
/output:C:\InstallList.txt product get name,version

Zobraziť článok

Ako nastaviť MX záznam na Forpsi

24. 10. 2009 Zobraziť článok

Je potrebné prioritu záznamu uviesť ako prvú a na konci adresy nesmie byť bodka.

1 aspmx.l.google.com
5 alt1.aspmx.l.google.com
5 alt2.aspmx.l.google.com
10 aspmx2.googlemail.com
10 aspmx3.googlemail.com
10 aspmx4.googlemail.com
10 aspmx5.googlemail.com

mail CNAME ghs.google.com
http://www.google.com/support/a/bin/answer.py?answer=174125


Zobraziť článok

Synchronize Lightning/Sunbird with Google Calendar

4. 10. 2009 Zobraziť článok
  1. New Calendar
  2. On the Network
  3. CalDAV format
  4. https://www.google.com/calendar/dav/ [ your Google Calendar ID ] /events

    Your Google Calendar ID for your primary calendar is just your email address, but for all other calendars the Calendar ID will be in the form of [ long string of characters]@group.calendar.google.com. You can get the Calendar ID by clicking the down arrow next to your calendar at calendar.google.com and selecting 'Calendar Settings'.

  5. Username: Including the part after the @ sign

Zobraziť článok

MySQL Administration

13. 8. 2009 Zobraziť článok

How to reset root password?

pkill mysqld
mysqld_safe --skip-grant-tables
mysql --user=root mysql
update user set Password=PASSWORD('my_pass') where user='root';
flush privileges;
exit;

Create database and grant user

mysql -u root -p
my_password
create database my_db;
grant all privileges on my_user.* to 'my_db'@'localhost' identified by 'my_pass';

Import sql file

use mydatabase
source filename.sql

Export/Import database

mysqldump -u username -ppassword database_name > dump.sql
mysql -u username -ppassword database_name < dump.sql

Zobraziť článok

d-touch drum machine

9. 7. 2009 Zobraziť článok
YouTube video

The d-touch drum machine is a drum machine with a tangible user interface: it is controlled by placing and arranging physical objects on an A4 (or similar) piece of paper, which we call the interactive area. The interactive area is arranged in 11 rows, each row corresponds to a different sound, as indicated by the text labels. The horizontal position of the blocks on the interactive area determines the timing of the sound trigger within the loop.

http://d-touch.org/audio/drummachine/
Zobraziť článok