PostgreSQL – Dump and Restore

2008-06-232008-06-23T20:24:18ZY-m-d">June 23, 20082008-06-23T20:24:18ZF j, Y

To dump data from a postgreSQL database you can use the pg_dump command as follows
pg_dump database > file.sql

 

To restore that data you can execute the following command
psql -d database -f file.sql -U db_username

0 comments Read the full article →

Sony VGN-SZ780 Laptop Review

2008-06-222008-06-22T12:48:22ZY-m-d">June 22, 20082008-06-22T12:48:22ZF j, Y

Recently I purchased a Sony VGN-SZ780 Laptop, as I haven’t had a working computer for close to a year now. Previously I managed to get by using my roomate’s laptop and the desktop at my research lab. My roommate had a sony SZ330 I believe with Windows XP (32-bit), it worked quite nicely once I [...]

12 comments Read the full article →

Disable Full Row Select In Windows Vista

2008-05-292008-05-29T22:59:16ZY-m-d">May 29, 20082008-05-29T22:59:16ZF j, Y

Vista, is just so unreliable. Until I can put Ubuntu or XP back on my laptop, I can atleast make Vista work a little better for me. First thing to go is the full row select in folders. I only want to select a file if I click on it in the name column, not [...]

0 comments Read the full article →

Fix Imeem Playlist Issues

2008-04-242008-04-25T03:31:18ZY-m-d">April 24, 20082008-04-25T03:31:18ZF j, Y

Problem: Playlists on imeem.com will not go onto the next song. The playlist will load and play a song, but as soon as that song is over, the next song will not automatically play.
Causes: Adobe Flash, Adblock Plus
Solution:

Upgrade to the latest version of Adobe Flash
If you are using Adblock, try adding the following filter rules

@@http://ads.imeem.com/ads/amf/
@@http://ads.imeem.com/crossdomain.xml

Worked [...]

1 comment Read the full article →

Hacking Wireless Keys – WEP

2008-04-212008-04-21T09:44:43ZY-m-d">April 21, 20082008-04-21T09:44:43ZF j, Y

Disclaimer: This is for Educational purposes only. I am not responsible for how you or anyone else uses the following information. Check the laws in your country.
In order to hack a wireless network secured with WEP you will need a few tools:

A wireless card that can go into monitor mode (I have an Intel PRO/Wireless [...]

11 comments Read the full article →

Get Free Real-Time Streaming Quotes

2008-03-262008-03-26T04:44:06ZY-m-d">March 26, 20082008-03-26T04:44:06ZF j, Y

Disclaimer: This is for Educational purposes only. I am not responsible for how you or anyone else uses the following information.
Dilemma: Need real-time streaming quotes to load into my own stock analyzer application so that I can back test strategies. There are a few services out there that will give you streaming quotes for [...]

7 comments Read the full article →

Referencing Stored Data in The Same Table

2008-03-202008-03-20T08:56:51ZY-m-d">March 20, 20082008-03-20T08:56:51ZF j, Y

Dilemma: I need to store restaurants in a database and then group certain restaurants together. For example: I have restaurants: 1,2,3,4,5.  I want to say that 1 & 2 are in group Atlanta, 3,4 in group New York, and 5 in group San Francisco. I also want to create a group called East Coast that [...]

0 comments Read the full article →