Paolo Pedercini for IGDA Italy
Video postcard made for IGDA’s Italian chapter and Global Game Jam 2011 by Paolo Pedercini (italian only, sorry).
Video postcard made for IGDA’s Italian chapter and Global Game Jam 2011 by Paolo Pedercini (italian only, sorry).
Sometimes I need to create an empty branch that do not share an ancestor with one of the other branches.
This can be achieved with the following commands:
$ git symbolic-ref HEAD refs/heads/branchname
$ rm .git/index
$ git clean -fd
Or alternatively:
$ git checkout --orphan branchname
$ git rm -rf .
That’s it. Now just do some some work and commit to the branch.
Just a quick note for myself:
$ git push :refs/tags/tag_to_delete
That’s all.
Arduino The Documentary is finally out.
I find it very annoying when, in the middle of a video playback I have to move the mouse to avoid the screensaver to start.
To solve this, I wrote a little utility to inhbit any screensaver by moving up and down the mouse pointer every 5 minutes or so automatically. It also hides the mouse cursor so that it doesn’t show up in the middle of the screen:
/* | |
* Utility to hide the mouse cursor and prevent screen blanking. | |
* | |
* Compile: | |
* $ cc -o movietime movie_time.c -lX11 | |
* | |
* Usage: | |
* $ ./movietime | |
* | |
* Copyright (C) 2010 Alessandro Ghedini <alessandro@ghedini.me> | |
* -------------------------------------------------------------- | |
* "THE BEER-WARE LICENSE" (Revision 42): | |
* Alessandro Ghedini wrote this file. As long as you retain this | |
* notice you can do whatever you want with this stuff. If we | |
* meet some day, and you think this stuff is worth it, you can | |
* buy me a beer in return. | |
* -------------------------------------------------------------- | |
*/ | |
#include <unistd.h> | |
#include <X11/Xlib.h> | |
#define WAIT_FOR (5 * 60) | |
void hide_cursor(Display *dpy) { | |
GC gc; | |
XGCValues xgc = { .function = GXclear }; | |
XColor color = { .pixel = 0, .red = 0, .flags = 0 }; | |
Pixmap mask; | |
Cursor cursor; | |
Window root = DefaultRootWindow(dpy); | |
mask = XCreatePixmap(dpy, root, 1, 1, 1); | |
gc = XCreateGC(dpy, mask, GCFunction, &xgc); | |
XFillRectangle(dpy, mask, gc, 0, 0, 1, 1); | |
cursor = XCreatePixmapCursor(dpy, mask, mask, &color, &color, 0, 0); | |
XGrabPointer( | |
dpy, root, 0, | |
PointerMotionMask | ButtonPressMask | ButtonReleaseMask, | |
GrabModeAsync, GrabModeAsync, None, cursor, CurrentTime | |
); | |
XFreePixmap(dpy, mask); | |
XFreeGC(dpy, gc); | |
} | |
void move_cursor(Display *dpy) { | |
int move_by = 1; | |
while (1) { | |
move_by -= move_by * 2; | |
sleep(WAIT_FOR); | |
XWarpPointer(dpy, None, None, 0, 0, 0, 0, 0, move_by); | |
XFlush(dpy); | |
} | |
} | |
int main(int argc, char *argv[]) { | |
Display *dpy = XOpenDisplay(NULL); | |
hide_cursor(dpy); | |
move_cursor(dpy); | |
XCloseDisplay(dpy); | |
return 0; | |
} |
The code is also on GitHub.