Corsair Force Series 3 60GB SSD Locking / Freezing Problems

August 17, 2011

With the recent problems with part of the Force 3 120GB line of Solid State drives, it seems that the 60GB models are problematic too suffering in much the same way, despite Corsair claiming that the other models aren’t affected.

After reading Corsair’s responses on their forums and the lack of real solutions to the problem, with the exception of some rather poor firmware with no changelog that is problematic to update, I’ve gone straight back to eBuyer in the hope of a refund.

Anybody else got anything to weigh in regarding this situation?

0

Worth-See Ray Tracing Videos

August 9, 2011

Animated Sparse Voxel Octrees: In-depth pt1/3

Animated Sparse Voxel Octrees: In-depth pt2/3

Animated Sparse Voxel Octrees: In-depth pt3/3

Interactive Indirect Illumination Using Voxel Cone Tracing

0

Batch PNGOut File Compressor

July 7, 2011

This is a batch file I wrote to handle the compression directories full of PNG files using Ken Silverman’s amazing PNGOUT tool.

Bear in mind that this isn’t exactly a replacement for PNGOUTWin which supports asynchronous file compression taking advantage of multiple cores, this is merely a batch file that recursively navigates through a given directory and throws all PNGs one at a time at PNGOUT.

Output example:

Output for D:\Images\ for 88 files
1252 kb before
922 kb after
saving a total of 330 kb (26%)
Press any key to continue . . .

Instructions:

  1. Download Ken Silverman’s command line PNGOUT tool (as provided in the link)
  2. Set the path for the pngo variable in the batch file
  3. Run the batch file simply like so
    • pngout-batch “D:\Images\”
  4. Optional: Create a shortcut to the batch file and place it in your SendTo folder for your user account for the sake of convenience
    • Windows XP
      • C:\Documents and Settings\<username>\SendTo
    • Windows Vista / 7
      • C:\Users\<username>\AppData\Roaming\Microsoft\Windows\SendTo

Here is a preview of the batch file or you can download the batch file itself at the bottom of the post.

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: PNGOut Compressor Batch File v1.0
:: 
:: Author: Terry J. Butler
:: Website: http://www.terrybutler.co.uk/
:: Post URI: http://www.terrybutler.co.uk/2011/07/07/batch-pngout-file-compressor/
:::READ ME::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Distribute this batch file as you'd like but I ask that you please leave this 
:: commented header section intact.
:: If you want to modify this batch file, I ask that you give credit where credit 
:: is due.
:: 
:: Thanks to Ken Silverman for the fantastic PNGOut. Nothing compares to it.
:: You'll need to download it from http://advsys.net/ken/utils.htm, place it  
:: somewhere convenient and change the path to it for the 'pngo' variable under the
:: "CONFIGURATION" header
::
:: Thanks to the NT reference at SS64.com (http://ss64.com/nt/) for an incredible 
:: wealth of information that helped shape this batch file
:: 
:: Head to the link in the Post URI above for further details on how to use.
:::CHANGE LOG:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: v1.0
:: - Initial Release
::
:::CONFIGURATION::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Set this path to the locaation of your pngout.exe file
SET pngo="D:\tools\pngout.exe" 
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 
@echo off
 
:: Setting EnabledDelayedExpansion will cause each variable to be expanded at execution 
:: time rather than at parse time. EnableDelayedExpansion is Disabled by default.
setLocal EnableDelayedExpansion
 
:: set some arithmetic capable variables
set /a value=0
set /a sum=0
set /a sumOriginal=0
set /a count=0
set /a diff=0
set /a diffPercent=0
 
pushd %1
 
	FOR /R %%G IN (*.png) DO (
		echo Now Compressing %%G 
 
		set /a value=%%~zG
		set /a sum=!sum!+!value!	
		set /a count+=1
		%pngo% "%%G"
	)
 
	set /a sumOriginal=sum/1024
 
	set /a value=0
	set /a sum=0
 
	FOR /R %%G IN (*.png) DO (
		set /a value=%%~zG
		set /a sum=!sum!+!value!	
	)
 
	set /a sum=sum/1024	
	set /a diff=!sumOriginal!-!sum!	
	set /a diffPercent=(100*(!sumOriginal!-!sum!))/!sumOriginal!;	
 
	@echo Output for %CD% for %count% files
	@echo !sumOriginal! kb before
	@echo !sum! kb after	
 
	@echo saving a total of !diff! kb (!diffPercent!%% decrease)
 
popd
 
:: Unset variables
SET _value=
SET _sum=
SET _sumOriginal=
SET _count=
SET _diff=
SET _diffPercent=
 
pause

Download pngout-batch.bat

4

MOD Monday #84

April 11, 2011

This is “Gilligan” by Deathjester (Joey Jaime).

Download MP3
Download MOD

0

Forecast: April-May 2011

April 10, 2011

Up until the end of May, I wanted to open source some more projects, namely my Doom Engine WAD Reader and Extractor, an application that can open WAD files and view as well as extract the files inside, and a unified Heroes of Might and Magic I, II and III reader and extractor.

I’m probably going to open two Sourceforge projects for the Doom reader, one for the Framework and one for the application that uses the framework.

With the Unified Heroes Reader, I’m probably going to create separate Heroes1, Heroes2 and Heroes3 frameworks on sourceforge as well as a main application project.

I will also endeavour to catch up on the MOD Monday situation as ever. Easier said than done if you just aren’t coming across enough songs to post!

I’m looking at implementing physics engines, regaining my footing on graphics programming and embarking on some new projects, which I’ll post about should they come to fruition.

0

MOD Monday #83

April 4, 2011

This is “goldenoldie4” by Daddy Freddy (Samuli Kärkikuoma).

Download MP3
Download MOD

0

MOD Monday #82

March 28, 2011

This is “Gosh My Foot Smells” by Spirou (Dick Roström).

Download MP3
Download MOD

0

MOD Monday #81

March 21, 2011

This is “Go Kaph-Nybted” by Hille (Thomas Hillebrandt Heldgård).

Download MP3
Download MOD

0

MOD Monday #80

March 14, 2011

Having previously appeared in MOD Monday #38, here is the another piece of music titled “crazy-sue2.3” from the Amiga game “Crazy Sue Goes On” by DJ Braincrack.

Download MP3
Download MOD

0

Yendorian Tales Remake

March 13, 2011
Tags: ,

I was toying with the idea of a Yendor 2 and/or 3 remake, probably starting with the engine.

I would make this an open-source project, probably with a desire to make it browser based using HTML5 and WebGL technologies.

This is a very, very niche project, but I’m hoping there might be others out there interested in embarking on such a project?

Maybe Rodney Smith or anybody at SW Games could help out?

1

Bad Behavior has blocked 93 access attempts in the last 7 days.