Skip to content

Instantly share code, notes, and snippets.

View pmalek's full-sized avatar
👋
Go, Kubernetes and Open Source enthusiast

Patryk Małek pmalek

👋
Go, Kubernetes and Open Source enthusiast
View GitHub Profile
@pmalek
pmalek / set_cap.sh
Created February 1, 2014 19:01
Allow an app to use port below 1024 without root permissions (node.js example)
sudo apt-get install libcap2-bin
sudo setcap cap_net_bind_service=+ep /usr/local/bin/node
var httpProxy = require('http-proxy'),
fs = require('fs');
console.log("proxy");
var options = {
target: "https://localhost",
ssl: {
key: fs.readFileSync('./ssl/key.pem'),
cert: fs.readFileSync('./ssl/cert.pem')
@pmalek
pmalek / fglrx_fix
Created March 21, 2014 15:44
Fglrx new kernels 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)
@pmalek
pmalek / android_hide_title_bar.java
Created April 23, 2014 19:21
Hide title bar in Android
requestWindowFeature(Window.FEATURE_NO_TITLE);
gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf file1.pdf file2.pdf file3.pdf [...] lastfile.pdf
@pmalek
pmalek / add_to_eclipse.ini
Created September 10, 2014 18:14
Fix eclipse (adt) crashing with libsoup segfault. Add this to eclipse.ini
-Dorg.eclipse.swt.browser.DefaultType=mozilla
@pmalek
pmalek / README
Last active August 29, 2015 14:13
ralink mt7601 linux driver patch. Take a look into 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
@pmalek
pmalek / results_pypy2.5.1
Created June 1, 2015 19:53
python vs pypy comparison benchmarks using Python 2.7.6 and PyPy 2.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:
@pmalek
pmalek / main.c
Created June 12, 2015 10:35
Search for palindroms from one file and put it alphabetically in another
#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) {
@pmalek
pmalek / commit-msg.py
Created November 14, 2015 13:04
commit-msg hook checking whether there already exists a commit in git repository with passed in commit message
#!/usr/bin/python
from subprocess import check_output
import sys
class Colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'