Skip to content

Instantly share code, notes, and snippets.

View rijine's full-sized avatar
🎯
Focusing

Rijin Elayambari rijine

🎯
Focusing
  • London
View GitHub Profile
@rijine
rijine / README.md
Created January 19, 2018 14:45 — forked from btroncone/README.md
angular 2 basic counter - 1

angular 2 basic counter

Basic counter in Angular 2.

@rijine
rijine / index.html
Created October 22, 2017 13:13
JS Bin bind call apply // source https://jsbin.com/bawawij
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="bind call apply">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
@rijine
rijine / graphQLUtils.ts
Created June 27, 2017 11:38 — forked from matthewdenobrega/graphQLUtils.ts
GraphQL query generator
// Angular imports
import { isArray, isBlank, isDate, isNumber, isStringMap, isPresent, isString } from 'angular2/src/facade/lang'
export class GraphQLUtils {
static createMutation(data: Object, dataDefinition: Object, method: string, mutationName?: string): string {
if (!method || !data) { return null }
let mutation: string = (mutationName || method) + '{' + method
mutation += '(' + GraphQLUtils.flattenObject(data) + ')'
@rijine
rijine / index.html
Created January 20, 2017 10:21 — forked from d3noob/.block
Collapsible tree diagram in v4
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
@rijine
rijine / designer.html
Last active August 29, 2015 14:08
designer
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-quiz-view.html">
<link rel="import" href="../paper-button/paper-button.html">