The Code Cave

May 28, 2006

LG VX5200, LG VX6000, LG VX7000, LG VX8100 stuff

Filed under: Verizon LG Phones — Brian @ 8:00 am

This is a collection of Info I’ve gathered on LG cell phones. Much of it is probably Verizon specific, but some may work with other providers and other phones.

As with any non standard usage of software or hardware, following these instructions could mess up your stuff. If you aren’t confident in what you are doing… don’t do it. If you aren’t willing to fry your phone and have to repurchase one at full price because you’ve just voided your warranty, don’t do this stuff…

If any of this stuff violates your particular contract with Verizon, only do it if you are willing to accept the subsequent fees and consequences. I haven’t tried nor even read through all of this stuff. So there could be a lurker in there that smokes your phone. I don’t know. Use it at your own risk. ’nuff said.

FYI: This post will grow and change… Check back periodicly to see if I ‘ve added anything new…

(more…)

May 27, 2006

Bike through Chernobyl

Filed under: Things that catch my eye — Brian @ 8:00 am

I found this site ages ago… I don’t know how… but it is pretty wild and sobering… Elena Filatova rides her ZX11 (Kawasaki Ninja) through the area devastated by the Chernobyl disaster.


Elena on her ride through Russia's forbidden zone...
http://www.angelfire.com/extreme4/kiddofspeed/chapter1.html

The pictures tell a story that deepens the chill people get when you hear the name… I’ve never seen pictures like this of the area anywhere other than this site…

Boats...

From inside...

Bumper cars...

A kindergarten...

It looks like she’s added some pictures to the tour and gotten a new url since I last visited… You can get to the top of her site by clicking here:

http://elenafilatova.com/
http://elenafilatova.com/

May 26, 2006

“Copy as Text Link” and “Copy as Image Link” Blogging Tools

Filed under: Batch, HTML — Brian @ 7:10 pm

Justin of JustInsomnia had a great idea for a FireFox plug in:

I want to be able to copy a quote and its URL at the same time, without having to so much as think about it. To do so, I wrote my first Firefox extension, which I opted to name the somewhat homely, Copy as HTML Link.

So he created Copy as HTML Link for Firefox and generously shared his moment with wp-hackers Subscribers .

The plugin looks good and he did a really good job documenting it (THIS IS RARE!):

Click to go to the original site.

I must say that since I’ve started using this method, it’s been a quite a time saver. This was a GREAT idea. Inspired! So, if you have FireFox, please head on over there and get that plug-in!

Ah, but here’s the fly in the ointment and the sand in my… socks: A Firefox plugin won’t work for Maxthon!!!! (Click to go to the original site.) or Internet Explorer!

You see, Firefox just doesn’t do it for me. Click to go to the original site. Opera comes darn close to being right, but I like the extra usability features in Maxthon.

So, I thought… Hey… I could do that for Maxthon and IE AND I could do it all from a BATCH file!

So, here it is…

Run this Batch file and you will have installed on your system, two new menu items. When you highlight text, you’ll have an option to “Copy as Link” and when an image is right clicked, you will get an option to “Copy Image as Link”. Hopefully I’ve chosen hotkeys that will work well for you… If not, you can change them in RegEdit at HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\

BTW EVERY image and link up to this point in this post was created using this tool. Man, Good idea Justin!

Also - If you find that IE is prompting you asking for permissions to open the links, please post a comment and I’ll show how to fix that. I’ve gotten that message on other things I’ve like this I’ve created and know how to get past it. I’ve disabled that workaround on this computer and I am not getting that “Are you sure” message. So these menu items should be safe. ALSO, some popup blockers may block these items. You might have to add localhost as a site that is allowed to show popups in your particular popup blocker. Let me know if you have any problems.

Here’s the download: http://www.TheCodeCave.com/downloads/batch/AddCopyAsLink.bat

Here is the source:

DOS:
  1. @echo Off
  2. :: Implements "Copy * as Link" menu items in IE and Maxthon
  3. :: Written by Brian Layman
  4. :: Visit me at: http://www.TheCodeCave.com
  5. :: Version 0.1
  6. :: Update Url: http://www.thecodecave.com/?p=152
  7. :: Inspired by Justin’s Firefox Plubin
  8. :: Found at: http://justinsomnia.org/2006/05/copy-as-html-link-for-firefox/
  9.  
  10. :: Create file for the Copy Text as Link
  11. echo ^>%windir%\web\copytextaslink.htm
  12. echo ^<script language="JavaScript">>>%windir%\web\copytextaslink.htm
  13. echo var parentwin = external.menuArguments;>>%windir%\web\copytextaslink.htm
  14. echo var doc = parentwin.document;>>%windir%\web\copytextaslink.htm
  15. echo var sel = doc.selection;>>%windir%\web\copytextaslink.htm
  16. echo var rng = sel.createRange();>>%windir%\web\copytextaslink.htm
  17. echo var str = new String(rng.text);>>%windir%\web\copytextaslink.htm
  18. echo window.clipboardData.setData(‘Text’, ‘^<a href="’ + parentwin.location + ‘"^>’ + str + ‘^</a^>’);>>%windir%\web\copytextaslink.htm
  19. echo ^</SCRIPT^>>>%windir%\web\copytextaslink.htm
  20. echo ^</HTML^>>>%windir%\web\copytextaslink.htm
  21.  
  22. :: Create the menu context.
  23. reg ADD "HKCU\Software\Microsoft\Internet Explorer\MenuExt\Copy Te&amp;xt as Link" /ve /t REG_SZ /d "%WINDIR%\web\copytextaslink.htm" /f
  24. reg ADD "HKCU\Software\Microsoft\Internet Explorer\MenuExt\Copy Te&amp;xt as Link" /v Contexts /t REG_DWORD /d 16 /f
  25.  
  26. :: Create file for Copy Image as Link
  27. echo ^<HTML^>>%windir%\web\copyimageaslink.htm
  28. echo ^<SCRIPT LANGUAGE="JavaScript" defer^>>>%windir%\web\copyimageaslink.htm
  29. echo var parentwin = external.menuArguments;>>%windir%\web\copyimageaslink.htm
  30. echo var doc = parentwin.document;>>%windir%\web\copyimageaslink.htm
  31. echo var w;>>%windir%\web\copyimageaslink.htm
  32. echo var h;>>%windir%\web\copyimageaslink.htm
  33. echo var sel = doc.selection;>>%windir%\web\copyimageaslink.htm
  34. echo var rng = sel.createRange();>>%windir%\web\copyimageaslink.htm
  35. echo var str = new String(rng.text);>>%windir%\web\copyimageaslink.htm
  36. echo if ( parentwin.event.srcElement.tagName == "IMG" )>>%windir%\web\copyimageaslink.htm
  37. echo {>>%windir%\web\copyimageaslink.htm
  38. echo    h = parentwin.event.srcElement.height;>>%windir%\web\copyimageaslink.htm
  39. echo    w = parentwin.event.srcElement.width;>>%windir%\web\copyimageaslink.htm
  40. echo    window.clipboardData.setData(‘Text’, ‘^<a href="’ + parentwin.location + ‘"^>^<img src="’ + parentwin.event.srcElement.href + ‘" Width = "’ + w + ‘" Height = "’ + h + ‘" alt="Click to go to the original site."/^>^</a^>’);>>%windir%\web\copyimageaslink.htm
  41. echo }>>%windir%\web\copyimageaslink.htm
  42. echo else>>%windir%\web\copyimageaslink.htm
  43. echo    alert ("Incompatible element. Select either just an image or just text.");>>%windir%\web\copyimageaslink.htm
  44. echo ^</SCRIPT^>>>%windir%\web\copyimageaslink.htm
  45. echo ^</HTML^>>>%windir%\web\copyimageaslink.htm
  46.  
  47. :: Create the menu context.
  48. reg ADD "HKCU\Software\Microsoft\Internet Explorer\MenuExt\Copy Image as Lin&amp;k" /ve /t REG_SZ /d "%WINDIR%\web\copyimageaslink.htm" /f
  49. reg ADD "HKCU\Software\Microsoft\Internet Explorer\MenuExt\Copy Image as Lin&amp;k" /v Contexts /t REG_DWORD /d 2 /f
  50. :: Done
  51. cls
  52. Echo.
  53. Echo The Right-Click + "Copy * as Link" features have been added to Maxthon
  54. Echo and all other IE based browsers.
  55. Echo.
  56. Echo Please close and restart all browsers to complete the install.
  57. Echo.
  58. Echo Thank you for using this tool from TheCodeCave.com.
  59. Echo.
  60. Echo - Brian
  61. Echo.
  62. Echo.
  63. Echo.
  64. pause

Just let me know if you have any issues… It’s been working great for me!

Delayed Posting in WordPress

Filed under: WordPress — Brian @ 1:23 pm

Has anyone else noticed that you can publish posts and not yet have them appear on the website?

If you choose “Edit Timestamp” and set the date to a time/date in the future before you hit publish, can you make your posts appear the next morning even if you are no where near the computer. Right now, as I am writing this, I have hmmm 3 or 4 posts that will just appear some time in the future.

Let’s make this appear…. Hmmm tomorrow at 1pm.

Kinda cool!

What is that “Friend Search” thing?

Filed under: My Journal — Brian @ 10:00 am

You may not have noticed it, but I’ve started an “Friend Search” page.

I’m thinkin’ that since every now and then I search for my own name to see what is out there about me, others probably do the same. So, maybe, just maybe, some of the people I’ve lost track of over the years might find my site and drop in and say “Hi!”

So, here it is:
Friend Search
The following are people I’d LOVE to get in touch with again, just to say “Hi!”. Posting this is somewhat risky. Please don’t be offended if you are not on this list. It doesn’t mean that you were/are not a dear friend. It probably just means that I have some idea of where you are and what’s been happenning with your life. There are many friends I’ve actually researched and for which I’ve discovered public history. So those are not on this list, but they are still important to me…

It’s also likely people on this list are tied emotionaly to other significant events in my life. For instance, many here are tied to Adventure Camp at Jumonville. So, when I think of adventure camp, I think of them.
Pastor John Logan
Jennifer Marie (Carr) Rabaey
Matthew (Matt) Hildebrand
Elizabeth (Beth) Hildebrand
The Cornerstone Crusaders
Adventure Campers - and Jumonville staff from 86-90 era
Michelle (Camp) Croyle FOUND!!!

————————————–
This page is VERY much under progress and will be edited and updated over time. Hopefully the search engines will revisit it or I’ll have to come up with another scheme that gets it refreshed… Every now and then I’ll repost this to get the search engines to dig back into that page and resurface it in the search results…

May 25, 2006

Developer Studio 2006 World Tour

Filed under: My Career — Brian @ 5:52 pm

This is where I’ll be on May 31 down in Columbus… Anyone else gonna be there?


Developer Studio 2006 World Tour in Europe, Asia/Pacific and the Americas - May/June 2006 - by David Intersimone

Abstract: Borland is going on tour to show the advanced usability and productivity offered by Delphi 2006’s new tool-set. We’ll also discuss the latest initiatives that are making Borland and our developer community bigger, better, and stronger than ever.
Join David Intersimone, “David I”, Borland’s Vice President of Developer Relations and Chief Evangelist, and other Borland developer tools team members at this quarter’s Developer Studio Worldwide Road Show. Seminars will be taking place in Europe, Asia/Pacific, and the Americas. The Road Show will also be an opportunity to discuss all of the latest initiatives that are making Borland and our developer community bigger, better and stronger than ever.

Developer Studio Key Features Include:
Enterprise Core Objects III (ECO™ III) Framework - includes valuable enterprise application services, such as object-relational-mapping and transparent object persistence, saving the time and complexity of building and maintaining custom services
Enhanced Visual Component Library (VCL) - provides easy graphical user interface (GUI) development with a large selection of GUI components, with auto-positioning and customisable guidelines
Extended IDE / ALM Integration - allows you to take control of the development lifecycle process by leveraging integration with leading Borland ALM products
“Live Templates” System - enables you to tab through fields and insert points of any template, significantly accelerating coding productivity

Why You Should Attend:
The Road Show is a unique opportunity to put yourself ‘in the know’ and:

Learn about great new technologies that will make a big difference to you and your users/customers
Discover exactly how Borland’s continuing investment in IDEs is building an even brighter future for the developer community
Meet and talk with the people shaping the future of the technologies that you know and love

What Will Be Covered:
The Road Show half-day agenda will be as follows:
Borland/Delphi update
IDE overview and Developer productivity
Break
Moving Delphi Client/Server applications to multi-tier
Build and run model Driven Software

MORE INFO FROM THE EMAIL…

—–Original Message—–
From: David I [mailto:davidi.bdn@borland.com]
Sent: Friday, May 19, 2006 8:02 PM
To: Brian Layman
Subject: Your place has been reserved

Your place has been reserved for:

Wednesday, May 31st 2006
Registration from 9.00am - Seminar starts 9.30am

We look forward to seeing you there.

David Intersimone
Borland

—–Original Message—–
From: David I [mailto:davidi.bdn@borland.com]
Sent: Friday, May 19, 2006 1:02 PM
To: Brian Layman
Subject: Join the Borland Developer Tools Group “Developer Studio 2006 Road Show” in Columbus - May 31st, 9:30am

Join the Borland Developer Tools Group “Developer Studio 2006 Road Show” in Columbus - May 31st, 9:30am
———-

Wednesday, May 231, 2006 - 9:30am to 1:00pm
Renassiance Hotel
50 N. 3rd Street
Columbus, OH 43215

Borland Presenter - Anders Ohlsson

The road show is designed to update you on the advanced new features of Delphi 2006. The Road Show is a unique opportunity to put yourself ‘in the
know’ and:
a) Learn about great new technologies that will make a big difference to you and your users/customers,
B) Discover exactly how Borland’s continuing investment in IDEs is building an even brighter future for the
developer community,
C) Meet and talk with the Thank you for registering for the Developer Studio 2006 Road Show.

Your place has been reserved for:

Wednesday, May 31st 2006
Registration from 9.00am - Seminar starts 9.30am

We look forward to seeing you there.

David Intersimone
Borland
Date and Location:

Wednesday, May 31st 2006 - Colombus, Ohio
Renassiance Hotel
50 N.3rd St
Wednesday, May 31st 2006
Tel: (614) 267-7300

people shaping the future of the technologies that you know and love.

What Will Be Covered:
1) Borland/Delphi and the “DevCo” spin-off update,
2) IDE overview and Developer productivity, 3) Moving Delphi Client/Server
applications to multi-tier,
4) Build and run model Driven Software

.
.0Registration/sign-in starts at 9am. The presentation starts at 9:30am and lasts for approximately three hours.

For more information and to register, use the following URL:

http://208.109.7.163/html/borland_inside/landing.htm

LEGAL NOTICES
———-
Legal notices covering this email message, software
documents, files and information are available at
http://www.borland.com/company/legal_notices.html

Borland Privacy Policy (effective date: August 31, 2004)
http://www.borland.com/company/privacy.html

———-

CANCELLING SUBSCRIPTION

To cancel your subscription to Borland Developer Network News, click on the following hyperlink:
https://community.borland.com/cgi-bin/login/nonews.cgi?BE09CCBM7H7CAL

Towel Day, May 25, 2006

Filed under: My Journal — Brian @ 9:18 am

You sass that hoopy Douglas Adams? Now there’s a frood who knew where his towel was. You are invited to join your fellow hitchhikers in mourning the loss of the late great one. Join in on towel day to show your appreciation for the humor and insight that Douglas Adams brought to all our lives.


Towel Day, May 25, 2006


What do I do?

Carry your towel with you throughout the day to show your participation and mourning.

When do I do it?

May 25th.

Where do I do it?

Everywhere.

Why a towel?

To quote from The Hitchhiker’s Guide to the Galaxy.
A towel, it says, is about the most massively useful thing an interstellar hitch hiker can have. Partly it has great practical value - you can wrap it around you for warmth as you bound across the cold moons of Jaglan Beta; you can lie on it on the brilliant marble-sanded beaches of Santraginus V, inhaling the heady sea vapours; you can sleep under it beneath the stars which shine so redly on the desert world of Kakrafoon; use it to sail a mini raft down the slow heavy river Moth; wet it for use in hand-to-hand-combat; wrap it round your head to ward off noxious fumes or to avoid the gaze of the Ravenous Bugblatter Beast of Traal (a mindboggingly stupid animal, it assumes that if you can’t see it, it can’t see you - daft as a bush, but very ravenous); you can wave your towel in emergencies as a distress signal, and of course dry yourself off with it if it still seems to be clean enough.

More importantly, a towel has immense psychological value. For some reason, if a strag (strag: non-hitch hiker) discovers that a hitch hiker has his towel with him, he will automatically assume that he is also in possession of a toothbrush, face flannel, soap, tin of biscuits, flask, compass, map, ball of string, gnat spray, wet weather gear, space suit etc., etc. Furthermore, the strag will then happily lend the hitch hiker any of these or a dozen other items that the hitch hiker might accidentally have “lost”. What the strag will think is that any man who can hitch the length and breadth of the galaxy, rough it, slum it, struggle against terrible odds, win through, and still knows where his towel is is clearly a man to be reckoned with.


Please join me in celebrating Towel Day. And feel free to share pictures either here or at http://www.towelday.kojv.net/

Update: Well, what do you know? Will Wheaton celebrates Towel Day too! More on Will later…(And yes, somehow since I’m on a first name basis with Wesley (Crusher of Star Trek: The Next Generation), as any true geek is, I’m on aparently on a first name basis with Will…)

May 24, 2006

Congratulations on the Twins Brian Layman of North Canton, Ohio!

Filed under: Things that catch my eye — Brian @ 11:19 am

No, that’s not me. But I do have interaction with this fellow! See we live in the same county and have the same middle initial. We probably live within 5 miles of each other. Almost definately 10.

So, if I go to the Stark County library, I have to be very specific when I don’t have my card with me. Or if I hit the Blockbusters to the south instead of to the north, I have to watch which account is being accessed. Additionally, I’m sure others searching for me on the web have found him and visa versa.

Anyway, he and his wife just had twins in April, 2006!
“Juliet Ake-Layman and Brian Layman of Canton, twins, son and daughter.”
http://www.cantonrep.com/index.php?ID=282218&Category=births&r=2

Congratulations oh twinned named one. I wish you all the best.

This is the second (not counting me) Brian Layman I’ve met. My mother used to be babysit by a “Bryan Lehman” in Johnstown, Pennsylvania. Kind of funny that way.

Still rambling on about ColorOfChange.org

Filed under: My Journal — Brian @ 9:24 am

Oh, and of course there’s also Democratic Rep. William Jefferson (I have to work not to say William Jefferson Clinton), eight-term congressman for New Orleans and neighboring districts.

This morning the affidavit for his arrest warrant was disclosed. It stated how they found $90,000 of a $100,000 bribe disclosed by a former Jefferson aide. The money was wrapped in zip lock bags and placed in plastic containers in the freezer.

Gee, he’s been there for 8 terms. Do you think the governmental system in New Orleans could have already been broken before Katrina?

Do you think perhaps that newly re-elected Mayor Ray Neagan (SP?) might have know that there could have been something not right in the state of Louisiana?

That site just bugs me… If it were truely out for making a change, don’t you think that Jefferson would have at least a mention on their campaigns page? Isn’t ousting an corrupt 8 term representative an important thing? Hasn’t he been shown to have failed New Orleans? He isn’t one of ColorOfChange’s “Black folk and allies”, shouldn’t he be one of the things that change? Or maybe he is one of the”Allies”.

May 23, 2006

I’m being flooded by a MoveOn.Org Bot???

Filed under: Things that catch my eye — Brian @ 4:41 pm

OK, this month the most common visitor to this site is Mailer.HipHopCaucus.net with almost 642 visits during the first 10 days. You’ve probably not heard of the Hip Hop Caucus, but even if you have, they seem to be totally unrelated to HipHopCaucus.net!

HipHopCaucus.org is a lobbying organization following along the lines of The Black Caucus.

It’s registered as follows:
(more…)

Newer Posts »

Powered by WordPress