The current spec states that ports are a top level entry in the package.yaml
as
name: go-example-webserver
vendor: Alexander Sack <[email protected]>
architecture: amd64
icon: meta/go.svg
version: 1.0.1
#!/bin/sh | |
# /usr/lib/pm-utils/power.d/switch-noise-cancellation.sh | |
case $1 in | |
true) DISPLAY=:0 xinput --set-prop "SynPS/2 Synaptics TouchPad" 303 60, 60 ;; | |
false) DISPLAY=:0 xinput --set-prop "SynPS/2 Synaptics TouchPad" 303 15, 15 ;; | |
esac | |
exit 0 |
from hippybot.decorators import botcmd | |
class Plugin(object): | |
command_aliases = {'^5s': 'high_fives'} | |
@botcmd | |
def high_fives(self, msg, **kwargs): | |
users = [ | |
unicode(msg.getFrom()).split("/")[1].replace(' ', ''), | |
'bob', | |
'alice'] |
The current spec states that ports are a top level entry in the package.yaml
as
name: go-example-webserver
vendor: Alexander Sack <[email protected]>
architecture: amd64
icon: meta/go.svg
version: 1.0.1
Package: * | |
Pin: release o=LP-PPA-snappy-dev-beta | |
Pin-Priority: 15000 |
#!/bin/bash | |
if [[ `uname -s` == "Linux" ]]; then | |
browse="xdg-open" | |
else | |
browse="open" | |
fi | |
if [ "$#" -gt "0" ]; then | |
cd $1 | |
fi | |
BRANCH_URL=$(bzr info 2>/dev/null|grep --color=never -Po '(?<=push branch: bzr\+ssh://bazaar\.)(.*)') |
--- | |
- hosts: localhost | |
tasks: | |
- name: check for new payload | |
tags: config-changed | |
shell: if [ "$(md5sum {{ executable_path }})" != "$(cat {{ executable_md5_path }})" ]; then echo "changed"; fi | |
register: md5diff | |
changed_when: md5diff.stdout == "changed" | |
- name: store new payload md5 |
I hereby claim:
To claim this, I am signing this object:
var Node = function(vertices) { | |
var myVertices = vertices || []; | |
this.addVertex = function(vertex) { | |
myVertices.push(vertex); | |
}; | |
this.getVertices = function() { | |
return myVertices; | |
}; |
#header | |
{ | |
height: 69px !important; | |
position: absolute !important; | |
} | |
#header primary | |
{ | |
height: 69px !important; | |
} |
for NAME in ls $DIRPATH; | |
do | |
NAME2="${NAME#_}" | |
if [ "$NAME" != "$NAME" ]; then | |
mv $DIRPATH/$NAME $DIRPATH/$NAME2 | |
fi | |
done |