Skip to content

Instantly share code, notes, and snippets.

View vonglasow's full-sized avatar
🎯
Focusing

vonglasow

🎯
Focusing
View GitHub Profile
@vonglasow
vonglasow / .vimrc
Created January 18, 2024 15:31
.vimrc
if $COLORTERM == 'gnome-terminal'
set t_Co=256
endif
syntax on
set autoindent
set backspace=indent,eol,start
set browsedir=buffer
set cmdheight=1
set completeopt=menu,preview
@vonglasow
vonglasow / starship.toml
Created January 17, 2024 08:10
config starship.toml
add_newline = false
[battery]
full_symbol = "🔋"
charging_symbol = "⚡️"
discharging_symbol = "💀"
[cmd_duration]
min_time = 4
format = "[$duration]($style) "
@vonglasow
vonglasow / keybase.md
Created May 6, 2019 08:45
keybase.md

Keybase proof

I hereby claim:

  • I am vonglasow on github.
  • I am vonglasow (https://keybase.io/vonglasow) on keybase.
  • I have a public key ASBv3El-jKzrU2HplPL5YGTvOuIMxDxbgQygb_lBVBJAuQo

To claim this, I am signing this object:

@vonglasow
vonglasow / composer.json
Created October 17, 2016 10:50
apigility
{
"name": "zfcampus/zf-apigility-skeleton",
"description": "Skeleton Application for Apigility",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"api",
"apigility",
"framework",
"zf2"
<?php
/**
* @tags foo
*/
class test extends \atoum
{
/**
* @tags bar
*/

Keybase proof

I hereby claim:

  • I am vonglasow on github.
  • I am ashgenesis (https://keybase.io/ashgenesis) on keybase.
  • I have a public key whose fingerprint is 052A 9AB4 961A DAB9 78D2 6C20 750F 798B FD29 4407

To claim this, I am signing this object:

@vonglasow
vonglasow / create_koken.sh
Last active June 15, 2016 11:16 — forked from bradleyboy/create_koken.sh
Docker script for Koken
#!/bin/bash
echo ""
# Root check
if [[ "$UID" -ne 0 ]]; then
echo "!! This script requires root privileges. sudo ./create_koken.sh"
echo ""
exit
fi
@vonglasow
vonglasow / sonar-clover.xsd
Last active March 15, 2016 12:03
xsd for sonar xunit reporting
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="coverage">
<xs:complexType>
<xs:sequence>
<xs:element name="file" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="lineToCover" minOccurs="0" maxOccurs="unbounded">
@vonglasow
vonglasow / json.php
Created November 4, 2014 10:58
compiler
$sampler = new \Hoa\Compiler\Llk\Sampler\Coverage(
\Hoa\Compiler\Llk\Llk::load(
new \Hoa\File\Read($file->getPathName())
),
new \Hoa\Regex\Visitor\Isotropic(
new \Hoa\Math\Sampler\Random()
)
);
$json = array();
@vonglasow
vonglasow / pre-commit.sh
Last active August 29, 2015 14:04
hook
#!/bin/sh
# PRE-COMMIT HOOK
#
# The pre-commit hook is invoked before a Subversion txn is
# committed. Subversion runs this hook by invoking a program
# (script, executable, binary, etc.) named 'pre-commit' (for which
# this file is a template), with the following ordered arguments:
#
# [1] REPOS-PATH (the path to this repository)