Skip to content

Instantly share code, notes, and snippets.

View JosephRedfern's full-sized avatar

Joseph Redfern JosephRedfern

View GitHub Profile
@JosephRedfern
JosephRedfern / win8print.reg
Created August 25, 2017 10:02
Fix issue 0x000006d1 when connecting to print server under Windows 8/10 (mirrored from https://lapserv.maths.cam.ac.uk/docs/win8printing/win8print.reg)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Printers]
"ForceCSREMFDespooling"=dword:00000000
@JosephRedfern
JosephRedfern / reactddit.js
Created January 10, 2017 11:51
Reactddit
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
class Listing extends Component {
constructor(params){
super(params);
this.title = params.title;
this.ups = params.ups;
}
#!/bin/bash
while read line;
do
if [[ "$line" == *"CLOSE" ]]
then
echo "CLOSE"
gnome-screensaver-command -l
elif [[ "$line" == *"OPEN" ]]
then
Process: Python [45070]
Path: /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Identifier: Python
Version: 2.7.11 (2.7.11)
Code Type: X86-64 (Native)
Parent Process: zsh [42784]
Responsible: iTerm2 [289]
User ID: 501
Date/Time: 2016-09-02 01:15:24.644 +0100
➜ gr-iridium git:(master) ✗ iridium-extractor -D 4 examples/hackrf.conf
Mac OS; Clang version 7.0.0 (clang-700.0.72); Boost_105800; UHD_003.009.001-0-unknown
gr-osmosdr v0.1.4-48-g86ad5842 (0.1.5git) gnuradio 3.7.8
built-in source types: file fcd rtl rtl_tcp uhd hackrf rfspace
Using HackRF One with firmware 2014.08.1
(RF) Gain: 14.0 (Requested 10)
BB Gain: 20.0 (Requested 20)
IF Gain: 40.0 (Requested 40)
@JosephRedfern
JosephRedfern / Random Number from Giphy.py
Last active August 2, 2016 16:39
WARNING: NOT REALLY A GOOD THING.
import requests
GIPHY_API_KEY = "dc6zaTOxFJmzC" # Giphy public beta API key
def decode(s):
"""
Convert base62 (i.e. a-z,A-Z,0-9) to base 10
PILLAGED FROM https://gist.github.com/adyliu/4494223
"""
"Enable Vundle
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
"Vundles! Wo0oho0o!
Bundle 'gmarik/vundle'
Bundle 'kien/ctrlp.vim'
Bundle 'altercation/vim-colors-solarized'
Bundle 'vim-scripts/JavaScript-Indent'
Bundle 'jcf/vim-latex'
@JosephRedfern
JosephRedfern / addsite.sh
Created January 28, 2013 15:35
Nginx Site Aded
#!/bin/bash
#path to folder containing folders referenced by nginx server blocks
SERVERPATH="/var/www"
#name of logs folder
LOGFOLDER="logs"
#name of www folder (i.e. folder where web files are held)
WWWFOLDER="public_html"
@JosephRedfern
JosephRedfern / 1. DecompilationTest.java
Last active December 1, 2015 16:42
dx variable name destruction
import java.util.Scanner;
public class DecompilationTest{
public int SomeField = 123;
public static void main(String args[]){
DecompilationTest dt = new DecompilationTest();
dt.SomeMethod();
}
@JosephRedfern
JosephRedfern / gist:3912286
Created October 18, 2012 14:37
Word Value
import string
abc = string.lowercase
def calcword():
word = raw_input("Enter Word: ")
value = 0
for char in word:
value += abc.index(char.lower())+1