Skip to content

Instantly share code, notes, and snippets.

@bendavis78
bendavis78 / get-authorized-keys.py
Created August 31, 2018 04:27
Python script for sshd's AuthorizedKeysCommand to get pubkeys from ldap
#!/usr/bin/env python3
import ldap
import os
import pwd
import sys
HOST = 'ldap://ldap.example.com'
BASE = 'dc=example,dc=ocom'
# Set a short timeout since this should be run on localhost
TIMEOUT = 5.0
#!/bin/sh
[ -z "$1" ] && echo "Usage: $0 path" && exit 0;
[ ! -f "$1" ] && echo "File not found: $1" && exit 1;
img=$(realpath $1);
xfconf_query="/usr/bin/xfconf-query";
query() {
$xfconf_query -c xfce4-desktop -l | grep '^/backdrop/.*/last-image' || echo "fail" && exit 1
}

Using Python w/ Minecraft on Ubuntu

These instructions should work on any Ubuntu-based OS, but have only been tested on GalliumOS.

Install required packages

Copy and paste the following line into a terminal and press enter to install all the dependencies (you might already have some installed):

sudo apt update
sudo apt install python-software-properties python3 python3-pip idle3 git
sudo apt install openjdk-8-jre-headless openjdk-8-jdk maven
@bendavis78
bendavis78 / Collisions.js
Created April 24, 2018 21:34
extends 3D objects (eg, `Mesh`, or any subclass of `Object3D`) and adds a `.intersects()` function to check if the objects is touching one or more other objects.
/* global THREE */
(function() {
function getBoundingBox(obj) {
var min = obj.position.clone();
var max = obj.position.clone();
if (obj.geometry) {
if (!obj.geometry.boundingBox) {
@bendavis78
bendavis78 / monty.py
Last active September 26, 2017 06:00
import sys
import random
results = []
strategy = 'stay'
if len(sys.argv) > 1:
strategy = sys.argv[1]
for i in range(0, 100):
# Shuffle doors
<body></body>
<script src="http://gamingJS.com/Three.js"></script>
<script src="http://gamingJS.com/ChromeFixes.js"></script>
<script>
// This is where stuff in our game will happen:
var scene = new THREE.Scene();
// This is what sees the stuff:
var aspect_ratio = window.innerWidth / window.innerHeight;
var camera = new THREE.PerspectiveCamera(75, aspect_ratio, 1, 10000);
// Store an array of strings with each choice
var choices = [
'rock',
'paper',
'scissors'
];
// Store an array of strings with each image URL
var images = [
'http://i.imgur.com/n6xptEr.png',
<div class="player">
<img src="http://i.imgur.com/n6xptEr.png" class="rock">
<img src="http://i.imgur.com/n4bDRXp.png" class="paper">
<img src="http://i.imgur.com/E7loAXb.png" class="scissors">
</div>
<div>
<img src="" class="computer">
</div>
<div class="player">
<img src="http://i.imgur.com/n6xptEr.png" class="rock">
<img src="http://i.imgur.com/n4bDRXp.png" class="paper">
<img src="http://i.imgur.com/E7loAXb.png" class="scissors">
</div>
<div class="computer">
<img src="">
</div>
<div class="player">
<img src="http://i.imgur.com/n6xptEr.png" class="rock">
<img src="http://i.imgur.com/n4bDRXp.png" class="paper">
<img src="http://i.imgur.com/E7loAXb.png" class="scissors">
</div>