C06D

21 Steps to Economic Recovery
and Financial Independence

Step Three


The task in front of the nation is a big one, as of April 1, 2009, and much manpower needs to be organized for it. Our level of unemployment should be viewed as an anchor and a drag. Idle people represent a loss of potential that day by day can not be recovered. The idea of make work is repulsive to many but the list of need-get-done's grows and when people are mobilized they are much less demoralized.

Step 3 is the creation of a worker pool on a local basis that puts focus on training, evaluation, and certifications of as broad a range as possible. Construction, Maintenance and Repair, Supply-Chain, Nursing and Heath Care roles, Teaching, and all the technical aspects the many budding industries are just a few of the possible purviews.

The new WPA/CCC would have it's own tasks but would also function as an employment agency and rotate temporary personnel to clients on a contract basis. Personnel could go permanent any time they wish if the client wants them ( no mandatory temp period ) or opt for more rotation and training, evaluation, and certification. Personnel would teach each other and also be involved with canvasing for placement of each other in assignments. Large and small scale manpower needs could be organized at the drop of a hat for any public or private project.

Site Map
01A
A02A
A03B
B04C
C05C
C06D
D07E

Bookmarks
and
Favorites


Some links to MHTGR
Berkeley

321Foreclosure.com

Forelse Enterprises, LLC

LoanAID.org

Whole Truth Coalition.org

Irish Holocaust

Veteran Job Seekers:
Find Your
Civilian Career Here
MilitaryStars

nationjob.com

Calvary Community Church

The Library of Congress

The American Experience

The Works Progress Administration

WPA Film Library

OVERVIEW OF THE WPA

American Memory

New Deal Art During the Great Depression

WPA Exhibit

One very important aspect of the purpose of such a endeavor is to draw up as great an amount of the idle as possible to prevent the depression of wages from too large a glut of job seekers in competition. When two employers compete for one worker we have freedom, when two workers compete for the one job we have slavery. Thus paraphrased from the Mount Vernon Papers of Henry C. Carey.



My viewpoint is having idle workers impacts on the overall productivity and could this be avoided we all benefit. Who's interest does it serve to have idle workers? Only those who would like to reduce the workers negotiating position. When I go to the workplace to barter an exchange for my muscle power, labor, sweat, skill, knowledge, expertise, and ingenuity, I would like to have the best negotiating position possible!

This principle applies to the contractor as well, if too many contractors compete for the winning of bids the wining price is depressed, if the call for jobs bids is increased the less the idle contractors and the higher the wining bids.

Additionally a benefit would be to increase the ability to compile data on the actual functional quality of our domestic workforce and to be better able to assess the need of preparation and future planning.



If funds are to be set to the purpose of providing a subsistence safety net I would prefer that people have task instead of idleness and depression.

Civilian Conservation Corps Legacy Home Page Feb 28, 2009 ... Learn about the Legacy, its goals, and calendar of events.

Civilian Conservation Corps (CCC) The role of Civilian Conservation Corps (CCC) in the history of the United States of America.

Civilian Conservation Corps This included the Civilian Conservation Corps (CCC), a program designed to tackle the problem of unemployed young men aged between 18 and 25 years old.

Civilian Conservation Corps The story of the Civilian Conservation Corps and details about their work in north Georgia.

Civilian Conservation Corps Introduction The Civilian Conservation Corps (CCC), one of the first emergency agencies, was established in early 1933.

Blog for Step Three
By Alain Lareau
alainelj@yahoo.com

Step Guides
Step One
Step Two
Step Three


TechNewsletters.com. The Best Source of IT Related News.

Outlines
You Build

  1. The Means of Income
  2. Home improvement-Physical upkeep-Environment
  3. Health and wellness
  4. Education/Science
  5. Computer hardware and software, Media
  6. Politics, Philosophy
The Great Big Website of Jobs






HTML School

I would like to have this page have a particular layout, so the first thing I will show you is how to accomplish this with the use of tables. This method is as old as HTML 2.0 and is still a good way to control the way a page displays. You see how this text here distributes to the edges of the browser window. What if I want the text to have a definite width and be centered but still justify to the left and keep that form. I could use HTML table tags.

This text is in a table cell, the code that sets a table in place generally has this form;
<table><tr><td>
things in the table cell
</td></tr></table>

This text is also in a table cell and I'll now show the code that makes this table and the above table as wide as I wish and puts the cell in the center of the page
<table align="center" width="480"><tr><td>
things in the table cell
</td></tr></table>
The words align and width are attributes of the table tag,
while"center" and "480" are values.
Notice that everything lines up on the left, this a default setting.

Now I will build a new table and I will use the center cell to explain how it is done. This table will have three cells in just one row but as the cells fill they will become long and appear as columns. I will set the background color of the cells to help illustrate.


TechNewsletters.com. The Best Source of IT Related News.

More HELP
with HTML
Choose your topic of interest from the lesson plan menu




Remember my list from Step One, I can set that in the table cell, it just has to be between the <td> and </td> tags.

  • Computer at home
  • Word Processor
  • Text editor
  • Internet Connection
  • Email account
  • PayPal account
  • Tripod account
Next I will show you the same list but in a table with two cells side by side in a table row. The left cell will show the code that sets the table. The right side will have the list.



This is the code that sets
this table. <table align="center" width="476">
<tr>
<td bgcolor="#80FFFF" text="#993300" link="#000000" vlink="#3366FF" WIDTH="180">

text
</td><td>
<UL>

list items
</UL>
</td></tr></table>
  • Computer at home
  • Word Processor
  • Text editor
  • Internet Connection
  • Email account
  • PayPal account
  • Tripod account

You see the tag <td> can use attributes just like the <table> tag

A new table with two cells side by side in a table row. This is the code set in the left side cell.
<H2 align="center"><A NAME="list">A List</A></H2>
The<a> is the anchor tag and can have a NAME attribute that can be used to anchor a hot link from another page.
So the next table is what we end up with.

A List

  • Computer at home
  • Word Processor
  • Text editor
  • Internet Connection
  • Email account
  • PayPal account
  • Tripod account



In this table cell I get the text centered by adding an attribute to the <td> tag align="center"
Now I want to make a table with three columns.
This is the code I will start with;

<table align="center" ><tr>
<td width="90" align="center" valign="top">
the text in the cell to the left
</td>
<td width="480" align="center" valign="top">
the text in this cell
</td>
<td width="183" align="center" valign="top">
the text in the cell to the right
</td>
</tr></table>



Top of Page




















Copyright © 2009 - Alain Lareau
All Rights Reserved unless with Written Request.
alainelj@yahoo.com this page C06D
I have finalized this page and will make no further additions.
If you wish to shadow, copy, modify, edit and repost; I will link to you here.