Skip to content

Instantly share code, notes, and snippets.

View meyerzinn's full-sized avatar

Meyer Zinn meyerzinn

View GitHub Profile
@meyerzinn
meyerzinn / dataset_info.json
Created July 28, 2019 16:19
Fruits360 Dataset Info
{
"citation": "@article{article,\nauthor = {Mure\u0219an, Horea and Oltean, Mihai},\nyear = {2018},\nmonth = {06},\npages = {26-42},\ntitle = {Fruit recognition from images using deep learning},\nvolume = {10},\njournal = {Acta Universitatis Sapientiae, Informatica},\ndoi = {10.2478/ausi-2018-0002}\n}\n",
"description": "A large set of fruits on a white background.",
"location": {
"urls": [
"https://www.kaggle.com/moltean/fruits"
]
},
"name": "fruits360",
"schema": {
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@meyerzinn
meyerzinn / keybase.md
Created July 13, 2016 22:20
My public proof.

Keybase proof

I hereby claim:

  • I am 20zinnm on github.
  • I am aniskywalker (https://keybase.io/aniskywalker) on keybase.
  • I have a public key whose fingerprint is 63D6 FD75 1827 68A9 D657 6029 0E31 D065 56F3 89FF

To claim this, I am signing this object:

@meyerzinn
meyerzinn / pom.xml
Last active February 2, 2016 19:22 — forked from DarkSeraphim/pom.xml
Spigot archetype for Maven
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.darkseraphim.archetypes</groupId>
<artifactId>spigot</artifactId>
<version>1.0.0</version>
@meyerzinn
meyerzinn / insults.json
Created November 20, 2015 17:11
Shakespearian Insults (In JSON format)
{
"FIELD1": ["bawdy", "beslubbering", "bootless", "churlish", "cockered", "clouted", "craven", "currish", "dankish", "dissembling", "droning", "errant", "fawning", "fobbing", "froward", "frothy", "gleeking", "goatish", "gorbellied", "impertinent", "infectious", "jarring", "loggerheaded", "lumpish", "mammering", "mangled", "mewling", "paunchy", "pribbling", "puking", "puny", "qualling", "rank", "reeky", "roguish", "ruttish", "saucy", "spleeny", "spongy", "surly", "tottering", "unmuzzled", "vain", "venomed", "villainous", "warped", "wayward", "weedy", "yeasty", "cullionly", "fusty", "caluminous", "wimpled", "burly-boned", "misbegotten", "odiferous", "poisonous", "fishified", "Wart-necked"],
"FIELD2": ["base-court", "bat-fowling", "beef-witted", "beetle-headed", "boil-brained", "clapper-clawed", "clay-brained", "common-kissing", "crook-pated", "dismal-dreaming", "dizzy-eyed", "doghearted", "dread-bolted", "earth-vexing", "elf-skinned", "fat-kidneyed", "fen-sucked", "flap-mouthed", "fly-bitten", "
@meyerzinn
meyerzinn / IonicPush.md
Created October 5, 2015 02:38
Ionic Push

First, be sure to configure $ionicAppProvider (do so right after declaring the app module), like so:

app.config(['$ionicAppProvider', function($ionicAppProvider) {
  // Identify app
  $ionicAppProvider.identify({
    // Your App ID
    app_id: 'xxx',
    // The public API key services will use for this app
    api_key: '80xxxxxx',
    // Your GCM sender ID/project number (Uncomment if supporting Android)
@meyerzinn
meyerzinn / String Functions
Created June 12, 2014 19:20
String Functions
package jcamp;
import java.util.Arrays;
public class StringFunctions {
public static void main(String[] args) {
String str = new String("Hello!");
char[] chars = str.toCharArray();
System.out.println("Original: " + str);
@meyerzinn
meyerzinn / TextMessage
Created June 12, 2014 16:37
TextMessage
package inheritance;
public class TextMessage extends Message {
String text;
public String getText() {
return text;
}
public void setText(String t) {
@meyerzinn
meyerzinn / Message
Created June 12, 2014 16:37
Message
package inheritance;
public class Message {
// Private variables cannot be inherited into subclasses.
// Protected variabes can be inherited in the subclass.
protected long timestamp;
protected long maxSize;
// This method sets or assigns the argument time to the class variable
@meyerzinn
meyerzinn / OverridingTest
Created June 12, 2014 16:37
OverridingTest
package inheritance;
public class OverridingTest {
public static void main(String[] args) {
Message message = new Message();
message.setMaxSize(1000);
message.setTimestamp(System.currentTimeMillis());
message.printMessage();