Skip to content

Instantly share code, notes, and snippets.

View ryjen's full-sized avatar
🙃
looking for the white rabbit

RJ ryjen

🙃
looking for the white rabbit
View GitHub Profile
@ryjen
ryjen / polymorphism.c
Last active November 19, 2015 06:59
Poor Man's Polymorphism in C
/**
*
* Poor mans polymorphism
*
* c0der78 (www.arg3.com)
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
@ryjen
ryjen / fortune2sqlite.java
Created July 5, 2012 05:07
A java class to create a sqlite database from a collection of raw UNIX 'fortune' files
package com.arg3.java.fortunes;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
@ryjen
ryjen / README.md
Created March 7, 2012 19:42
Merge Folders AppleScript

Installation

  • Run Automator
  • Select Service as the new document type
  • Find Run AppleScript from the Library and drag into the workflow
  • Copy the script code into the Run AppleScript action
  • Save as Merge Folders

Optional