scriptygoddess

05 Nov, 2004

Blocking Proxy-IP based Spam

Posted by: Jennifer In: WordPress Bookmarks

There's a number of anti-spam tricks floating around. I will hopefully be compiling a list of the most interesting ones very soon for my own reference. In the meantime, this one seems like a simple enough hit that can get rid of quite a bit:

(As posted on the Daily Irrelevant) …If your IP address is on a list of known open proxies (mostly used by email spammers, but recently by comment-spammers as well) you will not be able to post comments.

[via Matt]

Comments Off on Blocking Proxy-IP based Spam

Usually when I'm discussing computers with my parents, it's always me telling them about one thing or another. But since I don't use Macs that often, my mother showed ME something I didn't know about Mac IE (I was pleading with her to use another browser). The one feature she was reluctant to give up was something called "scrapbook" – which I had never heard of. Not exactly like a bookmark – in that it saves a copy of the page to your local machine. Good for if you have a "reciept" for a purchase online, and you want to "save it." I was SURE there had to be an extension like it for Firefox – sure enough, there is:

ScrapBook :: Mozilla Firefox Extension

(And now, thankfully, the world has one less IE user on the Mac) 😉

29 Oct, 2004

Notify users of comment moderation

Posted by: Jennifer In: WordPress Hacks

Feedback to users about what is happening on the site is always a good thing. Especially if it's to tell them why a comment they just submitted is not appearing on the site.

WordPress Hack: Notify Users of Moderation
Mark has a hack that will pop up a javascript alert to let users know when their comment is going into moderation. (This way they don't think the comment just got "lost" and submit it again)

[found via Blogging Pro]

29 Oct, 2004

Comment Link Plugin

Posted by: Jennifer In: WordPress Bookmarks to Plugins

Ever want to have the comment link text be customized per post. For example, one post has "Leave a comment". The next post has "What do you think?". etc. Here's the plugin that will let you do it.

Weblog Tools Collection – Comment Link Plugin

Comments Off on Comment Link Plugin

29 Oct, 2004

Foxy Licious

Posted by: Jennifer In: FireFox Extension Bookmarks

Just spotted this on the del.icio.us news blog:

Foxylicious
Import your del.icio.us bookmarks into firefox.

Need I say it? Ok.. so freakin' cool.

26 Oct, 2004

Quick Reference guides for CSS, mySQL (plus others)

Posted by: Jennifer In: Bookmarks

This is another one I've found and linked to on del.icio.us.

Quick Reference Guides
There's one for CSS and mySQL among a few others. A two sided cheat-sheat. VERY cool.

25 Oct, 2004

Continue vs. Break (in while loops)

Posted by: Jennifer In: Lessons learned

(note to self type post)
Using "continue" in the middle of a while loop will skip the current iteration and go back to the beginning of the loop (checking the while value again).

Using "break" in the middle of a while loop will break the loop entirely. (no more looping)

So this code

<?php
$i = 0;
while ($i < 5) {
$i++;
if ($i%2) {
echo "value = " .$i . " – inside if<br>";
continue;
}
echo "value = " .$i . " – outside if<br>";
}
?>

Will produce this:
value = 1 – inside if
value = 2 – outside if
value = 3 – inside if
value = 4 – outside if
value = 5 – inside if

Where as this

<?php
$i = 0;
while ($i < 5) {
$i++;
if ($i%2) {
echo "value = " .$i . " – inside if<br>";
break;
}
echo "value = " .$i . " – outside if<br>";
}
?>

Will produce this:
value = 1 – inside if

See more about while loops here.

Comments Off on Continue vs. Break (in while loops)

25 Oct, 2004

Button Element

Posted by: Jennifer In: Bookmarks|Lessons learned

Hello, I'd like to take HTML 101.

So I was working on a form. Used this method to create the form. Minimal HTML. Simple CSS. Started playing around with the :focus pseudo-class… and that's when I noticed my submit button started looking crummy. (From a usability perspective, I think there are some things that SHOULDN'T be over-styled. Scrollbars, Buttons. People are used to seeing these have the default look of their OS or Browser. Mess with them, and while you may think YOUR design of them looks pretty, they're probably not as usable anymore.)

So I went searching for a way to revert an element back to it's default, and basically discovered that it's not possible. But the search led me to this page where the suggestion was to simply use the <button></button> tag instead of <input type="button" /> W3C says you can even (however, the validate local html through the web developer extension in Firefox is giving me errors on all the attributes, even though they are within spec of the DTD.)

Button element?? Ok, add that to the list of things I probably should have known about but didn't! :-/

Another one I'm linking to on my del.icio.us page, but too cool I had to blog too:

ColorZilla Extension for Firefox and Mozilla
Gives you a little color picker in firefox so if you hit a page and you just have to know what that color is on the site, you can use the picker right in firefox to find out.

Usually, I use colorpic for that, but this is handy if you don't want to start up another program.

23 Oct, 2004

Pocket PC Browser (other than Pocket IE!)

Posted by: Jennifer In: product review

Since buying my pocket pc phone, I have struggled with the version of IE that's on it. It's AWFUL. COMPLETELY awful! This morning I started searching for an alternative and found Access Net Front (v 3.1). Downloaded the trial. OMG. This thing ROCKS! Tabbed browsing. Better support for pages that used to force IE to scroll horizontally.

I'll use the demo for awhile, just to make sure there's nothing I'm missing, but I love this thing so much at the moment, I literally can not WAIT to buy the full version!

(P.S. If you use this – what is the difference between the regular version and the "jv-lite" version? I'm guessing because of the jv-lite, maybe it's java based? But why is it better? I can't find anything that says what the real difference is)

Featured Sponsors

Genesis Framework for WordPress

Advertise Here


  • Scott: Just moved changed the site URL as WP's installed in a subfolder. Cookie clearance worked for me. Thanks!
  • Stephen Lareau: Hi great blog thanks. Just thought I would add that it helps to put target = like this:1-800-555-1212 and
  • Cord Blomquist: Jennifer, you may want to check out tp2wp.com, a new service my company just launched that converts TypePad and Movable Type export files into WordPre

About


Advertisements