minnieperl.blogspot.com
Minnie Perl: Sorting Example
http://minnieperl.blogspot.com/2010/03/sorting-example.html
A little bit of what I've learned about Perl, and several examples of code. Wednesday, March 10, 2010. Print " n";. Print " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - n";. Print " uniqsort.pl: n";. Print " This program will list the unique values found in the column(s) n";. Print " specified by the user from the file named. The output is sorted n";. Print " and shows a record count per value. n";. Print " n";. Print " - - n";. My $Directory = STDIN ; # Store what's typed in. EndPos...
minnieperl.blogspot.com
Minnie Perl: Example of Matching and Moving Data
http://minnieperl.blogspot.com/2010/03/example-of-matching-and-moving-data.html
A little bit of what I've learned about Perl, and several examples of code. Wednesday, March 10, 2010. Example of Matching and Moving Data. Print " n";. Print " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - n";. Print " movedat.pl: n";. Print " Move data from one file to another based on matching columns. A third file is n";. Print " created with all data from the first file and the columns specified from the 2nd. n";. Print " n";. Print " n";. My $OutFile = STDIN ; # ...
abuzzfromjava.blogspot.com
A Buzz from Java: Functions: Class, Instance and Constructor
http://abuzzfromjava.blogspot.com/2010/03/functions-class-instance-and.html
A Buzz from Java. Thursday, March 11, 2010. Functions: Class, Instance and Constructor. Public class testparent { public static void main(String[] args) { parent.hello(); / 3. class function parent p1 = new parent(); / 1. constructor function p1.display(); / 2. instance function parent p2 = new parent("ALICE"); / 1. overload constructor function p2.display(); / 2. instance function p1.display(); / 2. instance function } }. Parent.java = super class. Subscribe to: Post Comments (Atom). Tell me you can't d...
htmlforblogs.blogspot.com
HTML for Blogs: Using Colors in HTML
http://htmlforblogs.blogspot.com/2010/03/using-colors-in-html.html
Thursday, March 11, 2010. Using Colors in HTML. This chart shows the names of colors that can be used in HTML. In this example, I'm using the actual name to select a color. Realize that the background color will make a difference in how the font color looks. (Note the difference between the 'DarkRed' on black in the chart, and the 'DarkRed' on white in the example). It will generate the HTML report shown below. Subscribe to: Post Comments (Atom). A Way to Display a Table in a Blog. Fixed Fonts for Blogs.
abuzzfromjava.blogspot.com
A Buzz from Java: March 2010
http://abuzzfromjava.blogspot.com/2010_03_01_archive.html
A Buzz from Java. Thursday, March 11, 2010. Banking { public void withdraw(); public void deposit(); public void balanceCheck(); }. Public class saving implements. Functions: Class, Instance and Constructor. Parent.java = super class. Public class parent { / Data Members - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -. Public void display() { System.out.printf("TOTAL %d NAME: %s n", total, name ); }. Static public void hello() { System.out.printf("HELLO.Welcome. n"); } }. SQL is just plain ...
htmlforblogs.blogspot.com
HTML for Blogs: March 2010
http://htmlforblogs.blogspot.com/2010_03_01_archive.html
Friday, March 12, 2010. A Way to Display a Table in a Blog. Create the table in Goggle Docs. Get rid of all the columns and rows not used. Select File, then Export to HTML. Ctrl U to view page source. (Make sure the source doesn't have any physical line breaks in it.). Copy and paste from there to the blog work area. I haven't yet figured out how to get rid of the first column (shows as a dot), and the first row. For now, I manually type a '? Thursday, March 11, 2010. Fixed Fonts for Blogs. It should hav...
minnieperl.blogspot.com
Minnie Perl: Counting Example
http://minnieperl.blogspot.com/2010/03/counting-example.html
A little bit of what I've learned about Perl, and several examples of code. Wednesday, March 10, 2010. Print " n";. Print " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - n";. Print " Count characters and/or words and/or lines in a file. n";. Print " - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - n n";. Print "File Name: "; # Display the question. My $TheFile = stdin ; # Store what's typed in. Chomp($TheFile); # Get rid of line break. Do they want to count characters.