Summit & PoGo ???
10/4 M.D.
|
Page Summary
September 2007
|
PoGo
Happy Birthday de tomatoe @ 52
... & we all got 2 play the Game Of Life w/Ice Cream & Cake - Hallalujah !!! Sunset Planets of Summer 2005
Venus, Jupiter and the Moon are gathering for a beautiful sunset sky show. http://science.nasa.gov/headlines/y2005/2 Look Up, In The Sky :) 10/4 M.D. Tough Love
4:50 PM 8/28/2005 ... Boycott Starbucks Gay Agenda Starbucks promotes homosexual agenda with coffee cup ... Baptist Press News Photo Download http://www.bpnews.net/photodownload.asp?I http://www.bpnews.net/images/IMG20058129 ... Starbucks Promotes Homosexual Agenda ... SBC says: “LOLZ Starbucks is gay!!1!one1!!!” http://www.oregonliteracy.org/events/ima ... Starbucks Advocates Homosexual Agenda2005-08-13 19:50:22 ... 10/4 M.D. 20th anniversary of Jannie & Michael
2005-08/10 ... above is the new 8 1/2 x 11 kitchen magnet made by the grandkids :) Lola @ 80 something
Jannie, was came across some old B&W photo's the other day, and when I hadn't not uploaded anything in awhile, I thought to add a bit of color and send this on up. It was taken on a side street by the Hotel Laguna, my Lola is 80 something, or as Flora used to say, "on the sunny side of her 80's" - Agape Michael
P.S. I was going 2 say RIP, but no doubt, she is with the LORD, and hence, enjoying heaven. - Hallelujah !!! Mystery Moon (slash) death Star - CONTEST! - entry
... http://www.livejournal.com/users/slacker
RED 8-ball 4 Pamela
Enjoy Pamela, meanwhile, enjoy the show as well at the following URL: http://www.slackerastronomy.org/ take care M.D. Using PERL 5 for Web Programming
10:32 AM 5/20/2005 ... Using PERL 5 for Web Programming ... 2:26 PM 5/23/2005 D:\study\perl\book.(s)\seperlcd.CD\EBOOK ----- [x] read thru chapter 1 ... 01 - Perl Overview ----------------------------------------
ObjectDock
ObjectDock is a program that lets you organize your short-cuts and running tasks onto an extremely customizable dock that sits on your desktop.
Down By The Riverside
Lisa, B on the look out 4 a suspicious X-AOL CD case & try not 2 toss it :)
Your BU is in there kiddo. FYI: ... it took me less time 2 burn the CD than to scrap all the AOL chaff & glue off the casing :) 10/4 M.D. missing the boat #perl .vs. comp.lang.perl.misc
Where is the GRACE ??? ... meanwhile: Double Quotes .vs. Single Quotes
D:\study\perl\WIP>perl -we 'print join ",", map($_*10,(1..10))' Command-line Options - Study Notes
9:49 AM 4/26/2005 ... Perl 5 by Example David Medinets - ch17 Eureka! - Command-line Options
Eureka! is right, finally, U would not belive how many hours I fussed with trying to get something to pan out via a one lineer in perl. After newsgroups and chat rooms, I scored with David Medinets' book in chapter 17: "perl 5 by example" D:\study\perl\book.(s)\perl_5_by_example -p This option places a loop around your script. -e This option lets you specify a single line of code on the Installing Apache HTTP server 1.3.28
Got the books fro Dave & the UUASC this morning out of Jannie's car, a few adjustments, and it's about time to install an Apache server for testing of code, etc.
... nuff said ... 10/4 M.D. Day 1 more time :)
11:14 AM 4/18/2005 ... Teach Yourself Perl 5 in 21 days by David Till Notes:
[ ] This book is designed to teach you the Perl programming language in just 21 days.
[ ] o previous programming experience is required for you to learn everything you need to know about programming with Perl from this book [ ] If you are familiar with other programming languages, learning Perl will be a snap. [ ] The only assumption this book does make is that you are familiar with the basics of using the UNIX operating system.
[ ] This book contains some special elements that help you understand Perl features and concepts as they are introduced: [ ] Syntax boxes
[ ] Each feature of Perl is illustrated by examples of its use.
[ ] Each day ends with a Q&A section containing answers to common questions relating to that day's material.
[ ] This book uses different typefaces to help you differentiate between Perl code and regular English, and also to help you identify important concepts.
[ ] in your first week of learning Perl, you'll learn enough of the basics of Perl to write many useful Perl programs.
If Something Goes Wrong
[ ] #!/usr/local/bin/perl [ ] look at each line of Listing and figure out what it does. [ ] The first character in the line, the # character, is the Perl comment character [ ] The ! character is a special character; it indicates what type of program this is. [ ] The path /usr/local/bin/perl is the location of the Perl executable on your system. Note: I'm using: This is perl, v5.8.6 built for MSWin32-x86-multi-thread [x] D:\study\perl>path #!/usr/local/bin/perl
#NAME: ----- 4:24 PM 4/18/2005 ... http://www.geocities.com/thestarman3/per Although the first line, #!perl , is NOT necessary to run a perl script under Windows™ 95/98/NT, it is good programming practice to make your perl scripts as portable (able to run on many different systems) as possible. On many UNIX-type systems, this line is written as: #!/usr/local/bin/perl and referred to as the "she-bang" line; possibly helpful in remembering that the "bang" character (!) follows the # character. This is a special line (not a comment) that tells those systems which understand it where they can find the perl executable. Windows™95/NT use the PATH statement and their Registry files (containing " file associations" ) instead. The perl executable will try to run any file you ask it to as a perl script, but it's also a good practice to use the .pl extension. -----
... D:\study\perl\WIP>perldoc perlsec NAME DESCRIPTION Perl automatically enables a set of special security checks, called While in this mode, Perl takes special precautions called *taint checks* -- More -- ...
...
$inputline = <STDIN>;
$inputline = <STDIN>; [ ] example of a Perl statement
[ ] Tokens can normally be separated by as many spaces and tabs as you like [ ] statements can take up as many lines of code as you like. [ ] white space is the collection of spaces, tabs, and new lines separating one token from another [ ] use white space to make your programs more readable [ ] New statements always start on a new line. [ ] One blank space is used to separate one token from another (except in special cases ...
$inputline = <STDIN>; [ ] consists of four tokens 1 $inputline The $inputline and = Tokens [ ] an example of a scalar variable [ ] The = token, called the assignment operator ... [ ] Thus, <STDIN> is stored in the scalar variable $inputline.
[ ] <STDIN>, represents a line of input from the standard input file Note: in this case the KeyBoard is <STDIN> [ ] NOTE: If there are more lines of input than there are <STDIN> tokens, the extra lines of input are ignored
[ ] a special token that tells Perl the statement is complete
print ($inputline); [ ] statement refers to the library function that is called print [ ] provided as part of the Perl interpreter [ ] The print function's task is to send data to the standard output file.
[ ] When a reference to print appears in a Perl program Perl interpreter calls, or invokes, the print library function [ ] This function invocation is similar to a function invocation in C, a GOSUB statement in BASIC ... [ ] When the Perl interpreter sees the print function invocation, it executes the code contained in print and returns to the program when print is finished. [ ] it executes the code contained in print and returns to the program when print is finished. print ($inputline, $inputline); In this case, print writes two copies of $inputline to the standard output file.
...
[ ] If a language is a compiled language, the program you write must be translated into machine-readable code by a special program known as a compiler. In addition, library code might need to be added by another special program known as a linker. [ ] Interpretive languages and compiled languages both have advantages and disadvantages ( ) with Perl, it takes very little time to run a program in an interpretive language.
[ ] Perl is a programming language that provides many of the capabilities of a high-level programming language such as C [ ] Perl programs contain a header comment [ ] Perl programs also can contain other comments, each of which must be preceded by a #. [ ] Perl programs consist of a series of statements [ ] Perl programs call library functions to perform certain predefined tasks. example of a library function is print [ ] Library functions are passed chunks of information called arguments these arguments tell a function what to do.
[ ] If it detects an error in your program it displays an error message
BLOG'ed Thursday, April 18th, 2005 http://www.livejournal.com/users/datamd/2 back in the saddle again - let the Camel Race continue
Well back from the weekends activities, tons of fun with all nine grandkids, and their very dear parents :) ... ... meanwhile, I'm thining of switching gears, or books rather, after browsing through the UUASC library, and grep'ng ( would you believe {Ctrl}+"F" find ... for perl books: ... it's Pizza Knight down on O.C. so I've checked out some beginning books and will try to have them picked up for me if I can't make it down, etc. UUASC Orange County Chapter SUBJECT: Checkout request
... more on this later, back to study time, etc. ---------- Class Closed due 2 PG&E oversite
See other BLOG: http://www.e-commerce-consortium.com/blo ... meanhile, have a japh, well how about a scan of the T-shirts I got 4 Kepi & I ???
Usage: C:\Perl\bin\perl.exe [switches] [--] [programfile] [arguments] strict - Perl pragma to restrict unsafe constructs http://www.perldoc.com/perl5.8.0/lib/str 10/4 M.D. |








_for_Pamela_RED_8-ball.jpg)







