Skip to content

Instantly share code, notes, and snippets.

View jonathontoon's full-sized avatar
🏴

Jonathon Toon jonathontoon

🏴
View GitHub Profile
@jonathontoon
jonathontoon / AppDelegate.h
Created February 21, 2014 17:19
TableView Homework
//
// AppDelegate.h
// HomeworkTableView
//
// Created by Jonathon Toon on 2/20/14.
// Copyright (c) 2014 Jonathon Toon. All rights reserved.
//
#import <UIKit/UIKit.h>
//
// NotificationCell.m
// HomeworkTableView
//
// Created by Jonathon Toon on 2/21/14.
// Copyright (c) 2014 Jonathon Toon. All rights reserved.
//
#import "NotificationCell.h"
#import "Notification.h"
@jonathontoon
jonathontoon / gist:b5edf4277601f055b029
Created February 5, 2015 06:08
CS:GO Crash on Yosemite 10.10.2
Process: csgo_osx [540]
Path: /Users/USER/Library/Application Support/Steam/*/csgo_osx
Identifier: csgo_osx
Version: ???
Code Type: X86 (Native)
Parent Process: bash [537]
Responsible: steam_osx [516]
User ID: 501
Date/Time: 2015-02-04 22:07:10.343 -0800
//
// Created by Alex Manarpies on 09/01/15.
// www.aceontech.com
//
//
// Copyright (c) 2015 Alex Manarpies
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
const choo = require('choo')
const html = require('choo/html')
const app = choo()
const MainView = (state, prev, send) => {
return html`
<section>Test1</section>
`
}
class MyViewController {
let titleOfGoal: String;
let titleLabel: UILabel;
let goalLabels: [UILabel];
let goalObjects: Array;
init(t: String) {
super.init();
import tweepy
import csv
import io
import urllib.request
import datetime
import pytz
exchangeRates = []
currencyCodes = ['AUD', 'USD', 'CAD', 'JPY', 'CNY', 'EUR', 'GBP']
import { h } from "hyperapp";
import "./FileInput.scss";
const FileInput = (props) => {
const { updateData, updateMetadata } = props;
const processFile = (file) => {
if (file && file.size > 0) {
updateData({
{
"version": 2,
"name": "peershare-app",
"builds": [
{
"src": "src/client/dist/*",
"use": "@now/static"
},
{
"src": "src/index.js",
import SocketManager from "./socketManager";
import http from "http";
import express from "express";
import cors from "cors";
import path from "path";
import SocketIO from "socket.io";
import helmet from "helmet";
import compression from "compression";
import dotenv from "dotenv";