Ps3 Bad Company Update Problem

I’d tried a few times over the last week to update Battlefield: Bad Company on the PlayStation 3. Every time I tried I would get hung up on the “Downloading update data…” screen. It would stay at 0% for a few minutes and then briefly flash me an error code in the top right corner (8002AD23) and a few minutes after that it’d bounce me to another screen: “An error occurred during the download operation (80710723)”

I googled around for a while. Opened some ports on the router, plugged directly into the wall, restarted. I finally found somewhere that recommended I disable my media server via the network settings and BAM! “fixed”

My “source” for the “fix”: http://www.fixya.com/support/t291065-ps3_system_update_error

Eclipse RDS Problem: Contacting Server…

I’ve been successfully running CFEclipse on Ganymede for a week or two now, but I finally got around to just installing and setting up my ColdFusion 8 Eclipse Extensions (downloaded from the lovely coldfusionportal.org). Everything looked like it went well: “Test Connection” worked. But whenever I would double-click a folder in my RDS Fileview or Dataview I would get hung up on this “Contacting Server…”.

It took a bit of googling, but I finally stumbled upon this post and I wanted to share the link love: http://www.vintagecoding.com/blog/2008/07/24/eclipse-rds-might-be-a-problem-with-ganymede/

Apparently if you click the arrow icon’s in the RDS Fileview and RDS Dataview views it’ll work. It’s a workaround alright, but it works.

Ubuntu Hardy Heron ColdFusion 8 Oopsie

Somehow I managed to bugger up the ColdFusion installation on my beloved laptop. Whenever I would try to start the cf server I would get the following not-very-helpful message.

Running the ColdFusion 8 connector wizard
======================================================================
Configuring the web server connector
(Launched on the first run of the ColdFusion 8 start script)
Running apache connector wizard...
=======================================
There was an error while running the connector wizard
Connector installation was not successful

I googled around enough to realize that since it didn’t appear to be a common problem, that it was probably something I did. And it was.

As you may have figured out by now, I’m not a server-config kind of guy. I poked around a little bit and found an interesting looking shell script at /opt/coldfusion8/bin/connectors/apache_connector.sh. Running that gave me a much better error message:

Could not find directory /etc/apache2/apache2.conf

I opened the file and realized that the paths were all boogered up, meaning the paths I entered when installing ColdFusion where all buggered up. In any case, I fixed the incorrect paths and here’s what the file looks like now:

#!/bin/sh

#
# Configure the Apache connector.
#	-dir should be the *directory* which contains httpd.conf
#	-bin should be the path to the apache *executable*
#	-script should be the path to the script which is used to 
#		start/stop apache
#
../../runtime/bin/wsconfig 
	-server coldfusion 
    -ws apache 
	-dir /etc/apache2 
	-bin /usr/sbin/apache2 
	-script /etc/init.d/apache2 
 	-coldfusion

exit $#

And Voila!

Ruby File Renaming Utility

I wrote a little renaming utility to help me with the all too common task of file re-naming that seems to keep coming up. The class itself is pretty general; the idea is to extend it and override the “valid_file” and “format” methods for whatever specific task I’m doing.

The “valid_file” method is intended to recognize which files need to be renamed in the case you’ve got files you don’t want to touch in the directory. By default the function just ignores the “.” and “..” in the directory listing.

The “format” method is used to to specify the actual rules and routine to use when renaming your file. By default it replaces spaces and dashes with underscores.

Finally, this isn’t “finished” software. No error checking, no notes. It works for me and maybe it’ll work for you too.

Here’s an example class I wrote using the renaming utility. It’ll prepend the string “prepend_” onto all png files in the specified directory. Note that there’s a “safe_mode” variable passed in the constructor. Setting the “safe_mode” to true will prevent the files from being renamed while you’re working on it.

require 'renamer'

safe_mode = false

class Example < Renamer

  def format file
    file = custom_format(super(file))
    puts file 
    return file
  end

  def valid_file file
    valid = super(file)
    valid = valid && file.include?('.png')
    return valid
  end

  def custom_format file
    return "prepend_#{file}"
  end
end

if __FILE__ == $0  
  path = ARGV[0]
  r = Example.new(path,safe_mode)
  r.rename_files
end

Download the code: Ruby File Renaming Utility

Ruby Clipboard Utility

I have a few ruby scripts that I use to make life a little easier at work. Some of said scripts utilize the clipboard. My work machine is windows and my laptop runs Ubuntu. I’m able to use the same scripts on both computers but I have a few qualms with how I’m doing it.

Right now I’ve got classes for gnome and windows, a clipboard wrapper class to be used by my scripts and a basic (and poorly named) OS class I use to determine which class desktop class to use.

First off, the method I’m using to determine OS is…terrible. Currently I’m doing a string comparison in my OS class, but it doesn’t actually tell me which desktop application I’m actually running, so at the moment it’s just a dirty hack but I’m not sure of the preferred way to do it..

def is_linux
  return RUBY_PLATFORM == 'i486-linux'
end

Second, I’m uncomfortable with how I’m importing my desktop specific code in the main clipboard class. Is there a ruby-er way of doing this, or maybe just a smarter way anyone knows of?

class Clipboard
  def initialize
    os = OS.new
    if(os.is_linux)
      require 'clipboard/clipboard_gtk'
      clipboard = GTKClipboard.new
    else
      require 'clipboard/clipboard_win32'
      clipboard = WinClipboard.new
    end
    #other stuff
end

Any help would be greatly appreciated!

Download the code: Clipboard Utility

PS: I realize there’s quite a bit of other stuff I need to do to really get this usable, but you have to start somewhere!

Prima Gravida

New computer begets new blog. That’s just how these things work. I intend this to mainly be a professional blog, but like all professional blogs I actually enjoy reading I’ll also be smushing in some personal stuff here and there.

As for myself, I’m a web developer residing and working in Winter Park, Florida. I work mostly in ColdFusion and JavaScript, but I also dabble a bit in Ruby and a few other techs

I plan on re-beginning this whole blogging thing by posting solutions to some of the little problems I (and anyone else who uses a computer) run into all the friggin’ time.

Ta Ta for now.