Posts published by: dabl

Simplification de mon setup, emacs console sur VPS scaleway

Jusqu'à maintenant je compilais emacs sur toutes mes machines, toutes les nuits, pour avoir la dernière version du trunk. Mes données étaient synchronisées via un repository git.

Cette configuration a très bien fonctionné, je l'utilise depuis 6 ans. Elle m'a quand même posé quelques désagréments:

  • Quelques très ...

Automatically build emacs from source every night

For the last two weeks I’ve been using the latest development version of emacs. It’s a funny experiment and a nice feeling to have a freshly built emacs every morning.

I heavily use org-mode and emacs to organise almost everything at work and so far the devel trunk ...

Blogging with emacs, org-mode and wordpress

I want to be able to seemlessly publish from emacs to wordpress. I’d like to create or update posts as an org-mode entry and then to publish them on this blog.

To achieve this I’ll need org2blog/wp, a lisp package that can export org entries to wordpress ...

ifconfig to make an alias on the fly

Create the new alias and change the default route:

$ sudo ifconfig eth0:0 192.168.1.2 netmask 255.255.255.0
$ sudo route del default
$ sudo route add default gw 192.168.1.1

Remove the alias and the default route :

$ sudo route del default
$ sudo ifconfig eth0:0 ...