|
Please visit the LangaList Home Page Please note: Older issues may contain information that is now out of date How To
Subscribe and Unsubscribe is at the end of this
note. Mailing List Trouble? See
http://langa.com/help.htm Please recommend the LangaList to a friend! (And maybe win a prize!) An easier-to read formatted
HTML version of this newsletter is available The
LangaList 2005-05-09 Please visit our sponsors and help keep the LangaList S.E. free!
--- ( Your Clicks On Ad Links Help Keep The LangaList Free! ) ---
--------------( the above is an advertisement )-------------
0) Back From Spring VacationHe's ba-a-a-a-ck! <g> My wife and I both enjoyed our Spring break; we spent several days in Pennsylvania Dutch country, and then explored some of the back roads through the mountains of central Pennsylvania. Lovely countryside! (As before with some trips, I've posted more info in the "Just For Grins" section.) But now: Back to work! Click to email this item to a
friend 1) Google's New Tools: Proceed With CautionI'm a huge fan of Google. I think the company has done more than any other to organize and make available the vast resources of the Web. There's more to Google than it's main search engine, of course, although that's its principal strength and is how most people know Google. There also are many new spin offs and additional technologies, such as the more than a dozen betas and test services you can see displayed at the Google Labs site http://labs.google.com/ , and the newer add-ons that have graduated from the Google Labs as released services. Some of these are fairly well-known, but others are just now making it to the consciousness of the online world at large: Gmail, Google Desktop Search, Google Groups 2, Google Deskbar, Web Alerts, Search by Location, Google Glossary, Google News Alerts, Froogle, and more. Google's services are immensely useful, and the company's reach is huge and growing. I believe this is mostly a good thing, but with several major caveats, as the questions raised in these reader letters suggest:
Google's strength, of course, is in its ability to sort,
index, categorize and make useful massive amounts of data. But there's an
obvious risk when you include your personal, private, and/or corporate
information (such as in email, or in indexing the contents of your hard drive)
as grist for Google's mill. In a business environment, it also creates a major potential liability in the form of persistent records of what a company's employees have been looking for, that likewise exists external to the company, beyond the company's control. Patent searches, legal records, human resource matters, contract negotiation items, and yes, searches of "naughty" sites... the records of it all sit on a Google server, under Google's control. There are similar risks in some of the other services, too. I've looked at the vulnerabilities, tried to weigh the pros and cons of the various Google services, and come up with what I think is a reasonable approach that addresses some of the very real privacy and security issues that the growing Google tool suite poses. I've spelled it all out--- including telling you which
Google services I use and which I avoid--- in a new InformationWeek article
available (free!) at Click on over, and check it out. See you there! Click to email this item to a
friend --- ( Your Clicks On Ad Links Help Keep The LangaList S.E. Free! ) --- "Hi Fred, I was receiving your
free newsletter for a while and --------------( the above is an advertisement )-------------- 2) Dial-Up Dies For No Obvious Reason
I don't use wmconnect, so please understand this is a "best guess" answer, but many dial-up ISPs do monitor activity (not content) so they can free up idle dial-in points of presence; that is, to prevent "camping," where someone logs in and stays online for very long times, whether they're actively using the connection or not. It's expensive to set up dial-in points of presence, and each port can only serve one customer at a time, so it's in the ISP's interests to get you offline as fast as they can so that another customer can use the freed-up port. Trouble is, the ISP may not see all activity; they may, for example, mistake a long FTP download as "no activity" if what they're looking for is HTTP data; and so they pull the plug on that connection. Sometimes, the ISP will "ping" a seemingly-idle connection to make sure a PC's still on the other end. But if your firewall is set up not to reply to Ping requests, the ISP will have no way of knowing that the connection is still alive; again, it pulls the plug. One answer is "keep alive" or "stay alive" software that simulates human activity on your connection. These tools--- both free and commercial--- occasionally trickle out a few simulated keystrokes or commands through your connection; these little data bursts don't do anything except reassure the monitoring software that the connection is active and in use. This often prevents the kind of disconnects you may be experiencing. So, that's where I'd start--- install a "keep alive" tool.
With a little luck, that'll fix the problem in one easy--- and free!--- step. <g> BTW: Although you can't remove the Windows firewall---
it's always available as a last-ditch defense--- you can disable it so it won't
interfere with more capable firewalls: With SP2, just click Start/Control
Panel/Security Center and then click the "off" button for the firewall. That's
all it takes! More/fuller info: Click to email this item to a
friend 3) Getting Started With HTML
Hypertext uses what are called "anchors;" code that ties (or anchors) a URL to a specific piece of text. The code to start an anchor is the letter "a" and the code to end or close an anchor is "/a". HTML commands are called "tags," so a and /a are "anchor tags." HTML commands are normally enclosed in pointy brackets like these < >. (Note: Putting HTML commands in this item may confuse some email clients--- they may try to act on these example tags, and get horribly confused. 8-) If this item looks weird in your email client, just use the links at the top of the page to read the web-version of the newsletter, which is formatted correctly.) To turn the words "Home Page" (or any word or phrase) into a hyperlink, just enclose the phrase in anchor tags: <a>Home Page</a> Of course, there's no URL in the above, so the hyperlink doesn't go anywhere yet. To make it a real, functioning hyperlink referring to another location, you need to add a hyperlink reference or "href" command to the anchor tags. Let's say we want a hyperlink reference to the langa.com site: The tag would look like this: href="http://langa.com" Adding that to the anchor tags gives you a complete, functioning hyperlink: <a href="http://langa.com">Home Page</a> A web browser, or html-capable email reader will turn the words "Home Page" blue and underline them, to show the reader that it's a clickable link--- in this case, to langa.com . Of course, the words "Home Page" are arbitrary: you can put any word or words there. All HTML commands follow similar logic: A tag starts or opens a given command, and may contain other modifiers or subcommands; that's followed by the actual text or image you want the tag to work on; and that, in turn, is followed by a "close" tag to end the sequence. In most cases, the close-tag command is the same as the open-tag, except preceded by a forward slash. Thus, if open anchor is <a>, then close anchor will be </a>, and so on. You can learn a lot by examining web pages: Use your browser's View/Source command to see the underlying source code--- the raw HTML--- of any given page. (Start with simple, mostly-text pages.) Copy the source code to your system and play with it--- try changing, removing, or adding tags to see what happens; or try editing the text between the anchors or other tags to see what happens. It's the fastest way to learn I know of. Many tags are pretty obvious and mnemonic: Bold text, for example, is created by enclosing text inside a <b></b> pair of tags. italic text is created by <i></i>; underlined text by <u></u>; etc. You change fonts with a <font></font> pair; start and end paragraphs with a <p></p> pair, and so on. While many tags are pretty obvious, you'll need some reference tools to help explain what unfamiliar and more exotic tags are, and how to use them. Fortunately, there are many free information sources, including some excellent interactive tutorials that can have you coding your own web pages in no time. See http://www.google.com/search?q=learn+html Although the HTML waters can get deep pretty fast, it's not that hard at all to learn basic coding--- and that's all most web pages require! Click to email this item to a
friend --- ( Your Clicks On Ad Links Help Keep The LangaList Free! ) ---
--------------( the above is an advertisement )------------- 4) Email Server in Home/Small Office?
You can do it, James, but it'd be much, much simpler and less expensive to find a good web host. Most offer mail services as part of the deal--- for as little as $4-$5 a month, you can get unlimited email boxes with none of the hassle of trying to set up a server yourself. If you do it on your own, you'll need an isp that can assign you a permanent, unchanging IP address; you'll have to set up a server with constant online availability (if you lose your connection or the server goes down for any reason, you'll have no mail service, and all incoming mail will be lost during the outage); you'll have to expect frequent attacks from hackers and attempts by spammers to subvert your server; and you'll receive an enormous flood of generic "dictionary attack" spams that you'll have to filter anyway; and so on. Successfully running a mail server is a large and nasty job. It's often expensive, too: To do it right, you'd want a dedicated line, a dedicated system, dedicated UPS, dedicated backups, etc. To my mind, it's simply not worth it in small to medium businesses and in homes; not when you can buy professionally-maintained mail services for a buck or two a week. Even at minimum wage, you'll spend more than that just in your own time if you try to manage your own server, never mind the hardware costs and the hassle. Again, it's much, much simpler and less expensive to find a good web host that offers professional-maintained mail services as part of the deal. And they're not hard to find at all: http://langa.com/u/9j.htm Click to email this item to a
friend 5) Powerful Tools For Customizing Windows
Thanks, BC! We've discussed both tools before; and Bart's, in particular, has evolved a great deal over the years. It can be a little daunting to first-time users, but it's enormously powerful. And, as you said, the two tools can be combined to give you wonderful flexibility in setting up Windows exactly the way you want it to be! Click to email this item to a
friend 6) PR Budget = $0.00Long-time readers know this newsletter is a one-person private project of
mine: It's not part of some publishing empire's stable of publications. It's just me here! <g> There's no budget, staff or facility to handle
outreach and promotions: The newsletter depends on word of mouth to grow. Click to email this item to a
friend 7) Alternate Lock-IdentifierOur discussion of a "Free 'WhoLockMe' Tool" ( http://langa.com/newsletters/2005/2005-04-14.htm#5 ) prompted this reply:
Thanks, Lewis! Click to email this item to a
friend 8) They Just Keep Coming And Coming...Well over three thousand of your fellow readers have
"Loaded the code." Please click over to
http://langa.com/code.htm , and maybe you can join them! (If you've already
"Loaded The Code" and are wondering if your site will appear here or on the
Langa.Com web site, please see
http://langa.com/link.txt ) Manually Browse All Posted-to-Date Sites Starting
At Amazing Multimedia Jonathan Omer-Man's personal website Mac News Backup4all "Site of Dreams" Tadej's homepage web business builder aircraft and more Rubber Excavator Tracks & Repairs (AU) The Computer Guy Click to email this item to a
friend --- ( Your Clicks On Ad Links Help Keep The LangaList Free! ) ---
--------------( the above is an advertisement )------------- 9) Searching For FixesIn Item #1 in this issue, I mentioned that--- despite the dangers inherent in some of the new offerings--- I'm still a huge fan of Google's main offering, its search engine. These two different reader letters show why:
When I run into problems like this, I simply use a unique portion of the error message--- the error code number, a file name mentioned in the error dialog, a specific phrase from the dialog, etc.--- as a search term in the main Google engine, and in Google Groups. Almost always, somewhere in the first half-dozen links that Google offers, I'll find information on the solution to that exact problem or error. For example, so you can see how powerful this is, I've preconfigured searches for the above questions through the links below. In the first case, I simply fed "ymmapi.dll" to Google and Google Groups; in the second case, I fed the phrase "Error 1606. Could not access network location" to Google and Groups. Presto! the answers pop to the top of the Google Results pages:
http://langa.com/u/9k.htm
http://langa.com/u/9m.htm That one trick--- feeding a unique part of an error message into Google--- will usually get you to within a few clicks of finding the answer to even very obscure PC problems. Try it! Click to email this item to a
friend 10) Just For GrinsIn the past, I've posted some of my more offbeat adventures in this space. In some cases, the response was huge--- so much so that I followed up with full length articles, such as this coverage of a GPS-guided two-week driving trip through the Alps: http://langa.com/newsletters/2002/2002-08-05.htm The photos I posted from that trip turned into some of the most popular downloads I've ever offered: http://langa.com/newsletters/2002/2002-08-08.htm#1 Our most recent trip wasn't as spectacular as the Alpine vacation, although it was still GPS-guided, as are virtually all our travels now. But it was still a nice trip, and odd in a way that might surprise you. We live in a suburban-to-rural area where things are too spread-out for convenient walking; where public transport is poor; and where most of the major roads are not well-designed for bicycles. Cars are really the only practical way to get around. About a year ago, we found ourselves with four drivers in the family, but three vehicles. That was mostly OK, as I work at home, and we could ride-share or juggle cars to get everyone where they needed to go. But with increasing frequency, we ended up needing to be in four different places, in four dispersed locations, with three vehicles to accomplish the feat. I hated the idea of getting a fourth car--- it seemed hugely wasteful. So, as an experiment, I bought a small, cheap gasoline-powered motorscooter. It was street-legal, but required no special license. It barely sipped gasoline, and had a 4-stroke engine, so it wasn't one of those highly-polluting, blue-smoke-spewing jobs. It was great for running into town, to the post office, and the like. To my surprise, it also was a blast to ride. <g> I ended up putting the little scooter to use far beyond what it was designed for: It suffered an early, major mechanical failure. I gave it to someone with the tools and time to tinker with it, and bought a full-sized Italian scooter--- a gorgeous Aprilia Scarabeo 500. It was larger, and could even carry two in comfort, but still was extremely fuel-efficient and minimally-polluting. (It even had a catalytic converter to help clean up the exhaust.) I loved it, and started racking up the miles. The Aprilia was handy around town, but also was capable of sustained Interstate speeds: I got a full motorcycle license, insurance, and took a multi-day, professionally-taught Motorcycle Safety Foundation training course so I could ride safely. I loved the bike. My wife and I started riding two-up, and really liked that, too. We began taking longer and longer trips, eventually reaching the limits of what the Aprilia could reasonably carry. (You can see where this is going, right?) We've just put the Aprilia up for sale ( http://tinyurl.com/899t9 ) and got a full-sized touring motorcycle. But before we took any *really* long trips on the new bike, I wanted to test
its
capabilities--- and my own! Enter the "Iron Butt Association."
(Really!) It's a long-distance motorcycle riding group; their minimum qualifying
ride is 1000 documented miles (1600km) in 24 hrs. They call it a "Saddlesore
1000." Using the GPS, I found that a round trip from my house to the Niagara Falls (NY)
visitor center and back is 1047 miles. I did that ride last month; an 18 hour
ride. Although
I'm more of a couch potato than an "Iron Butt," it still was fun, and
showed me what the bike can do. Here's the
write up of that trip, as posted in a motorcycling forum I participate in: Our trip to Pennsylvania this last week was a full dress-rehearsal for a much longer trip through Nova Scotia and Newfoundland my wife and I are planning for later this summer. The PA trip was nice in its own right, but was also long enough to let us fully test our gear, our packing abilities, and riding skills in a variety of weather and road conditions. That writeup is here: http://langa.com/bike/pa-trip.htm Yes, it's silly. But it's also fun, and perhaps worthy of just a small grin. <g> Click to email this item to a
friend --- ( Your Clicks On Ad Links Help Keep The LangaList Free! ) ---
--------------( the above is an advertisement )------------- 11) Plus! Edition Highlights:
The Plus! edition is only pennies per issue, and comes with a MONEY BACK GUARANTEE from Fred. How can you lose? Check out the details: http://langa.com/plus.htm Click to email this item to a
friend (Give a gift subscription to
the LangaList Plus edition! See you next issue, 2005-05-12! Best, Please recommend the LangaList to a friend! (And maybe win a prize!) An easier-to read formatted HTML version is available in the "Current Issue" section of http://langa.com. (The HTML version of each issue normally is available by 9AM EST [UT-5] of the issue date.) All past LangaList issues are also available at the Langa.Com site. UNSUBSCRIBE (instant removal!):
http://langa.com/leave_langalist.htm This newsletter is SPAM PROOF and requires two levels of subscriber confirmation
before delivery begins: See
http://langa.com/info.htm |
|
Please visit the LangaList Home Page |