I hereby claim:
- I am bendem on github.
- I am bendem (https://keybase.io/bendem) on keybase.
- I have a public key whose fingerprint is ECFA 8E8B 156C 58EA DAE7 EEE6 C743 CE8A AC8A 8DD3
To claim this, I am signing this object:
#!/bin/bash | |
set -Eeuo pipefail | |
export NODE_EXTRA_CA_CERTS="${NODE_EXTRA_CA_CERTS:-/etc/pki/tls/certs/ca-bundle.crt}" | |
readonly BW_SOCKET="${BW_SOCKET:-$HOME/.bw-agent.sock}" | |
unlock() { | |
if [[ $(bw status | jq -r .status) == "unauthenticated" ]]; then | |
bw login |
ldapsearch -LLL -o ldif-wrap=no -H ldapi:/// -Y EXTERNAL -b 'cn=config' 'olcAccess=*' olcAccess \ | |
| awk '{ | |
if ($1 == "olcAccess::") { | |
command = "base64 -d -i"; print $2 | command; close(command) | |
} else { | |
print $0 | |
} | |
}' |
[Unit] | |
Description=Apache Tomcat Web Application Container | |
After=network-online.target | |
Wants=network-online.target | |
[Service] | |
User=tomcat | |
Group=tomcat | |
WorkingDirectory=/opt/tomcat-9 |
'use strict'; | |
var htmlLoaded = false; | |
var imgLoaded = false; | |
var pic = new Image; | |
pic.onload = function() { | |
imgLoaded = true; | |
load(); | |
}; |
mount="/home/bendem/nas-samba" | |
d=`date +"%H:%M:%S %d-%m-%Y"` | |
echo "Backup task running $d" | |
# Skip if not mounted | |
grep -qs "$mount" /proc/mounts | |
if [ $? -ne 0 ]; then | |
echo "Skipping..." | |
exit |
var Enum = function(values, methods) { | |
var created = {}; | |
var EnumValue = function(value) { | |
this.value = value; | |
} | |
if(methods) { | |
for(var name in methods) { | |
EnumValue.prototype[name] = methods[name]; | |
} |
// Simple ajax thing to send stuff | |
// @param url string | |
// @param success callback | |
// @param method string (optional) | |
// @param data plainobject (optional) | |
function ajax(url, success, method, data) { | |
var xhr = new XMLHttpRequest(); | |
// Set the callback to use when all the stuff is done | |
xhr.onreadystatechange = function() { | |
// We are not interested in the 3 other stages |
package be.bendem.testing.utils; | |
public class ColorUtils { | |
private ColorUtils() {} | |
public static int[] decompose(int color) { | |
int[] rgb = new int[3]; | |
rgb[0] = color >> 16 & 0xFF; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Glowstone Testing</title> | |
<!--<script src="/bundles/modernizr?v=qVODBytEBVVePTNtSFXgRX0NCEjh9U_Oj8ePaSiRcGg1"></script>--> | |
<!--<link rel="stylesheet" href="/Content/css/Glowstone.css">--> | |
<link rel="stylesheet" href="style.css"> | |
<script src="http://glowstone.turt2live.com/bundles/jquery?v=JzhfglzUfmVF2qo-weTo-kvXJ9AJvIRBLmu11PgpbVY1"></script> |
I hereby claim:
To claim this, I am signing this object: