Archive for May, 2008
Thursday, May 15th, 2008
Here is the list of the firefox plugins that I use.
Development
http://www.getfirebug.com/
http://chrispederick.com/work/web-developer/
Website speed test:
extended status bar? :https://addons.mozilla.org/en-US/firefox/addons/versions/1433
hammerhead: Make requests to a urls, show the response times
http headers - http://livehttpheaders.mozdev.org/
form filler - http://informenter.mozdev.org/
Spell checker in Bulgarian - http://bgoffice.sourceforge.net/mozilla/index.html
Design
Custom css for external pages http://userstyles.org/stylish/
Measure it - http://www.kevinfreitas.net/extensions/measureit/
IE-tab - http://ietab.mozdev.org/
image zoom - http://imagezoom.yellowgorilla.net/
ads block
all ...
Posted in Development | No Comments »
Wednesday, May 14th, 2008
http://bitme.org
http://ebookshare.net
http://books.google.com -head first software development
Using google
intitle:"index of" "head first" -free -examp -preview
Posted in Development | No Comments »
Tuesday, May 13th, 2008
Good prototype controls
http://livepipe.net/#hoverbox
Directly print pdf files from a browser
function Printobject(){
document.all.PDF.print();
setTimeout("self.close();",4000); }
Posted in javascript | No Comments »
Monday, May 12th, 2008
auto_scope
source: http://blog.teksol.info/archives/2007/3
class Contact < ActiveRecord::Base
auto_scope \
:old => {:find => {:conditions => ["born_on < ?", 30.years.ago]}},
:young => {:find => {:conditions => ["born_on > ?", 1.year.ago]}}
end
class Testimonial < ActiveRecord::Base
auto_scope \
:approved => {
:find => {:conditions => ["approved_at < ?", proc {Time.now}]},
:create => {:approved_at => proc {Time.now}}},
...
Posted in Rails | No Comments »
Monday, May 12th, 2008
Ubunto repositories
http://getdeb.net/
winetricks
wget www.kegel.com/wine/winetricks
example: ./winetricks winver=winxp
example: ./winetricks vcrun2005
http://www.virtualbox.org/
Disk managment
KDirStat and Baobab
Security
http://pakiti.sourceforge.net/ - monitor and install patches on multiple servers, supports ubunto, and rh
games
LiveCD
Posted in linux | No Comments »
Sunday, May 11th, 2008
Image repositories
http://www.stockxpert.com/browse.phtml?f=view&id=211606
http://www.shutterstock.com/
http://www.stumbleupon.com/
How to choose colors for the websites:
http://kuler.adobe.com/
Html templates/css
http://www.tristarwebdesign.co.uk/templates.php
http://www.cssdrive.com/
http://drupal.org/project/Themes
favico generators + icons
http://www.html-kit.com/favicon/
http://www.smashingmagazine.com/2007/06/20/ajax-javascript-solutions-for-professional-coding/
Icons
http://www.iconarchive.com/category/application/buuf-icons-by-mattahan.html
Javascript image galleries
Catalog of galleries: http://tutorialblog.org/12-javascript-image-galleries/
http://www.zenphoto.org/2008/08/installation-and-upgrading/
http://www.artviper.de/ImageMenu/
Posted in Clipart | No Comments »
Saturday, May 10th, 2008
Незнам защо но успях да открия в интернет само тази рецепта за тези вкусни бонбони и се изуших да я запазя за ентусястите, в момента бадемите са в хладилника и побеляват активно.
200 гр. сурови бадеми
90 гр. захар
130 гр. вода
1 ч. л. лимонов сок
Бадемите се накисват във вряла вода, която да ...
Posted in Uncategorized | 1 Comment »
Thursday, May 8th, 2008
IPTables Linux firewall with packet string-matching support http://www.securityfocus.com/infocus/1531 Firewall scripts http://linuxfirewall.start.bg/ http://www.puschitz.com/FirewallAndRouters.shtml Debian Kernel how-to http://myfreesoft.net/phpBB2/viewtopic.php?t=52 * in Bulgarian * Source: http://www.howtoforge.com/forums/showthread.php?t=21 http://www.howtoforge.com/kernel_compilation_debian Active Ports (Windows) http://www.microsoft.com/technet/sysinternals/Networking/TcpView.mspx Security and Audits Checks & updates http://sourceforge.net/projects/advchk RedHat - http://www.redhat.com/spacewalk/
Posted in Administration, Uncategorized | No Comments »
Thursday, May 8th, 2008
WebGoat
WebGoat is a deliberately insecure J2EE web application designed to teach web application security concepts
WebGoat is java web application which can show you a lot of the web attacks that can be performed on your website. It is a must have for all web developers.
You can download it from sourceforge ...
Posted in Uncategorized | 2 Comments »
Wednesday, May 7th, 2008
The apache module that will do the job is called mod_dosevasive. The installation is easy.
Download from http://www.nuclearelephant.com/projects/dosevasive/
extract it
apxs2 -i -a -c mod_dosevasive20
Configure the apache2
Edit your httpd.conf (usually located in /usr/local/apache/conf/httpd.conf):
Add:
<IfModule mod_dosevasive20.c>
DOSHashTableSize 3097
DOSPageCount 2
DOSSiteCount 50
DOSPageInterval 1
DOSSiteInterval 1
DOSBlockingPeriod ...
Posted in Uncategorized | No Comments »