Latest posts

92 articles

GOG.com is going to support Linux

After Desura and Steam, GOG.com is going to support Linux with their good old games!

Linux: xrandr dual monitor setup failing at boot

I set up my dual screen configuration in my local ~/.xinitrc file: I use the $HDMI_MAIN variable because the number assigned to the HDMI screen may be 0 or 2. The xrandr command sets up the resolution of both screens and puts the DVI screen as secondary screen at the right of the HDMI one. This…

Popcorn Time: a free and open tool for streaming using BitTorrent

Popcorn Time: a free and open tool for streaming using BitTorrent. Source

Git: edit a tag

Beware that this command change the original tag's date. To edit a tag called tagName: $ git tag tagName tagName -f -m "new message" Source

CSS: make a container wrap around its floating children

When an element contains floating elements, its height does not include the height of the floating elements because they are outside the natural flow of the document. To make the container aware of all the heights inside it, we can use the overflow property: