I hereby claim:
- I am silverjam on github.
- I am silverjam (https://keybase.io/silverjam) on keybase.
- I have a public key whose fingerprint is 419A 9B7C 828C 5976 E6E5 8479 5D43 186D E68D C7DD
To claim this, I am signing this object:
| Add-Type -TypeDefinition @" | |
| using System; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| using System.ComponentModel; | |
| public static class Kernel32c | |
| { | |
| [DllImport("kernel32", SetLastError=true, CharSet = CharSet.Ansi)] |
| { | |
| "intents": [ | |
| { | |
| "intent": "YourDino" | |
| }, | |
| { | |
| "intent": "HasTeradactyl" | |
| } | |
| ] | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <stdarg.h> | |
| #include <string.h> | |
| #include <strings.h> | |
| #include <unistd.h> | |
| #define COUNTOF(arr) (sizeof(arr) / sizeof(arr[0])) | |
| char* pathsearch(const char* program) |
| var state = { | |
| headerLevel1: 0, | |
| headerLevel2: 0, | |
| headerLevel3: 0, | |
| } | |
| var private = { | |
| getSectionNumber: function (paragraph) | |
| { | |
| if ( paragraph.getHeading() == DocumentApp.ParagraphHeading.HEADING1 ) |
| import java.util.*; | |
| public class HasUniqueChars | |
| { | |
| public static boolean hasUniqueChars(String toTest) | |
| { | |
| char charArray[] = toTest.toCharArray(); | |
| Arrays.sort(charArray); | |
| for (int x = 1; x < charArray.length; x++) |
| import java.util.*; | |
| import java.lang.*; | |
| class Main | |
| { | |
| public static void countLevels(Integer tree[], int index, int levels[], int level) | |
| { | |
| if ( index >= tree.length ) | |
| return; | |
| import java.util.*; | |
| class Node | |
| { | |
| public Integer value; | |
| public int index; | |
| public int level; | |
| public Node(int index, int value, int level) |
| import java.util.*; | |
| class Main | |
| { | |
| public static void sumsTo(int nums[], int sum) | |
| { | |
| HashMap<Integer, Integer> hash = new HashMap<Integer, Integer>(); | |
| for(int num : nums) | |
| hash.put(num, 1); | |
| static final float CANVAS_X = 900; | |
| static float CANVAS_Y = 0; // compute me later | |
| class Node | |
| { | |
| Integer value; | |
| int level; | |
| int levelOffset; | |
| int index; |