Skip to content

Instantly share code, notes, and snippets.

View raghuugare's full-sized avatar
😊

Raghu Ugare raghuugare

😊
View GitHub Profile

Keybase proof

I hereby claim:

  • I am raghuugare on github.
  • I am raghuugare (https://keybase.io/raghuugare) on keybase.
  • I have a public key ASBmHaNQfrHFipIAEsPi66nppdb2tkA0sS236vLQ7G5Q9Qo

To claim this, I am signing this object:

#include <stdio.h>
int main() {
printf ("Hello, World!");
return 0;
}
@raghuugare
raghuugare / github-pandoc.css
Created July 6, 2016 12:30 — forked from dashed/github-pandoc.css
GitHub-like CSS for pandoc standalone HTML files (perfect for HTML5 output). Based on Marked.app's GitHub CSS. Added normalize.css (v2.1.3) in the prior to GitHub css.
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/
@raghuugare
raghuugare / GIF-Screencast-OSX.md
Created July 3, 2016 12:40 — forked from dergachev/GIF-Screencast-OSX.md
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@raghuugare
raghuugare / hello.cpp
Last active August 29, 2015 14:14
"Hello World!", in (Standard) C++
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;
}