Missing Icons In Notification Area (Tray Bar)

A few days ago some of my programs stopped showing their icons in the Windows (7) notification area. A quick peek at the Task Manager revealed that they were, in fact, running.

Changing the notification settings and peeking around in the task bar configuration revealed nothing.

It turns out that …

Read more

Oldie But Goodie: Privilege Escalation In Windows

Number One:

Replace C:\Windows\system32\sethc.exe with cmd.exe (e.g. by renaming and/or using a repair CD: with the Vista repair CD you can open “notepad” in the command prompt and execute file manipulations from the Open Dialog).

Restart. At the login screen press “Shift” five …

Read more

Note To Self: Remote VNC (Listen) Connection

Because I always forget these commands and end up double checking them…

Client (Me) - Listening:

vncviewer -listen PORT

(Using UltraVNC on Windows.)

Server - Initiating:

x11vnc -connect IP:PORT

Read more

Get A List Of Steam Games (As Of May 2010)

Using Python and Beautiful Soup. This updates the previous script posted on this blog.

from BeautifulSoup import BeautifulSoup
from urllib import urlopen
import re

CATEGORY_GAMES     = '998'
CATEGORY_VIDEOS    = '999'
CATEGORY_DEMOS     = '10'
CATEGORY_MODS      = '997'
CATEGORY_PACKS     = '996'
CATEGORY_DLC       = '21'

html_text = urlopen('http://store.steampowered.com/search/?sort_by=&sort_order=ASC&category1='+CATEGORY_GAMES).read().decode …

Read more

Python Web Scraping Tools

Just a note for myself, a list of interesting Python tools for my next web scraping project:

  • urllib2: extensible library for opening URLs
  • PyQuery: jQuery-like traversing and selecting for Python
  • mechanize: stateful programmatic web browsing in Python
  • Beautiful Soup: not supported/maintained that much anymore. Latest versions are rather slow …

Read more

Installing Heroes Of Might And Magic III (3) On Linux (Ubuntu)

…to remind myself because I always seem to forget how to.

1. Put the contents of the CD somewhere (e.g. /tmp/heroes).

2. Install:

/tmp/heroes$ ./setup.sh

3. Download and run patch with --keep:

/tmp/heroes$ wget ftp://mirrors.dotsrc.org/lokigames/updates/heroes3/heroes3-1.3.1a-unified-x86.run …

Read more

Get A List Of Steam Games

Update: see herefor a new version which works on the new steam site.

Using Python and Beautiful Soup. Just a quick (ugly) script thrown together for future reference.

from BeautifulSoup import BeautifulSoup
from urllib import urlopen
import re
import codecs

html_text = urlopen('http://store.steampowered.com/search/?advanced=0 …

Read more

« Prev Page 8 of 13 Next »