- The End of solidarity? The return of the national though in Europe.
- Das Ende der Gemeinsamkeit? Die Rückkehr des nationalen Gedankens in Europa.
- Expert panel
- Sunday, 12.02.2017,
- Schauspiel Leipzig,
- Moderation Dr. Jens Bisky, Feuilleton SZ
/* getRoutes */ | |
mi = { | |
format : "json | xml", // optional, default: json | |
output : "geometry | description | detailed", // default: description | |
source = [ | |
{ | |
coordinate : "52.1,13.2", // mandatory | |
id : 17231823, // mandatory | |
label : "My point", // optional |
/** | |
* | |
*/ | |
package org.aksw; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.Reader; | |
import java.sql.ResultSet; |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>de.example</groupId> | |
<artifactId>services</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>war</packaging> | |
<name>services</name> |
# content has to be in .config/fish/config.fish | |
# if it does not exist, create the file | |
setenv SSH_ENV $HOME/.ssh/environment | |
function start_agent | |
echo "Initializing new SSH agent ..." | |
ssh-agent -c | sed 's/^echo/#echo/' > $SSH_ENV | |
echo "succeeded" | |
chmod 600 $SSH_ENV | |
. $SSH_ENV > /dev/null |
# http://stackoverflow.com/a/20056883 | |
CREATE OR REPLACE FUNCTION db_to_csv(path TEXT) RETURNS void AS $$ | |
declare | |
tables RECORD; | |
statement TEXT; | |
begin | |
FOR tables IN | |
SELECT (table_schema || '.' || table_name) AS schema_table | |
FROM information_schema.tables t INNER JOIN information_schema.schemata s |
/install.sh | |
» Prerender-daemon installer v1.1.1 by Luciano Mammino | |
» http://loige.com | |
» https://github.com/lmammino/prerender-daemon | |
Installing prerender-daemon | |
npm http GET https://registry.npmjs.org/prerender | |
npm http 200 https://registry.npmjs.org/prerender | |
npm http GET https://registry.npmjs.org/lodash |
cat /etc/init.d/prerender | |
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: prerender | |
# Required-Start: networking | |
# Required-Stop: networking | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Run prerender collector as daemon | |
# Description: Run prerender collector as daemon |