Skip to content

Instantly share code, notes, and snippets.

View rava-dosa's full-sized avatar

Apoorva Kumar rava-dosa

View GitHub Profile
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
void foo(char *fmt, ...)
{
va_list ap;
int d;
char c, *s;

Writer or Poet or Cook

  1. Inside pixar
  2. Chef's table
  3. Salt fat acid heat
  4. Ruby Sparks
  5. Before Midnight
  6. Midnight in paris
  7. Finding Forrester
  8. Secret Window
  9. Dead poet's society
@rava-dosa
rava-dosa / scheduler.cpp
Created January 28, 2019 16:57 — forked from craigjb/scheduler.cpp
Task/Job Scheduler Implementation
/// This is not written to compile. I just copied everything into one file to make viewing easy
/// Here is a sample usage (task definitions and implementations omitted)
int main()
{
TaskScheduler scheduler;
MyTaskA taskA;
MyTaskB taskB;
BOOL running = true
// Create an object:
// var person = {
// firstName: "John",
// lastName : "Doe",
// id : 5566,
// fullName : function() {
// return this.firstName + " " + this.lastName;
// }
// };
import java.util.HashMap;
import java.util.List;
import java.util.Arrays;
public class MyClass {
public static void main(String args[]) {
int x=10;
int y=25;
int z=x+y;
HashMap<String, List<String>> templateHashmap = new HashMap<>();
@rava-dosa
rava-dosa / gist:c622bb9fdf644c5b09d43219b69a1210
Created September 29, 2018 10:31
basic react with jsx working
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<!-- Don't use this in production: -->
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>