This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ml"> | |
<head> | |
<meta charset="utf-8"/> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags--> | |
<meta name="apple-mobile-web-app-capable" content="yes"/> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a=document.getElementsByClassName('js-toggler-target');for(var i=0;i<a.length;i++){a[i].click();} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:36d43b5dd44e50a580052dce599767107164b031] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>gravatar api</title> | |
</head> | |
<body> | |
<form method="POST"> | |
email: <input type="text" name="emailid"><br> | |
size: <select name="size"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# | |
# 1. slots ? | |
# 2. process | |
# 3. output CSV | |
# | |
def create_ICS_from_slots(slots) : | |
''' | |
works only for NITC students |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
[user] | |
email = [email protected] | |
name = Shrimadhav U K | |
signingkey = 599767107164B031 | |
[credential] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
def read_file(filename, numlines) : | |
''' | |
reads the first numlines of lines from filename | |
''' | |
d = [] | |
with open(filename) as f : | |
for line in f : | |
if numlines == 0 : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## $1 => filename excluding ".partX.rar" | |
## $2 => directory to download the file to | |
if [ $# -eq 0 ] ; then | |
echo "Usage Instructions" | |
echo "$0 <filename excluding \".partX.rar\"> <directory name>" | |
else | |
mkdir $2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(isset($_REQUEST['d'])){ | |
if($_REQUEST['d'] == 1){ | |
ini_set('display_errors', 1); | |
error_reporting(-1); | |
} | |
} | |
$longurls = array( | |
"array", | |
"of long", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[12pt,a4paper]{report} | |
\usepackage[pdftex]{graphicx} | |
\usepackage[pdfborder={0 0 0}, pdftitle={<pdf title here>}, pdfauthor={<author's name here>}, pdfsubject={<subject here>}, pdfkeywords={<keywords here>}]{hyperref} | |
\pagenumbering{gobble} | |
\begin{document} | |
\includegraphics[scale=0.65,angle=0]{./file_name} % the image file name without extension | |
\end{document} |
NewerOlder