Showing posts with label code_monkey. Show all posts
Showing posts with label code_monkey. Show all posts

14 May 2008

LOL

this is too much

30 April 2008

New themes for iGoogle

Google rolls out more themes, this time by artists.

Chihuly even made one.

25 April 2008

Wordpress 2.5.1 is out

Time to update, monkeys!

You can digg it too.

11 April 2008

Evernote



Need to keep track of things? This seems like a useful product. I have invites.

Would be nice if they supported more phones.

24 March 2008

PDF document reader website extension

I originally wrote this because I don't want to download every PDF I find online. I've since discovered this, an extension for PDFmenot.com. I like it better than the Zoho Viewer since it can better handle the PDF formating. In case you do use my script, here's an updated version without PDFs.

19 March 2008

...

18 March 2008

Another update for my ZOHO Script

ZOHO document script

works for PDFs! unlike the OpenITOnline advertised on the script page.

07 February 2008

Changes

Felt the place needed a new layout & some experimental ads.

I like the 3 column layout better, not sure about the page tabs though. Of course, I'm sure I'll get sick of the ads... who knows, maybe it will earn me a little money.

02 January 2008

New update to my Zoho script

My pdf/doc/xls reader script needed some work. Here's the update. Not going to bore you with the geek-tails.

21 November 2007

Script update

New update

files now open in a new window

28 October 2007

Who needs Docufarm?

So Docufarm.com shut down on 11OCT. It was a nice clean way to open PDFs & other documents without the need to download them to my machine. It came with a Firefox extension. Very handy. However, the owner joined another company. So, time to breakout Textmate, and reverse engineer the way Zoho Viewer works. voila!


Long story for a short bit of code... You'll need greasemonkey & my script. Let me know how it works out. I know my string search needs some help... only version 0.6

13 September 2007

Loser

Who cares about the lame shit on my site?!?!?

From Google Analytics, some moran is trying to hack my site:

http://*:*@moms-ritzcracker.com 21 13.23%

What kind of loser do you need to be to hack a blog?!?!? ROFL

21 July 2007

Scribe Fire plugin

This is a pretty damn cool tool. Now I really don't need to open my site in order to post more inane crap...

Try it!

09 June 2007

You need this...

I just don't think you know it yet.



text/plain

Treats selected plain text urls, and email addresses as links and adds options to the context menu on how to use...

20 January 2007

damn unix and a missed character...

well, I fvcked up on my own blog. I think it may have affected HR's blog too. A simple code update fvcked it up. It was a security release... bah. Maybe I need more coffee.

Never give your kid your keys!

21 May 2006

Broken code

MT seems to have broken on my webhost... Time to kill the old spam free forums anyway.

Now I have to recreate the layout and other features for WP... yay. :(

10 December 2005

Forum should be fixed now...

At some point, I will convert the comments over to regular MT comments. But for now, I have too much to do for work.

06 November 2005

Jebus. I hate shell scripts!

Yes, shell scripts make thing easier. A script will do want I don't want to remember to do. A script will speed up things to allow more time for Farking...

But it takes some time to write the damned things...

Here's the script I had to write for a job interview:


I would also like to see a shell script written in BASH that builds a
Solaris software package lets say proftpd 1.2.10. The build should start
from the canoical source available at :


ftp://ftp.proftpd.org/distrib/source/proftpd-1.2.10.tar.gz

Include all patches necessary to compile the application. Apply the patches
and create the package. No need to worry about error handling.


the script:

#
# Package creation script - 05NOV05 w.b.
# Portable code for universal package creation. I still
# need to tweak some of the commands, but this file
# downloads source, configures, makes, packages,
# and archives Solaris packages.
#
# location variables
#
pkg_stage="/tmp/pkgtmp"
installdir="/opt/proftpd" # this may be defunct now
pkguid="proftpd"
pkgroot="proftpd-1.2.10"
#
# make/config varibles
#
prefix="--prefix=/usr"
sysconfig="--sysconfdir=/etc"
localstate="--localstatedir=/var/run"
modules="--with-modules=mod_readme:mod_ratio"
#
# pkginfo variables
#
pkg="GNUproftpd"
pkgname="GNUproftpd - Proftpd daemon"
pkgfile="GNUproftpd.1.2.10.x86.5.9"
pkgfile2="GNUproftpd.1.2.10.x86.5.9.pkg.tgz"
version="1.2.10"
arch="x86"
classes="none"
category="utility"
vendor="GNU - proftpd.org"
datestamp="$(date)"
basedir="/"
#