RSSFlash is an RSSReader application written in Visual C# 2005. RSSFlash New version 2.36 released. Download NSIS Installable RSSFlash 2.36 executable(stable) It is life time free version including source code. You should have .net 2.0 installed already! This version is specifically created for craigslist users. It has step by step PDF user guide, packed by NSIS packager. It is multi-threaded application. You have the option to check the RSS site very minute or whatever time you like. I suggest you to set this for every minute and get my expected craigslist advertisement. It is a stable version, stress tested for more than 5 days. Suggest me improvement in the comments. Download RSSFlash ...
Successful Interview: How do you make it?
Congratulations! The resume that you spent many hours carefully crafting has resulted in a face-to-face interview at a Company that you are extremely interested in. After the adrenalin rush has worn off, you think “OMG, I have to put together a seminar, make travel arrangements and buy new clothes and shoes (well only if you are a woman)”. Although you may think that the hard part of your job search is over; think again….the fun is just beginning. I had similar tough time in 2003 like what you face now. Since I was strong on my subject - in all possible ...
Is Your Home A Good Investment? – As assets, homes provide only modest annual returns in the long run
As assets, homes provide only modest annual returns in the long run Home prices have fallen 32.2 percent since peaking in the second quarter of 2006, according to the Case-Shiller index (Posted: 05/27/2009 08:24:38 AM PDT)! There's the usual talk about what the latest Case-Shiller house price data mean for the next short term move in the real estate market. Has housing bottomed? If not, has the rate of decline slowed? And when will we see an upturn? Human nature likes the short term. Which is why so little attention is paid to something that is probably more important, if less urgent: What ...
How to come out of Red – Credit Card Trap – Make yourself comfortable life?
As the US struggles with one of its deepest recessions since the 1930s, credit is on everyone’s mind. Mounting layoffs, declining benefits, and depressed assets are leaving people without steady streams of income and forcing them to question how they will pay their bills. Paying by credit card has lost its appeal as consumers worry about getting caught up in a downward spiral of debt. But credit cards aren’t evil in and of themselves. Used responsibly they can become an important spending tool that can also pay you back. Before you can begin putting credit cards to work for you, you ...
How to Set an Oracle Env. variable – ORACLE_HOME?
What is ORACLE_HOME used for? * The ORACLE_HOME is an environment variable which is used to set and define the path of Oracle Home (server) Directory. * The ORACLE_HOME directory will have the sub directories, binaries, executables, programs, scripts, etc. for the Oracle Database. * This directory can be used by any user who wants to use the particular database. * If the ORACLE_HOME variable is defined as an environment variable, then during the installation process, the Oracle Home Path will be set to the directory defined as default. If the variable is not defined, then the Oracle will take its own default location. ...
JiltinSkyBlue 3.0 Professional WordPress Theme
I have released a new widget ready professional theme, tested with wordpress 2.6.2 & 2.7.1 JiltinSkyBlue 3.0. This is an free open source Wordpress theme. Jiltin skyblue Demo Download: JiltinSkyBlue 3.0 WordPress zip Theme Here are some features: - JiltinSkyBlue 3.0 has skyblue background, brighter and good looking color combination. - Sidebar Widget Compatibility: Right-Sidebar of this theme are fully compatible with default Wordpress widgets and can easily customized for compatibility with custom widgets. - Rounded Corners: The theme posts has rounded corners and curvy element edges which gives it a very lustrous design look. - RSS Subscription: JiltinSkyBlue is integrated with popular RSS subscription like Google ...
Standalone Access the Wordpress database using $wpdb
if you wish to access the database from your code file which is not placed inside one of the standard plugin locations, you will need to include_once() the wp-db.php file as well as the wp-config.php file. Including only the wp-db.php file will not set the database connection information resulting in an error message like "Wordpress could not connect to the database". It is always advisable to put your functionality inside a plugin. However, if you need it in some cases, this workaround is available. For example, this is the code in a file has_great_code.php in the root/installation directory : [code lang="php"] include_once('wp-config.php'); include_once('wp-load.php'); include_once('wp-includes/wp-db.php'); [/code] I ...
MySQL
Common MySQL Queries with MySQL 5&6
This is not my own script. I found this very useful from the net and copied here or my reference: Basic aggregation This is the simplest grouping query pattern. For column foo, display the first (smallest), last (largest) or average value of column bar: SELECT foo, MIN(bar) AS bar FROM tbl GROUP BY foo Return the highest bar value for each foo, ordering top to bottom by that value: SELECT foo, MAX(bar) AS Count FROM tbl GROUP BY foo ORDER BY Count DESC; Ditto for AVG(), COUNT() etc. The Read Full Article (Click here)...
MySQL snippets – CREATE TABLE statement sample as bash shell.
The CREATE TABLE statement is used to create a table in MySQL. Syntax: CREATE TABLE table_name ( column_name1 data_type, column_name2 data_type, column_name3 data_type, …. ) sample #!/bin/sh # # Developed by jiltin # Shows all users and the user status # #mysql> desc user_transactions; #+——————+————-+——+—–+——————-+——-+ #| Field Read Full Article (Click here)...
How to install LAMP (Linux, apache, php, mysql) – Blogging – Make It Easy?
How to install LAMP (Linux, apache, php, mysql)? Here is the simple way to create your own LAMP and starting blogging right away. The easiest way to install LAMP using yum program in CentOS. Below are the steps to install LAMP (Apache, PHP and MySQL in Linux) using Yum:- * Go to CentOS and download a copy of CentOS Linux and install it (I will not go thru the how to install CentOS with you here – ) * Once your CentOS is installed. Open a terminal (if you are using X-Window), and type Read Full Article (Click here)...
PHP MySQL example: image gallery (blob-storage) – Source anyexample.com
I wanted to store an image in mysql tables. Just googled, and got a working example from anyexample.com. A minor change is required for the script. Instead of echo "<a href=’{$PHP_SELF}?show={$id}’>{$title}</a> – "; it should be echo "<a href=" . $PHP_SELF . "?show={$id}’>{$title}</a> – "; Here is the script details reproduced from original page: This is a simple example of photo-gallery Read Full Article (Click here)...
Regular Expression with MySQL – A very cool and powerful capability
A very cool and powerful capability in MySQL and other databases is the ability to incorporate regular expression syntax when selecting data. The regular expresion support in MySQL is extensive. This recipe reviews regular expression use in MySQL and lists the supported regular expression metacharacters. The basic syntax to use regular expressions in a MySQL query is: SELECT something FROM TABLE WHERE COLUMN REGEXP ‘regexp’ SELECT post_content FROM wp_posts WHERE post_content Read Full Article (Click here)...
