Skip to content

Instantly share code, notes, and snippets.

@tagallow
tagallow / batchResize.ps1
Last active June 7, 2020 12:08
resizes png image for icons
# 256, 128, 64, 48, 40, 32, 24,20,16
# http://irfanview.helpmax.net/en/overview/command-line-options/
param($fileName)
$fileExt = ".png"
[int32[]]$sizes = (256, 128, 64, 48, 40, 32, 24, 20, 16)
# $fileName = "file"
foreach ($size in $sizes) {
@tagallow
tagallow / GooglePlayBooks_Night.css
Last active November 3, 2017 19:50
Night theme for the web interface of Google Play Books
/*
url-prefix("https://play.google.com/books/reader"),
url-prefix("https://books.googleusercontent.com/")
*/
body,
p,
.gb-segment p.indent,
iframe,
table,
@tagallow
tagallow / LR1.java
Created February 10, 2012 07:42
LR1 Parser
import java.util.Stack;
/*
* Author: Tom Galloway
* ULID: tagallo
* UID: 833871186
*/
public class LR1
{
private static String exp,token="";
@tagallow
tagallow / LL1.java
Created February 10, 2012 07:42
LL1 Parser
/*
* Author: Tom Galloway
* ULID: tagallo
* UID: 833871186
*/
public class LL1
{
private static String exp,token;
public static int expIndex=0;