A one paragraph description about the container.
These instructions will cover usage information and for the docker container
#!/usr/bin/env python | |
import os | |
import urllib2 | |
countries={'DK':'denmark'} | |
os.system("/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper begin") | |
for country in countries.keys(): |
Handy helpers for controlling visibility of elements until Vue has compiled.
Use like:
<div v-cloak>
<h1>
<span class="v-cloak--inline">Loading...</span> <!-- Only displayed before compiling -->
<span class="v-cloak--hidden">{{ post.title }}</span> <!-- Hidden until compiling is finished -->
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use Getopt::Std; | |
use YAML::XS; | |
use Net::DNSBL::Client; | |
my %runOptions=(); | |
getopts("q:", \%runOptions); |
<link href="css/stylesheet.css?t=<?php echo time(); ?>" rel="stylesheet" type="text/css"/> |
/* Browser specific (not valid) styles to make preformatted text wrap */ | |
pre { | |
white-space: pre-wrap; /* css-3 */ | |
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ | |
white-space: -pre-wrap; /* Opera 4-6 */ | |
white-space: -o-pre-wrap; /* Opera 7 */ | |
word-wrap: break-word; /* Internet Explorer 5.5+ */ | |
} |
# pxelinux.cfg/default file | |
default debian/7.4/amd64/boot-screens/vesamenu.c32 | |
prompt 1 | |
timeout 300 | |
menu title - Boop Options Menu - | |
label Debian-7.4 | |
menu label ^0 Debian 7.4 | |
#include debian/7.4/amd64/boot-screens/menu.cfg | |
kernel debian/7.4/amd64/linux |
// FILENAME: server_WelcomeCredits.sqf | |
// ===== | |
// SCRIPT NAME: Server Intro Credits Script by IT07 | |
// SCRIPT VERSION: v1.3.7 BETA | |
// Credits for original script: Bohemia Interactive http://bistudio.com | |
// ========== SCRIPT CONFIG ============ | |
_onScreenTime = 6; //how long one role should stay on screen. Use value from 0 to 10 where 0 is almost instant transition to next role | |
//NOTE: Above value is not in seconds. It is percentage. Default: 6 |
echo "Expanding the save panel by default" | |
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true | |
echo "Why is this not default anymore?! Enabling full keyboard access for all controls (e.g. enable Tab in modal dialogs)" | |
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 | |
echo "I'm in yer computer, hax0ring yr passwords!" | |
echo "Requiring password immediately after sleep or screen saver begins" | |
defaults write com.apple.screensaver askForPassword -int 1 |