Created 2013-12-10
Howto install the logitech media server formerly known as squeezebox server on Cubieboard 2 (arm linux) via cubian.
- Cubian: http://cubian.org/
- Site: http://downloads.slimdevices.com/
- Current version: LogitechMediaServer_v7.7.3
keychain.csv | |
keychain.txt |
Created 2013-12-10
Howto install the logitech media server formerly known as squeezebox server on Cubieboard 2 (arm linux) via cubian.
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: openhab | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: OpenHAB Daemon | |
### END INIT INFO |
var app = require(process.cwd() + '/app'); | |
var winston = require('winston'); | |
var _ = require('lodash'); | |
// Set up logger | |
var customColors = { | |
trace: 'white', | |
debug: 'green', | |
info: 'green', | |
warn: 'yellow', |
These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
config.use_transactional_fixtures = false | |
config.before(:suite) do | |
# Do truncation once per suite to vacuum for Postgres | |
DatabaseCleaner.clean_with :truncation | |
# Normally do transactions-based cleanup | |
DatabaseCleaner.strategy = :transaction | |
end | |
config.around(:each) do |spec| |
// .... | |
def compilerConfig = new CompilerConfiguration() | |
compilerConfig.optimizationOptions.indy = true | |
def shell = new GroovyShell(compilerConfig) |
location /resize { | |
alias /tmp/nginx/resize; | |
set $width 150; | |
set $height 100; | |
set $dimens ""; | |
if ($uri ~* "^/resize_(\d+)x(\d+)/(.*)" ) { | |
set $width $1; | |
set $height $2; | |
set $image_path $3; |
http { | |
client_max_body_size 20M; | |
upstream influxdb { | |
server server1:8086; | |
server server2:8086; | |
} | |
upstream relay { | |
server server1:9096; | |
server server2:9096; |
#!groovy | |
docker.image('cloudbees/java-build-tools:0.0.6').inside { | |
checkout([$class: 'GitSCM', | |
branches: [[name: '*/master']], | |
extensions: [ | |
/* [$class: 'UserIdentity', email: '[email protected]', name: 'Jenkins as a Service'], */ | |
[$class: 'WipeWorkspace'], | |
[$class: 'LocalBranch', localBranch: 'master']], | |
userRemoteConfigs: [[credentialsId: 'github-credentials', url: 'https://github.com/cyrille-leclerc/my-spring-boot-app.git']]]) |