CryoPID was spawned out of a discussion on the Software suspend mailing list about the complexities of suspending and resuming individual processes.
More @ cryopid
CryoPID was spawned out of a discussion on the Software suspend mailing list about the complexities of suspending and resuming individual processes.
By: Parth Barot @ 10:18 AM 0 Comments
Categories: Goodies, Home Entertainment, Internet, News, Video
By: Parth Barot @ 2:32 PM 0 Comments
Categories: Goodies, hack, Internet, Programming, Reviews, Security, Software
It’s a software application that you install on your computer and helps you get free WiFi access all around the world.
Additionally it offers a range of tools and services that will take your wireless experience to a new level.
The Whisher network is powered by users sharing their WiFi.
All WiFi networks registered through Whisher are protected and the owners (sharers) have full control on who and when can access them.
By: Parth Barot @ 10:51 AM 0 Comments
Categories: Goodies, Internet, News, Reviews, Software, Technology
By: Parth Barot @ 11:27 AM 0 Comments
Categories: Camera, Goodies, Home Entertainment, News, Reviews
A collection of 24 FAQs on MySQL transaction management. Clear answers are provided with tutorial exercises on starting and ending transactions; committing and rolling back transactions; transaction isolation levels: read committed and repeatable read; locks and dead locks. Topics included in this FAQ are:
Please note that all answers and tutorials are based on MySQL 5.0 with transaction-safe storage engines, like InnoDB. Sometimes you may need to run previous tutorials in order to continue a later tutorial.
Full article @ fyicenter.com
When purchasing an ASUS motherboard, consumers are not just paying for a brand name. ASUS' build quality is excellent and more often than not, the overall package and bundled features are also very valuable. Recently however we were let down by an overrated and overpriced ASUS product that did nothing else but sell a brand name. That product is no other than ASUS' flagship Striker Extreme. This member of the “Republic of Gamers” costs a crazy $400, making it nearly untouchable to the real gaming and enthusiast crowd.
Out of all the new nForce 6-series chipsets, this is easily the smartest option for those that are seeking SLI support on the Core 2 Duo platform without all the extravagant options. Performance-wise the 650i SLI is every bit as good as the 680i SLI, so why does the P5N-E SLI cost just $140 when the competing ASUS 680i SLI board costs $270?
Source:techspot.com
The new Intel Xeon 45nm microprocessor for dual-socket applications based on the core that Intel calls Penryn will be drop-in compatible with the company’s contemporary Intel 5000-series core-logic sets (code-named Bensley and Glidewell platforms), however, there will be an improved version of the Intel 5000-series chipset aimed at HPC/WS market segments that features 1600MHz processor system bus (PSB) coming in the second half of the year to support higher-performance Xeon “Clovertown” chips with operation at 3GHz.
Access to MySQL is a small program that will convert Microsoft Access Databases to MySQL.
yes, google talk can be used on your pc with any chat client which supports jabber protocol.You need to set following settings in jabber connection settings.
By: Parth Barot @ 11:31 AM 0 Comments
Categories: Bluetooth, Cell phones, Goodies, hack, News, Reviews, Security
Free Easy CD DVD Burner enables you to burn data CDs and DVDs, as well as Audio CDs. It can automatically convert your media files (WAV, WMA, MP3, OGG, FLAC, AAC, M4A) to standard CD format that can be played in any CD player, and also burn discs from image (.iso) files. In addition to CD/DVD burning, the program also includes a CD ripper to extract songs from an Audio CD, gather track information from CDDB and save them as MP3 or WAV files to your hard drive. Other features include BurnProof and multi-session support, erase media, ID3 tagging and more. Free Easy CD DVD Burner supports dual-layer DVD, CD-R, CD-RW, DVD-R, DVD+R, DVD-RW, DVD+RW.
Pros: Supports Audio and Data CDs as well as DVDs
Cons: No data verification; projects cannot be saved; cannot create bootable CDs
Home Page: http://www.koyotesoft.com
All versions of the PortableApps Suite include the integrated PortableApps Menu (pictured at right) and the PortableApps Backup utility along with a set of custom icons, an autoplay configuration, folders and a quick start shortcut. In addition, the packages include:
PortableApps Suite (Standard Edition): ClamWin Portable (antivirus), Mozilla Firefox - Portable Edition (web browser), Gaim Portable (instant messaging), OpenOffice.org PortableSudoku Portable (puzzle game), Mozilla Sunbird - Portable Edition (calendar/task manager) and Mozilla Thunderbird - Portable Edition (email client) and runs comfortably from a 512MB drive. (office suite),
PortableApps Suite (Lite Edition): Uses AbiWord Portable (word processor) instead of OpenOffice.org Portable and runs comfortably from a 256MB drive.
PortableApps Suite (Base Edition): If you'd like to pick and choose exactly which apps to include, you can try Portable Apps Suite (Base Edition). This is a stripped down package with just the PortableApps Menu, PortableApps Backup utility and custom folders, icons and autorun. It's less than 1MB installed, so it's a great option for smaller drives.
HomePage: PortableApps.com
By: Parth Barot @ 10:26 AM 0 Comments
Categories: Ajax, Goodies, Internet, Javascript, News, Programming
This guide will show you how to create high-quality standards-compliant H.264/AVC/AAC/MP4 copies of your DVD movies for your own personal use.
By: Parth Barot @ 10:30 AM 0 Comments
Categories: Audio, CD, DVD, Goodies, Home Entertainment, Software, Tutorials, Video
USE master
GO
-- the original database (use 'SET @DB = NULL' to disable backup)
DECLARE @DB varchar(200)
SET @DB = 'PcTopp'
-- the backup filename
DECLARE @BackupFile varchar(2000)
SET @BackupFile = 'c:\pctopp\sqlserver\backup.dat'
-- the new database name
DECLARE @TestDB varchar(200)
SET @TestDB = 'TestDB'
-- the new database files without .mdf/.ldf
DECLARE @RestoreFile varchar(2000)
SET @RestoreFile = 'c:\pctopp\sqlserver\backup'
-- ****************************************************************
-- no change below this line
-- ****************************************************************
DECLARE @query varchar(2000)
DECLARE @DataFile varchar(2000)
SET @DataFile = @RestoreFile + '.mdf'
DECLARE @LogFile varchar(2000)
SET @LogFile = @RestoreFile + '.ldf'
IF @DB IS NOT NULL
BEGIN
SET @query = 'BACKUP DATABASE ' + @DB + ' TO DISK = ' + QUOTENAME(@BackupFile, '''')
EXEC (@query)
END
-- RESTORE FILELISTONLY FROM DISK = 'C:\temp\backup.dat'
-- RESTORE HEADERONLY FROM DISK = 'C:\temp\backup.dat'
-- RESTORE LABELONLY FROM DISK = 'C:\temp\backup.dat'
-- RESTORE VERIFYONLY FROM DISK = 'C:\temp\backup.dat'
IF EXISTS(SELECT * FROM sysdatabases WHERE name = @TestDB)
BEGIN
SET @query = 'DROP DATABASE ' + @TestDB
EXEC (@query)
END
RESTORE HEADERONLY FROM DISK = @BackupFile
DECLARE @File int
SET @File = @@ROWCOUNT
DECLARE @Data varchar(500)
DECLARE @Log varchar(500)
SET @query = 'RESTORE FILELISTONLY FROM DISK = ' + QUOTENAME(@BackupFile , '''')
CREATE TABLE #restoretemp
(
LogicalName varchar(500),
PhysicalName varchar(500),
type varchar(10),
FilegroupName varchar(200),
size int,
maxsize bigint
)
INSERT #restoretemp EXEC (@query)
SELECT @Data = LogicalName FROM #restoretemp WHERE type = 'D'
SELECT @Log = LogicalName FROM #restoretemp WHERE type = 'L'
PRINT @Data
PRINT @Log
TRUNCATE TABLE #restoretemp
DROP TABLE #restoretemp
IF @File > 0
BEGIN
SET @query = 'RESTORE DATABASE ' + @TestDB + ' FROM DISK = ' + QUOTENAME(@BackupFile, '''') +
' WITH MOVE ' + QUOTENAME(@Data, '''') + ' TO ' + QUOTENAME(@DataFile, '''') + ', MOVE ' +
QUOTENAME(@Log, '''') + ' TO ' + QUOTENAME(@LogFile, '''') + ', FILE = ' + CONVERT(varchar, @File)
EXEC (@query)
END
GO
------------------------------------------------------------------------------------------------
List of firewalls and BroadBand routers for different distributions
Convert video to iPod MP4 using MPEG StreamClip
This guide will show you the basic step how to convert video(MOV, AVI, MPG, TS, VOB, DV) to iPod mp4 format using free tools.
Tools required:
QuickTime Pro($30) or Quicktime Alternative(free)
MPEG StreamClip
Full Guide @ Here
By: Parth Barot @ 10:57 AM 0 Comments
Categories: CD, DVD, Goodies, Home Entertainment, Tutorials, Video
By: Parth Barot @ 10:53 AM 0 Comments
Categories: CD, DVD, Home Entertainment, News, Reviews, Software, Video
By: Parth Barot @ 11:46 AM 0 Comments
Categories: Database, Goodies, Javascript, Programming, Tutorials
Last December, a hacker named “Muslix64” circumvented HD DVD copy protection, resulting in the release of pirated copies on the Internet. Less than one month later, the same Muslix64, with the help of another hacker, was able to crack the encryption on Blu-ray Discs.
On Sunday, another Doom9 forum poster named “arnezami” presented the next great breakthrough in HD DVD and Blu-ray Disc decryption. Previously, every HD movie needed its own unique key in order to be decrypted; but with arnezami’s discovery, there is one key to rule them all -- at least for now, until the Advanced Access Content System Licensing Administrator gets on it.
What arnezami found was the Processing Key, which appears to be the silver bullet in decrypting all existing HD DVD and Blu-ray Discs. Arnezami was armed only with an Xbox 360 HD DVD player and the bundled King Kong movie. Other Doom9 forum contributors posted their keys to HD DVD movies such as The Departed and Spy Game, which were proved decryptable using the Processing Key.
Figuring that the copy protection schemes on Blu-ray Disc are similar to HD DVD, other posters reported data from Talladega Nights and House of Flying Daggers, which were also decrypted using the Processing Key found from King Kong.
Source: DailyTech