trainersunion.org
Bookmarks | Chandrashekar Babu
http://trainersunion.org/links.html
Skip to main content. Experienced FOSS Technologist and Corporate Trainer. Personal website of Yash. K. S. (http:/ www.yashks.com). A system programming guru with indepth knowledge of code disassembly. And love for anything that ties down to the Operating System's kernel. He's highly specialized on the Microsoft technology. We are great friends, almost always contradicting each other's philosophy on Open Source Vs. Closed Source, and end up agreeing that variety is good for us ;-). Narasimhan V (Yahoo, B...
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: IT Security Awareness Day 2007 at Singapore Poly
http://codeshepherd.blogspot.com/2007/11/it-security-awareness-day-2007-at.html
Friday, November 23, 2007. IT Security Awareness Day 2007 at Singapore Poly. I gave a talk on WebSecurity at Singapore Poly at the IT Security Awareness Day Event. Around 300 students attended the event, and most of them were school kids. I mostly spoke about Johnny's Google Hacking Database, and little bit about XSS. Justin Lister from InterSect Singapore also spoke at the event. He organized a simple game to explain Phishing. Thanks to Samson, and Cecil for organizing the event. Wifi at Changi Airport.
chandrashekar.info
Bookmarks | Chandrashekar Babu
http://www.chandrashekar.info/links.html
Skip to main content. Experienced FOSS Technologist and Corporate Trainer. Personal website of Yash. K. S. (http:/ www.yashks.com). A system programming guru with indepth knowledge of code disassembly. And love for anything that ties down to the Operating System's kernel. He's highly specialized on the Microsoft technology. We are great friends, almost always contradicting each other's philosophy on Open Source Vs. Closed Source, and end up agreeing that variety is good for us ;-). Narasimhan V (Yahoo, B...
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: OWASP Meeting at GeekTerminal Singapore
http://codeshepherd.blogspot.com/2007/11/owasp-meeting-at-geekterminal-singapore.html
Thursday, November 15, 2007. OWASP Meeting at GeekTerminal Singapore. Two days back, I attended the second OWASP-Singapore. Open Web Application Security Project) meeting at Geek Terminal. Six people turned out and we had three different presentations. Michael Boman. Spoke about " Overcoming USB (In) Security. He also demonstrated Lock Picking. Wong from Resolve. Subscribe to: Post Comments (Atom). Wifi at Changi Airport. IT Security Awareness Day 2007 at Singapore Poly. GMails POP and SMTP service.
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: Testing your webapp using Selenium and PHPUnit
http://codeshepherd.blogspot.com/2010/07/testing-your-webapp-using-selenium-and.html
Wednesday, July 07, 2010. Testing your webapp using Selenium and PHPUnit. For a long time we have been testing our websites manually. Finally, we have decided to put in some effort to automate part of this testing. After a little bit of research, we found that Selenium. Could test any website in any set of browser-operating system combinations. There are some other equivalent tools, however selenium seems to be the most robust. Subscribe to: Post Comments (Atom). View my complete profile.
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: Wifi at Changi Airport
http://codeshepherd.blogspot.com/2007/11/wifi-at-changi-airport.html
Friday, November 23, 2007. Wifi at Changi Airport. I just checked out the free internet terminals in Changi Airport. Few of them run secured version of Internet Explorer. I was also able to use "Wireless@SG", the free island wide wireless at Changi. The speed was amazing. I had to download JavaDoc for JDK 1.5. It completed in 12 minutes. If you are not aware, JavaDoc for JDK 1.5 is 150MB. Subscribe to: Post Comments (Atom). Wifi at Changi Airport. IT Security Awareness Day 2007 at Singapore Poly.
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: Lunch with David Axmark, Co-founder of MySQL
http://codeshepherd.blogspot.com/2007/11/lunch-with-david-axmark-co-founder-of.html
Sunday, November 18, 2007. Lunch with David Axmark, Co-founder of MySQL. The Co-founder of MySQL was in Singapore today. The local MySQL interest group meet along with David at GeekTerminal for lunch. David patiently answered variety of questions relating to BitKeeper, GIT, SpikeSource's testing framework , Enterprise version of MySQL, SQLite, India, SQL Injection, etc. Thanks to Wong for organizing the event. Subscribe to: Post Comments (Atom). Wifi at Changi Airport. Security Related Groups in Singapore.
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: Security Related Groups in Singapore
http://codeshepherd.blogspot.com/2007/11/security-related-groups-in-singapore.html
Saturday, November 17, 2007. Security Related Groups in Singapore. 3) Security Meetup - Singapore. Next meeting on 13th Dec 2007. Subscribe to: Post Comments (Atom). Wifi at Changi Airport. IT Security Awareness Day 2007 at Singapore Poly. Lunch with David Axmark, Co-founder of MySQL. Security Related Groups in Singapore. OWASP Meeting at GeekTerminal Singapore. GMails POP and SMTP service. Barcamp - Brisbane, Australia. Design Patterns by Codingkriggs. View my complete profile.
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: Auto Mounting EBS on EC2
http://codeshepherd.blogspot.com/2009/05/auto-mounting-ebs-on-ec2.html
Tuesday, May 26, 2009. Auto Mounting EBS on EC2. I assume that you have already created a EC2 instance (On top of your custom AMI), EBS volume (both in the same availability zone) . Below are some instructions to automount EBS on EC2. . Http:/ developer.amazonwebservices.com/connect/thread.jspa? 1)apt-get install sun-java6-jre sun-java6-bin sun-java6-source. 3)wget http:/ developer.amazonwebservices.com/connect/servlet/JiveServlet/download/30-25071-102530-2022/mountec2vol. Set EC2 PRIVATE KEY EC2 CERT.
codeshepherd.blogspot.com
ÇÖÐÊSHËþHÈRD's Garbage Collector: Singleton Vs Static
http://codeshepherd.blogspot.com/2007/11/singleton-vs-static.html
Tuesday, November 13, 2007. Cybereal . Aren't Singleton the best suitable implementations for Database connection pooling? In a more general way. Singletons are best suitable to manager global variables. Singletons *ARE* global variables, basically. And that's why they are bad. Codeshepherd: you shouldn't need to use a singleton to use the same resource across a program. It's really hard to justify it for any other reason. So how will you implement a Database connection pool? Just a static class? But the...