Repair manual: http://topics-cdn.dell.com/pdf/xps-15-9560-laptop_setup%20guide_en-us.pdf
I have:
Product Name: XPS 15 9560
System BIOS: 1.0.3
Service Tag: 3862XF2
Repair manual: http://topics-cdn.dell.com/pdf/xps-15-9560-laptop_setup%20guide_en-us.pdf
I have:
Product Name: XPS 15 9560
System BIOS: 1.0.3
Service Tag: 3862XF2
services.openvpn.servers.example = { | |
config = someconfighere; | |
autoStart = true; | |
up = '' | |
echo nameserver $nameserver | ${pkgs.openresolv}/bin/resolvconf -a $dev | |
''; | |
down = '' | |
echo nameserver $nameserver | ${pkgs.openresolv}/bin/resolvconf -d $dev | |
''; | |
}; |
#!/usr/bin/env bash | |
MYCOMMAND='while [ true ]; do sleep 1; echo "beje"; done' | |
# This will take down the whole process tree on ctrl+c | |
trap "exit" INT TERM | |
trap "kill 0" EXIT | |
while true; do | |
sleep 1; |
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Originally developed by Thomas Parslow http://almostobsolete.net | |
# Extended by Urban Skudnik [email protected] | |
# | |
# Just a work in progress and adapted to what I need right now. | |
# It does uploads (via a file-like object that you write to) and | |
# I've started on downloads. Needs the development version of Boto from Github. | |
# |