View viscosity-to-ios-connect.rb
config_files = Dir.glob("#{ENV['HOME']}/Library/Application Support/Viscosity/OpenVPN/*/config.conf") | |
config_files.each do |file| | |
certificate_files = ['ca', 'cert', 'key', 'tls-auth'] | |
config_dir = File.dirname(file) | |
connection_name = nil | |
new_config = [] | |
File.open(file).each do |line| | |
if line.start_with?('#viscosity name') |
View kernel
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 3.14.0-rc2 Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" | |
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" |
View lddwalk
#!/bin/bash | |
lddwalk () | |
{ | |
files=`ldd $1 | awk '{print $3'} | grep -v "^$"` | |
for file in $files; do | |
echo $file | |
lddwalk $file | |
done | |
} |
View iocheck.sh
#!/bin/sh | |
INTERVAL=10 | |
PARTITION=mmcblk0p2 | |
DEVICE=mmcblk0 | |
#PARTITION=sda2 | |
#DEVICE=sda | |
S_SIZE=`cat /sys/block/$DEVICE/queue/hw_sector_size` |
View gist:536a3504aa83a6bb206d
/* | |
Tool for computing partman partition sizes | |
Based on partman docs at https://wikitech.wikimedia.org/wiki/PartManAuto | |
To compile: gcc partman-check.c -o partman-check | |
To run: ./partman-check | |
*/ | |
#include <stddef.h> |
View gist:a57153cbc7ac73380306
Operating system: Linux | |
0.0.0 Linux 3.10.20 #1 PREEMPT Sun Apr 27 15:35:54 EDT 2014 armv6l | |
CPU: arm | |
ARMv1 ARM ARM1176 features: swp,half,thumb,fastmult,vfpv2,edsp,java,tls | |
1 CPU | |
Crash reason: SIGSEGV | |
Crash address: 0x0 | |
Thread 26 (crashed) |
View gist:f6d4c0da355bb6eb368b
Please download the following image: | |
http://updater.rasplex.com/beta/rasplex-RP-0.5.0.img.gz | |
We just need a run-through to make sure that things are working as expected before the release. | |
We also need to verify that auto-update works as expected. | |
View gist:18f3d082e9285cbf2400
Thanks for being so patient everyone! We're pretty sure you'll agree it was worth the wait. | |
This is by far the most stable and performant version of RasPlex to date! We expect it will be our last "release candidate" for 0.4.0. | |
We're running off of the very latest PHT code, which brings in a long-awaited "PlayQueue" feature - enabling you to easily binge on seasons at a time. Please note that this is very new, and any bugs you find should be reporting to Plex, not us. | |
Here are our notable changes: | |
changes: | |
- Based on PHT 1.1.1 |
View gist:4ee424fbeaf929731ded
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. |
View gist:a33daefdd7e842f33e51
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. |
OlderNewer