Skip to content

Instantly share code, notes, and snippets.

View nastanford's full-sized avatar
🏠
Busy Coding

Nathan Stanford Sr nastanford

🏠
Busy Coding
View GitHub Profile
@nastanford
nastanford / README.md
Created April 11, 2018 14:45 — forked from kerryboyko/README.md
VueJS Best Practices Guide

Deverus Vue.js Style Guide

Guide for developing Vue.js applications.

v. 0.0.1

Vue.js is an amazing framework, which can be as powerful as Angular or React, the two big heavy hitters in the world of front-end frameworks.

However, most of Vue's ease-of-use is due to the use of Observables - a pattern that triggers re-renders and other function calls with the reassignment of a variable.

@nastanford
nastanford / 0-react-hello-world.md
Created January 30, 2018 16:26 — forked from danawoodman/0-react-hello-world.md
React Hello World Examples

React "Hello World" Examples

Below are a small collection of React examples to get anyone started using React. They progress from simpler to more complex/full featured.

They will hopefully get you over the initial learning curve of the hard parts of React (JSX, props vs. state, lifecycle events, etc).

Usage

You will want to create an index.html file and copy/paste the contents of 1-base.html and then create a scripts.js file and copy/paste the contents of one of the examples into it.

@nastanford
nastanford / StarWars_Characters.html
Last active October 7, 2017 16:47
StarWars API jQuery Pull of the Characters in the Movies.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"></script>
</head>
<body>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
@nastanford
nastanford / animate.tsx
Created September 30, 2017 13:40 — forked from rossimo/animate.tsx
Design for React Games
import * as Rx from 'rxjs/Rx';
import * as tween from 'tween-functions'
import * as update from 'immutability-helper'
import { call, take, Func1, CallEffectFn } from 'redux-saga/effects'
import { eventChannel, END } from 'redux-saga'
import * as _ from 'lodash'
export let tick = new Rx.Subject();
export let draw = new Rx.Subject<State>();
@nastanford
nastanford / counter_reactjs.html
Created September 2, 2017 14:57
Simple Example React Code used on jsComplete.com
class Button extends React.Component {
handleClick = () => {
this.props.onClickFunction(this.props.incrementValue);
};
render() {
return (
<button onClick={this.handleClick}>
+{this.props.incrementValue}
</button>
@nastanford
nastanford / .gitingore
Created August 24, 2017 13:50
Starter .gitignore file for ColdFusion Builder
# ColdFusion Builder or Eclipse)
settings.xml
# Dreamweaver CS6
_notes
dwsync.xml
# ColdFusion Server
CFIDE
WEB-INF
@nastanford
nastanford / application.cfc
Last active August 29, 2015 14:09
User Defined Functions (functions to remember)
<!--- Example. --->
<cfset this.mappings["/model"]="C:\wwwroot\fv\model">
<cfset structAppend(url,createObject( "component", "model.udf" )) />
@nastanford
nastanford / DateDiffBugFixed.cfm
Created October 27, 2014 17:51
ColdFusion DateDiff() Bug Fixed
<cfoutput>
<cfset thedate = '2014-10-30 00:00:00.0'>
Exam Date:
#DateFormat(examdate,'mm/dd/yyyy')#<br />
Today's Date:
#DateFormat(now(),'mm/dd/yyyy')#<br />
DateDiff:
#DateDiff('d',CreateDate(year(now()),month(now()),Day(now())),DateFormat(CreateDate(year(thedate), month(thedate), Day(thedate)),'mm/dd/yyyy'))#
<br />
@nastanford
nastanford / AjaxCFDebug.cfm
Created May 22, 2014 18:08
Add Ajax CFDebug Bookmarklet
u = window.location.href;t1 = u.indexOf("?");q="?";a="&";d="cfdebug=1";if(t1<=0){r=u.concat(q,d)}else{r=u.concat(a,d)};window.location=r;