Skip to content

Instantly share code, notes, and snippets.

View dotStart's full-sized avatar
💭
🧈

dotStart

💭
🧈
View GitHub Profile
<!-- ... -->
<nav id="mainNavigation">
<ul>
<li>
<a href="#">
<img src="icon" alt="" />
<span>Home</span>
</a>
</li>
<li>
@dotStart
dotStart / gist:9209296
Last active August 29, 2015 13:56
Atlassian OnDemand status image
<?php
// register error handler
set_error_handler(function($errno, $errstr, $errfile, $errline ) {
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
});
// defines
define ('IMAGE_DIR', dirname (__FILE__).'/image/'); // by default images (success.png, failed.png and unknown.png) are stored in ./image/
define ('KEY_REGEX', '~^([A-Za-z0-9]+)\-([A-Za-z0-9]+)$~'); // You usually won't need to change this
define ('SERVER_URL', 'https://yourinstance.atlassian.net/builds'); // set your Bamboo URL
@dotStart
dotStart / README
Created May 4, 2014 07:37
Clone Command Block MCEdit filter
Clone Command Block MCEdit Filter
=================================
This filter helps you to clone big structures from one position to any other
position in the level (as long as it is loaded). To achieve this it splits up
the zone in smaller 15x15x15 chunks which may be copied even though the overall
structure has more than 4096 blocks.
Usage
-----
* Select the source structure
@dotStart
dotStart / gist:42388fa597866e535f0c
Created October 15, 2014 01:59
A simple hexchat script which makes ZNCs stickychan module slightly less annoying.
import hexchat;
# Module Metadata
__module_name__ = 'ZNC Stickychan'
__module_author__ = 'Akkarin'
__module_version__ = '1.0.0'
__module_description__ = 'Makes stickychan less annoying.'
# Handles messages.
def privmsg_cb (word, word_eol, userdata):
@dotStart
dotStart / screenshot
Last active October 5, 2015 06:12
Provides a simple Amazon S3 screenshot tool.
#!/bin/bash
#----------
# Akkarin's Simple S3 Screenshot Script
#
# Requirements:
# - shutter
# - awscli
# - zenity
#
# Note: The directory defined in $SCREENSHOT_PATH needs to exist!
@dotStart
dotStart / PKGBUILD
Created June 6, 2015 21:20
Provides an LXD package for Ach Linux which may be built with makepkg.
# Maintainer: Johannes Donath <johannesd@torchmind.com>
pkgname=lxd-git
pkgver=0.9
pkgrel=0
pkgdesc="A container hypervisor and a new user experience for LXC."
provides=('lxd')
arch=('i686' 'x86_64')
url="https://linuxcontainers.org/lxd/"
license=('Apache')
groups=()
@dotStart
dotStart / gitio.py
Last active January 30, 2016 11:40
Provides a simple Hexchat plugin for replacing GitHub URLs with shortened links.
#
# Copyright 2015 Johannes Donath <johannesd@torchmind.com>
# and other copyright owners as documented in the project's IP log.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
/**
* Creates a "sneaky" consumer which disguises all thrown exceptions to work around Javac's checked exceptions.
*
* @param consumer the sneaky consumer.
* @param <I> the input type.
* @return the consumer.
*/
@Nonnull
public static <I> Consumer<I> sneakyConsumer(@Nonnull final SneakyConsumer<I> consumer) {
return (i) -> {
@dotStart
dotStart / MinecraftService.md
Last active March 28, 2024 12:39
Systemd services for Minecraft Servers

Minecraft systemd Services

This gist contains service descriptors which may be used to automatically start and re-start Minecraft servers using systemd. This allows proper control of your server startup on modern Linux distributions and will automatically manage all required tasks on startup for you.

Requirements

<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml/">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:700" />
<style typte="text/css">
body {
font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', sans-serif;
font-size: 18px;