Skip to content

Instantly share code, notes, and snippets.

View gerald24's full-sized avatar

Gerald Leeb gerald24

View GitHub Profile
@seblegall
seblegall / reverseproxy.go
Last active October 16, 2025 06:16
A reverse proxy in Golang using Gin
package main
import (
"fmt"
"net/http"
"net/http/httputil"
"net/url"
"github.com/gin-gonic/gin"
)
@ismailbay
ismailbay / create-vm.sh
Last active April 29, 2020 19:43
create ubuntu18.04 VMs
#!/bin/sh
# https://blog.alexellis.io/kvm-kubernetes-primer/
NAME=$1
CPUS=$2
RAM=$3
if [ -z "$NAME" ] ;
then
@ajgassner
ajgassner / Gk34ToWgs84CoordinatesTransformer.kt
Last active April 13, 2020 12:20
Vienna GIS Gauß-Krüger M 34 MGI Austria GK East coordinates to Google WGS84 transfomation using EPSG code 31256
// Kotlin version
// Maven dependency:
// <dependency>
// <groupId>org.locationtech.proj4j</groupId>
// <artifactId>proj4j</artifactId>
// <version>1.0.0</version>
// </dependency>
package at.agsolutions