Posted by Ryan
August 16, 2005
Slashdot: Death of Cookies, Spyware Greatly Exaggerated?
My uneducated opinion? I think people are deleting cookies because Spyware and Adware remover software companies (along with media) have made people believe they are evil. Why? To make money.
That’s the end of my uneducated opinion on this matter.
Share:
These icons link to social bookmarking sites where readers can share and discover new web pages.
Posted by Ryan
March 4, 2005
Either search engines have taken a dive in delivering relevant results or I’ve just been searching for more and more obscure things lately. Maybe both. Whatever the reason, lately it seems to take me twice as long to find what I’m looking for. This change has happened within the last month. One of my friends noticed the same thing and mentioned it to me.
Is anyone else experiencing this?
Of course, all I’ve been searching for are things programming related so that may have something to do with it as well. BUT! Since when does searching for something like “php round to nearest ten” * bring up results that have nothing to do with PHP, but pages that contain the words “round” and “nearest” and have a .php extension?! I would think that a file’s extension should not count towards rank. The way it is now, if two duplicate pages about PHP exist and one has a .php extension and the other a .htm, the .php page would probably get a higher rank. That’s stupid in my opinion. The extension says almost nothing about the content except that it’s probably dynamically generated, but even then you can’t be sure.
Then again, if there were really no results that had contained the word “php” and there was one that had the extension .php, I guess it might as well be displayed. But not if real related results do exist without using the extension.
* = I needed to round a number to the next highest value of 10. Example: 321 –> 330. PHP’s built in functions round, floor, and ceil are all for floating point numbers. What I needed was ceil, but that works only with floating point numbers. I’m terrible at math, but a friend finally pointed out the simple solution to me (yes, laugh why don’t you! mock my math skills! I know I’m terrible at it.):
$notRounded = 321;
$rounded = $notRounded / 10; # 321 becomes 32.1
$rounded = ceil($rounded); # 32.1 becomes 33
$rounded = $rounded * 10; # 33 becomes 330
It’s been said that girls only like guys with sweet skills. I just hope I can make up for my lack of sweet math skills with something else like burping.
Share:
These icons link to social bookmarking sites where readers can share and discover new web pages.
Posted by Ryan
October 19, 2004
Last week I finally decided to test some feed aggregators that aren’t integrated into Mozilla products (before Firefox and Thunderbird supported it natively I used extensions). I’m currently playing with NewsGator and FeedDemon. I like them both a lot. I’ll post my decision sometime in the future when I have made one.
While playing around with NewsGator I saw this on Doc Searl’s Weblog:
Ping Identity Pre-Announces Hostile Takeover of Microsoft in 2050
I got a good laugh out of that! I hope you do too!
Share:
These icons link to social bookmarking sites where readers can share and discover new web pages.