Skip to content

Instantly share code, notes, and snippets.

View codeithuman's full-sized avatar
🚀
To Mars!

AJ Robertson codeithuman

🚀
To Mars!
View GitHub Profile
@codeithuman
codeithuman / index.js
Created October 11, 2018 15:46
Example index.js for a new React Native Project
import { AppRegistry } from 'react-native';
import App from './App';
AppRegistry.registerComponent('HelloWorld', () => App);
@codeithuman
codeithuman / html-vs-react-native.jsx
Last active October 11, 2018 15:19
Simple example of HTML vs React Native
// React w/ HTML
<div>
<p>This is HTML w/ React</p>
<MyWidget />
</div>
// React Native
<View>
<Text>This is React Native</Text>
<MyWidget />
@codeithuman
codeithuman / .zsh-env.sh
Created December 26, 2017 23:40
.zsh-env.sh December 2017
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME=pygmalion
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion. Case
@codeithuman
codeithuman / .zshrc
Last active December 26, 2017 23:41
.zshrc December 2017
# Path to you oh-my-zsh installation.
export ZSH=/Users/aj/.oh-my-zsh
# Add env.sh
. ~/.zsh-env.sh
@codeithuman
codeithuman / gist:3ca1e01e913d4f8d57c0f8305139eece
Created October 26, 2017 16:34 — forked from speric/gist:6096965
vimtutor Lesson Summaries
Lesson 1 SUMMARY
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes.
@codeithuman
codeithuman / _grid-settings.scss
Created June 16, 2017 22:25
Bourbon Neat 2.0 Breakpoints Material Design
// Material Design breakpoints w/ Neat 2.0 custom grids
// http://bourbon.io/
// http://neat.bourbon.io/
// https://material.io/guidelines/layout/responsive-ui.html#responsive-ui-breakpoints
$mobile-xsmall: (
columns: 4,
gutter: 16px,
media: "(max-width: 319px)"
);
@codeithuman
codeithuman / aj-robertson-2018.itermcolors
Last active November 7, 2018 00:43
iTerm 2 Color Scheme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.25332435965538025</real>

Keybase proof

I hereby claim:

  • I am codeithuman on github.
  • I am codeithuman (https://keybase.io/codeithuman) on keybase.
  • I have a public key whose fingerprint is 8D87 C9BB 3FBD 7404 DA25 B038 BB69 C9AF 00CC FF43

To claim this, I am signing this object:

fontColor : String
fontColor =
"#332A3A"
headingStyles : Attribute msg
headingStyles =
style
[ ( "textAlign", "center" )
, ( "marginBottom", "25px" )
view : Model -> Html Msg
view model =
div [ class "contact-form" ]
[ div [ class "alert alert-danger" ] []
, div [ class "field-row" ]
[ div [ class "field" ]
[ input [ type' "text", class "form-required", id "contact_name", maxlength 70, name "contact[name]", placeholder "Name*" ] [] ]
]
, div [ class "field-row" ]
[ div [ class "field" ]