Forgot your password?
typodupeerror
User Journal

Journal Journal: emacs init

(setq database "cclsdb")

(defalias 'exec-comdb2-sql
(read-kbd-macro (concat "ESC | /bbcm/ts/portApps/servers/ccls/scripts/sql.sh SPC SPC -db=" database " SPC SPC ")))

(defun exec-req-on-region (serviceid client request &optional machine)
"execute on the region"
(interactive)
(write-region (point) (mark) "~/bas_request.xml")
(exec-request-on-buffer)
)

User Journal

Journal Journal: trini sites

http://www.triniscene.com/index_cp.php
http://www.nycaribbeanvibes.com/
http://www.carnivalpower.com/
http://www.carnivalscene.com/
http://www.trinijunglejuice.com/junglejuice.html

User Journal

Journal Journal: I don't want to grow up

"I don't want to grow up
All my friends think I'm strange
I don't want to get older
Because that's when things change"

User Journal

Journal Journal: Just Finished "The Intelligent Investor"

Very illuminating. An apocalyptic work on investing in general and value investing or the concept of "Margin of Safety" and its meaning. I feel as if this is only the beginning however and will endeavor to understand more about security analysis with a focus on common stock purchases. After reading "How to Read a Book" however I know I still have to revisit the last chapters of Graham's work and analyze them.

User Journal

Journal Journal: sqlplus prompt

define gname = 'not connected'
column global_name new_value gname
set termout off
select lower(user) || '@' || replace(global_name,'.WORLD',null) global_name
from global_name;
set termout on
set sqlprompt '&&gname> '

User Journal

Journal Journal: starting an oracle server

login as oracle
. ./oraenv
lsnrctl
LSNRCTL> start
LSNRCTL> quit
sqlplus /nolog
SQL> CONNECT / AS SYSDBA
SQL> startup
SQL> quit

User Journal

Journal Journal: Car donation

Intitute of Humanities Automobile Donation

800-263-3102

User Journal

Journal Journal: sqlplus tricks

set the column width: col <column name>: format a20
set the page length: set pagesize 120
set the page width: set linesize 120
User Journal

Journal Journal: myPgAdmin

What an adventure.

This app needed the latest version of PHP to be built with:
./configure --with-apxs2=/usr/sbin/apxs --with-pgsql
make
make install

I then modified /etc/httpd/conf.d/php.conf with:
LoadModule php5_module modules/libphp5.so

User Journal

Journal Journal: my subversion adventures

As root I ran:
cd /home/svn
svnadmin create jmf

to create a repository.

Then as francoisa I ran:
svn import website svn+ssh://localhost/home/svn/jmf -m "a business process management system."
to import my project

Then I ran:
svn co svn://localhost/jmf
at an empty directory to create a sandbox.

Slashdot Top Deals

Consultants are mystical people who ask a company for a number and then give it back to them.

Working...