Ryan Jones Blog – dotCULT.com Ryan Jones Blogs About Internet Culture, Marketing, SEO, & Social Media

August 31, 2006

Cox Blocked

Filed under: Uncategorized — Ryan Jones @ 12:00 am

yet another entry from the people who don’t quite get it file. It seems that Cox Communications has started deleting outbound emails that appear to be spam, and not notifying the sender.

This is bad news for all Cox subscribers. With today’s over agressive spam filters it’s very easy to have legit email marked as spam, and if the user never knows there’s nothing they can do about it.

Now, I’ve always said that email should never be used for anything crucial but we all know it still happens. Besides, are spammers really using Cox to send out emails? It seems you’d have their real contact information and once reported they could take real legal action. Whatever network engineer dreamed up this change, it doesn’t seem to do any real good for Cox. I just don’t understand it.

Of course not wanting to be outdone by their competition, Comcast has not only blocked all incoming email from namezero, but they also blocked all mail from The Well, one of the net’s oldest ISPs.

When will internet providers learn that it’s not up to them what email to whitelist/blacklist, it’s up to the actual person who recieves the email. Let me decide and you’ll win my business in a heartbeat.

Code Optimization Tips Part 1

Filed under: Uncategorized — Ryan Jones @ 12:00 am

I realized for being a software engineer that I haven’t written much about programming or coding or anything else. I work mostly with PHP and MySQL, but as some of our applications are getting mad traffic now, I’ve been doing every little thing possible to optimize them.

Here’s a few code optimization tips (mostly PHP) that may not seem obvious to everyone:

  • $i++ vs ++$i Remeber back in college? There was always some sort of ++i / i++ trick question on exams right? So what’s the main difference? Most of you have been hard coded to use $i++ everytime, however that’s not always the best idea. The post increment (i++) actualy creates a temporary variable in memory to retain the value of i before incrementing. The pre increment (++i) doesn’t do that. It simply increments i. If you want to use the incremented version of i inside your loop only, then you might as well use the pre; it’ll save you a bit of memory.
  • Pematangsiantar using sizeof() or .size() or whatever. How many times have you done this?

    for(i=0; i < sizeof(array); i++) {

    While this is technically correct, it isn’t the best solution when the cardinality of array is large. Coding it this way will actually re-calculate the size of the array every time the loop runs; and the functional overhead can get expensive. If possible, you should calculate the size once then compare against that.

  • Speaking of functional overhead…Don’t use functions where built in operators will do. For example, this code:

    if (strlen($foo) < 5) {

    can be done without all the overhead by using some of php's natural operations like this:

    if(!isset($foo[4])) {

    The difference here is that isset() is built in to the language (it works like + or -) whereas strlen isn't. (it works like a function you define)

Anyway.. that's enough for now. I'm taking a vacation this weekend.. but when I get back, I'll post some other cool things you might not have known.

August 30, 2006

protecting kids

Filed under: Uncategorized — Ryan Jones @ 12:00 am

I was reading on Phillip Lenssen’s site about how it’s now a crime to use META tags to deceive a child into viewing a hurtful webpage. I posted my comments there, but I wanted to re-iterate here as well.

Who defines what’s harmful? a site saying there’s no santa when viewed by an 8 year old? A site talking about evolution to somebody from Kansas? An abortion site to a christian? The skeptics annotated bible having bible in it’s meta tags?

I can see the intent here is to shield children from porn sites that put “britney spears” in the meta tags… but like typical govt this is just flawed. That stuff is about 5 years too old. It doesn’t work. This is not an area the Govt needs to get involved in. If you don’t want your kids to see something harmful online, that’s your job as a parent; not uncle sam’s.

This law will serve no purpose other than an excuse to shut down more porn sites, and a pathetic attempt to appear to be protecting the children this ballot season.

The only real internet law we need will ban the internet from any children under 16 without parent supervision, and ban making laws about the internet from any politicians over 40.

What we really need to do as parents (ok not we, I don’t have kids) is take a more active role in our children’s lives so they don’t turn out like this kid. (He IS German… Phillip is that you as a young boy?)

Etiquette

Filed under: Uncategorized — Ryan Jones @ 12:00 am

Wow.. it only took 15 minutes afer re-enabling the comments to get the first spam comments; 3 of them actually. It’s funny because the spam bot actually used UBB code to make it’s links.

I’m going to say this right now to all you spammers: All Links on dotCULT recieve rel=nofollow attributes. There.. now that I got that out of the way…

Let’s talk about etiquette, and not the which fork goes where crap either. One of the most annoying things you can do is call somebody you haven’t called in months and ask “Hey, is SomeRandomName there with you? Can I talk to him?”. It’s even worse when you do email somebody who don’t regualarly talk to and ask them for somebody else’s email address.

For the record, it’s always been my personal policy never to give out somebody else’s email address or phone number without their consent. You’d be suprised how often I’m actually asked to do this. My feelings are that if they wanted you to have it, they’d give it to you. It’s not my decision to make. If you want though, I’ll gladly pass your contact information along the next time I run into them; but don’t count on me making a phone call just to do that.

Of course, this only applies to personal phone numbers and emails. Business information for the purposes of business should be completely public.

In summary: If you don’t know his email address he probably doesn’t belong on your MySpace friends list anyway, and if he didn’t give you his phone number there’s probably a reason. Please stop asking, it’s rather rude. Don’t you think?

August 28, 2006

An Open Letter To Dell

Filed under: Uncategorized — Ryan Jones @ 12:00 am

Dear Dell,

Let me tell you about my recent experience with your company. I recently ordered a new computer that cost me $1074.54. Due to a glitch in your system, my order went through twice and I recieved 2 computers.

I told fedex to deliver one, and I refused delivery on the other. I called support and you said “don’t worry about it, when we recieve it, we’ll credit you”.

Looking at my credit card bill, I was only credited $899.36. That’s a difference of $175.18.

I called your support line today at 6:30, and it took until 8:30 to get a real person on the other end. My cell phone battery actually died while waiting on hold, and I had to call again.

When I finally got somebody, I was scolded for not knowing my order number, and then placed on hold before he hung up on me. I called back and your annoying computer told me my wait time would be 20 minutes. I also fired off an email, but got no reply.

Now, there’s some obvious problems with this. First of all, you cheated me out of $175. Secondly, you fucking hung up on me. Third, you just showed me that I could have somehow bought my computer for only $899.36…. so you cheated me again.

You owe me $350.36 (not to metion the time I spent on the phone.) I charge clients $50/hour. I couldn’t talk to a client while my phone was tied up, so therefore your owing me total is now about $550.36.

I have already contacted the BBB, and will try again tomorrow to contact you. Please note that I will be charging an additional $50/hour for however long it takes me to rectify this situation. Please let me know where to send a bill.

Thank you very little
Ryan Jones.

Over-Reactions on a motherfreaking plane

Filed under: Uncategorized — Ryan Jones @ 12:00 am

If you don’t regularly read Wired magazine, they have a Great Article about all the over reactions to terrorism and how we need to refuse to be terrorized.

Contrary to what people believe, a terrorist’s goal isn’t to kill us. Their main goal is to change our lives; and frankly we’re letting them do that. Terrorists account for .00008% of all deaths in our country. Statistically polish grandmothers have killed more people since 9-11 than terrorists have, but you don’t see people going crazy about shutting down bingo night at the local church. (please don’t take offense, I’m polish that’s why I used it)

In the past few months we’ve grounded airplanes for the following reasons:

  • A man in a leather jacket was speaking arabic and looking at his watch
  • A woman had a bottle of water and a bar of soap
  • Passengers weren’t wearing their seatbelts
  • People were playing with their cell phones
  • The bathroom door was locked
  • Somebody burnt the toast

Hell, we even closed a school recently because little Michael Morrissey brought in a Burrito. (::insert “explosive” toilet humor here::)

Does this sound stupid to anybody else? Am I the only one who thinks our fears aren’t justified?

It’s time to stop acting irrational out of fear and get on living our own lives. We need to stop acting like that old cartoon housewife who goes crazy and stands on the table everytime she sees a mouse. You know, the one who will throw a lamp or break her entire kitchen trying to kill it… that’s what we’re doing with our freedoms, our rights, and our way of life. We’re throwing it away in an attempt to feel safe.

But safe from what? Terrorists, or just a Man with a Penis Pump?


NOTE: Comments functionaly still isn’t done. I appologize, as I realize that this piece will undoubtedly attract some. If it makes you feel better, I composed this entire thing in phpMyAdmin.

August 18, 2006

NoSlang Book Released

Filed under: Uncategorized — Ryan Jones @ 12:00 am

I’m still working on the dotCULT backend re-design. Until then, I bet you didn’t know I wrote a book did you?

The NoSlang.com Internet Slang Dictionary is now available in book form! The new book is 172 pages long, includes over 2,000 terms, tips for parents, tips for teens, and more information about slang! This book is a Must have for all parents or teachers.

For a limited time, the book is availble for the discounted price of only $9.54. It’s going to sell for over $10 on Amazon.com in a couple weeks, so get yours today before the price goes up.


Order Your Copy Here
(Select US Postal Regular Media for Cheapest Shipping)


Here’s what other people are saying about the book:

As an Internet author and expert, I knkow a lot about the Internet. However, as an adult and parent, most INternet slang has PMB (passed me by). In a simple manner, this authoritative guide has leveled the playing field for all parents and adults. I suggest placing this book by the computer. Now your kids will know that you know what they’re saying.” — Ken Leebow. Author of 300 Incredible Things to Do on the Internet

I bought this book and boy was I amazed of how much I learned about internet slang. I would watch my 13 year old use AOL IM and I had no clue what she was saying. With this book I can now monitor her activity and she doesn’t even know it. A must have if you have children using instant messengers.
— Review posted on LuLu.com

“The Internet Slang Dictionary is a must have for parents with kids online, never again be in the dark about a term or phrase you don’t understand.” -Rich creator of TheParentsEdge.com

Powered by buy modafinil canada WordPress