Skip to content

Instantly share code, notes, and snippets.

View ratanparai's full-sized avatar
😇

Ratan Sunder Parai ratanparai

😇
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<tv generator-info-name="WebGrab+Plus/w MDB &amp; REX Postprocess -- version V3.2.1.3 -- Jan van Straaten" generator-info-url="http://www.webgrabplus.com">
<channel id="Star Jalsa">
<display-name lang="en">Star Jalsha</display-name>
<url>http://www.startv.com</url>
</channel>
<channel id="CB: Star Jalsha">
<display-name lang="en">Star Jalsha</display-name>
<url>http://www.startv.com</url>
</channel>

Keybase proof

I hereby claim:

  • I am ratanparai on github.
  • I am ratanparai (https://keybase.io/ratanparai) on keybase.
  • I have a public key ASCZ67ewgj-PlCNGaNwbaSxXydNDplk7r_XmQg0zvMcKvgo

To claim this, I am signing this object:

Contributor License Agreement

The following terms are used throughout this agreement:

  • You - the person or legal entity including its affiliates asked to accept this agreement. An affiliate is any entity that controls or is controlled by the legal entity, or is under common control with it.
  • Project - is an umbrella term that refers to any and all Microsoft Technical Community Bangladesh open source projects.
  • Contribution - any type of work that is submitted to a Project, including any modifications or additions to existing work.
  • Submitted - conveyed to a Project via a pull request, commit, issue, or any form of electronic, written, or verbal communication with Microsoft Technical Community Bangladesh, contributors or maintainers.

1. Grant of Copyright License.

Subject to the terms and conditions of this agreement, You grant to the Projects’ maintainers, contributors, users and to Microsoft Technical Community Bangladesh a perpetual, worldwide, non-exclusive, no-charge, royalty-fr

git flow feature finish something-awesome
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello World!\n");
return EXIT_SUCCESS;
}
# Specify minimum version of CMake required to compile the code
cmake_minimum_required(VERSION 3.5)
# Project name
project(hello_world)
# Set source files
set(SOURCE_FILES hello.c)
# Set the name of the executable file name after CMake compile
@ratanparai
ratanparai / gist:7032165
Created October 17, 2013 21:02
HTML5: Boilerplate
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
@ratanparai
ratanparai / gist:7032150
Created October 17, 2013 21:01
HTML5: Boilerplate
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
@ratanparai
ratanparai / gist:7013517
Created October 16, 2013 19:38
HTML: Structure
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>