Skip to content

Instantly share code, notes, and snippets.

View ianjsikes's full-sized avatar

Ian J Sikes ianjsikes

View GitHub Profile
@ianjsikes
ianjsikes / 0_reuse_code.js
Created October 13, 2015 07:31
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
import React, { Component } from 'react'
import { NavigationExperimental } from 'react-native'
const {
Card: NavigationCard,
Transitioner: NavigationTransitioner,
} = NavigationExperimental
import Registration from '../login/registration'
import Confirmation from '../login/confirmation'
import Profile from '../login/profile'
import React, { Component } from 'react'
import { TabBarIOS } from 'react-native'
import { connect } from 'react-redux'
import { TabA, TabB, TabC, TabD } from '../tabs';
class TabBarNav extends Component {
_changeTab(i) {
this.props.changeTab(i);
# Set prefix to Ctrl-Space
unbind C-b
set -g prefix C-Space
bind Space send-prefix
# Enable 256 colors in tmux
set -g default-terminal "screen-256color"
# Start window indexing at 1 (makes it easier to switch windows using number keys)
set-option -g base-index 1

Keybase proof

I hereby claim:

  • I am ianjsikes on github.
  • I am ianjsikes (https://keybase.io/ianjsikes) on keybase.
  • I have a public key ASBp81yPJGs9KKcYJQASFVmbGxsQMUKkhTRaJKlznQCZywo

To claim this, I am signing this object:

@ianjsikes
ianjsikes / guestbook.txt
Created April 30, 2017 23:14
CS 85 Homework - Unit 7 - Ian Sikes
Ian - Hey Everyone!
simpleGradient fuchsia,color(100,200,200),yellow
move -3,-2,0
scale 2.1
x = 0
y = 0
5 times
x = 0
y += 0.1
move 0,y,0
pushMatrix
// Basic setup for a p5.js sketch
// This function gets called once at the start of the page load
function setup() {
// This creates an 800x800 HTML canvas element
createCanvas(800, 800);
}
// This function gets called ~60 times/second
function draw() {
{
"scripts": {
"compile": "webpack --progress",
"serve": "http-server"
}
}
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<div id="container"></div>
<script src="build/bundle.js"></script>
</body>
</html>