June 11, 2009

Enable ctrl+alt+backspace in Jaunty

I don’t know why it’s disabled by default and I use it quite often because I’m always playing around and installing things so it’s incredibly irritating to me that you can’t just press ctrl+alt+backspace to restart x.

To enable it you can do it through editing the xorg.conf file:

1. Open a terminal and type sudo gedit /etc/X11/xorg.conf

2. Add this section to the file:
Section "ServerFlags"
Option "DontZap" "false"
EndSection

3. Save and restart.

4. Yay.

June 11, 2009 09:43 PM

May 22, 2009

Free utilities for tweaking Windows part 2

A few other utilities I got from the PC World article linked to in the previous post are RocketDock and Ultimate Windows Tweaker.

RocketDock
RocketDock
Being the multi-tasker that I am, I found this little tool to be pretty handy along with VirtuaWin. I have a few programs in my quicklaunch bar, but I don’t want to overload that so I use RocketDock for a few more shortcuts that I access on a regular basis. I have it set to auto-hide so that it isn’t always a distraction – it’s only there when I need it.

RocketDock2RocketDock3

There are different skins for it that you can use and you can go to their website to download icons, more skins, and docklets. I can’t think of a complaint about this, I’ve been pretty happy with it.

Ultimate Windows Tweaker
This is actually an easier way to adjust things that I posted about in my trimming Vista’s fat post. The three sections of the tweaker that I like the most are the personalization, system performance, and additional options.

In the personalization section you can choose which items will show in the start menu, remove some or all icons that show in the taskbar, change the window padding, along with some other features.
UltimateWindowsTweaker1

The changes I made in the system performance section have made the biggest difference. In there you can change the time the computer waits for services to shut down, the time it waits to end non-responsive applications, and waiting time to kill applications timeout during shutdown. My computer shuts down MUCH faster now.
UltimateWindowsTweaker2

Finally, the additional options section just has a few things in there that I changed. You can add some useful options to the context menus for files and folders and drives. Also, being able to remove the arrows from creating shortcuts was nice. Definitely not anything that improved performance, but useful changes for me.
UltimateWindowsTweaker3

There are a lot of other things you can edit with this. I only highlighted the sections that were the most useful to me.

May 22, 2009 04:47 AM

May 21, 2009

Free utilities for tweaking Windows Part 1

I decided to come up with a list a programs I use to maintain my Vista laptop.  I got some from this PC World article and others I found on download.com.  Instead of making one massive post I’ll break it up into two or three.

First on my list and the most exciting to me is a cool thing called VirtuaWin.

I use Linux all the time at work, the only time I use Windows is when I have to do some maintenance for those in the office who use it. I fell completely in love with the multiple workspaces that you can use in Linux. I have a separate space for email, another for my browser, and another for whatever else I happen to be playing with or troubleshooting. Having multiple workspaces is absolutely necessary for my job, I do way too many things at once to not need that feature.

I got so excited when I heard from a friend of mine about a nifty little program that allows you to have multiple workspaces in Windows. I then read an article somewhere, that I can’t seem to find the link for, about it so I thought I’d give it a try. I was a little worried about how much memory it would suck up and whether it would slow down the start-up and shutdown process of my laptop. I noticed a bit of a slowdown but the benefits outweigh it since it really doesn’t make that much of a difference.

You can have up to 9 workspaces, which I find to be way too many. I have 4 set up but probably only use 3 of them on a regular basis. By default, the hotkey to move between desktops is the windows key + arrow key. There’s an option to make it so that when you’re mouse is against the edge of your screen it switches to another workspace, but I found that to be incredibly irritating so I stuck to the hotkey.  Another thing I like about it is that I finally have a use for the ability of the wheel on my mouse to click.  If I click on the title bar of a window with the mouse wheel it gives the option to move that application to one of the other workspaces – I use that all the time.  You can also add modules from their website to add features, although there aren’t very many.  That’s another plus, they didn’t add a bunch of useless features to the basic installation, if you want extras you can install them yourself.  This is compatible with Vista all the way back to Win98, so if you have a Windows machine this will work for you.

VirtuaWin1VirtuaWin2VirtuaWin3VirtuaWin4VirtuaWin5

I need a nap, more to come.

May 21, 2009 01:44 AM

May 15, 2009

Vista automatic login

I found directions online for how to set automatic login in Vista on machine that’s also on a domain. Normally to set it to automatically log in you can just check a box in the advanced user account settings window. But that box isn’t there if your machine is on a domain. In order to get it to work you have to edit the registry.  This is more so for my own notes so I don’t have to risk losing this in my bookmarks or something.  But maybe it’ll help others.

Doing anything in the registry can really screw up your computer if you don’t know what you’re doing.  Do this at your own risk.

Automatic login on a non-domained machine:

  1. Type netplwiz into the search bar to open the settings box for user accounts.
  2. Highlight the username you want to automatically log in and uncheck the box, users must enter a user name and password to use this computer.
    autologin
  3. Type in your user name and password to verify and close everything.

Automatic login on a domained machine:

  1. Start menu -> type regedit in the search bar and hit enter.
  2. Go to this registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
  3. Double-click the DefaultUserName entry, type the user name to log on with, and then click OK.If DefaultUserName registry value name is not found, create the new String Value (REG_SZ) with value name as DefaultUserName.
  4. Double-click the DefaultPassword entry, type the password for the user account under the value data box, and then click OK.If there is no DefaultPassword value, create a new String Value subkey (REG_SZ) with DefaultPassword as the value name.

    Note that if no DefaultPassword string is specified, Windows automatically changes the value of the AutoAdminLogon registry key from 1 (true) to 0 (false) to turn off the AutoAdminLogon feature.

  5. In Windows Vista, DefaultDomainName has to be specified as well, else Windows will prompt of invalid user name with user name displayed as .\username. To do so, double click on DefaultDomainName, and specify the domain name of the user account. If it’s local user, specify local host name.If the DefaultDomainName does not exist, create a new String Value (REG_SZ) registry key with value name as DefaultDomainName.
  6. Double-click the AutoAdminLogon entry, type 1 in the Value Data box, and then click OK. If there is no AutoAdminLogon entry, create a new String Value entry (REG_SZ) with AutoAdminLogon as the value name.
  7. If it exists, delete the AutoLogonCount key.
  8. Quit Registry Editor.
  9. Restart your computer.

Source:

http://www.mydigitallife.info/2008/06/15/how-to-enable-auto-logon-to-windows-xp-and-vista-joined-as-domain-member/

May 15, 2009 02:33 AM

April 24, 2009

ATI big desktop in Jaunty Jackalope

I was pleasantly surprised to see that the fight to get dual screens working properly with the ATI graphics card wasn’t as difficult as it has been in the past. The restricted hardware manager didn’t lock up on me after activating the ATI driver, but I still couldn’t get big desktop to work.

When trying to set up big desktop through aticonfig in the terminal I got Error: Options, e.g. --dtop and --desktop-setup, are not supported when RandR 1.2 is enabled. I had no idea what that meant but I did a quick google search and found that someone had reported a bug with the same problem. Another person posted something that fixed it for me.

  1. Login to a tty (ctrl+alt F1) and type sudo killall gdm.
  2. Type sudo nano (or gedit, whichever you prefer) /etc/ati/amdpcsdb to edit the file.
      a) Go to the [AMDPCSROOT/SYSTEM/DDX] section and add EnableRandR12=Sfalse.
  3. Type this into a terminal, sudo nano (or gedit) /etc/X11/xorg.conf, to open the xorg.conf file.
  4. Under the “Device” section add these options on separate lines: Option "EnableRandR12" "false" and Option "DesktopSetup" "horizontal".
  5. Now just restart your computer and it should be good to go.

xorg.conf file:

Section “ServerLayout”
Identifier “aticonfig Layout”
Screen 0 “Default Screen” 0 0
EndSection

Section “Files”
EndSection

Section “Module”
Load “glx”
EndSection

Section “Monitor”
Identifier “Configured Monitor”
EndSection

Section “Device”
Identifier “Configured Video Device”
Driver “fglrx”
Option “EnableRandR12″ “false”
Option “DesktopSetup” “horizontal”
BusID “PCI:1:0:0″
EndSection

Section “Screen”
Identifier “Default Screen”
Device “Configured Video Device”
Monitor “Configured Monitor”
DefaultDepth 24
EndSection

April 24, 2009 02:51 AM

April 16, 2009

How to remove Facebook’s highlights section – Updated

I finally got fed up with the highlights section of Facebook and went searching in the help section for a way to filter out what I see.  It turns out there’s no way to filter this irritating section of Facebook.  I don’t care what groups my friends recently joined, what pictures they recently commented on, or the fact that a friend became a fan of sleep.

My original post about this referred to a different script that was said to cut out the highlights section, among a few other things in that column.

It worked for about a day before the highlights section was back. It appeared that the suggestions section of Facebook impacted whether the script was able to remove the highlights section. There was a fix posted, but it didn’t work for me so I moved on to find another script.

4-21-09
Doing a Google search I came across Facebook Fixer. This offers much, much more customization. You still need Greasemonkey in order to use the script in Firefox.

It does have a lot of other cool features. To just get rid of the highlights you hover over the settings link up top on any Facebook page and go to Facebook Fixer or you can right-click on the little monkey face icon in the bottom right of Firefox, go to user script commands, then click on configure facebook fixer. That will bring up a window with a bunch of different ways you can customize how Facebook looks for you. Go down to the second section, Home Page Customization, to choose what you want to hide. I chose to keep the right column, but unchecked the four boxes below it. I found that choosing to hide the right column also hid group and friend requests. I still want to see those so I just hid everything else.

homepagecustomization

Result:
homepage

This script also checks for updates automatically, which is a very nice feature. Hopefully I won’t have to update this saying it no longer works.

April 16, 2009 04:57 AM

April 01, 2009

Mnemonik Devices, Episode 3: Remixes
It's been a little bit of time since the last post, I was super busy with finals and then I relaxed in Seattle for spring break, but now I'm back. After having a group brainstorm on what the theme of this mix would be, I decided to do a mix of all remixes because I feel like I have a bunch of remixes that a lot of you guys haven't heard yet. In fact, I was searching through all the remixes I have and I found a couple I didn't even know I had. Jurassic 5's "Soul Searching" remix is so hot that I'd be glad to have made this mix, and discovered that song, even if no one ever listens to this episode.

Download Links:



1. Intelligent Hoodlum (Later known as Tragedy Khadafi) "Grand Groove Bonus Mix" from the album Tragedy: Saga of a Hoodlum

I think I like this one better than the original, which doesn't happen too often, but I may be repeating that statement a few times while describing these songs.

Unlike the original, this is not a battle song. Tragedy dedicates this song to his late mother. It is a truly touching song, check some of these lyrics:

From beginning to end, again, I intend
When I lost you, I lost my best friend
You gave me a home and a life that was decent
But instead I ended up in the precinct
I was lost so I didn't understand
How precious life was until I was a man
I seen a lot of my friends die in the projects
Lost their lives over material objects
But you tried to save me from a young death
So I strive till my last breath
You were the start of my family tree
Gave birth to Junior and then came me
Grand Groove, Grandmother, Sister and my Brother
Best friend to me there could never be another
Cause I really need you today
Peace to all the mothers that passed away

and
I understand you're going back to the essence
But I do miss your presence
Too busy trying to be slick and get over
Back in the days I used to wish I was older
And I remember, and I remember, and I remember
I used to sneak in the house with my eyes all red
Duck the blow that was aimed for my head
Got run in the streets like a run away slave
I didn't know you was headed for the grave
Never miss a good friend until they're gone
As long as I'm alive you're gonna live on and on
Who says your best friend has to be a brotha?
A friend is someone who's always there for another


Wow, I didn't see this coming, but I just found out this song has a music video.


2. Lord Finesse "Brainstorm" which is the remix for "No Gimmicks". Both are off The Awakening.

3. Redman "Tonight's Da Night Remix" from Dare Iz a Darkside

4. Das EFX "Jussumen" Pete Rock Remix
Can Pete Rock make a bad remix? The space-time continuum would collapse, hell would freeze over, and pigs would fly if he did.

5. Organized Konfusion "Fudge Pudge Bob T Mix" off the Walk in to the Sun twelve inch
This track is Super Hot(tm) just like the original.

6. Grand Puba "360 Degrees (What Goes Around) Remix" from Puba's fist album, Reel to Reel
Grand Puba Just has funk on this whole album. I'm not sure if 2000 or Reel to Reel is better, they are definitely very different, but the funk is on Reel to Reel. That said, "Very Special" off of 2000, is my ringtone right now...

7. Heiroglyphics "Do Not Touch Remix" from the mixtape The Building
Another one that I think is better than the original, but it's a close call. The original is off of Tajai's album Power Movement, which is definitely an album to check out if you haven't heard it, but isn't a classic by any means really.

8. AZ "Sugar Hill Remix" off Doe or Die
I love AZ on Life's A Bitch, who doesn't, and I like his first album, but I feel that he stretches the truth a lot concerning his mafioso, glamour life. Also, the album cover is stupid enough that I almost want to remove it from my computer.



9. Big L "Ebonics Remix" DJ Premier did remixed this one

10. People Under The Stairs "We'll Be There Remix" from The Om Years (Favorite, Rarities, and B-Sides

11. Prince Rakeem (AKA RZA) "Ooh We Love You Rakeem Baggin Mix" from the single
I haven't actually heard any other mixes of this song, but I had to throw it in just because its so clownin'.

12. The Sky Beneath "Building Up Remix" from The Floor
This is my cousin's crew, he goes by Fitzgeezus; this song is a mix of a few genres that I can't even pin point. CDBaby has a lot more to say about The Sky Beneath than I do:
The Sky Beneath, as a group, was formed in July of 2003 when long-time friends Furyus, Beaujangles, Pakwit & Steven Van Beathavin decided to focus their creativity, energy, and love for music on a long-overdue album. In just three weeks, they recorded "The Ground." Shortly after, they released it on a small scale through their newly established record label Sky Beneath Records (formerly "NorthBest Records").

In the Fall of 2003, the group members went their separate ways to continue their respective educations. Pakwit resumed work in Oakland at Expression College for Digital Arts, Beaujangles & Furyus resumed work at Stanford and Yale and Beathavin traveled to South America. While at Yale, Furyus formed a second group, 'Fifth Floor,' with friends, NuSonRize & Fitzgeezus. Managed by Furyus' recently established BudgetBooth Productions & Recordings, the group put together an short album - "The 5th Floor" - with original lyrics recorded over beats from some of their favorite producers. After achieving unrivaled popularity on campus, the three went on to win a Battle of the Bands competition at Toad's Place - one of the Northeast's premier concert venues.


13. J-Live "Braggin' Writes Remix" from the single

14. Black Moon "How Many MCs Remix" by DJ Evil Dee on Diggin' In Dah Vaults

15. Brand Nubian "Word Is Bond Remix" by Buckwild

16. Nas "Life's a Bitch Remix #1" by Buckwild again
Yes, Buckwild made two remixes of this song, and yes, they both are filthy.

17. Fat Joe "Success Remix" off of Jealous Ones Envy
Few people outside of DITC fans remember or even know Fat Joe had skills once upon a time. He fell off hard enough to break something...

18. One Be Lo "Rockestship Remix" from S.T.I.L.L.B.O.R.N.

19. Keith Murray "The Most Beautifullest Thing in This World Remix" is the remix of the title song of this album

20. Public Enemy "Shut 'Em Down Remix" ... Pete Rock strikes again

21. OC "Born 2 Live Remix" from Word... Life

22. Jurassic 5 "Soul Searching Remix" from Jurassick [Freestyles & Rarities](
Wow. Just listen. Jesus. Who is on the mic on this one? I've always listened to J5, but not enough to really know who's who and all that. This guy doesn't even sound like J5 to me... Maybe some more knowledgeable Jurassic 5 fan can come in here and fill us all in. Super hot track.

23. Artifacts "C'mon Wit Da Git Down Remix" Buckwild comes through for the remix win on Between a Rock and a Hard Place
Same sample as the original song, just a different part. The sample is "Holy Thursday" by David Axelrod (not Obama's guy), and it has opened my horizons. Psychedelic jazz is where its at. David Axelrod also composed a bunch of songs for Cannonball Adderley.

Download Links:


That's it. Hope you like it. Drop a comment.

April 01, 2009 06:16 AM

March 29, 2009

inna di red

Spring break was quiet at ResTek.  I haven’t been into the office much.  I guess because I like to work from home more, where I have my own computer and access to as much coffee as I would like.

Bodum Kenya French PressI had to buy a new french press (accidentally broke the last one that I got for Christmas, ouch) so I bought the Bodum Kenya model because it wasn’t as expensive as the Chambord (original — $40!).

On Wednesday I took a train down to Seattle to help my dad with some things at his business and ran into Symons across the street from the store.

Work has been uneventful, but I managed to finish the Perl script that I use to add new accounts.  It’s a lot more user-friendly now (view groups before selecting one, allow you to enter name or number, deal with non-ResTek accounts, etc.)  In addition to that, I extended our password-reset application.  It now supports changing more of your LDAP information such as phone numbers, email addresses, name, and login shell which means people don’t have to use phpldapadmin (they still can).  I broke away from using our current Staff class which encompasses employee information in doing so, but since Zend_Ldap is going to be extended soon (I hope!) I have plans to convert all of our PHP LDAP code to a consistent interface in the near future anyway.

Debian with VirtualBox (+Vista)

Debian with VirtualBox (+Vista)

A while back I was talking to a friend and our discussion convinced me to install Linux (or something else) on my desktop.  I decided to give Debian another go, and I’ve been really happy with it.  I’ve had it on my laptop for quite a while, and now it’s on my desktop too.  The same discussion led to me installing VirtualBox, and I added 2GB more ram (making 4GB total) to my desktop to give my virtual machine(s) more memory.

When the time comes to buy a new laptop, I’ll probably use the same setup.

March 29, 2009 07:04 PM

March 27, 2009

Malwarebytes installation error

I went to install Malwarebytes on my desktop computer but got a weird installation error message; “mbam.exe – Unable To Locate Component.  This application has failed to start because MSVBVM60.DLL was not found. Re-installing the application may fix the problem.”

I tried downloading another copy of Malwarebytes and re-installing it, thinking I got a bad file, but I just got the same error.  Doing a quick google search led me to the bleepingcomputer.com forum.  I guess that error means that visual basic is damaged.  How it got damaged is beyond me, but it’s a pretty easy solution.  Be sure to uninstall Malwarebytes first.  Then all you have to do is download and install service pack 6 for visual basic 6.0.  Install Mbam again after that is finished.  *Poof*, all fixed.

March 27, 2009 08:59 PM

March 26, 2009

Vista start menu – duplicate programs folder

This is just  quick little post about another annoyance I found in Vista.  I noticed that after going to all programs there was a programs folder that had duplicate shortcuts to everything already in the menu.  I never saw that folder before so I have no idea where it came from.  Trying to delete it completely killed my entire start menu.

To get rid of the duplicate programs folder:

  1. Go into the properties of the start menu (right click on task bar and then properties)
  2. Click the start menu tab then the customize button.
  3. Uncheck the “default programs” box.  I’ve had to do this twice so far, the 2nd time I checked the box since I unchecked it the first time.  Doing the opposite of whatever it is set to seems to fix it for some unknown reason.

March 26, 2009 04:59 AM