Saturday, November 28, 2009

How to convert files from so-called "mobile formats" to normal PC files?

Use the mmc from this localtion. :)

Google real cams :)

You probably don't know that you are able to control some internet cams by using your local computer. Simply find cam to control by entering inurl:/view/index.shtml and make fun :)

Console synaptic without entering root's password

1. Open sudoers editor
sudo visudo
2. Add the followin text (where username is your login name of course)
username ALL=(ALL) ALL, NOPASSWD: /usr/sbin/synaptic
3. Try to open synaptic by using console
sudo synaptic
4. As usual make fun :)

The website is down...

I would like to work as an admin. Why? Simply look at this :)

Disclaimer: The movie contains harsh language!

Saturday, November 21, 2009

Bluetooth marketing

Bluetooth marketing is the name of the service which improving promoting and advertising of products, services or even a company by using bluetooth technologies. It simply menas that you will get some text, promotion materials or prospects on your mobile or handheld device when you are in the appropriate distance from bluetooth server and you have got your bluetooth device turned on of course.
A special kind of software is developped for bluetooth marketing - they are called bluetooth advertising software.
Example of bluetooth advertising software is under this link.

Wednesday, November 18, 2009

Full moon - lyrics

Far away in esian
puts itself in deeper space
we slip almost unknowing
into a deeper darker place
inside my dreams
they build business machines
nothing here is ever what it seems
in the land of haven't got a clue
i'm not to blame
for anything i do
in the land of couldn't give a fuck
you pay your money
and leave the rest to walk

the man in the moon
is watching you
and me
and everything we do
life on mars
a stairway to the stars
cheap flights
fast food
flash cars
worlds collide
states divide
choose your site
land slides
a 3rd walk from the sun
it's only just begun
for you
and me
and everyone

i push my head into a deep blue pillow sound
music ? with time
ressonnates around
comic trails like horses tales
riding in this night
beyond the coming morning
beyond the coming lights
all around us
a great big ? of wonder
the earth we walk
the sky we're under
these moments of mine
they belong to to me
i bathe in lunar waters
sea of tranquility

the man in the moon
...

the scorch to this catch is fine
it find's no relief
can we find it in ourselves
ever to conceive
a cities choke
and islands disappear in smoke
but may be what we're doing
in some way could provoke
altough the forms are shifting
as nature makes it's way
the speed of change we're forcing
tears our souls away
the moon is full
the river's high
what will become
of you and i?

the man in the moon
...

Monday, November 16, 2009

Sounds of Castle Party...

If I asked you "Have you ever seen a real vampire?" you would probably say "No". But what would you say if I asked you "Would you like to meet a vampire?" If your answer was "yes" I would like to invite you to the Castle Party.

The Castle Party is a large-scale annual music event which is one of the biggest European music festival. It gathers thousands so-called 'goths' - fans of a industrial music pervaded with gloomy lyrics - whose ghoulish appearance makes 'normal people' scared. It takes place on a huge medieval castle in Bolkow - a city in south-east part of Poland.

People who take part in the event can meet and listen to their favourite artists, and make friends as well. Everyone is able to dress up and feel like somebody else. So you can come across for example a vampire or a witch and nobody of them raises a laugh.

The atmosphere of this festival is unique: dark characters and ghostly music are in contrast to having fun and meeting friends. So if you like a 'goth' music you are invited...






Wednesday, November 11, 2009

The longest English word is...

...Lopado­temacho­selacho­galeo­kranio­leipsano­drim­hypo­trimmato­silphio­parao­melito­katakechy­meno­kichl­epi­kossypho­phatto­perister­alektryon­opte­kephallio­kigklo­peleio­lagoio­siraio­baphe­tragano­pterygon :)

How to convert online book into mp3?

Sometimes when I find online book which I want to read I don't have much time to do it. It's caused by a lot of different things I have to do in the same time. After thinking I've revealed some method to make getting knowledge from this book possible without reading it - if you can't read a book, listen it!!!
It is not as hard as you could thing. See below for script gives you possibility to do it.

#!/bin/bash

rm ch*

for i in `seq 0 13`;
do

if [ $i -lt 10 ]
then
chapter='0'$i
else
chapter=$i
fi

chapter="ch"$chapter".html"
wget "http://stallman.helion.pl/"$chapter

html2text $chapter >> out.txt
done
espeak -v pl -f out.txt -w plik.wav
lame -V2 plik.wav plik.mp3

Tuesday, November 10, 2009

Ubuntu polish-cheatsheet

A few words about basic configuration of Ubuntu -->link<--.

How to set GMain as default mail client undex Linux

It's very simple. Just follow instruction posted under this link.

Friday, November 6, 2009

Polish characters in LaTeX

1. Install packages

texlive-fonts-extra - TeX Live: Extra fonts
texlive-lang-polish - TeX Live: Polish

waldekd@waldekd-laptop:~/Documents/Latex$ sudo aptitude install texlive-fonts-extra
waldekd@waldekd-laptop:~/Documents/Latex$ sudo aptitude install texlive-lang-polish

2. Test it by using the following article template

% File: text.tex
% Created: Fri Nov 06 07:00 PM 2009 C
% Last Change: Fri Nov 06 07:00 PM 2009 C
%
\documentclass[a4paper]{article}
\usepackage{polski}
\usepackage[utf8]{inputenc}


\begin{document}
ąśćółęźćż
\end{document}

3. Make fun:)

How to integrate Vim nad LaTex?

1. Download the latest update of vim-latex package from this location.

2. Extract it into your ./~vim directory

waldekd@waldekd-laptop:~/.vim$ tar zxf ../Desktop/vim-latex-1.5-20091002-r1074.tar.gz ./

3. Copy contents of the direction on appropriate level

waldekd@waldekd-laptop:~/.vim$ cp -r vim-latex-1.5-20091002-r1074/* ./

4. Open your vim's configuration file

waldekd@waldekd-laptop:~/Documents/Latex$ gvim /etc/vim/gvimrc

and add below text to it

REQUIRED. This makes vim invoke Latex-Suite when you open a tex file.
filetype plugin on

" IMPORTANT: win32 users will need to have 'shellslash' set so that latex
" can be called correctly.
set shellslash

" IMPORTANT: grep will sometimes skip displaying the file name if you
" search in a singe file. This will confuse Latex-Suite. Set your grep
" program to always generate a file-name.
set grepprg=grep\ -nH\ $*

" OPTIONAL: This enables automatic indentation as you type.
filetype indent on

" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to
" 'plaintex' instead of 'tex', which results in vim-latex not being loaded.
" The following changes the default filetype back to 'tex':
let g:tex_flavor='latex'

5. Test your vim by open any .tex file

waldekd@waldekd-laptop:~/Documents/Latex$ gvim /home/waldekd/Documents/Latex/dyd.tex

6. Make fun :)

Thursday, November 5, 2009

How to convert .cue and .bin files into an .iso file

It is very simple. Only you need is bchunk so:
1) get it
sudo aptitude install bchunk
2) convert files
bchunk file.bin file.cue file.iso
3) mount file
sudo mount -o loop file.iso /media/output
4) make fun :)

SSH - if entering password annoys you...

You can avoid of entering remote host password every time you are logging on a host. It is very simple. Just follow the below steps.

Client side:
1. Generate new keys by using ssh-keygen command

waldekd@waldekd-desktop:~$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/waldekd/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/waldekd/.ssh/id_rsa.
Your public key has been saved in /home/waldekd/.ssh/id_rsa.pub.
The key fingerprint is:
12:da:79:13:03:32:4b:5d:9f:56:80:dc:f7:44:3a:1a waldekd@waldekd-desktop
The key's randomart image is:
+--[ RSA 2048]----+
| +..o.o..... |
| . +..o..o... |
| . . o E.oo |
| o o + o .. |
| . + S . |
| o . |
| |
| |
| |
+-----------------+

Don't enter any passphrase because if you do you will have to enter it every time you log. This operations generate a set of files inside of /home/your_login/.ssh/ directory.

2. Copy id_rsa.pub file on server. You can do it by log on server and get the appropriate file from the client

waldekd@waldekd-laptop:~$ scp waldekd@192.168.0.100:/home/waldekd/.ssh/id_rsa.pub .
ssh: connect to host 192.168.0.100 port 22: Connection refused
waldekd@waldekd-laptop:~$ scp waldekd@192.168.0.100:/home/waldekd/.ssh/id_rsa.pub .
id_rsa.pub 100% 405 0.4KB/s 00:00

3. Add information from the file to authorized_keys2 file

waldekd@waldekd-laptop:~/.ssh$ cat ../id_rsa.pub > authorized_keys2

4. Test

waldekd@waldekd-desktop:~/Documents$ ssh -C waldekd@192.168.0.101
Linux waldekd-laptop 2.6.27-15-generic #1 SMP Tue Oct 20 06:52:09 UTC 2009 i686

The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.

To access official Ubuntu documentation, please visit:
http://help.ubuntu.com/
Last login: Thu Nov 5 17:47:31 2009 from 192.168.0.100

5. Make fun :)

Monday, November 2, 2009

Jak ukryć Śledzika? (tylko dla Firefox) :)

1) pobieramy plugin

2) instalujemy

3) w Firefoxie wybieramy 'Narzędzia' -> 'Dodatki' i zaznaczamy zakladke 'Style'

4) klikamy na 'Stworz nowy styl' w prawym dolnym rogu

5) nadajemy mu nazwe

6) w duzym polu tekstowym wpisujemy:

#sledzik_box{display:none;}

7) wciskamy 'zapisz' i gotowe

A jak nie wiemy jak coś zrobić to pytamy na GG:)

Mnie osobiście denerwują jeszcze prezenty i aukcje wobec czego dodaję

#main_gifts{display:none;}
#allegro_box{display:none;}

i jest OK:)

Search This Blog