This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BR2_arm=y | |
BR2_cortex_a9=y | |
BR2_ARM_ENABLE_NEON=y | |
BR2_ARM_ENABLE_VFP=y | |
BR2_ARM_FPU_VFPV3=y | |
BR2_CCACHE=y | |
BR2_CCACHE_DIR="$(TOPDIR)/.ccache" | |
BR2_CCACHE_INITIAL_SETUP="-M 2G" | |
# BR2_CCACHE_USE_BASEDIR is not set | |
BR2_SHARED_STATIC_LIBS=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
'''Get your grvatar image | |
''' | |
prog_name = "wget-gravatar" | |
prog_version = "0.1" | |
prog_epilog = ''' | |
Example: | |
%(prog)s --email [email protected] -o /tmp/gravatar | |
''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Compile: gcc xx.c -o xx -lX11 */ | |
#include <X11/X.h> | |
#include <X11/Xlib.h> | |
#include <X11/Xatom.h> | |
#include <X11/Xutil.h> | |
#include <X11/keysym.h> | |
#include <X11/Xos.h> | |
#include <stdio.h> |