View move_spam.py
import os | |
import re | |
for name in os.listdir('.'): | |
if not re.search('quickbook', name, re.IGNORECASE): | |
continue | |
print(name) | |
os.rename(name, '../pages_deleted/' + name) |
View test.bash
#!/usr/bin/env bash | |
mkdir "/tmp/test_bash" | |
mkdir "/tmp/test_bash/foo bar" | |
mkdir "/tmp/test_bash/bar baz" | |
mkdir "/tmp/test_bash/foo" | |
mkdir "/tmp/test_bash/bar" | |
touch "/tmp/test_bash/foo bar/file" |
View ctest-repeat-until-fail.bash
ctest-repeat-until-fail() { | |
count=0 | |
ret=0 | |
until [ ${ret} -ne 0 ]; do | |
count=$((count+1)) | |
echo "Run #$count" | |
ctest $@ | |
ret=$? | |
done | |
} |
View example.html
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Example slides</title> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> |
View CMakeLists.txt
cmake_minimum_required(VERSION 2.8.3) | |
project(foo) | |
if(NOT WIN32) | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall") | |
endif() | |
# find dependencies |
View CMakeLists.txt
cmake_minimum_required(VERSION 2.8.3) | |
project(foo) | |
if(NOT WIN32) | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall") | |
endif() | |
# find dependencies |
View CMakeLists.txt
cmake_minimum_required(VERSION 2.8.3) | |
project(foo) | |
# find dependencies | |
find_package(catkin REQUIRED COMPONENTS message_generation roscpp std_msgs) | |
find_package(Boost REQUIRED) | |
View gist:37febb42abeb8631f946
job_prefix = 'jenkins21605_caseB_' | |
println 'Deleting jobs from previous tests...' | |
for (p in Jenkins.instance.allItems) { | |
if (!p.name.startsWith(job_prefix)) continue | |
println '- ' + p.name | |
p.delete() | |
} | |
println '' |
View gist:9bbd47397e48ef3ceef8
job_prefix = 'jenkins21605_caseA_' | |
println 'Deleting jobs from previous tests...' | |
for (p in Jenkins.instance.allItems) { | |
if (!p.name.startsWith(job_prefix)) continue | |
println '- ' + p.name | |
p.delete() | |
} | |
println '' |
View gist:630084eefb44baa79f15
job_prefix = 'jenkins21605_' | |
println 'Deleting jobs from previous tests...' | |
for (p in Jenkins.instance.allItems) { | |
if (!p.name.startsWith(job_prefix)) continue | |
println '- ' + p.name | |
p.delete() | |
} | |
println '' |