View commit-msg.py
#!/usr/bin/python | |
from subprocess import check_output | |
import sys | |
class Colors: | |
HEADER = '\033[95m' | |
OKBLUE = '\033[94m' | |
OKGREEN = '\033[92m' | |
WARNING = '\033[93m' |
View main.c
#include <stdio.h> | |
#include <ctype.h> | |
#include <string.h> | |
#include <stdlib.h> | |
int is_pal(char* word) { | |
size_t len = strlen(word); | |
char* begin = word; | |
char* end = word + len - 2; // -2 beacuse we get the newline char as well | |
if (len == 1) { |
View results_pypy2.5.1
Python 2.7.9 (2.5.1+dfsg-1~ppa1+ubuntu14.04, Mar 27 2015, 19:19:42) | |
[PyPy 2.5.1 with GCC 4.8.2] | |
Using arena file: | |
example_benchmarks/zeros.py | |
- zeros_imul | |
- zeros_mul | |
- zeros_repeat | |
- zeros_slow | |
Using benchmark file: |
View install_gcc.sh
#!/bin/bash | |
LOGFILE=/tmp/gcc_install.log | |
# $1 - package name | |
errorIf(){ | |
if [ $? -ne 0 ]; then | |
echo "Something was wrong with $1" | |
exit 1 | |
fi |
View README
This patch may not necessarily work - this is a better version at launchpad by Victor Martinez https://code.launchpad.net/~victored/+junk/mt7601U-linux-driver-64bit | |
after: | |
sudo make install, | |
do | |
sudo modprobe mt7601Usta |
View add_to_eclipse.ini
-Dorg.eclipse.swt.browser.DefaultType=mozilla |
View concatenate.sh
gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf file1.pdf file2.pdf file3.pdf [...] lastfile.pdf |
View android_hide_title_bar.java
requestWindowFeature(Window.FEATURE_NO_TITLE); |
View android_hide_status_bar.java
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); |
View fglrx_fix
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,3) | |
if (!ACPI_SUCCESS(acpi_get_table_with_size(id, 0, &hdr, &tbl_size))) | |
#else | |
tbl_size = 0x7fffffff; | |
if (!ACPI_SUCCESS(acpi_get_table(id, 0, &hdr))) | |
#endif | |
{ | |
return KCL_ACPI_ERROR; | |
} | |
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,1) |