I hereby claim:
- I am geggo98 on github.
- I am geggo (https://keybase.io/geggo) on keybase.
- I have a public key ASC5Vs6lW0DiAkg7IBvp5BQDsEB77wRnOTt-ggXO7qe3nwo
To claim this, I am signing this object:
#!/bin/bash | |
# Function to calculate edit distance | |
calculate_edit_distance() { | |
file1="$1" | |
file2="$2" | |
distance=$(diff -U 0 "$file1" "$file2" | grep -v "^@" | wc -l) | |
echo "$file1,$file2,$distance" | |
} |
// ==UserScript== | |
// @name Auto Bet on Kicktipp for group "theocup2022" | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Autofill tip based on the betting quotes shown. | |
// @author You | |
// @match https://*.kicktipp.com/theocup2022/predict* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
let g:solarized_termcolors=256 | |
set t_Co=256 | |
set background=dark | |
colorscheme solarized | |
if has('mouse') | set mouse=a | endif | |
set nrformats= | |
set number | |
set relativenumber |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
<?php | |
function adminer_object() { | |
// required to run any plugin | |
include_once "./plugins/plugin.php"; | |
// autoloader | |
foreach (glob("plugins/*.php") as $filename) { | |
include_once "./$filename"; | |
} | |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
#! /bin/sh | |
# ZFS health version for Ubuntu | |
# You must install the package "dateuils" from the univers | |
# | |
# Based on Calomel.org | |
# https://calomel.org/zfs_health_check_script.html | |
# FreeBSD ZFS Health Check script | |
# zfs_health.sh @ Version 0.16 | |
# Check health of ZFS volumes and drives. On any faults send email. |
import akka.actor._ | |
import akka.event.Logging | |
import akka.util.Timeout | |
import scala.concurrent.duration._ | |
import java.util.concurrent.TimeUnit | |
import scala.concurrent.duration.FiniteDuration | |
import scala.concurrent.ExecutionContext.Implicits.global | |
import scala.reflect.ClassTag | |
/** |