I found this module that will check for and install if necessary the .Net 2.0 runtime..
http://nsis.sourceforge.net/DotNET#Including_the_Script
Looks really great. I will need it for Appian's installers..
somethings from codeland
Friday, September 28, 2007
Wednesday, September 26, 2007
Connection test services
I have a client that I need to monitor to make sure they stay online. I will probably need to make a two part application for this:
- A server that will send out something of a heart-beat signal and wait a specified interval to make sure it gets a reply back.
- A client that will answer the heart-beat at a specified interval.
- The site downage is recorded to a database
- an email should be sent to parties responsible for the sites up time.
- An email should be sent to aboveSHIFT
Tuesday, September 25, 2007
MediaWiki easier???
I want to start using wiki's more often for internal document structure, but there's really no great solution out there. FCKeditor for MediaWiki
Maybe this could be a good project..
Maybe this could be a good project..
- Internal office information with access levels (you don't want marketing people into common IT passwords..)
- Media wiki would be ideal, but its just too hard to use..
- need something more like a blog interface.
- office document modification would be a plus
- open up and edit .doc, .xls, etc...
- Google has an ideal solution, but I do not believe its portable (exists only on their servers..)
Ideas for Zencart add products structure
Make a full screen application that will allow for multiple tasks...
- Maybe there should be a bar of things to do on the left side of the screen?
- instead of tabs on the top of the window..
Monday, September 24, 2007
Reverse Engineering Code
A good reference on all the disassemblers and the like..
http://www.woodmann.com/crackz/Tools.htm
http://www.woodmann.com/crackz/Tools.htm
Sunday, September 23, 2007
Media Player integration with Firefox from Microsoft's Open Source Labs
Firefox runs into issues when trying to view media requiring windows Media Player in order to work correctly. Microsoft's open source labs, Port 25, has released an exe that will integrate WMP into the Firefox browser.
http://port25.technet.com/pages/windows-media-player-firefox-plugin-download.aspx
http://port25.technet.com/pages/windows-media-player-firefox-plugin-download.aspx
Friday, September 21, 2007
CakePHP tutorials
sitepoint - create a notes application
CakePHP manual - create a blog
Grahambird - create an ajax task list
swik.net list of tutorials for CakePHP
CakePHP Useful tips, a blog - 21 things you must know about CakePHP
The Bakery, CakePHP's wiki site
CakeBits.net - 27 Useful CakePHP Tutorials
IBM tutorial over CakePHP
CakePHP manual - create a blog
Grahambird - create an ajax task list
swik.net list of tutorials for CakePHP
CakePHP Useful tips, a blog - 21 things you must know about CakePHP
The Bakery, CakePHP's wiki site
CakeBits.net - 27 Useful CakePHP Tutorials
IBM tutorial over CakePHP
Thursday, September 20, 2007
A fondness for Rails
I have been wanting to get into Ruby on Rails for some time now. I haven't really had the time to dedicate to learning the syntax of a new language, however. I've heard all about CakePHP though, and am going to start a new project in it over the course of the next few weeks. CakePHP has borrowed the Ruby on Rails MVC structure for coding projects.
http://www.sitepoint.com/article/application-development-cakephp -- The tutorial I'll be following from sitepoint..
http://www.sitepoint.com/article/application-development-cakephp -- The tutorial I'll be following from sitepoint..
Wednesday, September 19, 2007
Laptop for Tim
Dell Inspiron 6400 E1505 Laptop - $350 http://oklahomacity.craigslist.org/sys/424565737.html
HP Pavilion ZE5600 laptop computer 4 sale - $300 http://oklahomacity.craigslist.org/sys/422307713.html
HP Pavilion ZE5600 laptop computer 4 sale - $300 http://oklahomacity.craigslist.org/sys/422307713.html
About me: a powerpoint project for my design class
I think I'm going to start with all the places I've lived. (Google Earth)
San Antonio (Converse)
Waco (Lorena)
Dallas (Mesquite)
San Antonio again (Universal City)finished high school
Austin while finishing up high school)
Oklahoma City
Stillwater
Oklahoma City
San Antonio (Converse)
Waco (Lorena)
Dallas (Mesquite)
San Antonio again (Universal City)finished high school
Austin while finishing up high school)
Oklahoma City
Stillwater
Oklahoma City
new bands to check out:
HIJK - groove jet (new indie electro band..)
Annuals - Carry Around (some pleasant randomness)
Annuals - Carry Around (some pleasant randomness)
Tuesday, September 18, 2007
vmWare workstation VM to vmWare Server
In order to run a virtual machine made by vmware Workstation, you must first make sure the machine is stopped completely (not suspended). Then you must open the virtual machine's image file with vmWare's Converter utility to convert the workstation to a vmWare Server compatible virtual machine image file.
Then the virtual machine should run fine under vmWare's Server platform.
Then the virtual machine should run fine under vmWare's Server platform.
Grouping .Net elements in web forms
Group all elements for account creation together by using each elements group property. This will force the TAB key to go to the next element in the group.
Thursday, September 13, 2007
Wednesday, September 12, 2007
Eclipse switch files
ctrl + f6 or you can change the next editor function's keyboard shortcut to whatever you like..
Window->Preferences->General->Keys and select “Next Editor”.
Now select the text in “Binding” textbox using mouse and do right Click and “Cut”. Now the Binding box would be blank.
Now, press CTRL key and Tab togather and press “OK”.
Window->Preferences->General->Keys and select “Next Editor”.
Now select the text in “Binding” textbox using mouse and do right Click and “Cut”. Now the Binding box would be blank.
Now, press CTRL key and Tab togather and press “OK”.
Friday, September 07, 2007
.Net smtp worker
I started working with an array of custom objects that will each contain information to send to either a cell phone or HTML accessible mail client.. This is going to be the base of the class. Just need to construct the interface for the array of custom objects..
smtp .Net mailer class
I ended up having do some SMTP authentication. In order to do this I had to create a custom Credential Cache object to tie to my SMTPClient object for the email request..
//SMTP CREDENTIAL INFORMATION
//set username and pass for smtp authentications
NetworkCredential netLogin = new NetworkCredential(eMail.SMTPLoginName, eMail.SMTPLoginPassword);
//set authenticated smtp connection network configuration credentials
CredentialCache myCache = new CredentialCache();
myCache.Add(eMail.SMTPServerName, Convert.ToInt16(eMail.SMTPPort), "", netLogin);
//assign custom credentials to this authenticated smtp request
client.Credentials = myCache;
smtp .Net mailer class
I ended up having do some SMTP authentication. In order to do this I had to create a custom Credential Cache object to tie to my SMTPClient object for the email request..
//SMTP CREDENTIAL INFORMATION
//set username and pass for smtp authentications
NetworkCredential netLogin = new NetworkCredential(eMail.SMTPLoginName, eMail.SMTPLoginPassword);
//set authenticated smtp connection network configuration credentials
CredentialCache myCache = new CredentialCache();
myCache.Add(eMail.SMTPServerName, Convert.ToInt16(eMail.SMTPPort), "", netLogin);
//assign custom credentials to this authenticated smtp request
client.Credentials = myCache;
Tuesday, September 04, 2007
Awn: dock for Ubuntu
I was searching for linux terminal screenshots for a Design Project for class and I came across this dock for linux: Awn
LifeHacker
Looks really promising..
LifeHacker
Looks really promising..
Friday, August 31, 2007
Subscribe to:
Posts (Atom)
Twitter Updates
About Me

- Rueben
- I have been working with computers/programming to put myself through college since I graduated high school. I am currently attending Oklahoma State University for bachelors degree in biological sciences. Along with my experience in programming, a degree in biology will allow me to pursue a career in bioinformatics research concerning genetic diseases (i.e. cancer).
Blog Archive
-
▼
2009
(14)
- ► 02/01 - 02/08 (1)
- ► 01/25 - 02/01 (1)
- ► 01/18 - 01/25 (9)
- ► 01/11 - 01/18 (2)
-
►
2008
(35)
- ► 12/28 - 01/04 (8)
- ► 12/21 - 12/28 (4)
- ► 11/30 - 12/07 (1)
- ► 11/16 - 11/23 (1)
- ► 11/09 - 11/16 (2)
- ► 11/02 - 11/09 (2)
- ► 10/26 - 11/02 (2)
- ► 10/19 - 10/26 (7)
- ► 10/12 - 10/19 (3)
- ► 10/05 - 10/12 (4)
- ► 09/28 - 10/05 (1)
-
►
2007
(119)
- ► 11/04 - 11/11 (3)
- ► 10/28 - 11/04 (7)
- ► 10/21 - 10/28 (2)
- ► 10/14 - 10/21 (3)
- ► 10/07 - 10/14 (1)
- ► 09/30 - 10/07 (6)
- ► 09/23 - 09/30 (6)
- ► 09/16 - 09/23 (8)
- ► 09/09 - 09/16 (2)
- ► 09/02 - 09/09 (3)
- ► 08/26 - 09/02 (3)
- ► 08/19 - 08/26 (3)
- ► 08/12 - 08/19 (8)
- ► 08/05 - 08/12 (6)
- ► 07/29 - 08/05 (2)
- ► 07/22 - 07/29 (2)
- ► 07/15 - 07/22 (1)
- ► 07/08 - 07/15 (1)
- ► 07/01 - 07/08 (2)
- ► 06/24 - 07/01 (8)
- ► 06/17 - 06/24 (1)
- ► 06/10 - 06/17 (9)
- ► 06/03 - 06/10 (6)
- ► 05/27 - 06/03 (3)
- ► 05/20 - 05/27 (1)
- ► 05/13 - 05/20 (2)
- ► 05/06 - 05/13 (7)
- ► 04/22 - 04/29 (3)
- ► 04/15 - 04/22 (4)
- ► 04/08 - 04/15 (1)
- ► 04/01 - 04/08 (2)
- ► 03/25 - 04/01 (2)
- ► 03/18 - 03/25 (1)
-
►
2006
(51)
- ► 12/31 - 01/07 (1)
- ► 12/10 - 12/17 (1)
- ► 12/03 - 12/10 (1)
- ► 11/19 - 11/26 (1)
- ► 11/05 - 11/12 (3)
- ► 10/29 - 11/05 (1)
- ► 10/22 - 10/29 (3)
- ► 02/26 - 03/05 (4)
- ► 02/19 - 02/26 (8)
- ► 02/12 - 02/19 (7)
- ► 02/05 - 02/12 (6)
- ► 01/29 - 02/05 (1)
- ► 01/22 - 01/29 (7)
- ► 01/15 - 01/22 (3)
- ► 01/08 - 01/15 (3)
- ► 01/01 - 01/08 (1)
-
►
2005
(100)
- ► 12/25 - 01/01 (8)
- ► 12/18 - 12/25 (11)
- ► 12/11 - 12/18 (7)
- ► 12/04 - 12/11 (5)
- ► 11/27 - 12/04 (5)
- ► 11/20 - 11/27 (6)
- ► 11/13 - 11/20 (2)
- ► 11/06 - 11/13 (3)
- ► 10/23 - 10/30 (1)
- ► 10/16 - 10/23 (1)
- ► 10/09 - 10/16 (2)
- ► 10/02 - 10/09 (1)
- ► 09/25 - 10/02 (1)
- ► 09/18 - 09/25 (1)
- ► 09/11 - 09/18 (1)
- ► 09/04 - 09/11 (1)
- ► 08/28 - 09/04 (4)
- ► 08/21 - 08/28 (3)
- ► 08/14 - 08/21 (5)
- ► 08/07 - 08/14 (10)
- ► 07/31 - 08/07 (20)
- ► 07/24 - 07/31 (2)