Skip to content

Instantly share code, notes, and snippets.

View ksnortum's full-sized avatar

Knute Snortum ksnortum

View GitHub Profile
@ksnortum
ksnortum / README.md
Last active February 21, 2023 17:39 — forked from roachhd/README.md
Basics of BrainFuck

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

BrainFuck Programming Tutorial by: Katie

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Note: I forked this README because the original seems abandoned and I wanted to correct some editorial and logical flaws.

INTRODUCTION

@ksnortum
ksnortum / gist:22eeae450122a1112d3e6c1a674359e2
Created February 5, 2018 14:58
Don't close Scanner when opened to System.in
package net.snortum.play;
import java.util.Scanner;
public class ScannerClosePlay {
public static void main(String[] args) {
Scanner scanner1 = new Scanner(System.in);
System.out.print("Enter foo: ");
String foo = scanner1.nextLine();
@ksnortum
ksnortum / userDefineLang_Gradle.xml
Created November 20, 2013 18:42
Notepad++ User Defined Language file for Gradle
<NotepadPlus>
<UserLang name="Gradle" ext="gradle" udlVersion="2.1">
<Settings>
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" />
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="yes" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments">00// 01 02 03/* 04*/</Keywords>
<Keywords name="Numbers, prefix1"></Keywords>
<Keywords name="Numbers, prefix2"></Keywords>