Skip to content

Instantly share code, notes, and snippets.

View jrohatiner's full-sized avatar

JRohatiner jrohatiner

View GitHub Profile
@jrohatiner
jrohatiner / SketchSystems.spec
Created October 28, 2019 18:35
My Awesome Sketch
My Awesome Sketch
First State
some event -> Second State
Second State
Third State
some event -> Forth State
Forth State
@jrohatiner
jrohatiner / .editorconfig
Created July 16, 2018 12:12 — forked from kuhlenh/.editorconfig
Roslyn .NET OSS (WIP)
###############################
# Core EditorConfig Options #
###############################
root = true
# All files
[*]
indent_style = space
# Code files
{
"data" : [
{ "id": 1, "name":"Acc-101","value":9999,"chngPct":-0.1,"chngVal":111},
{ "id": 2, "name":"Acc-202","value":888,"chngPct":0,"chngVal":0},
{ "id": 3, "name":"Acc-303","value":77,"chngPct":0.123,"chngVal":111}
],
"info" : {
"records": 8,
"next": true
}
@jrohatiner
jrohatiner / async-ng-module-loader.ts
Created August 29, 2016 23:04 — forked from brandonroberts/async-ng-module-loader.ts
Webpack Async NgModule Loader
import {Injectable, NgModuleFactory, NgModuleFactoryLoader, Compiler, Type} from '@angular/core';
class LoaderCallback {
constructor(public callback) {}
}
export let load: Type = (callback: Function) => {
return new LoaderCallback(callback);
};
@jrohatiner
jrohatiner / angular js responsive layout with horizontal menu.markdown
Created April 26, 2016 21:23
angular js responsive layout with horizontal menu

angular js responsive layout with horizontal menu

angular js material design layout with horizontal menu. 4 rows, 1, 2 3 columns per row. header, footer. Starter styles based on material styling and html5.

A Pen by Judith on CodePen.

License.

@jrohatiner
jrohatiner / UI Tabs.html
Last active February 23, 2016 00:55
UI Tabs
<ul class="tabs">
<li class="tab-link current" data-tab="tab-1">Tab1</li>
<li class="tab-link" data-tab="tab-2">Tab2</li>
</ul>
<div class="tab-content">
<div id="tab-1" class="tab-data current">
123
</div>
@jrohatiner
jrohatiner / 0_reuse_code.js
Last active February 23, 2016 00:45
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