July 09, 2009
Witsdom: Still Tweaking AFter All These Years
Once upon a time, when you hovered over a link in the top navigator on Witsdom, the link would show with a yellow background...
Somewhere along the line, I lost this functionality.
Now I realize that I am probably the only person who ever visits Witsdom anymore, and no one else would know or care, but it started bugging me.
So, I fixed it.
I don't know how it used to work, but the way it works now is to use the onmouseover and onmouseout constructs as in the following example:
<A href="/main.shtml" style="text-decoration:none; color:#000000" onmouseover="window.status='Main'; this.style.backgroundColor='yellow';return true;" onmouseout="window.status='Welcome to David\'s Home Page'; this.style.backgroundColor='#689EC5';return true;">Main</A>
There was probably a more elegant approach, but this accomplished what I wanted with a minimum of effort.
The example above is also supposed to display a message in the status bar at the bottom of the page when one hovers, but this functionality isn't working, and I'm not going to worry about fixing it.
Digg It!
Bookmark it!
Posted by
David at 07:31 PM |
Permalink
| Categorized under:
A day in the life,
Blog tips,
My blog
November 30, 2006
Social Bookmarking
I guess I've been living under a rock for a while, or maybe this is an indication that I'm getting old and am no longer "with it..."
I just discovered the phenomena of Social Bookmarking. I guess this is somehow related to Social Networking, which I also don't understand.
Anyway, there are loads of sites that focus on this including:
http://www.blinkbits.com
http://www.blinklist.com
http://blogmarks.net
http://co.mments.com
http://www.connotea.org
http://del.icio.us
http://de.lirio.us
http://digg.com
http://cgi.fark.com
http://feedmelinks.com
http://www.furl.net
http://www.linkagogo.com
http://ma.gnolia.com
http://www.newsvine.com
http://www.netvouz.com
http://www.rawsugar.com
http://reddit.com
http://www.scuttle.org
http://www.shadows.com
http://www.simpy.com
http://smarking.com
http://www.spurl.net
http://tailrank.com
http://wists.com
http://myweb2.search.yahoo.com
WLW, in its most recent beta, has added support for tagging, which should help more easily integrate social bookmarking into more blogs. I think I'll have to spend some more time playing with the feature, as I'd like to be able to automatically insert multiple tags as illustrated by This post on GeekCapital.com, but for a start, here's one:
Digg It!
Bookmark it!
Posted by
David at 10:21 AM |
Permalink
| Categorized under:
Blog tips,
Follow me...,
Reference
|
Tickle me
February 12, 2006
Playing Blog Hookey
So, after my whining last night, I decided to take a break from work for a few hours today and play with the blog...
read the rest of the entry »
There have been two things that have bugged me (well, actually there's lots more - but there were two things I addressed today) about the blog...
The first was that the "display recent comments" didn't properly display the date the comment was actually posted, but rather the date of the entry for which the comment was made. I found the solution here at Rogers Cadenhead's wonderfully informative site.
The second was that it was really hard to tell from looking at the calendar which dates had entries. I knew that the solution revolved around customizing the way links were displayed, but I had been unable on a few previous attempts to figure out how to customize the links just for the calendar, while leaving the format of the links for the rest of the page alone.
I had to reference a number of pages found from Google searches to put it all together in my mind. The most helpful pages were a "CSS Link Styles" tutorial from projectseven.com and especially the sample style sheet provided on the last page of the tutorial.
I also ended up having the change the character in front of the "calendar" style section in my style sheet from a # (pound sign) to a . (period)
It took a bit more searching to make the last adjustment I was seeking - to display the dates with entries in "reverse text" but this page from htmlite.com gave me just the information I needed.
One final change was to change the class entries in the Main Index for the days of the week from class="calendar" to class="calendarhead" to use the formatting for the calendar head for the day names (which looks better to me than using the formatting for the calendar entries).
My new css section for the calendar looks like this:
.calendar {
font-family:verdana, arial, sans-serif;
color:#666;
font-size:10px;
font-weight:normal;
background:#EEE;
line-height:14px;
align:center;
padding:1px;
text-decoration: none;
}
.calendar a:link {
background-color: #336699;
color: #99CCFF;
text-decoration: none;
}
.calendar a:visited {
background-color: #336699;
color: #EEE;
text-decoration: none;
}
.calendar a:hover {
color: #99CC66;
text-decoration: none;
}
.calendar a:active {
color: #FFFFFF;
text-decoration: none;
}
.calendarhead {
font-family:verdana, arial, sans-serif;
color:#003366;
font-size:10px;
font-weight:bold;
background:#EEE;
line-height:14px;
align:center;
padding:1px;
}
While I was in the blog, I also removed the last month's worth of comment and trackback spam, and manually added two comments that had been emailed to me because the commenter couldn't enter the comment directly due to my previous disabling of comments for old entries. One of these days I'll implement a new comment module that strikes a better balance between the current pretty much "closed down" approach and the previous "wide open" approach.
« hide the rest of the entry
Digg It!
Bookmark it!
October 24, 2002
Spam-Proofing Your Website - take 3
Okay, one more tweak. I modified the templates to include the no_spam MT directive. Now my e-mail address isn't quite so easy for spiders to snare from the entries.
Since commenter's e-mail addresses aren't displayed on the site, you're safe...
Digg It!
Bookmark it!
Posted by
David at 01:54 PM |
Permalink
| Categorized under:
Blog tips,
My blog,
Reference
|
Tickle me
Spam-Proofing Your Website - take 2
Ooh, a tweak to make the snippet more elegant. I just learned a new javascript tidbit - escape(variable). No more need for %20 instead of spaces!
read the rest of the entry »
<!-- email link -->
<script language=javascript>
<!--
var username = "davidfromblogdom";
var hostname = "blogdom.org";
var subject = "Hello from Blogdom";
var linktext = "Click Here To Send Me Email";
document.write("<a href=" + "mail" + "to:" + username +
"@" + hostname + "?Subject=" + escape(subject) + ">" + linktext + "</a>")
//-->
</script>
<!-- email link -->
« hide the rest of the entry
Digg It!
Bookmark it!
Posted by
David at 11:53 AM |
Permalink
| Categorized under:
Blog tips,
My blog,
Reference
|
Tickle me
October 23, 2002
Spam-Proofing Your Website
I thought this article had some good tips...
read the rest of the entry »
As usual, I ended up modifying the example a little. I like including a default subject, so I added that into the snippet. The %20 are necessary for the subject string to be parsed properly. If you use spaces instead, everything in the subject after the first space gets truncated in the resulting link.
Note that I am also using a unique username so I can see if any SPAM is being generated by the link.
Here's my code:
<!-- email link -->
<script language=javascript>
<!--
var username = "davidfromblogdom";
var hostname = "blogdom.org";
var subject = "Hello%20from%20Blogdom";
var linktext = "Click Here To Send Me Email";
document.write("<a href=" + "mail" + "to:" + username +
"@" + hostname + "?Subject=" + subject + ">" + linktext + "</a>")
//-->
</script>
<!-- email link -->
« hide the rest of the entry
Digg It!
Bookmark it!
Posted by
David at 07:44 AM |
Permalink
| Categorized under:
Blog tips,
My blog,
Reference
|
(1) Tickle
show comments right here »
Great bit of code! I'm grabbing that! Thanks David.
Posted by Jennifer at October 23, 2002 10:09 AM
« hide comments
October 12, 2002
Setting links to open in new windows - revisited
Wow. That was too easy.
read the rest of the entry »
It never ceases to amaze me. Just about anything you could ever want to know is out there on the Internet. And Google is usually so good at finding it quickly and easily.
For S&Gs, I decided to do some hunting for a script to give the user the option of whether links should open in the same window, or a new window. This was prompted after I visited a blog that had this option.
I'm happy to report that it couldn't have been much simpler to make this change.
Just go here, and follow the incredibly simple two steps. I didn't even have to modify any of my existing entries.
I did make one little tweak to the the form code. The standard is to default to not having the check-box checked, and therefore opening links in the same window. I prefer to have links open in a new window, so I added the CHECKED option to the FORM tag in the INPUT TYPE section.
End of quandary / debate. Now you can have it your way. The default is (now) to open links in a new window. Un-check the box if you want to have links open in the same window.
Someday, maybe I'll even set a cookie to remember the visitor's preference (but don't count on it).
« hide the rest of the entry
Digg It!
Bookmark it!
Posted by
David at 07:14 AM |
Permalink
| Categorized under:
Blog tips,
My blog,
Reference
|
(1) Tickle
show comments right here »
Hmmm. Now that's useful. And simple. I can't believe we didn't think of it ourselves.
Posted by Dennis at October 12, 2002 11:57 AM
« hide comments
September 30, 2002
Setting links to open in new windows
As a general rule, whenever possible, I try to set my off-site links to open in a new browser window.
read the rest of the entry »
This may be pure hubris on my part, but I figure that people will want to return back from whence they came after they finish their tangential exploration.
And since one link can lead to other links, I don't want them to have to click the back button until their index finger goes numb to get back to my page.
By opening another page, when they are finished wandering, all they have to do is click once on the "x" to close the new window and they're back.
I think all sites should set their off-site links to open in a new browser window. It is easy to do, especially in M-T. One hack to set M-T to always cause a new browser window to be opened when the URL button is used on the entry template can be found in this thread.
I guess the ideal would be to provide a preferences option on your site where you would allow the user to choose their preferred functionality, but that's more work than I'm willing to entertain at this time.
In the mean time, I'll continue to set my off-site links to generate a new browser window, and hope that other sites do the same.
« hide the rest of the entry
Digg It!
Bookmark it!
Posted by
David at 01:29 PM |
Permalink
| Categorized under:
Blog tips,
Commentary,
My blog
|
(7) Tickles
show comments right here »
I used to have my links open in new windows until people bitched that they didn't like that. So, you can't win no matter what you do. :) One can always RIGHT click on links and choose "open in new window".
Posted by Tess at September 30, 2002 04:07 PM
Sadly, how right you are Tess. My guess is that even if I did go to the trouble of allowing people to choose a preference, people would somehow complain about that!
Posted by David at September 30, 2002 04:25 PM
I use the system where links to other parts of my site are opened natively, and links to other servers are opened in a new instance. To me (and hopefully most people) this is the best way of organizing my desktop clutter and keeping things straight.
Posted by Dennis at September 30, 2002 09:07 PM
It took until today, right here, to discover that I can right click on a link to open it in a new window! Yep, it's right there and I've never even noticed it. Sheesh....
Posted by Raye at October 1, 2002 08:14 AM
C'est trouis bien. Nice, i mean. Thanks!
Posted by Karl Fashion at September 26, 2006 07:56 AM
Does anybody know any other guestbooks relating to this?
Posted by Arik Garick at October 21, 2006 09:47 PM
Is this message little enough to be one of... lost idea
Posted by Yonas Luke at November 6, 2006 05:51 PM
« hide comments
September 02, 2002
M-T support forums come through again
Yesterday, I added the category related stuff.
There was one little problem.
read the rest of the entry »
The php code fragment that I thought should work to suppress displaying the "Categorized under:" text if the category was blank didn't work. I tried just about everything I could think of to get it to work - no luck.
So, I put a post up on the M-T support forum, and this morning, just like in the story of the shoe maker's elves, there was my answer posted in the forum. Not only was the answer provided, but, there was a thorough and understandable explanation of what was happening, and why what I had tried was not working.
There appears to be a core of people who give unselfishly of themselves by monitoring the forums and providing help for those of us who are not (yet) as enlightened.
You folks rock!
« hide the rest of the entry
Digg It!
Bookmark it!
Posted by
David at 09:14 AM |
Permalink
| Categorized under:
Blog tips,
My blog
|
Tickle me
August 16, 2002
Movable Type User Survey
If you don't use Movable Type, and you don't manage a blog, move along... nothing here to see folks...
If you don't use Movable Typle, but you do manage a blog - get a clue! Switch to Movable Type.
If you do use Movable Type to manage your blog, and you haven't taken the twenty-three seconds to fill out Ben and Mina's survey, please take a few moments of your precious life force and fill it out by clicking here.
Digg It!
Bookmark it!
Posted by
David at 11:08 AM |
Permalink
| Categorized under:
Blog tips
|
Tickle me