Nice quick bash book
http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-7.html (loops)
How to check if files containt “this” and “that”
grep -i 'for nut in self._foundNuts:' `grep -ril "loop(1):" *`
Display timestamp
date -d @1231351762
http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-7.html (loops)
grep -i 'for nut in self._foundNuts:' `grep -ril "loop(1):" *`
date -d @1231351762
Great!
One of my friends has bouth a new laptop from USA and I want to change the base language of his operating system to Bulgarian. The Bulgarian language is fully support by Microsoft. My surprise was big when I got the “Only language please…” from the Regional Settings language switcher pane.
I want to use one language but I don’t want English I want Bulgarian. Why I cant switch it?
The solution come from Vistalizator. This software has fixed all my troubles. Now I have two languages on my Windows Vista Home (who said that Vista Home dosn’t support two languages :) ?
Someone has made already forum/topic where you can express what you feel working with Microsoft products.
Here are my resources.
This is THE program for building decks. It is java based so you can use it on your favourite OS (I hope).
You should follow this forum topic or this blog post here. It is not so hard
curl -A ‘Mozilla/4.0’ -F “vote=5&btnSubmit.x=34&btnSubmit.y=14&btnSubmit=%D0%A0%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%B8%D1%80%D0%B0%D0%B9” http://www.germanos-konkurs.com/
Dear WordPress (and authors),
I am not happy that you are releasing versions every month. Continue reading
Check the links for a page
http://validator.w3.org/checklink?uri=http%3A%2F%2Fwww.cenite.com&hide_type=all&depth=&check=Check
#!/bin/sh # lowerit # convert all file names in the current directory to lower case # only operates on plain files--does not change the name of directories # will ask for verification before overwriting an existing file # http://www.linuxjournal.com/content/convert-filenames-lowercase Continue reading
I have one old application where the attachment is store as an id in the filesystem. The customer wants to have the attachment with the right name. So I have made this small action which accepts the id of the requested object and send the file data.
def send_bios
redirect_to :action => 'bios' if params[:id].blank?
@artist = Artist.find(params[:id]);
contents = File.open(@artist.bios_path,"rb") {|io| io.read}
send_data contents, :filename => "#{@artist.name}.pdf", :type => "application/pdf", :disposition => 'attachment'
end
© 2025 Gudasoft
Theme by Anders Norén — Up ↑