Skip to content

Instantly share code, notes, and snippets.

View RedHatter's full-sized avatar

Ava Johnson RedHatter

View GitHub Profile
@RedHatter
RedHatter / valag.patch
Created November 27, 2013 22:45
Valag is a graphviz graph generator for Vala source files. This patch allows it to work with vala 0.22.
diff -rupN a/Makefile valag-1.2/Makefile
--- a/Makefile 2013-11-27 22:30:17.772031704 +0000
+++ valag-1.2/Makefile 2013-11-22 19:01:59.642559732 +0000
@@ -9,7 +9,7 @@ DESTDIR = $(PREFIX)
all: valag
valag: $(SRCS)
- $(VALAC) -g -o valag --thread --pkg libvala-0.14 --pkg libgvc --pkg glib-2.0 --vapidir . $+
+ $(VALAC) -g -o valag --thread --pkg libvala-0.22 --pkg libgvc --pkg glib-2.0 --vapidir . $+
@RedHatter
RedHatter / patch_ext
Last active December 30, 2015 15:38
Create a patch from 'original_directory' to 'patch_directory' of only the files with the extension 'ext'.
find original_directory patch_directory -type f ! -name '*.ext' -printf '%f\n' | diff -ru original_directory patch_directory -X - > project.patch
@RedHatter
RedHatter / vala-cascade.patch
Last active December 30, 2015 20:29
A patch to the Vala and Genie compilers to add support for cascading member access. Includes vala unit tests. Recursive cascading now supported. Similar to described here: http://news.dartlang.org/2012/02/method-cascades-in-dart-posted-by-gilad.html
diff --git a/tests/Makefile.am b/tests/Makefile.am
index bcf82e1..eb158d7 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -112,6 +112,7 @@ TESTS = \
delegates/bug639751.vala \
delegates/bug659778.vala \
delegates/bug703804.vala \
+ objects/cascade.vala \
objects/chainup.vala \
@RedHatter
RedHatter / fork.py
Last active January 2, 2016 06:29
Attempt to completely fork from parent process.
#!/usr/bin/python
import time, os, sys
# do the UNIX double-fork magic
pid = os.fork()
if pid > 0:
# parent process, exit
sleep(5)
sys.exit(0)
@RedHatter
RedHatter / stylus.rb
Last active May 22, 2016 03:19 — forked from sentientwaffle/stylus_converter.rb
Stylus plugin for Jekyll
require 'shellwords'
module Jekyll
class StylusConverter < Converter
safe true
def matches(ext)
ext =~ /\.styl/i
end
@RedHatter
RedHatter / sprouted-passwords.user.js
Last active August 13, 2016 17:10
Greasemonkey script that generates and auto fills passwords using the website's domain as the seed. http://idioticdev.com/sprouted-passwords.html
// ==UserScript==
// @name Sprouted Passwords
// @namespace http://idioticdev.com
// @description Generate and autofill passwords using that website's domain as the seed.
// @include *
// @version 1.3
// @require http://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js
// @require http://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.4.2/seedrandom.min.js
// @grant GM_registerMenuCommand
// ==/UserScript==
@RedHatter
RedHatter / Element.java
Last active September 3, 2016 17:45
A postfix calculator.
import java.util.Queue;
/**
* Base class for all postfix elements.
*/
public interface Element {
/**
* Resolves the element to a number pushing the result onto the stack.
*/
public void resolve (Queue<Double> stack);
@RedHatter
RedHatter / fulltextarea.user.js
Created February 24, 2017 19:16
Displays textareas fullscreen in a lightbox.
// ==UserScript==
// @name Full Textarea
// @namespace http://idioticdev.com
// @description Displays textareas in a lightbox.
// @include *
// @version 1
// @grant none
// ==/UserScript==
let areas = document.getElementsByTagName('textarea')
if (areas.length < 1)
const path = require('path')
module.exports = {
entry: path.join(__dirname, 'public', 'scripts', 'display.js'),
output: {
path: path.join(__dirname, 'cache', 'scripts'),
publicPath: '/scripts/',
filename: 'display.js'
},
module: {
ERROR in ./public/scripts/display.js
Module not found: Error: Can't resolve 'test.js' in '/home/timothy/Projects/Tools/printmanager-2.0/public/scripts'
resolve 'test.js' in '/home/timothy/Projects/Tools/printmanager-2.0/public/scripts'
Parsed request is a module
using description file: /home/timothy/Projects/Tools/printmanager-2.0/package.json (relative path: ./public/scripts)
Field 'browser' doesn't contain a valid alias configuration
after using description file: /home/timothy/Projects/Tools/printmanager-2.0/package.json (relative path: ./public/scripts)
resolve as module
/home/timothy/Projects/Tools/printmanager-2.0/public/scripts/node_modules doesn't exist or is not a directory
/home/timothy/Projects/Tools/printmanager-2.0/public/node_modules doesn't exist or is not a directory