Actual conversation today

Posted by Michael Thu, 19 Apr 2007 16:04:18 GMT

Him: People are willing to look at and buy this because it’s what is popular right now.

Me: This doesn’t actually provide any security, it’s an illusion product.

Him: Who cares, people will pay a large amount of money for this. The margin is great.

Me: Isn’t this like stealing? I’m more interested in actual solutions, not snowballing people into something that doesn’t actually work.

Him: ::Goes on 20 minute spew on them vs competitor ending with:: “and it will stop information leaving your network via http POST

Me: So if I submit to a form submit via GET what happens?

Him: Well we don’t block that.

Me: So I just circumvented your very expensive system just from listening to your pitch. What other parts aren’t going to work?

Yep, that really happened.

Posted in  | no comments | no trackbacks

Ubuntu 7.04 Released

Posted by Michael Thu, 19 Apr 2007 15:16:23 GMT

For those of you who have been sleeping, Ubuntu 7.04 was released today. We’re taking upgrade questions at support@imapenguin.com.

Hint: you can purchase support from us for commercial applications by calling 703-842-5324 or emailing sales@imapenguin.com Support for people working on real open source projects via email is free at support@imapenguin.com (make sure you mention you’re doing open source and what the project is).

Have fun and let us know how it’s working for you!

Posted in  | no comments | no trackbacks

Speaking at Angelbeat next week

Posted by Michael Thu, 19 Apr 2007 14:04:51 GMT

I’m giving the IM talk at Angelbeat in Philadelphia next Monday the 23rd. It’s in the morning and I’m in town until dinner time. Drop me a line (mike@imapenguin.com) if you’re in town and want to geek out at a coffee shop in the afternoon.

Posted in  | no comments | no trackbacks

RedHat 5. Again.

Posted by Michael Sat, 14 Apr 2007 16:39:28 GMT

While at 32 I’m by no means old, I had a funny conversation last week about my beginnings with Linux. The short short version is that I played quite a bit with Slackware and then got really serious when RedHat 4.2 came out.

The slightly younger (like 25ish) person I was talking to looked very surprised and proclaimed “Wow, I would have thought with all you seem to know about Linux that you’d been using it longer than me. I started just after RedHat 4 was released.”

With a sigh, I explained the crazy numbering system choice RedHat made to go up to 9 and then back to 3 (or EL, ES 3 or 2 or whatever silliness it was they did) that I was speaking of “RedHat Linux” 4.2 which was released in May of 1997.

I think this might mean that the RedHat 5.2 box and disc set that I have on my bookshelf means that I have special connections into RedHat and that I have insights into about 2 years into the future.

Given this information, I’d like to announce that I’ll happily sell you CDR copies of this CD set for $50 a pop.

It’s a glimpse into the future folks. Just think, RedHat 5.2 today. No waiting.

Better break out those notes on XF86Config though, the graphical interface installer for this futuristic version isn’t quite done yet.

Posted in ,  | no comments | no trackbacks

Zultys Audio Conversion Via Sox

Posted by Michael Mon, 02 Apr 2007 09:35:27 GMT

Zultys auto attendants need an 8bit Mono U-law format wav file. Most recording software will give you a stereo 16bit format at the very least. To convert via sox (available for Unix machines including Macs) simply do:

sox -c 2 Audio.wav -c 1 -r 8000 -U Audio2.wav

Posted in , ,  | no comments | no trackbacks

Google Apps Premier worth the money?

Posted by Michael Fri, 23 Mar 2007 09:40:20 GMT

I have about 5 Google apps mail accounts through different projects. Imapenguin is now enabled through Google Apps as well and is the only account with the premier option.

Today, the only account with the paid uptime guarantee has been down for an hour. All of my standard(and free) accounts are up.

I’m trying to figure out what I’m paying $50 a user for when all of my free accounts are available and everyone in my business, and all of our clients are waiting for email to come back up.

As a stark contrast, we had run our own Postfix/Dovcot email system for years up until a few weeks ago with really close to 100% uptime via very low maintenance.

It’s ironic that we switch to a paid outsourced system and now are enduring our longest downtime in years.

Posted in  | 1 comment | no trackbacks

Rails mongrel cluster with apache 2.2 and mysql on Ubuntu Edgy (6.10)

Posted by Michael Wed, 14 Mar 2007 17:22:00 GMT

We’ve been doing a bunch of server setups for folks in VPS’s. I figure we’d save you the cost of hiring us by posting a quick rundown on an Ubuntu Edgy Rails setup:

sudo bash
apt-get update && apt-get upgrade
apt-get remove apache2
apt-get install libssl-dev
apt-get install zlib1g-dev
dpkg --purge apache apache2
apt-get install build-essential
apt-get install libreadline5-dev
cd /usr/local/src/
wget http://apache.mirror99.com/httpd/httpd-2.2.4.tar.gz

tar -xzvf httpd-2.2.4.tar.gz
cd httpd-2.2.4
./configure --enable-proxy --enable-proxy-balancer\
--enable-proxy-http --enable-rewrite --enable-cache\
--enable-headers --enable-ssl --enable-so
make && make install
/usr/local/apache2/bin/apachectl start

apt-get install mysql-server
/etc/init.d/mysql start

cd /usr/local/src/

wget ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.8.6.tar.gz
wget http://rubyforge.org/frs/download.php/17189/rubygems-0.9.2.zip
apt-get install unzip
unzip rubygems-0.9.2.zip
tar -xzvf ruby-1.8.6.tar.gz
cd ruby-1.8.6
./configure && make && make install

cd ../rubygems-0.9.2

ruby setup.rb

gem update
gem install rails --include-dependencies

apt-get install libmysqlclient15-dev
gem install mysql --include-dependencies
gem install mongrel --include-dependencies
gem install mongrel_cluster --include-dependencies

Then you need some optional housecleaning and deploy your app. We’ll assume you know this part. If not, you can flame me via email and I’ll help you.

  • set a mysql password and add appropiate users and permissions
  • setup iptables
  • add apache conf for mongrel cluster
  • add app required gems as needed
  • use capistrano set up your directories
  • migrate database
  • start clusters
  • apache and mysql to startupscripts
  • add mongrel to startup scripts

Posted in , , , ,  | no comments | no trackbacks

Stop using out of office replies!

Posted by Michael Mon, 05 Mar 2007 09:04:00 GMT

This is an official plea (okay, not official, just a rant) from Imapenguin dudes and gals.

Can everyone on planet earth please stop using out of office replies?

I sent you an email BECAUSE it isn’t real time. Answer the darn thing when you’re done with whatever you’re doing.

Posted in  | 2 comments | no trackbacks

Ruby Gems: undefined method `refresh'

Posted by Michael Thu, 22 Feb 2007 20:11:43 GMT

If you’re getting:

Updating installed gems...
ERROR:  While executing gem ... (NoMethodError)
    undefined method `refresh' for #<Hash:0x1380250>

you need to remove your source_cache. Look in ~/.gem and in your site directory. Mine is in:

/usr/local/lib/ruby/

Posted in , ,  | no comments | no trackbacks

Jet Blue CEO Apologizes on YouTube

Posted by Michael Tue, 20 Feb 2007 17:08:30 GMT

When you mess up, you stand up and say you’re sorry.

Kudos to JetBlue Airways founder and CEO David Neeleman for this.

Plus it’s really cool to see it on YouTube:

Posted in  | no comments | no trackbacks

Older posts: 1 ... 5 6 7 8 9 ... 16