Teaser for YUI Compressor GUI for Windows

YUI Compressor GUI for Windows

by

Because I needed a CSS / JavaScript compressor at work and I always used the web-based one over here, I wrote a Windows GUI for the YUI compressor library and extended it a bit. As long as you have some @imports in your CSS files and you also have them locally available in the same folder, you can inline them in the compressed CSS file too.

You can grab my YUI-Compressor-GUI here.

Flattr this!

Wealbot - Walialu's Healbot for SWTOR

by

Screenshot of Walialu's Healbot for SWTOR

Here you can see my configuration of the Wealbot. I'm a Mercenary and I have my Rapid Shots on 1, so I don't want Wealbot to mess with this. I have Rapid Scan on 2, Healing Scan on 3 and Emergency Scan on 4 and I want Wealbot to help me with that.

6 is my Kolto Missile and Wealbot should treat it as a AOE spell.. nuff said so far :)

Still under development

A working Healbot for Star Wars - The Old Republic (somehow like the one for World of Warcraft).

You can mouseover a raidmember and then press 1 to 9 to use one of your abilities. That also works when targeting an area and you want to use an area of effect ability for healing - just point your cursor to that area and press the key, it will instantly cast your spell to that area.

It's working right now, but it still needs some testing and debugging. I will release the source and the compiled version as soon as I think it is ready to be a release candidate.

Stay tuned.

Flattr this!

GitHub

by

Some commands I need to remember :)

Remove sensitive files from your Git Repository

Remove the file

git rm Fitocracy.apk

Then

git filter-branch --index-filter 'git rm --cached --ignore-unmatch Fitocracy.apk' --prune-empty -- --all

Add the file to .gitignore

echo "Fitocracy.apk" >> .gitignore

Add the .gitignore to your repo

git add .gitignore

Commit changes

git commit -m "Add Fitocracy.apk to .gitignore"

Push changes

git push origin master --force
Flattr this!

ExtJS: Tooltip for a TextField

by

Ext.form.TextField doesn't have a tooltip config option, so you have to use this instead:

{
  fieldLabel: 'test label'
  allowBlank: false,
  listeners: {
    render: function(c) {
      Ext.QuickTips.register({
        target: c.getEl(),
        text: 'this is a test message'
      });
    }
  }
}
Flattr this!