This file contains hidden or 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
budbee = { | |
11123 : "Stockholm North", | |
11124 : "Stockholm North", | |
11134 : "Stockholm North", | |
11136 : "Stockholm North", | |
11137 : "Stockholm North", | |
11138 : "Stockholm North", | |
11139 : "Stockholm North", | |
11140 : "Stockholm North", | |
11145 : "Stockholm North", |
This file contains hidden or 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 | |
# ▛ ▜ | |
# The dns-report script takes a file containing a list of domainnames and does a suite of DNS queries for each. | |
# HTTP GET | |
# DNS A and MX record | |
# DNS TXT spf & _dmarc record | |
# DNSKEY used when enabling DNSsec. | |
# Link to DNSsec validation via verisign-labs | |
# | |
# usage $ dns-report.sh a_file_with_domains |
This file contains hidden or 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> | |
<head> | |
<title>Marker Animation</title> | |
<link rel="stylesheet" href="https://openlayers.org/en/v3.20.1/css/ol.css" type="text/css"> | |
<script src="https://openlayers.org/en/v3.20.1/build/ol.js"></script> | |
</head> | |
<body> | |
<div id="map" class="map"></div> | |
<label for="speed"> |
This file contains hidden or 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
import {Component} from 'angular2/core'; | |
declare var ol: any; | |
@Component({ | |
selector: 'my-map-app', | |
template: `<h1>My first openlayers 3 Angular 2 App with data</h1> | |
<p id="myposition"></p> | |
<div id="map" class="map"></div> |
This file contains hidden or 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
import {Component, OnInit} from 'angular2/core'; | |
declare var ol: any; | |
@Component({ | |
selector: 'my-map-app', | |
template: `<h1>My first openlayers 3 Angular 2 App</h1> | |
<div id="map" class="map"></div> | |
` | |
}) |