August 31st, 2007, 02:13 pm
I should have known from the start when we setup the interview through emails and there was a nice message at the bottom of his messages saying it was sent from his iPhone. Also when we agreed on a time he didn’t even give me a website, address or anything so that I would know where it was at. I had to send him an email to confirm what company it was for. He told me to grab the information off of the website.
I dress up nice, slacks and a tie. I was very interested in this job so I wanted to make an impression.
I get there early. The guy interviewing me doesn’t even shake my hand when I get there. I’m already nervous but now I feel even more uncomfortable. When we are walking to their conference room he looks me over and says “hmm”. I overdressed. He is wearing shorts and sandals. The environment seemed very relaxed there and almost like they didn’t take a whole lot seriously. I should have guessed this by his use of the word “cool” in his emails to me.
We start talking about HTML and things like that. I’m nervous and choke on some things but I was getting more relaxed as we kept talking. About ten minutes into it he asks if I’m still in school. I reply yes even though I’m not going this semester. I plan on going next semester though. He then decides that I need and want a part time job and promptly ends the interview. I’m sitting there shocked. Here he is deciding that I need a part time job when what I really want is a full time job.
So pretty much it was a waste of time. He is deciding for me what I want and I highly doubt I’ll be getting the job since I was only with the guy for maybe ten minutes. I don’t even think he looked at my resume which I sent in my initial email in response to the job posting. He would have known I was in school if he would have read it. I wish he would have been screened me more before wasting time for both of us.
Oh well. I’ll keep sending my resume out to different places and hopefully I’ll find something.
Posted in Work • No Comments »
August 22nd, 2007, 03:47 pm
I got tired of using layouts that others created so I decided to make something that felt more like me. I’m not a designer and this is my weak attempt at designing a website. I feel like something is missing like photos and things through the pages instead of just text. I’ll be tweaking it over time. If you have any suggestions, let me know. Thanks.
Posted in This Blog • 1 Comment »
August 21st, 2007, 04:31 pm
If you are considering using Godaddy to host your website, don’t. Run away as fast as you can and get a proper web host. The more I have used Godaddy for more only domains, the more I hate them. Godaddy is a domain company and nothing more. Yes, they are cheap and that is service you get. Cheap.
Today I found out that Godaddy doesn’t mod_rewrite files ending in .php. You can redirect other file types to php files but you can’t rewrite php files to other files.
I’m guessing this is because Godaddy parses php files before it even gets to your .htaccess file.
Godaddy, can you server setup be any more messed up? Why can’t you do it properly?
Posted in Programming • 2 Comments »
August 20th, 2007, 09:36 pm
When people are in relationships they do they best they can until a turning point and they can’t go on anymore.
Posted in Relationships • No Comments »
August 13th, 2007, 11:22 am
I’ve updated my script that I previously blogged about that changes your avatar on different sites depending on what month it is.
Put the following to your website. In my example I’m naming it avatar.php
Add cases for the months you want to add or change. Change $avatar to the correct image. Change $type so that it is appropriate for the correct image. Gifs are image/gif. Jpgs are image/jpeg.
<?php
$month = strtolower(date('M'));
$avatar = '';
$type = '';
switch($month)
{
case 'oct':
$avatar = 'pumpkin.gif';
$type = 'image/gif';
break;
case 'dec':
$avatar = 'christmas-tree.gif';
$type = 'image/gif';
break;
default:
$avatar = 'elephant.gif';
$type = 'image/gif';
break;
}
header('Content-type: ' . $type);
readfile($avatar);
exit;
?>
In a .htaccess file add the following
RewriteRule avatar.jpg avatar.php
RewriteRule avatar.gif avatar.php
To use your dynamic avatar, you can link to either avatar.jpg or avatar.gif on your website. Preferably keep all of the image types the same.
If you have any questions, bugs or anything, let me know.
Posted in Programming • No Comments »