I hereby claim:
- I am flungo on github.
- I am flungo (https://keybase.io/flungo) on keybase.
- I have a public key whose fingerprint is 8AAF 769C E77D F5D0 9D24 D232 1E21 446D 3E71 CBDB
To claim this, I am signing this object:
#!/bin/bash | |
# MIT License | |
# | |
# Copyright (c) 2017 Fabrizio Lungo <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
#!/bin/bash | |
for d in $(find /sys/kernel/iommu_groups/ -type l | sort -n -k5 -t/); do | |
n=${d#*/iommu_groups/*}; n=${n%%/*} | |
printf 'IOMMU Group %s ' "$n" | |
lspci -nns "${d##*/}" | |
done; |
# SSH wrapper function that replaces uncommon TERM values with `xterm`. | |
# | |
# The term values listed for override should be fully xterm compatible for this to work. | |
# Removes problems of unrecognised TERM when connecting to remote servers without having to install the appropriate terminfo. | |
function ssh | |
if contains $TERM rxvt-unicode-256color | |
env TERM=xterm ssh $argv | |
else | |
command ssh | |
end |
#!/bin/bash | |
# Initialise a VirtualBox host-only network adapter on the host using iproute2 instead of net-tools. | |
# | |
# Usage: vboxnetinit [INTERFACE [ADDRESS]] | |
# | |
# INTERFACE the name of the host-only network interface. Defaults to "vboxnet0" | |
# ADDRESS the address to assign to the host with subnet in CIDR notation | |
# Get the variables | |
NETWORK_NAME=${1:-vboxnet0} |
#!/bin/sh | |
# | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2015-2016 Stefan Tatschner | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
From 27017125a5c4ede839e5b5f29f680bc96d6992a2 Mon Sep 17 00:00:00 2001 | |
From: Fabrizio Lungo <[email protected]> | |
Date: Thu, 12 May 2016 11:36:28 +0100 | |
Subject: [PATCH] Added patch for missing cmath import | |
Signed-off-by: Fabrizio Lungo <[email protected]> | |
--- | |
PKGBUILD | 13 ++++++++++--- | |
1 file changed, 10 insertions(+), 3 deletions(-) |
[DragonRise Inc. Generic USB Joystick] | |
plugged = True | |
plugin = 2 | |
mouse = False | |
AnalogDeadzone = 4096,4096 | |
AnalogPeak = 32768,32768 | |
DPad R = hat(0 Right) | |
DPad L = hat(0 Left) | |
DPad D = hat(0 Down) | |
DPad U = hat(0 Up) |
I hereby claim:
To claim this, I am signing this object:
package org.bukkit.material; | |
import org.bukkit.Material; | |
import org.bukkit.block.BlockFace; | |
/** | |
* Represents a door. | |
* | |
*/ | |
@Deprecated |
/** | |
* author Remy Sharp | |
* url http://remysharp.com/tag/marquee | |
*/ | |
(function ($) { | |
$.fn.marquee = function (klass) { | |
var newMarquee = [], | |
last = this.length; |