Archive for February, 2005

All posts written in February, 2005.

SoCom 3 announced.

Posted by: Jen | No Comments »

Categorized: General

Finally, Sony actually announces SoCom III after months of speculation by fellow SoCom II players. SoCom III will be out sometime next fall and will feature vehicles and all the fixings. More photos are located at IGN’s web site.

Tagged:

We will Miss You Jef

Posted by: Jen | No Comments »

Categorized: Apple, General, Standards

I do not usually post anything on the weekends, but I wanted to give my respect to Jef Raskin who died yesterday.

random bookmarks and such.

Posted by: Jen | No Comments »

Categorized: General, Hints, UNIX

I recently went through my bookmarks and realized I had some cool stuff bookmarked, but forgot about it and wanted to share.

Apple/Mac

UNIX Tools/Tips/Tech Resources

Music:

Fun Stuff

Tagged: , ,

my OS X web development setup.

Posted by: Jen | No Comments »

Categorized: Apache, General, Hints, UNIX, Web Development

If you find yourself developing more than one web site at home, or anywhere with a *NIX machine with Apache, and want to be able to access all the sites for testing, it is time to set up Virtual Hosts. By using Virtual Hosts, you can access all your web sites easily (especially if you use absolute links) and separately by typing in: http://jappler/ and http://bareminimum/ and http://other. How does this work? Like I mentioned before, the first step is to set up Virtual Hosts. The second step is to edit your /etc/hosts file so you can assign names to your localhost address (jappler for http://jappler/)
Setting up Virtual Hosts

  • To set up virtual hosts, you will need to edit your Apache configuration (sudo pico /etc/httpd/httpd.conf). You can make a number of changes in the Apache configuration to set up an environment that is right for you, but for now, all you are concerned about is located at the end of the standard config file.
  • Uncomment the line: NameVirtualHost *:80 (delete the number sign in front of the line)
  • Add in your Virtual Hosts information:

    ServerAdmin [email protected]
    DocumentRoot /Volumes/www/Sites/jappler.com/web_files
    ServerName jappler
    ErrorLog /Volumes/www/Sites/jappler.com/logs/error_log
    CustomLog /Volumes/www/Sites/jappler.com/logs/access_log common


    To break it down line by line:

    • ServerAdmin: your email address, not really too important for local testing.
    • DocumentRoot: where your site files are located.
    • ServerName: This is the name you want to use when to test the web site in your browser (ex. I use jappler for http://jappler/)
      *This will also match the name you will add to your /etc/hosts file)
    • ErrorLogs: Location of your error logs. You can create separate log files for each hostname, or use one log file for all errors.
    • CustomLog: Location of your access logs. You can create separate log files for each hostname, or use one log file for all access information.
  • For more information on Virtual Hosts, check out other Virtual Host options.
  • Modifying the /etc/hosts file

    • You will need to edit the /etc/hosts file (sudo pico /etc/hosts).
    • Your /etc/hosts file will look like: ##
      # Host Database
      #
      # localhost is used to configure the loopback interface
      # when the system is booting. Do not change this entry.
      ##
      127.0.0.1 localhost
      255.255.255.255 broadcasthost
      ::1 localhost

      You will need to add in the site names you want, after the 127.0.0.1 localhost line. You can add in as many as you want, but know these will only work on your local machine. More on the /etc/hosts file. Using pico or any other editor, add the hostnames you want to use locally to the /etc/files so it will now look like this (see changes in bold):

      127.0.0.1 localhost
      127.0.0.1 jappler
      127.0.0.1 thebareminimum
      127.0.0.1 other

      255.255.255.255 broadcasthost
      ::1 localhost

      *Make sure your hostnames match the names you used in your Apache Virtual Host section

    Once you have your Virtual Host information in place, and you have editted your /etc/hosts file, it is time to start up Apache. To start, stop, or restart Apache, you can use apachectl in the command line. On Mac OS X, this is located: /usr/sbin/apachectl and in most UNIX/Linux distributions, it is located: /usr/local/apache/bin/apachectl. To use it, you can type in (on Mac OS X) sudo /usr/sbin/apachectl stop (to stop Apache). To start Apache type in: sudo /usr/sbin/apachectl start. If you have any syntax errors, Apache will display them after you type in that command, if not and everything is ok, you will get the message: /usr/sbin/apachectl start: httpd started.
    Now you are all set to serve your web projects on your local machine with unique names for testing purposes! Questions? Just ask.
    [tags]Mac OS X, web development, apache, vhosts[/tags]

    spam karma plugin.

    Posted by: Jen | No Comments »

    Categorized: General, Hints, Wordpress

    Since moving to WordPress 1.5 I have been getting tons of comment spam, but I finally have a solution. I am using the spam karma plugin. Within a few minutes of installing it I had it up and running, blocking comment spam left and right. In less than 24 hours, I have blocked 72 comment spam attempts. I have tried other plugins, and by far this plugin is my top choice. I also like the ability to see what is being blocked, and see statistics. Anyone who uses WordPress and gets comments spam, look no further, this plugin is for you!

    excuse the dust, updated to WP 1.5.

    I updated my installation of WordPress to 1.5, and am still working out some problems with some of the plugins that have not been updated yet. I am hoping to get everything working ASAP, but until then, you might notice a few things are a little funky (like my photos). I have also been going through my plugins and trying to add more functionality, so stay tuned!
    [tags]WordPress[/tags]

    an upgrade, a monkey, and future CSS fun.

    Posted by: Jen | No Comments »

    Categorized: General, Web Development

    After my daily tech new sweep, I stumbled on some web related news I wanted to point out:

    the garden state.

    Posted by: Jen | No Comments »

    Categorized: General

    New Jersey…home of Continental’s hub, a handful of people that I love, and a lot of trash. Growing up in New York, my classmates and I read about the dirty needles on the NJ beaches in our Weekly Readers and never imagined wanting to spend any time there. In college, all I heard was “are you going to the shore for the summer?” and was equally intrigued on why people would ever want to go to NJ or go to there for a “beach” experience. Are people not aware of our beautiful beaches in North Carolina and south of there? (Sorry, I just like shells on my beaches, not needles) Anyways, I was in NJ for a wedding last week and had the opportunity of seeing some of NJ’s claim to fame: northern NJ. I must say there are some beautiful areas of NJ (happy A?) but I thought I would share a nice picture, and a wonderful sign/web site (I thought this should/would be covered in the federal program). Glad to know we are spending thousands on web sites and signs in NJ when they should consider paying someone minimum wage to clean up the “garden state”.

    Tagged:

    building dashboard widgets.

    Posted by: Jen | No Comments »

    Categorized: Apple, General

    I am excited for Mac OS X 10.4 (Tiger) for many reasons, but I am really looking forward to creating some cool dashboard widgets. I am excited to put my XHTML and CSS to work to make some really cool stuff for my desktop! I will be sure and share!

    On another note, thanks to Gibson, here is a little fun.

    Tagged: ,

    go meredith, cousin peggy!

    Posted by: Jen | No Comments »

    Categorized: General, People

    Back in my Penn State days, I took a lot of American history classes (since that was my major) and I found I had similar interests to a new TA, Meredith Lair. She was one of my TAs for History 3 (The American Nation: Historical Perspectives) , and History 173 (Vietnamin War and Peace) and another, but I am not remembering at this time. Anyway, I recently found her name in an article I was reading. Meredith’s mention: “It’s beyond comprehension the damage this man has done,” said Meredith Lair, 32, who just completed a doctorate in history at Pennsylvania State University. “I think it’s horrifying what we’re doing to Iraq,” said Lair, who was carrying a sign that read, “Mr. Bush, under my mittens I’m giving you the finger”. Regardless of what I think of President Bush, I am proud of her for going out and participating in something that she not only believes in, but also taught countless of students about. Good job!

    PS. My cousin Peggy was interviewed about her professional football experience, pretty cool too!

    Tagged: ,