firefox plugins/addons

flashblock 433 blocks flash until click
bugmenot 6349 registration bypass
torrentflux add 7876
dictionnaire français
vimperator 4891 vim-like shortcuts
web of trust 3456 cockrings de couleurs selon la fiabilité des links
delicious 3615 intégration de bookmarks
MD5 Reborned Hasher 12335
chatzilla 16 irc client
fireftp 684 ftp client
firebug 1843 web dev tools
DownloadThemAll! 201 download manager
youtube/flash video downloader 10137
Pearl Crescent 10367 save web page as image
Greasemonkey 748 customize/script web pages using JS
Session Manager
Soundcloud downloader 

Last update: 2012-09-09

cmdhere on win7

Shift + right-click shows a context menu with additional entries such as Open command window here.

To add Open powershell here with and without elevated privileges:

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\ps]
  @="Open powershell here"
[HKEY_CLASSES_ROOT\Directory\shell\ps\command]
  @="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -Command Set-Location -LiteralPath '%L'"
[HKEY_CLASSES_ROOT\Directory\shell\Runas]
  @="Open admin powershell here"
[HKEY_CLASSES_ROOT\Directory\shell\Runas\Command]
  @="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -Command Set-Location -LiteralPath '%L'"
[HKEY_CLASSES_ROOT\Drive\shell\ps]
  @="Open powershell here"
[HKEY_CLASSES_ROOT\Drive\shell\ps\command]
  @="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -Command Set-Location -LiteralPath '%L'"
[HKEY_CLASSES_ROOT\Drive\shell\runas]
  @="Open powershell admin here"
[HKEY_CLASSES_ROOT\Drive\shell\runas\command]
  @="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -Command Set-Location -LiteralPath '%L'"

Keys having runas in their names are the ones that will trigger elevated privileges. So yes, it seems we can only map one elevated command per HKEY_CLASSES_ROOT key…

overloading SEL_KEYPRESS

Or something like that…

The idea is to get some widget to do not only what it’s supposed to, but also something else. For example, I would really want to hear the buzzing sound of a fly whenever I press Ctrl-z in some FXText.

require 'fox16'
require 'fox16/responder' # no longer needed
include Fox

class BuzzingText < FXText
  include Responder

  def initialize p
    super p
    FXMAPFUNC(SEL_KEYPRESS, 0, :onKeyPress)
  end

  def onKeyPress sender, sel, event
    super sender, sel, event
    if (event.state & CONTROLMASK != 0) and (event.code == KEY_z)
      # buzz
    end
  end

end

Avira AntiVir moins gossant

EDIT (2010-04-08): J’utilise maintenant Avast! et il n’y a aucun popup en utilisant le “gaming mode”.

EDIT (2009-10-27): Les fucking popups gossants sont revenus. Je songe sérieusement à désinstaller ce logiciel et me trouver un autre anti-virus.

Je trouvais AVG trop lourd et selon les tests de quelques personnes, AntiVir est plus efficace à trouver les virus. Je me décide donc à l’installer, sous win7.

Horreur, à chaque update (plus d’une fois par jour?), je vois un maudit popup qui m’énarve avec sa version premium payante. Enlevons ça:

  • Right-click sur avnotify.exe dans le répertoire correspondant de “Program Files”;
  • Properties;
  • Security tab;
  • Éditer les permissons en cochant “Deny” pour tous les users.

Certains utilisateurs se plaignaient aussi de l’updater qui démarre en mode minimized, apparemment chiant quand on roule une application full-screen. On peut démarrer l’updater en mode invisible, comme suit:

  • Popper l’interface;
  • Administration;
  • Scheduler;
  • Right-click “Daily Update”;
  • 3 fois “Next >”;
  • Changer à “invisible”;
  • Finish.

Ref: http://www.tipsfor.us/2009/03/18/avira-antivir-updates-to-version-9-make-it-more-usable/

updated editor?

Using blogger as a way to store useful technical information for later consultation seemed a good idea. I wanted some kind of content management for some time now because keeping notes in plain text files is boring and difficult to search through. And I wanted links. I never finished the 2 or 3 different versions of scripts for tagging or grouping this kind of stuff and these blogging software already got it all.

And if anything here can be of use to someone else, then all the better. I also think that comments are a good way to dig deeper into problems if anything needs clarification. It’ll sharpen my writing. And maybe I’ll have interesting conversations with other people! All this looks promising.

But the supposedly updated editor of this blog seems crap. I have to edit the HTML code to remove curious and annoying “span” and “div” blocks. Although things look nice in the “compose” tab, when I preview (or post), these blocks put blank spaces on the page. The “remove formatting” button does not seem to remove them all.

UAC, and Configuring GVim on Windows 7

With all this new stuff about user access control (UAC), I tend to use Windows much more in the same way that I would use another Unix OS. The default UAC settings let us know each time we must use admin privileges to do something crazy on the computer.

Using Windows XP, it would be a pain to switch to an admin account everytime we want to do this crazy something. Because of this, I’m logged on admin full time when using XP, and I don’t like it. (If anyone knows another way, please tell me, or not because I won’t use it anymore). I’m glad this has changed. I think Vista also has this feature, but since it was Vista, I didn’t care.

All this to talk about Gvim‘s startup settings file, located under a system folder in Program Files. Under XP, I changed the settings right in this file. Of course, I would never do that under, say, Ubuntu — I have this file hidden right in the root of my home directory, as it is with pretty much any other software. Under 7, I was quickly reminded that I needed admin privileges to change it. “Good lord”, I thought to myself, “Not only Windows became more multi-user friendly, it even tells me to behave well!”. Good. Put your config files at home, you bastards.

Anyway, to change startup settings, I copied _vimrc from vim‘s folder into my home directory. To set font to Lucida Console, height 12, width 6.5:

set guifont=Lucida_Console:h12:w6.5

Backup and swap files are annoying:

set nobackup nowritebackup noswapfile

Also,

syntax on
colorscheme darkblue

Doc: http://www.vim.org/htmldoc/options.html