This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01=Immaterielle Vermögensgegenstände | |
02=Unbebaute Grundstücke und grundstücksgleiche Rechte | |
03=Bebaute Grundstücke und grundstücksgleiche Rechte | |
04=Infrastrukturvermögen | |
05=Bauten auf fremdem Grund und Boden | |
06=Kunstgegenstände, Kulturdenkmäler | |
07=Maschinen und technische Anlagen, Fahrzeuge | |
08=Betriebs- und Geschäftsausstattung | |
09=Geleistete Anzahlungen, Anlagen imBau | |
10=Anteile an verbundenen Unternehmen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RemoteApi { | |
protected RestTemplate restTemplate; | |
public RemoteApi() { | |
restTemplate = new RestTemplate(); | |
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter()); | |
} | |
protected HttpHeaders getHttpHeaders() { | |
HttpHeaders requestHeaders = new HttpHeaders(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
files=$(find . -name ".htaccess") | |
for file in $files; do | |
md5=`md5sum ${file} | awk '{ print $1 }'` | |
if [ "aaecfaf864b713ea1b05151222649929" = "$md5" ]; then | |
rm -f $file | |
else | |
echo $file | |
fi | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pbpaste | python -m json.tool | pbcopy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<title>Title</title> | |
<style type="text/css"> | |
body { | |
font-size: 17px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test</title> | |
<style type="text/css"> | |
body, html { | |
margin: 0; | |
padding: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: nodeapp | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Node App | |
### END INIT INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include | |
ESP8266WebServer server(80); //creating the server at port 80 | |
void setup() { | |
Serial.begin(115200); | |
server.on("/action1", action1); | |
server.begin(); | |
pinMode(5, OUTPUT); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//dsc | |
describe('$name$', function () { | |
$END$ | |
}); | |
//it | |
it("should $desc$", function() { | |
$END$ | |
expect(); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var files = ['Carl-Peters.geojson']; // alle geojson Dateien | |
var allWayFeatures = []; // unsere Ziel-Liste mit allen Ways | |
files.forEach(function (file) { // für jede geojson Datei ... | |
var content = fs.readFileSync(file, {encoding: 'utf-8'}); // lese Dateiinhalt als Zeichenkette | |
var geojson = JSON.parse(content); // Umwandlung in JavaScript-Objekt | |
geojson.features.forEach(function (feature) { // für jedes GeoJSON Feature (way, node, etc.) ... |
OlderNewer