Skip to content

Instantly share code, notes, and snippets.

View varmab's full-sized avatar

Varma Bhupatiraju varmab

View GitHub Profile
import React, { Component } from 'react'
class Todos extends Component{
constructor(){
super();
this.state={
todos:[],
todo:'',
isEditing: false,
[
{
"id":1,
"title": "How to handle state in React. The missing FAQ.",
"author": "Osmel Mora",
"url": "https://medium.com/react-ecosystem/how-to-handle-state-in-react-6f2d3cd73a0c"
},
{
"id":2,
"title": "You might not need React Router",
@varmab
varmab / JS Monday Test Topics
Last active May 31, 2019 11:36
MySQL training
1. JavaScript Basics (Operators, Loops, Conditionals)
2. Array & Array Iterators
3. Objects
4. String Functions
Assignments
https://github.com/varmab/javascript
JavaScript Fundamentals
https://docs.google.com/presentation/d/1LRpvMsdmTmJ4PBjYV5OoMpRX9p5FLk1utr16SSAS1rs/edit?usp=sharing
@varmab
varmab / gist:612aec4b14bcd9f5c476
Created March 4, 2015 23:15
Uploading video using Node.js
var KalturaConstants = require('./KalturaTypes.js');
var Kaltura = require('./KalturaClient.js');
var KalturaClient = null;
var Session = null;
var pager = new Kaltura.objects.KalturaFilterPager();
pager.pageSize=10000;
pager.pageIndex=1;