| thing type | thing |
| URL |
S3 clone Park Place | http://code.whytheluckystiff.net/parkplace
Created by: alive88 10:24 PM August 31 2007 |
| JOURNAL ENTRY |
Zettabytehttp://aws.typepad.com/aws/2006/10/zettabyte_stora.html
Created by: alive88 10:16 PM August 31 2007 |
| JOURNAL ENTRY |
online backup
Created by: alive88 10:12 PM August 31 2007 |
| TASK |
research thunderbird image downsampling addinresearch thunderbird image downsampling addin
Created by: alive88 01:39 PM August 31 2007 |
| URL |
PHP S3 Class | http://neurofuzzy.net/2006/08/26/amazon-s3-php-class-update/
Created by: alive88 12:51 PM August 29 2007 |
| URL |
Athiest Blog | http://atheistmedia.blogspot.com/
Created by: alive88 12:39 PM August 29 2007 |
| Blog Track Back |
technical notes for S3 integrationhttp://www.davidgalbraith.org/archives/001293.html
Created by: alive88 09:49 AM August 29 2007 |
| JOURNAL ENTRY |
Notes -Global Competitiveness Report http://www.weforum.org/en/initiatives/gcp/Global%20Competitiveness%20Report/index.htm http://blogs.motorola.com/author/padmasree-warrior/default.asp?item=669893 "Singapore is ranked 5th (and ahead of the US) in the global competitive index report from the World Economic Forum. In my view, Singapore is one of the most business friendly economies in the world. for Singapore to lead in such as biotech, media apps etc"
Created by: alive88 08:43 AM August 29 2007 |
| JOURNAL ENTRY |
Old News now - but JamStix 2 is out.www.rayzoon.com
Created by: alive88 08:40 AM August 29 2007 |
| URL |
Virtualization | http://www.virtualbox.org/
Created by: alive88 02:22 PM August 26 2007 |
| URL |
Open Source DAW | http://traverso-daw.org/
Created by: alive88 02:17 PM August 26 2007 |
| URL |
Money for community news innovation | http://www.smartmobs.com/2007/08/20/knight-news-challenge/
Created by: alive88 12:59 AM August 24 2007 |
| URL |
Realtime Online | http://llcon.sourceforge.net/
Created by: alive88 12:38 AM August 24 2007 |
| URL |
PHPBB | http://www.phpbb.com/
Created by: alive88 12:26 AM August 24 2007 |
| URL |
captcha | http://recaptcha.net/
Created by: alive88 11:16 AM August 23 2007 |
| URL |
Thoughts on the Social Graph | http://bradfitz.com/social-graph-problem/
Created by: alive88 09:19 PM August 19 2007 |
| URL |
Videos that Change | http://www.squidoo.com/videosthatchange/
Created by: alive88 09:20 PM August 16 2007 |
| URL |
paypal integration | http://paypaltech.com/SG2/
Created by: alive88 01:19 PM August 15 2007 |
| JOURNAL ENTRY |
Facebook IMThe world does not need another IM. But do need to be building tools to better take advantage of the world around us. Jabber - is going to rise significantly as the IM platform. Jabber clients will be able to traverse (for messaging) all networks, and clients can be built to offer specific functionality and interoperability across specific networks. Example: Google Talk. (I am assuming Google Talk has features specific to just google talk in terms of network features and client capabilities). Facebook. How do we build a facebook IM? (1) Allow users to profile their networks, and select preferences for services for messaging. ie MSN. or Jabber. (2) Facebook Users synchronize their IM clients with facebook (social network et al) w/ their online rosters - adding their friends according to their transport preferences. (3) This will require a server component, facebook application and client plugin. Facebook application will organize roster and IM preferences. IM Client Plugin, will retrieve the facebook roster and update roster list as appropriate - adding and deleting as appropriate.
Created by: alive88 01:17 PM August 15 2007 |
| JOURNAL ENTRY |
Voicemail to Blog Enginelooking for a voicemail for (micro)blog engine.
Created by: alive88 12:33 PM August 15 2007 |
| URL |
Anybots | http://anybots.com/
Created by: alive88 01:01 PM August 13 2007 |
| JOURNAL ENTRY |
(parent) Installing FreeRadiusFreeRadius Installationhttp://ubuntuforums.org/showthread.php?t=151781sudo apt-get install freeradius freeradius-mysql freeradius-dialupadmin Basic Configurationnano /etc/raddb/clients.conf It's best to start with a simple config using the standard text files, if only to test that FreeRADIUS is correctly installed and works.
At this point you should be able to manually fire up /usr/sbin/radiusd. You should do this with the debug turned on so you can see what happens: /usr/sbin/radiusd -X
You should now be able to use FreeRadius. You can use radtest to test an account from the command line: radtest username password servername port secret
radtest fred wilma radius.domain.com 1645 mysecret
Sending Access-Request of id 226 to 127.0.0.1:1645 rad_recv : Access-Accept packet from host 127.0.0.1:1645,id=226, length=56
If you have a Windows PC handy you may also wish to use NTradPing (downloadable from MasterSoft) to send test packets instead of radtest. If you do this, or test from any other machine, remember your PC (or other machine) needs to be in your NAS list in clients.conf too! OK, so at this point you should have text-file authentication working in FreeRadius...
Created by: alive88 04:54 AM August 9 2007 |
| JOURNAL ENTRY |
(parent) Installing Ubuntu ServerHere are my notes: Links www.ubuntu.com http://www.howtoforge.com/perfect_setup_ubuntu704 Procedure install ubuntu 7.04 install SSH sudo apt-get install openssh-server update applicationssudo apt-get update sudo apt-get upgrade NOT SURE ABOUTapt-get install mysql-server mysql-client libmysqlclient15-dev Synchonize the System Clocksudo apt-get install ntp ntpdate Installing the server applicationshttps://help.ubuntu.com/7.04/server/C/MySQLsudo apt-get install mysql-server mysql-client Once the installation is complete, the MySQL server should be started automatically. You can run the following command from a terminal prompt to check whether the MySQL server is running:sudo netstat -tap | grep mysql When you run this command, you should see the following line or something similar:tcp 0 0 localhost.localdomain:mysql *:* LISTEN - If the server is not running correctly, you can type the following command to start it:sudo /etc/init.d/mysql restart ConfigurationBy default, the administrator password is not set. Once you install MySQL, the first thing you must do is to configure the MySQL administrator password. To do this, run the following commands:sudo mysqladmin -u root password newrootsqlpassword sudo mysqladmin -p -u root -h localhost password newrootsqlpassword *** Need instructions on how to change admin password *** You can edit the /etc/mysql/my.cnf file to configure the basic settings -- log file, port number, etc. Refer to /etc/mysql/my.cnf file for more details.Installing SAMBANot sure why we want SAMBA.At the prompt enter the following command to install the SAMBA server applications: sudo apt-get install samba To mount Windows filesystems using SMB, you will also need smbfs. Enter the command:sudo apt-get install smbfs
Created by: alive88 12:00 AM August 6 2007 |
| JOURNAL ENTRY |
(parent) Installing ChillispotChilliSpotsudo apt-get install chillispot
Created by: alive88 04:55 AM August 9 2007 |
| JOURNAL ENTRY |
(parent) Installing WebminNotes for installing webmin
Created by: alive88 02:12 PM August 8 2007 |
| JOURNAL ENTRY |
(parent) Configuring FTPFTP ServicesLinkshttps://help.ubuntu.com/7.04/server/C/ftp-server.html vsftpd - FTP Server Installation vsftpd is an FTP daemon available in Ubuntu. It is easy to install, set up, and maintain. To install vsftpd you can run the following command: sudo apt-get install vsftpd vsftpd - FTP Server ConfigurationYou can edit the vsftpd configuration file, /etc/vsftpd.conf, to change the default settings. nano /etc/vsftpd.conf By default only anonymous FTP is allowed. If you wish to disable this option, you should change the following line:anonymous_enable=YES #local_enable=YES By default, users are allowed to download files from FTP server. They are not allowed to upload files to FTP server. To change this setting, you should uncomment the following line:#write_enable=YES Similarly, by default, the anonymous users are not allowed to upload files to FTP server. To change this setting, you should uncomment the following line:#anon_upload_enable=YES The configuration file consists of many configuration parameters. The information about each parameter is available in the configuration file. Alternatively, you can refer to the man page, man 5 vsftpd.conf for details of each parameter. Once you configure vsftpd you can start the daemon. You can run following command to run the vsftpd daemon: sudo /etc/init.d/vsftpd start
Created by: alive88 01:45 PM August 8 2007 |
| JOURNAL ENTRY |
(parent) Configuring ApacheLinks https://help.ubuntu.com/7.04/server/C/httpd.html ApacheEditing the default websitenano /etc/apache2/sites-available/default. Default Directivessample config data here Creating a new websitesudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/mynewsite Enable Sitesudo a2ensite mynewsite
Created by: alive88 01:33 PM August 8 2007 |
| URL |
Training Resource Development | http://www.niit.com
Created by: alive88 10:08 AM August 7 2007 |
| TASK |
(parent) Ad Engine....move the ad engine to ALL SPORTICUS SITES TO DO... site
Created by: alive88 07:00 PM August 5 2007 |