Skip to content

Instantly share code, notes, and snippets.

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

Patryk Małek pmalek

👋
Go and Open Source enthusiast
View GitHub Profile
@pmalek
pmalek / android_hide_status_bar.java
Created April 23, 2014 19:20
Hide status bar in Android
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
@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)
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 / 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
@pmalek
pmalek / show_LBAs_written.sh
Created January 24, 2014 13:16
Show LBAs, MBs and GBs written to disk
#!/bin/bash
scale=3
lbas=$(sudo smartctl --all /dev/sda | grep Total_LBAs_Written | awk '{print $(NF)}')
mbs=$(( $lbas / 2048 ))
# gbs=$(( $mbs / 1024.0 ))
gbs=$(bc -l <<< "scale=3 ; $mbs / 1024.0")
echo "LBAs written: $lbas"
@pmalek
pmalek / count_pages.sh
Created January 20, 2014 15:04
Bash script to count pages of pdfs in current directory
#!/bin/bash
sum_pages=0
for file in *.pdf ; do
cur_pages=$(pdfinfo $file | awk '/Pages/{print $2}')
echo "pdf: $file has $cur_pages pages."
sum_pages=$(( sum_pages + cur_pages))
done
echo "All pdf files in this directory have $sum_pages pages."