Tuesday, August 26, 2008
Useful commands in Linux and Solaris
- truss in solaris , strace in linux
Tuesday, May 06, 2008
Useful Maven commands
checkout a project from subversion
mvn scm:checkout -DconnectionUrl=scm:https://svn.url.project.name -DcheckoutDirectory=name
checkout a project from subversion
mvn scm:checkout -DconnectionUrl=scm:https://svn.url.project.name -DcheckoutDirectory=name
Labels: maven mvn scm
Java Classloaders
Classloaders are responsible for finding and loading a class.
Class itself is a java object.
Following statements are true,
Custom class loaders
A custom Class Loader can be created by extending java.lang.ClassLoader.
Two things are important in creating a custom classloader.
Classloaders are responsible for finding and loading a class.
Class itself is a java object.
Following statements are true,
- All classloaders except bootstrap classloaders have a parent classloader
- All class loaders are of type java.lang.ClassLoader
Custom class loaders
A custom Class Loader can be created by extending java.lang.ClassLoader.
Two things are important in creating a custom classloader.
- Setting parent classloader
- implementing findClass() method
Labels: java classloader
Friday, August 24, 2007
Monday, July 23, 2007
List of User groups in Bay area.
ACCU http://www.accu-usa.org/
Bay Area Debian http://bad.debian.net/
BAFUG S.F. http://www.bafug.org/
BALUG http://www.balug.org/
[BAWUG http://www.bawug.org/]
BayPIGgies http://www.baypiggies.net/
BayLISA http://www.baylisa.org/
BayLISA Monitoring SIG
http://www.groundworkopensource.com/community/monitoring-sig.html
BUUG http://www.buug.org/
CABAL http://linuxmafia.com/cabal/
CalLUG http://www.ocf.berkeley.edu/~linux/
[CCSF LUG mailing list only. Dead site:
http://www.ccsf.cc.ca.us/Organizations/Linux_Users_Group/]
Cocoaheads http://cocoaheads.org/us/SiliconValleyCalifornia/
CSUEB LUG http://acc.csueastbay.edu/~linuxug/kwiki/
EBLUG http://www.eblug.org/
Linux Consultants' Lunch inquired about missing mailing list, 2006-02-21.
Linux User Group Hayward (Linuxdojo) http://www.linuxdojo.net/
Linuxstammtisch http://electriclichen.com/linuxbierwanderung/local/#sanfrancisco
NBLUG http://www.nblug.org/
Oakland Perl Mongers http://oakland.pm.org/
PC Clubhouse Linux SIG http://www.pcc.org/sigs/#Linux
PenLUG http://www.penlug.org/
SFBA NetBSD UG http://www.imrryr.org/NetBSD/sfbanug.html
SF LUG http://www.sf-lug.org/
SF OpenBSD UG http://www.sfobug.org/
SF Perl UG http://sf.pm.org/
SF PostgreSQL UG http://pugs.postgresql.org/sfpug/
SVBUG http://www.svbug.com/
SVLUG http://www.svlug.org/
Silicon Valley Perl UG http://www.rf.net/~sv-pm-org/
Silicon Valley Wireless Users and Experimenters http://www.svwux.org/
SJSU LUG http://sjsulug.engr.sjsu.edu/
Smaug http://www.scruz.org/
Sonoma County Sysadmins (SoCoSA) http://socosa.org/
SULUG http://sulug.stanford.edu/
Starship Augusta Ada http://trek.starshine.org/
Linux User Group of Davis (LUGOD) http://www.lugod.org/
Linux User Group of Sacramento (SacLUG) http://www.saclug.org/
Sites of sporadic interest:
Elec. Flea Mkt. 2nd Sat. at De Anza, Mar-Oct: http://www.asvaro.org/fleamarket
Intrusion Detection UG http://idug.cryptojail.net/
Mindsource BOFs http://www.mindsrc.com/
Linux.org events http://www.linux.org/event/
Mozilla Conference
LWCE http://www.linuxworldexpo.com/
Holidays, time changes! see: http://linuxmafia.com/bale/holidays
O'Reilly Open Source Convention, http://conferences.oreillynet.com/os2006/
EFF Bay Chapter http://www.eff.org/bayff/
Bay Area Cypherpunks http://www.cryptorights.org/lists/meetingpunks/
South Bay Community Network sbay.org
Computer History Museum http://www.computerhistory.org/events/
Annual Linux Picnix http://www.linuxpicnic.org/
Stacey's Book Store Events http://www.staceys.com/sanfranciscoevents.html
USENIX Association http://www.usenix.org/events/
CodeCon http://www.codecon.org/
Computers, Freedom, and Privacy http://www.cfp.org/
IEEE Security Symposiums http://www.ieee-security.org/
May 21-24, 2006: http://www.ieee-security.org/TC/SP2006/oakland06.html
Computer Professionals for Social Responsibility http://www.cpsr.org/
Vintage Computer Festival http://www.vintage.org/events.php (November?)
Howard's Events list: http://lg-events.blogspot.com/
Dead groups:
BANG http://www.bang.org/
Internet Developer/Technology Group http://www.inetdevgrp.org/
LBNL LUG http://lug.lbl.gov/
Linux Events http://linevents.com/ (gone)
Linux Movies Group http://www.linuxmovies.org/
SCLUG http://linus.got.net/
sig-beer-west http://www.extasia.org/sig-beer-west/
SlugLUG http://sluglug.ucsc.edu/
WebGuild http://www.webguild.org/
Monday, June 04, 2007
What would happen when tried to compile and run this program?
2. Runtime Error.
3. Compiles and Runs with no errors.
Answer : 1
1. Compilation Error
public class StaticVar
{
void execute(String b){
static String str;
str = b;
}
public static void main( String[] args ) {
StaticVar var = new StaticVar();
var.execute( "blah");
}
}
2. Runtime Error.
3. Compiles and Runs with no errors.
Answer : 1
Labels: java questions
Wednesday, May 02, 2007
Nice posting for converting bytes to string and vice versa.
http://forum.java.sun.com/thread.jspa?threadID=659432&messageID=3873051
http://forum.java.sun.com/thread.jspa?threadID=659432&messageID=3873051
Tuesday, March 27, 2007
Parallels Virtual Machine
I use Mac OS X and run Windows 2000 using parallels.
In one word, parallels sucks.
When I start "yahoo messenger" it simply crashes.
I send emails for their "support", nothing, they care about absolutely nothing.
From today, it simply crashes, when I start to boot windows.
Everytime I start windows, it crashes.
Way to go parallels...
People, look for alternatives....
I use Mac OS X and run Windows 2000 using parallels.
In one word, parallels sucks.
When I start "yahoo messenger" it simply crashes.
I send emails for their "support", nothing, they care about absolutely nothing.
From today, it simply crashes, when I start to boot windows.
Everytime I start windows, it crashes.
Way to go parallels...
People, look for alternatives....