try
This commit is contained in:
parent
4a0e45310b
commit
998082e716
3 changed files with 118 additions and 0 deletions
52
SEE_list.org
Normal file
52
SEE_list.org
Normal file
|
@ -0,0 +1,52 @@
|
|||
* List of venues that can Host Social Events with a capacity between 150 and 200
|
||||
** Restaurant Adler
|
||||
*** Localisation
|
||||
Linthal
|
||||
Walk from Hotel to venue 3 minutes
|
||||
With car/Bus from Hotel to venue 1 minute
|
||||
No Train needed
|
||||
https://www.google.com/maps/dir/Hotel+Restaurant+Adler,+Hauptstrasse+33,+8783+Glarus+S%C3%BCd/Spinnerei+Linthal+AG,+Bahnhofstrasse+1,+8783+Glarus+S%C3%BCd/@46.9215446,8.9980478,17z/data=!3m1!4b1!4m13!4m12!1m5!1m1!1s0x47852546fc82bb95:0xb007658cc053a3d9!2m2!1d9.0012967!2d46.921874!1m5!1m1!1s0x478525464e52c093:0xd46fd8d5d3ab02f2!2m2!1d8.9995792!2d46.9218664?hl=de
|
||||
*** Space & Price
|
||||
https://www.adler-linthal.ch/adler/preise_d.html
|
||||
** Hotel Eidgenossen
|
||||
*** Localisation
|
||||
Linthal
|
||||
Walk from Hotel to venue 5 min
|
||||
https://www.google.com/maps/dir/Eidgenossen,+Hauptstrasse+49,+8783+Glarus+S%C3%BCd/Spinnerei+Linthal+AG,+Bahnhofstrasse+1,+8783+Glarus+S%C3%BCd/@46.9202156,8.9963966,17z/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x478525381ac0ce2b:0x9e62cf6b066b8ac9!2m2!1d8.997297!2d46.9185054!1m5!1m1!1s0x478525464e52c093:0xd46fd8d5d3ab02f2!2m2!1d8.9995792!2d46.9218664!3e2
|
||||
*** Space & Price
|
||||
https://www.braunwald.ch/Gastronomie/Restaurant-Linthal-Hotel-Eidgenossen
|
||||
** Hotel Glarnerhof
|
||||
*** Localisation
|
||||
Glarus
|
||||
With Train to the venue 36min - 45min
|
||||
https://www.google.com/maps/dir/Glarnerhof,+Bahnhofstrasse+2,+8750+Glarus/Spinnerei+Linthal+AG,+Bahnhofstrasse+1,+8783+Glarus+S%C3%BCd/@46.9805826,8.9708117,12z/data=!3m1!4b1!4m13!4m12!1m5!1m1!1s0x47852db2ba2dda45:0xc171a294c49e2313!2m2!1d9.070613!2d47.039694!1m5!1m1!1s0x478525464e52c093:0xd46fd8d5d3ab02f2!2m2!1d8.9995792!2d46.9218664?hl=de
|
||||
*** Space & Price
|
||||
- Room - http://glarnerhof.ch/bankett-seminar/saal/
|
||||
- Beds - http://glarnerhof.ch/hotel/zimmer/
|
||||
** Lintharena
|
||||
*** Localisation
|
||||
Näfels
|
||||
Need to take Bus and Train:
|
||||
With Train from Hotel to venue 55min (Approximately)
|
||||
-Walk 1min 30sek
|
||||
-Bus to Trainstation 6min
|
||||
-Train to Linthal 41min
|
||||
-Walk to venue 5min
|
||||
https://www.google.com/maps/dir/Sportzentrum+linth-arena+sgu,+Oberurnerstrasse+14,+8752+N%C3%A4fels/Spinnerei+Linthal+AG,+Bahnhofstrasse+1,+8783+Glarus+S%C3%BCd/@47.0290983,8.9004227,11z/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x479ad2beddd9cbf1:0x2f4eca4e37f3c2f9!2m2!1d9.065244!2d47.108012!1m5!1m1!1s0x478525464e52c093:0xd46fd8d5d3ab02f2!2m2!1d8.9995792!2d46.9218664!3e3?hl=de
|
||||
*** Space
|
||||
Up to 2000 seats
|
||||
*** Price
|
||||
-Price list Hotel:
|
||||
https://www.lintharena.ch/Hotel/Zimmer
|
||||
-Price list Events:
|
||||
https://www.lintharena.ch/Portals/0/Reglement/Preisliste_Aktuell_2018_7_7MwSt.pdf
|
||||
* Attractions
|
||||
** Nearly Venue
|
||||
- Funicular Urnerboden-Fisetengrat (Seilbahn)
|
||||
- Klausenpass
|
||||
** Kanton Glarus
|
||||
- Klöntalersee
|
||||
- Glarusell (Glarner-shop)
|
||||
- ountry-plate mountain Engi (Landesplattenberg)
|
||||
- Country-plate mountain Elm (Schiefertafelfabrik)
|
||||
- House of Art Glarus (Kunsthaus)
|
BIN
ssh -a image
Normal file
BIN
ssh -a image
Normal file
Binary file not shown.
After Width: | Height: | Size: 197 KiB |
66
test2.html
Normal file
66
test2.html
Normal file
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<script>
|
||||
/**
|
||||
* Get the user IP throught the webkitRTCPeerConnection
|
||||
* @param onNewIP {Function} listener function to expose the IP locally
|
||||
* @return undefined
|
||||
*/
|
||||
function getUserIP(onNewIP) { // onNewIp - your listener function for new IPs
|
||||
//compatibility for firefox and chrome
|
||||
var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
|
||||
var pc = new myPeerConnection({
|
||||
iceServers: []
|
||||
}),
|
||||
noop = function() {},
|
||||
localIPs = {},
|
||||
ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
|
||||
key;
|
||||
|
||||
function iterateIP(ip) {
|
||||
if (!localIPs[ip]) onNewIP(ip);
|
||||
localIPs[ip] = true;
|
||||
}
|
||||
|
||||
//create a bogus data channel
|
||||
pc.createDataChannel("");
|
||||
|
||||
// create offer and set local description
|
||||
pc.createOffer().then(function(sdp) {
|
||||
sdp.sdp.split('\n').forEach(function(line) {
|
||||
if (line.indexOf('candidate') < 0) return;
|
||||
line.match(ipRegex).forEach(iterateIP);
|
||||
});
|
||||
|
||||
pc.setLocalDescription(sdp, noop, noop);
|
||||
}).catch(function(reason) {
|
||||
// An error occurred, so handle the failure to connect
|
||||
});
|
||||
|
||||
//listen for candidate events
|
||||
pc.onicecandidate = function(ice) {
|
||||
if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
|
||||
ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
|
||||
};
|
||||
}
|
||||
|
||||
// Usage
|
||||
|
||||
getUserIP(function(ip){
|
||||
alert("Got IP! :" + ip);
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>A Testing Web Page</h1>
|
||||
<p id="demo">Check IP</p>
|
||||
<button type="button" onclick="getUserIP()">Get user IP</button>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue