Skip to content

Instantly share code, notes, and snippets.

View flotwig's full-sized avatar

Zach Bloomquist flotwig

View GitHub Profile
@flotwig
flotwig / zncmakepem.sh
Created May 8, 2014 20:37
Make a .pem for ZNC
# because i keep forgetting
rm znc.pem
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650 -nodes
cat key.pem > znc.pem
cat cert.pem >> znc.pem
#!/usr/bin/env ruby
# encoding: UTF-8
require 'snoo'
reddit = Snoo::Client.new :useragent => '/u/flotwig - Responds to "It is known." with "It is known." http://l.t.tl/1q'
reddit.log_in 'KhaleesiServantGirl', ''
debug = false
latest_id = 0
def base10_reddit_id(base36_id)
return base36_id.split('_',2).last.to_i(36)
end
@flotwig
flotwig / rando.rb
Created July 29, 2014 23:07
irc.snoonet.org ##random
require 'cinch'
require 'open-uri'
require 'json'
require 'date'
class Rando
include Cinch::Plugin
match /raw (.+)/, method: :do_raw
match /refresh/, method: :do_refresh
match /index/, method: :do_index_get
match /index (.+)/, method: :do_index_set
<?php
ini_set('xdebug.max_nesting_level', 10000000000000000000000000000000);
$set = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','1','2','3','4','5','6','7','8','9','0','@','!','#','$','%','^','&','*','(',')','-',' ','+','-');
$set = array_merge($set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set,$set);
$results = array();
gen_nos($set,$results);
function gen_nos(&$set, &$results) {
for($i=0; $i<count($set); $i++) {
$results[] = $set[$i];
$tempset = $set;
@flotwig
flotwig / gist:3591447
Created September 1, 2012 23:44
bool isup(str $server, int $port) // check to see if a server is reachable
function isup($server,$port=80) {
if ($port==80||$port==2222||$port==2083) {
$up = @file_get_contents('http://' . $server . ':' . $port);
if (!$up) {
$up = @file_get_contents('http://' . $server . ':' . $port);
}
} else {
$up = @fsockopen($server, $port, $errno, $errstr, 2);
if (!$up) {
$up = @fsockopen($server, $port, $errno, $errstr, 2);
@flotwig
flotwig / digresults.txt
Created September 19, 2012 20:29
dig -t SRV @ns1.niftyhost.us _minecraft._tcp.seang96.n1fty.com
; <<>> DiG 9.7.3 <<>> -t SRV @ns1.niftyhost.us _minecraft._tcp.seang96.n1fty.com
; (1 server found)
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 28120
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 0
;; WARNING: recursion requested but not available
;; QUESTION SECTION:
;_minecraft._tcp.seang96.n1fty.com. IN SRV
@flotwig
flotwig / reddit-function.php
Created October 6, 2012 18:22
A simple function to retrieve results from reddit's API
<?php
// example usage:
// redditApi('user/flotwig'); will return an array with information about me
// redditApi('r/breakingbad'); will return an array of info about r/breakingbad
function redditApi($call,$domain='www.reddit.com') {
$url = 'http://' . $domain . '/' . $call . '.json';
if (function_exists('curl_init')) { // not all PHP installs have cURL
$ch = curl_init($url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
curl_setopt($ch,CURLOPT_USERAGENT,'/u/flotwig'); // for stats
import cv2
import numpy as np
import time
def filter_image(img, hsv_lower, hsv_upper):
img_filt = cv2.medianBlur(img, 11)
hsv = cv2.cvtColor(img_filt, cv2.COLOR_BGR2HSV)
mask = cv2.inRange(hsv, hsv_lower, hsv_upper)
return mask
#!/usr/bin/env python3
#!c:/Python35/python3.exe -u
import asyncio
import sys
import cv2
import numpy as np
import cozmo
import time
import os
from glob import glob
@flotwig
flotwig / test
Last active January 14, 2019 00:19
Started out private
111now its public