-
Open Chrome on "http://www.ifiske.se/index.php/en/fishing-areas/karta"
-
Press F12 and go to the "Console" tab
-
Paste the following code:
function Export_iFiske_To_KML() { var template = ` <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2">
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 | |
| set -euo pipefail | |
| # Disables Ubuntu shortcuts that clash with IntelliJ Idea (and probably other | |
| # Jetbrain products). | |
| # | |
| # Creates a backup file to restore the previous settings. To not have some | |
| # shortcuts disabled, comment them out in the `KEYS` array. | |
| # | |
| # Tested on : Ubuntu 15.10 |
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 | |
| # This script executes arbitary commands on a remote server. | |
| # Example: ./remote ls -alf | |
| # If CMD is provided in the configuration section below | |
| # Example (RMT_CMD="ls"): ./remote -alf | |
| # If CMD is defined provided in the environment variables | |
| # Example: RMT_CMD=ls ./remote -alf |
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 | |
| if [ $# -eq 0 ]; then | |
| echo "Usage (i.e.): manman curl -u" | |
| exit 3 | |
| fi | |
| if [ $# -eq 1 ]; then | |
| man "$1" | |
| exit 0 |
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 | |
| # | |
| # This script copies the contents of the block below into a file. | |
| # Useful for self-extracting configuration files or the like. | |
| # | |
| # Author: Jonas Gröger <jonas@huntun.de> | |
| # | |
| <<DATASECTION |
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
| quiet_update() { | |
| DEBIAN_FRONTEND=noninteractive apt-get update -qq < /dev/null > /dev/null | |
| } | |
| quiet_install() { | |
| DEBIAN_FRONTEND=noninteractive apt-get install -qq "$@" < /dev/null > /dev/null | |
| } | |
| quiet_install_no_recommends() { | |
| DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -qq "$@" < /dev/null > /dev/null |
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
| #!/usr/bin/env bash | |
| # Documentation | |
| # https://docs.gitlab.com/ce/api/projects.html#list-projects | |
| NAMESPACE="YOUR_NAMESPACE" | |
| BASE_PATH="https://gitlab.example.com/" | |
| PROJECT_SEARCH_PARAM="" | |
| PROJECT_SELECTION="select(.namespace.name == \"$NAMESPACE\")" | |
| PROJECT_PROJECTION="{ "path": .path, "git": .ssh_url_to_repo }" |
I hereby claim:
- I am jonasgroeger on github.
- I am jonasgroeger (https://keybase.io/jonasgroeger) on keybase.
- I have a public key ASChemutzTh_F1v-seff00EIXO3DRuzZGd6cUWRMyGckowo
To claim this, I am signing this object:
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
| package de.jonasgroeger.logback; | |
| import ch.qos.logback.core.LogbackException; | |
| import ch.qos.logback.core.rolling.RollingFileAppender; | |
| import ch.qos.logback.core.rolling.RollingPolicy; | |
| import ch.qos.logback.core.rolling.TimeBasedFileNamingAndTriggeringPolicy; | |
| import ch.qos.logback.core.rolling.TimeBasedRollingPolicy; | |
| import ch.qos.logback.core.rolling.helper.CompressionMode; | |
| import ch.qos.logback.core.rolling.helper.Compressor; |
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
| bash -c "rm -rf /tmp/test-d/; mkdir -p /tmp/test-d; cd /tmp/test-d/; git init" 1>/dev/null |