Home…
We are back. Here is the path.
blah, blah, blah
We are back. Here is the path.
I’ve always liked the 4-H pledge. The only change I would make today is to replace “club” with “family”.
I pledge my Head to clearer thinking,
My Heart to greater loyalty,
My Hands to larger service,
And My Health to better living,
For my club, my community,
my country, and my world.
from Entrepreneurs and Tech Startups: Who’s Doing What When? :
…
“Because entrepreneurship is an indicator of economic vitality in regions and across the country, this study raises important policy questions about how to foster greater tech entrepreneurship to boost economic growth,” said Robert Litan, vice president of Research and Policy at the Kauffman Foundation. “Probably the most compelling fact in the study is that advanced education is critical to the success of tech startups.”
…
The vast majority (92 percent) of U.S.-born tech founders held bachelor’s degrees, 31 percent held master’s degrees, and 10 percent had completed PhDs.
…
Nearly half (45 percent) of the tech startups were established in the same state where U.S.-born tech founders received their education. Of the U.S.-born tech founders receiving degrees from California, 69 percent later created a startup in the state; Michigan, 58 percent; Texas, 53 percent; and Ohio, 52 percent. In contrast, Maryland retained only 15 percent; Indiana, 18 percent; and New York, 21 percent.
…
I have heard good things about Ireland’s essentially free college program.
Personally, my college education paid for its self in 5 years. I know that I’m the exception, but I don’t know that folks interested in living locally understand the effect of a college education on their potential.
As a way to promote college educations and entrepreneurs here we can make college loans to local kids. We can offer deferments while going to school or starting a local company. If we are successful, the those individuals will be able to pay back many fold.
Even if the loan doesn’t change the mind of a young person to return to the community after college, the loan program will be a vehicle for us to enforce how important an education can be.
What are your feelings and ideas about building a path to unite the healthy destinations of the community? Here is a map of my idea.
I think it addresses a couple things.
Some issues with the path are:
Shouldn’t backups be pretty standard and easy?
Shouldn’t they be live on the network?
arg.
My current solution is to schedule a job to rsync to my main server.
rsync -za --rsync-path=/usr/local/bin/ssnap.sh . backupserver:backups
That command will copy ‘.’ to backupserver in the directory backups, but instead of using ‘rsync -server’, it will call ‘ssnap.sh -server’. Basically, it maintains 18 copies hardlinked together in ~/backups/$date_stamp} on the backupserver, so files that haven’t changed don’t take up extra space or network bandwidth. I’ve found no problem running this to backup my wife’s complete XP machine across our asymetric DSL nightly.
Now all I need on a client machine to back it up is working rsync. My Linux server has rsync and ssnap.sh installed.
Sounds great doesn’t it?! The problem is getting rsync/ssh installed on all the different client machines, getting public/private keys set up. for all the users. I add a new user to my systems about once a month.
Shouldn’t the OS manage access to all resources? For instance a device driver would advertise the memory addresses that it expects to access. Access to any address out of that range would result in an error. Same for applications. Then when an application starts for the first time, the user could choose to grant or deny access to particular resources. A signature system could be used for the detailed descriptions like device drivers, but some thing like the Java Sandbox could be used for most apps. (Your editor doesn’t need memory access or network access, just filesystem acccess.)
This would alert folks to what a virus is doing. Currently to do this you either need to run the app in an emulator or disassebly it.
Joe