Black Clouds and Silver Linings

Posted June 24th, 2009 in Archive by Darfuria - 0 Comments

The new Dream Theater album “Black Clouds and Silver Linings” was released recently, and this evening I managed to get to listen to it.

I was quite surprised at how soon this album was released after Systematic Chaos. Perhaps Systematic Chaos was badly received or something (it certainly isn’t one of my favourite albums by them). Black Clouds and Silver Linings certainly isn’t Scenes from a Memory, but you can really hear a difference in the quality, tone and brutality of their sound now that they are signed by RoadRunner. As with all Dream Theater albums, you have to listen to it start to finish, and typically, there are a lot of > 10 minute tracks. It’s very interesting, though, how the sound of a band change when they are signed by a different record lable. Now that they are with RoadRunner, there are detectable elements of Fear Factory and Killswitch Engage, amongst many of the other fantastic bands that RoadRunner have signed.

Interestingly the last part of Portnoy’s 12-step suite is on this album, so I’m quite interested to make a playlist containing each of the songs back from Six Degrees up until now, and listen to them in order. There’s an interesting article on Wikipedia about the 12-step suite, which you can find here.

Windows 7 X-Fi Sound Card

Posted June 24th, 2009 in Archive by Darfuria - 0 Comments

If you have a Creative X-Fi sound card, and are using the Windows 7 beta, but are having trouble installing the drivers – fear not! If you download the Vista driver for your card, and before installation, right click on the .exe file, click over to compatibility, and get Windows to run the application with Vista compatibility, your driver install should work fine.

Bizarre Computer Issues Resolved

Posted June 24th, 2009 in Archive by Darfuria - 0 Comments

Well, after some digging and dedication, I have resolved my computer issues, and I’m typing this post in Firefox, installed on Windows 7 (yum). It’s not as nice as OS X, but somehow it’s nice to get away from XP after all of those years.

Eventually I cleared the CMOS, managed to download a third party application from the MSI forums, which not only formatted a flash drive for me, but detected my system board, offered a range of available BIOS updates, download them, and did all of the necessary copying and configuring. All I had to do is press a couple of keys to confirm the set up, and then reboot my computer. Lo behold, my BIOS flashed in no time at all. After that, I ensured my HDD was connected to SATA port 1 on my motherboard and booted the Windows 7 installation disk. Windows 7 installed perfectly (or as perfectly as a Microsoft OS can), and has been running fine ever since.

It was such a relief, and I’m so glad I found that application before I went and bought a new system board and power supply. I love technical troubleshooting when there are grounds for progress.

I still plan on buying a Mac though – PCs just don’t do it for me anymore. I want to just leave this one in the corner and have it to play the occasional game on.

Bizarre PC Issues

Posted June 22nd, 2009 in Archive by Darfuria - 0 Comments

For some reason I want to upgrade the OS on my PC from XP to Vista/Windows 7. Possibly because I want to take advantage of DirectX 10 or something, I’m not sure. Anyway, I’ve been having some very bizarre issues with installing those operating systems.

Here’s some information:

  • Runs XP SP3 with no issues.
  • Reinstalls XP SP3 from retail DVD with no issues
  • Runs Ubuntu Live disk with no issues
  • Installs Ubuntu if I disable ACPI in BIOS with no issues
  • Vista x86 (retail disk) and x64 (MSDN download) install, but hang at the loading screen when I reboot. Booting into safe mode first sometimes resolves this issue until the next reboot
  • Windows 7 x86 and x64 (many different ISO burns from multiple download sources burnt on different computers) freeze at 1% expanding files
  • BIOS update from CD, USB and Floppy stays at “Please wait!”

What I’ve done:

  • Swapped SATA cables and used multiple HDDs
  • Run chkdsk and written zeros to multiple HDDs
  • Run a memtest – no errors
  • Replaced optical disk drive (SATA)

Random information:

  • Partition Magic is reporting my main C: drive (150GB raptor) as “bad”, yet it passes extensive tests in the Western Digital drive utility
  • Vista runs perfectly in Virtual PC 2007

Rough system specs:

  • MSI Platinum 7246 V2.1
  • Core 2 duo 2.66
  • 2GB DDR6400
  • GeForce 8800GTX
  • 150GB Raptor
  • Sound Blaster Audigy Platinum fatality blah blah
  • Akasa 650W PSU

I’m trying to avoid buying new components until the last minute, because I don’t want to spend a heap of money, only to realise something silly is causing the issue. Unfortunately I’m running out of options. I don’t know why I’m persisting with it. I like XP. I think it’s just because I know there’s a problem, and I want to resolve it. Any thoughts?

Disable Default Widgets in WordPress 2.8

Posted June 20th, 2009 in Archive by Darfuria - 1 Comment

WordPress is being used more and more as a content management system. Its flexibility and customisability combined with its wide support base and easy-to-develop-on API makes it a fantastic choice for developers. However, some options aren’t available right in the admin interface, and whilst what you want to do is probably possible, it often requires a bit of rooting around.

If you want to use WordPress as a CMS for a client, one of the main things you want to do is strip out all of the things you don’t need, and prevent the client from accessing anything that might allow them to do crazy things to their installation. A lot of this can be controlled by defining the correct user role for their account, or using a plugin like User Access Manager. Other things are a little more difficult to get rid of.

Widgets, for example, are a great way to enable users to add little boxes of content to their themes. Because of the way they are handled, there is little chance that giving your clients access to the widgets section of the dashboard will enable them to wreck havoc on the template. However, that doesn’t mean you want to allow them to throw what ever they can on there. After all, your client doesn’t necessarily know what a tag cloud or an RSS feed is, and those widgets could easily be irrelevant to the website’s purpose.

After a bit of hunting around, and a helpful pointer on the WordPress support forum, I have found a way of disabling each of the default WordPress widgets, one-by-one. Simply place the following code in your themes functions.php file, enclosed in PHP tags:


add_action( 'widgets_init', 'my_unregister_widgets' );
function my_unregister_widgets() {
unregister_widget( 'WP_Widget_Pages' );
unregister_widget( 'WP_Widget_Calendar' );
unregister_widget( 'WP_Widget_Archives' );
unregister_widget( 'WP_Widget_Links' );
unregister_widget( 'WP_Widget_Categories' );
unregister_widget( 'WP_Widget_Recent_Posts' );
unregister_widget( 'WP_Widget_Search' );
unregister_widget( 'WP_Widget_Tag_Cloud' );
unregister_widget( 'WP_Widget_Meta' );
unregister_widget( 'WP_Widget_Recent_Comments' );
unregister_widget( 'WP_Widget_RSS' );
unregister_widget( 'WP_Widget_Text' );
}

As far as I am aware, due to the changes to widgets in WordPress 2.8, this will only work in 2.8 – but I’m sure there are methods for earlier versions if you are prolonging an update. This will unregister each of the default widgets.

If there are any widgets in that list that you don’t wish to disable, you can either comment out or remove the particular line that refers to the widget you wish to use.

This brings me one step closer to having a completely clean installation of WordPress that I can use as a CMS for all clients.

Applications Won’t Synchronise From iTunes to iPhone

Posted June 20th, 2009 in Archive by Darfuria - 1 Comment

Since the OS 3.0 update, I accidentally restored my phone to factory settings – I don’t even know how I managed to do that! Unfortunately I had also recently reinstalled my operating system, so none of my applications were stored in iTunes. “No problem”, I thought, as I trawled through my purchase history and downloaded a bunch of applications in iTunes (and accidentally purchased a few I thought I had).

Once I had finished I turned on application synchronising in the iPhone settings, and hit the big “Sync” button. “That finished rather quickly”, I thought.

After fiddling with settings and restoring the firmware once again, I figured out how to sort it.

  1. Click the store menu
  2. Click “Deauthorise computer”
  3. Enter your account credentials
  4. Once finished, click the store menu
  5. Click “Authorise computer”
  6. Enter your account credentials again

After doing that I was able to synchronise my aplications from iTunes to my iPhone without any problems.