Skip to content

Instantly share code, notes, and snippets.

View tempusthales's full-sized avatar
🤷‍♂️
It's not my fault, he made me do it...

Gilbert Palau tempusthales

🤷‍♂️
It's not my fault, he made me do it...
View GitHub Profile
// ==UserScript==
// @name noVNC Paste for Proxmox (Firefox)
// @namespace http://tampermonkey.net/
// @version 0.2a
// @description Pastes text into a noVNC window (for use with Proxmox specifically) on Firefox Browsers
// @author Tempus Thales
// @match https://*
// @include /^.*novnc.*/
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @grant none

Keybase proof

I hereby claim:

  • I am tempusthales on github.
  • I am tempusthales (https://keybase.io/tempusthales) on keybase.
  • I have a public key ASCkBav7BjgyjheSk0lQP0n1AI0nCg_MQZCmngjJELT1_Ao

To claim this, I am signing this object:

Urgently looking for Packaging Engineer(macOS) in San Antonio / Plano- TX
Please find the complete JD below and let me know if you are interested.
Job Title:- Packaging Engineer(Mac)
Locations:- San Antonio / Plano- TX
Duration:- 12+ Months Contract
Role DescriptionSupport the create, management and distribution Mac PackagingWriting and updating documentation.Help troubleshoot and support mac packaging customers. Core Skills: Excellent shell scripting knowledge within Linux or macOS environment (BASH / Zsh/Fish)Should know the basics of how to read and write code.Excellent Documentation skills.Excellent Communication skills and interpersonal skills.Knowledge of the macOS environment.Experience using GIT or similar version control software.Analytical and troubleshooting skills. Good to have : Knowledge of Python or similar language (Ruby/Pearl / PHP)Knowledge of Munki or similar management platforms.   With Best Regards,
Swatantra Mishra | SYSMIND, LLC
[b]Note: This thread is for goons that (have preordered or are planning to) play Fallout 76 and who want to discuss and meet up in-game to play in groups.[/b]
[b]What is Fallout 76?[/b]
https://youtu.be/M9FGaan35s0
Fallout 76 is a narrative prequel to previous Fallout games and takes place in 2102, twenty-five years after the launch of the nukes that devastated the Earth. The player character is a resident of Vault 76, a fallout shelter that was built in West Virginia to house America's best and brightest minds. The player character exits the Vault on "Reclamation Day" as part of a plan to re-colonize the Wasteland.
Work together – or not – to survive. Under the threat of nuclear annihilation, you’ll experience the largest, most dynamic world ever created in the legendary Fallout universe. Play solo or band together as you explore, quest, build and triumph against the wasteland’s greatest threats.
@tempusthales
tempusthales / gc-install.sh
Created June 25, 2018 16:34
Google Chrome for mass deployment with Yo notifications
#!/bin/bash
# Notify user if older version is running
USERNAME=`ps -ajxww | grep -v grep | grep loginwindow | awk '{print $1}'`
USERID="$(id -u $USERNAME)"
CHROMEPKG=GoogleChrome-67.0.3396.87.pkg
# Check for running Google Chrome
if [[ ! "$(pgrep -l Google Chrome | awk '{print$2}')" = "" ]]; then
launchctl asuser ${USERID} /Applications/Utilities/yo.app/Contents/MacOS/yo -t "Google Chrome Update" -s "Restarting Google Chrome" -n "Updating Chrome to version 67-87."
@tempusthales
tempusthales / ff-install.sh
Created June 25, 2018 16:19
Install Firefox for mass deployment with Yo notifications
#!/bin/bash
# Notify user if older version is running
USERNAME=`ps -ajxww | grep -v grep | grep loginwindow | awk '{print $1}'`
USERID="$(id -u $USERNAME)"
FFPKG="Firefox-60.0.2.pkg"
# Check for running firefox
if [[ ! "$(pgrep -l firefox | awk '{print$2}')" = "" ]]; then
launchctl asuser ${USERID} /Applications/Utilities/yo.app/Contents/MacOS/yo -t "Firefox Update" -s "Restarting Firefox" -n "Firefox updated to version 60.0.2"
import discord
import asyncio
from discord.ext import commands
import random
import yaml
import logging
logging.basicConfig(filename='authbot.log', level=logging.INFO)
GoonAuth2
GoonAuth2 is a REST API server that can be used to authorize members of the Something Is Awful internet forum.
Validating membership
1. Generate a validation hash
POST to http://auth.everythingisgoon.com/v1/generate_hash/ with a JSON-encoded payload containing a username value equal to the
user’s username.
@tempusthales
tempusthales / goon-auth.php
Created May 8, 2018 02:06
goon auth in php
<?php if (isset($_GET["username"])): ?>
<?php
$username = $_GET["username"];
$url = "http://forums.somethingawful.com/member.php?action=getinfo&username=$username";
$page = file_get_contents($url);
if (preg_match("/<dt>Interests<\\/dt>\s*<dd>(.*?)<\\/dd>/i", $page, $matches)) {
echo "${username}'s interests are: $matches[1]";
} else {
echo "What the heck, man";
@tempusthales
tempusthales / mrclean.sh
Created April 19, 2018 01:28
script for cleaning the keychain
#!/bin/bash
\#
\# keychain-clean.sh
\# cleans and disinfects keychains
\#
if [ -d "/Users/default/Library/Keychains" ]; then
/bin/rm -rf /Users/default/Library/Keychains
fi
/bin/mkdir /Users/default/Library/Keychains
/usr/sbin/chown default:staff /Users/default/Library/Keychains