Skip to content

Instantly share code, notes, and snippets.

View SanthoshVijayabaskar's full-sized avatar
🎯
Focusing

Santhosh Vijayabaskar SanthoshVijayabaskar

🎯
Focusing
View GitHub Profile
UPI DEMO APP :- https://github.com/juspay/upi-sdk
UPI SDK Documentation :- http://merchant-doc-v3.bitballoon.com/
repositories {
mavenCentral()
maven {
url "https://s3-ap-south-1.amazonaws.com/staging-assets-test"
}
}
@SanthoshVijayabaskar
SanthoshVijayabaskar / react_fiber.md
Created January 29, 2017 17:20 — forked from geoffreydhuyvetters/react_fiber.md
What is React Fiber? And how can I try it out today?
@SanthoshVijayabaskar
SanthoshVijayabaskar / MyReactComponent.js
Last active May 21, 2016 20:39 — forked from thmain/MyReactComponent.js
Skeleton React Component with descriptions for all of its lifecycle methods
/**
* @jsx React.DOM
*/
var React = require('react'),
MyReactComponent = React.createClass({
// The object returned by this method sets the initial value of this.state
getInitialState: function(){
return {};
@SanthoshVijayabaskar
SanthoshVijayabaskar / gist:47d9d8380c52ac507ff2
Created January 18, 2016 09:54 — forked from olivierlacan/gist:4062929
Code School Screencasting Framework

Screencasting Framework

The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.

Why you should care about screencasting?

You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.

  1. Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
.
├── actions
├── stores
├── views
│   ├── Anonymous
│   │   ├── __tests__
│   │   ├── views
│   │   │   ├── Home
│   │   │   │   ├── __tests__
│   │   │   │   └── Handler.js
@SanthoshVijayabaskar
SanthoshVijayabaskar / reflux_is_simple.md
Last active October 23, 2015 09:16 — forked from jehoshua02/reflux_is_simple.md
Simple breakdown of how Reflux works.