Home Programing Articles
Programming Portfolio
Commodore 64 My First Color Computer PDF Print E-mail
Tools -Editors IDE's and what not
Written by Jeremy P. McKay   
Tuesday, 12 January 2010 03:06

Commodore 64

c64004

I remember, when I  ordered the computer and a brother typewriter that acted as a printer.  A good letter quality printer cost more than the computer.   There were cheap dot matrix printers and their output looked cheap.  This printer / typewriter had a daisy wheel and did not print images.

My printer came two months after the computer which gave me a change to learn something about the computer and some Commodore basic.  I still have an Commodore SX - 64 in a closet.  It is awsome and takes a few minutes to load the word processor.

 

Last Updated ( Thursday, 22 April 2010 13:08 )
 
Catalyst Framework PDF Print E-mail
Perl
Written by Administrator   
Sunday, 13 September 2009 10:47

http://www.catalystframework.org

http://perl.apache.org/

 

http://search.cpan.org/~hkclark/Catalyst-Manual-5.8000/lib/Catalyst/Manual/Tutorial.pod

The Catalyst framework is a flexible and comprehensive environment for quickly building high-functionality web applications.

Last Updated ( Sunday, 13 September 2009 15:19 )
 
Resume September 2009 PDF Print E-mail
Resume
Written by Jeremy P. McKay   
Monday, 24 August 2009 00:00
Article Index
Resume September 2009
jeremy-p-mckay-resume
All Pages
Jeremy Patrick McKay
5935 Chandler Drive
San Diego, CA 92117
Cell (619) 708-1990
Email: This e-mail address is being protected from spambots. You need JavaScript enabled to view it

Summary:

•    Over 11 years experience Perl. Most recently used perl for data mining, web mining and data
munging at Life Technologies (formerly Invitrogen)
•    Over 4 years experience with Flash ActionScript, PHP and MySQL.
•    WordSmart project https://learn1.wordsmart.com/newDemo/csd.html and desktop versions of the
same product for clients without broadband access
•    Flexible and able to work in MAC, Linux, UNIX, and Windows environments
•    Other languages Unix Shell, HTML, JavaScript, C.
•    Familiar with ActionScript 3.0, C# and Objective C
•    Analytical, persistent and willing to work outside of the box if necessary


Technical Instructor

•    Adjunct Faculty at Coleman College, UCSD Extension, and Bluestar Learning
•    Design and provide training in practical applications for the Perl programming language
•    Design and provide training in for PHP and MySQL
•    Hands on teaching and instruction in the use of operating systems, computer programs and
programming languages
•    Senior Instructor for Interwoven's Partner Training Bootcamps taught over one dozen classes to
technical consultants throughout the world.

Work History

Consultant, Consultnet (October 2008 to September 2009)

Invitrogen Senior Data Analyst

•    Parsed, validated and imported records from Pub Med in to Siebel CRM using Perl 5.10 in the Unix
shell
•    Created a perl scripts to download and parse data from membership databases on the Internet.
•    Created and used reports from EDW Cognos Reporting
•    Used Macromedia Flash to build Sales Workflow applications prototype
•    Used Flex and Adobe Air to build a Dashboard prototype
•    Linux and Free BSD system administration and installation



Last Updated ( Wednesday, 26 August 2009 17:33 )
 
Modifying Each Element In An Array PDF Print E-mail
Perl
Written by Jeremy P. McKay   
Tuesday, 14 July 2009 18:23

I  have an array called @data.  I want to check each element in the array for a value, and if that value exist, I wan to delete it

 

I could try

@data =~ ~ s/$postalCode//;

### creates an error about private arrays

Maybe this

for my $dat(@data){
$dat=~ s/$postalCode//;
}

 

The above code does not modify the array at all.  We could create a temporary array and then pop puch and reassign upon going through each element.  That could be time consumming especially if I have 250,000 arrays.  So let's look at map. Charles Galpin has written a pretty simple tutorial on using map here http://articles.techrepublic.com.com/5100-10878_11-1044685.html.

 

So after reading Charles' article,  I try .

map {s/$postalCode//} @data;

 

Just to a make sure it works I ran the a line of data through it.  You should always check yoru code on small sets of data. The test and results are below.

 

my $data = "Beijing Normal University    Beijing 100875    China";

my @data = split/\t/, $data;
$postalCode = 100875;
for my $d(@data){
print "$postalCode $d\n";

}

print  "Postal Code Removed\n";

map {s/$postalCode// } @data;
# just checking
for my $d(@data){
print "$postalCode $d\n";

}   
exit;

 

100875 Beijing Normal University
100875 Beijing 100875
100875 China
Postal Code Removed
100875 Beijing Normal University
100875 Beijing
100875 China

 

Hope this helps in your data munging

 

 

Last Updated ( Tuesday, 14 July 2009 19:19 )
 
Charting solutions that do not use Flex PDF Print E-mail
Tools -Editors IDE's and what not
Written by Jeremy   
Monday, 30 March 2009 23:29
 I will be reviewing each one of these.  For Column, Pie and Bubble Charts over the next few days.  It might be cool.
tool Results

http://code.google.com/apis/visualization/ 

They have the Pie chart down to a beautiful interactive piece of web art.  It even looks good on my IPhone

Dojo

http://www.sitepen.com/blog/2008/06/06/a-beginners-guide-to-dojo-charting-part-1-of-2/

Bubble Chart

http://www.dojoforum.com/2007/11/15/dojo-1-0-bubble-chart-and-bar-chart-worked-portal-6-0-rad-7-0

 

http://www.sitepen.com/blog/2008/06/12/dojo-charting-widgets-tooltips-and-legend/

 

 

JQuery/Flot

http://people.iola.dk/olau/flot/examples/

http://code.google.com/p/flot/

http://www.liquidx.net/plotkit/

PlotKit is a Chart and Graph Plotting Library for Javascript. It has support for HTML Canvas and also SVG via Adobe SVG Viewer and native browser support.

Prototype

http://www.deensoft.com/lab/protochart/index.php

 

scriptaculous  -- could not find any synomous with

http://code.google.com/p/ofcgwt/

accepts json

http://www.jscharts.com/free-download

 

http://www.jfree.org/jfreechart/samples.html

 

 

http://www.ilog.com/promotions/ppc/visu/ajaxcharts/index.cfm?acc=ggvisu&gp=webcharts&source=cpc&cmpn=charts

 

Last Updated ( Monday, 30 March 2009 23:43 )
 
«StartPrev1234NextEnd»

Page 1 of 4
Copyright © 2012 Jeremy P. McKay. All Rights Reserved.
Joomla! is Free Software released under the GNU/GPL License.
 

 

Jeremy's Artist Blog

Jeremy P. McKay, Artist
"Creative work is not a selfish act or a bid for attention on the part of the actor. It is a gift to the world and every being in it. Don't cheat us of your contribution. Give us what you've got" -- The War of Art: Break Through the Blocks and Win Your Inner Creative Battles by Steven Pressfield.

Mark Joyner

Mark Joyner's Blog: Atomic Mind Bombs (Personal Development Brain Puzzle Cartoons)