I don’t expect to understand what this means…. (more…)
Началните адреси с много опции
Полезнотийки
Ето и четивото от където измъкнах тази статийка
google-hacking-for-penetration-testers
Please share with me your experience with your vacation in Bulgaria, negative or positive.
more here
Here is help in Bulgarian
And what about some media PC? http://www.linuxjournal.com/article/10111
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 :) ?
Ebook readers reviews
My E-book device will have:
So I am on hold on with those devices ….
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
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…