Gudasoft

Impossible is nothing

Authumn

zsh .zshrc

I don’t expect to understand what this means…. (more…)

Cool websites on Internet

Знаеме ли да търсим в Google?

Началните адреси с много опции

Полезнотийки

Ето и четивото от където измъкнах тази статийка

google-hacking-for-penetration-testers

Vacation in Bulgaria

Why you should avoid Bulgaria for your vacation.

  1. If you reserve an apartment or house this doesn’t mean that you will stay for the whole period of the reservation. Also the prices are changing every day and you will be nice surprised that you must pay more at the end of your visit just because the neighborhoods have been rised the prices.
  2. The restaurants are awful, all of them know that you would not return, so they serve outdated food and behave with you like scum.
  3. The car driving is dangerous because there are no rules on the roads. No cops are looking for the law, at least they are sitting in the shadow and feeling well while a few meters of them is happening situation.
  4. There is no normal roads in Bulgaria you will break your car or amortize it with 5 years for a single trip.
  5. The beach is dirty. The sea is dirty and crowd. Newer hotels that are build at the seashore have thrown their rubbish at the sea, and you will find with the sand some terracotta pieces etc.
  6. The ski lifts are expensive and crowded, you pay, and then wait on big tail go get on the lift.
  7. Skiing pists and Sea hotels are build on protected territories which becomes dirty and crowded in a few months.
  8. The prices on the holiday resorts in Bulgaria are doubled for foreigners and to keep the native citizens away.
  9. People are not nice. It is a fake legend that the Bulgarians are nice housekeepers.
  10. If you plan to use taxi you will be 100% cheated if you don’t speak Bulgarian.

Please share with me your experience with your vacation in Bulgaria, negative or positive.

more here

Remote Desktop Help

  1. You should go here http://whatismyip.com/ and take your IP.
  2. Download VNC client. It is open-source software that could be downloaded from here
    if you are on normal windows XP click on this direct link here to download the last version

    1. Save the downloaded file and run it.
    2. During the installation choose that you want the client and the server.
    3. Choose to install as a service
    4. You must provide a password for the server to be able to accept incoming connections


  3. Restart your computer
  4. Tell your ip from http://whatismyip.com/ to the person you want to invite, and share the password with him.
  5. You should see a new icon in you try near the clock. when this icon changes its colour, this means that someone is connected to your screen.

Here is help in Bulgarian

Searching for a media disk

And what about some media PC? http://www.linuxjournal.com/article/10111

MEDIADISK NRX

I have found what I want but I cant find it in my country. Hm…any suggestions for simillar products in Bulgaria, or deliveries to Bulgaria :) ?

E-book readers research

Ebook readers reviews

Devices:

  1. http://www.plasticlogic.com/ – this is the reader!
  2. http://www.astak.com/97Ebook_Reader.html – my second favorite
  3. Irex iliad- 8″ dispaly, video here , zooming here – 500eur (with wifi it is 660eur)
  4. Sony PRS-505, video here – medium screen, $299
  5. STAReBOOK 6″ 800×600 pixel 4-level gray scale
  6. Hanlin v3(linux) 6″ screen – not good for pdfs also here
  7. booken – french release, 6″ screen size, full specification
  8. google reader – ugly and big. and not e-paper technology
  9. Amazon Kindle – Only usa, not good support for PDF,
  10. http://scottstuff.net/blog/articles/2008/06/03/should-i-buy-a-kindle#comments
  11. http://www.mobileread.com/forums/forumdisplay.php?f=140

My E-book device will have:

So I am on hold on with those devices ….

Chunks for the String method.

If you want to generate some sort of chunks from a large strings you can use the following method.
You give as a param an array of arrays, each array is pointing with % the start position of the chunk and the last position.


class String

def String.random_alphanumeric(size=16)
(1..size).collect { (i = Kernel.rand(62); i += ((i < 10) ? 48 : ((i < 36) ? 55 : 61 ))).chr }.join
end

def chunkanize(parts = [[0,4], [48, 52], [95, 100]])
return [self] if self.size <= 1

# working with words
terms_array = self.split(/ /)
join_type = " "

# working with letters
if terms_array.size <= 100
terms_array = self.split(//)
join_type = ""
end

one_percent = terms_array.size.to_f / 100

parts.collect do |part|
start = part[0]
stop = part[1]
terms_array[(start * one_percent)..(stop * one_percent)].join(join_type)
end
end

end

Safer Internet for the Kids

I have changed the DNS at my home network to point to opendns.com

Those guys claim that they will prevent access to the bad places of Internet. Lets check…