We are always excited when a new product, a brand that I have tested before. It has new features, and performance that is a top notch product above all the other products I have seen so far. With an integrated Blu-ray and rack to install an internal hard drive, the M3 possibilities are almost endless. Based on Sigma Design SMP8642 processor, you could say that swallows everything. Among its features, HDMI 1.3 output, MKV file support, BD ISO, Xvid, VC-1, WMV, etc and fully compatible with Dolby TrueHD, DTS HD or Dolby TrueHD. N3 achieve ultra-sharp high-definition perfect visual combination ...
HDVision N3 Media Player Review: Blu-Ray ROM with Hard Disk, 7.1 Audio, Multifunctional Full HD (1080p)
Multiuser Phone Book system – Open Source – My First Release in PHP
I find it difficult to track my phone numbers as it is getting complex list. When I try my iphone, I find it difficult to get the right person as it contains one time occasional contacts, regular contacts and work related folks! It ran into 300+ entries. Some of them, it is hard even to find when it is needed. Hence, I started to write a small project in php and this is my first release on that. It will be revised further until I find a good standalone application. I tried to have it global and multiuser ...
ThanksGiving Sale Advertisement – 20 Companies downloadable PDF & ZIP files.
======================================== Black Friday Store Ads 2009 (ZIP format) ======================================== Download Best_buy_2009.zip Download Officemax_2009_rumor.zip Download Craft_warehouse_2009.zip Download Gander_mountain_2009.zip Download Kmart_2009.zip Download Ace_hardware_2009.zip Download Home_depot_2009.zip Download Kohls_2009.zip Download Jcpenney_2009.zip Download Harbor_freight_2009.zip Download Northern_tool_2009.zip Download Babiesrus_2009.zip Download Toysrus_2009.zip Download Staples_2009.zip Download Office_depot_2009_.zip Download Sears_2009.zip Download Old_navy_2009.zip Download Target_2009.zip Download Costco_2009.zip Download Radioshack_2009.zip ======================================== Black Friday Store Ads 2009 (PDF format) ======================================== Download Best_buy_2009.pdf Download Officemax_2009_rumor.pdf Download Craft_warehouse_2009.pdf Download Gander_mountain_2009.pdf Download Kmart_2009.pdf Download Ace_hardware_2009.pdf Download Home_depot_2009.pdf Download Kohls_2009.pdf Download Jcpenney_2009.pdf Download ...
Wordpress Firestats Tips & Tricks: How Do I Find What Searches Are Made On The Post?
I have been analyzing the firestats data to extract the searches made on the internet that lead to my blog postings. It is excellent that firestats plugin records all the searches and the connected postings. Here are my findings Firestats Hits are stored in a table wp_firestats_hits and the urls, search phrases are stored in wp_firestats_urls. I just combined these tables along with wp_firestats_useragents to get the summary table called search_summary. Here is the simple query. SELECT distinct referers.search_terms, reverse( replace(substr(REVERSE(urls.url),LOCATE('/',REVERSE(urls.url),1),LOCATE('/',REVERSE(urls.url),2)),'/','') ) post_name, urls.url as url, urls.title as title FROM wp_firestats_hits AS hits, wp_firestats_useragents AS agents, wp_firestats_urls AS urls, wp_firestats_urls AS referers WHERE hits.useragent_id = agents.id AND hits.url_id = urls.id ...
US Health Insurance Policy, Government Regulations, Benefit, You Need to Know
This is mainly for US based people, it came in many newspapers. Just reproduced to know what they are getting benefit and how. NEW YORK: At a recent town hall meeting, a man stood up and told Rep. Bob Inglis to ''keep your government hands off my Medicare.'' The congressman, a Republican from South Carolina, tried to explain that Medicare is already a government program — but the voter, Inglis said, ''wasn't having any of it.'' It's a funny story — but it illustrates the extent to which health reform must climb a wall of misinformation. It's not just that many Americans ...
RSSFlash Version 2.36 is released
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 ...
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 ...
How to set up SSH & SSH Trust for the beginners?
Introduction: This is a minimal set of instructions to get a beginner going with ssh2, in particular the client version of OpenSSH which comes on Linux distributions or on Windows via Cygwin. I’ve included a section to help you connect to machines which are not running OpenSSH but some commercial ssh. Since it covers both Linux and Windows it reflects the author’s bias and takes a command line approach: it assumes some knowledge of typing things at a command prompt (e.g., the Read Full Article (Click here)...
How to setup Password-less SSH Login – Linux / Unix?
Many times, in my company, I have the need to establish trust relationships between Linux / Unix boxes so that I can script file transfers. In short, here’s how you leverage SSH to do that. Using the example of trying to connect from server ‘destination server’ to get a file on ‘source server’ follow this example: 1. Connect to destination server 2. type: ssh-keygen -t rsa * default directory for keyfiles will be ~/.ssh/ * if you do not want to be prompted, Read Full Article (Click here)...
What is SSH? How does it work? Your complete Guide with Simple Practical Solution – Linux / Unix / Windows.
I was reluctant to squeeze my mind to understand the nuance of SSH trust key setup until now. Yesterday, forced to learn during our go-live, I had the 12 hours experience with SSH Trust keys and I am sharing the experience. Unlike my old thought, this is not complex or arcane secret, but a simple and straightforward solution. To simplify the concept, here is the analogy using Post Box (Mail box) and Bank Locker (or lock box or safe box): What is SSH? How does it work? – Analogy / Public Read Full Article (Click here)...
How To Create Ssh Trust Connection Between Servers Or Client-Server To Connect Without Password?
SSH can give you authenticated and encrypted connections to remote computers. If you set up keys you can make these connections without passwords. 1. Generate a public and private key pair on the machine from where you want to login to other machines. For SSH1: # ssh-keygen -t rsa1 For SSH2 (Recommended): # ssh-keygen -t dsa You will be prompted for a file in which the key and a passphrase will be saved. You may press Enter through each of these prompts. If you do so, the key generation Read Full Article (Click here)...
