Skip to content

Instantly share code, notes, and snippets.

View skoslitz's full-sized avatar

Sebastian Koslitz skoslitz

View GitHub Profile
package main
import (
"fmt"
"log"
"github.com/blevesearch/bleve"
_ "github.com/blevesearch/bleve/search/highlight/highlighter/ansi"
)
@jaymecd
jaymecd / build_caddy.sh
Last active October 27, 2017 20:26
Build Caddy w/ plugins from sources
#!/usr/bin/env bash
#
# Author: @nikolaizujev
#
# Big respect to @mholt6 for making Caddy
#
# This script is based on:
# - https://www.calhoun.io/building-caddy-server-from-source/
# - https://g.liams.io/liam/simple-build-caddy.git
#
@d3indepth
d3indepth / .block
Last active March 31, 2021 07:05
Projection explorer
license: gpl-3.0
height: 560
border: no
@Azgaar
Azgaar / .block
Last active November 22, 2023 14:26
Fantasy Map Generator
license: gpl-3.0
height: 570
border: no
@mbostock
mbostock / .block
Last active November 13, 2016 21:45
U.S. Atlas, Redux [UNLISTED]
license: bsd-3-clause
@micahstubbs
micahstubbs / .block
Last active October 12, 2016 07:53
Animated Path on Canvas Map | SF Bay Area
border: no
license: CC0-1.0
height: 1500
cd /Library/Preferences
sudo rm com.sophos.sav.plist

cd /Library/Application\ Support/Sophos/cloud/Installer.app/Contents/MacOS/tools/
sudo ./InstallationDeployer —force_remove
@ericelliott
ericelliott / essential-javascript-links.md
Last active April 22, 2024 10:15
Essential JavaScript Links
// Node.js CheatSheet.
// Download the Node.js source code or a pre-built installer for your platform, and start developing today.
// Download: http://nodejs.org/download/
// More: http://nodejs.org/api/all.html
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@ciaranarcher
ciaranarcher / golang-cheat.md
Last active December 27, 2018 14:26
golang cheatsheet

Types

type Vertex struct {
    Lat, Long float64
}

Maps