View preemption-taint.yaml
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
key: pp-preemptible | |
value: "true" | |
effect: NoSchedule |
View mailScript.py
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
import smtplib, getpass | |
import email, sys, datetime | |
import email.mime.application | |
import os | |
pb = 'Placement Brochure.pdf' | |
jnf = 'Job Notification Form - NIT Hamirpur.doc' | |
inv_letter = 'Invitation Letter.doc' | |
log_file = open('emails.log', 'a') |
View ClustalWidget2.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View ClustalWidget.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Prime_gen.c
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
#include <stdio.h> | |
#include <math.h> | |
// Prime Number upto sqrt(31623) | |
int a[39] = {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,137,139,149,151,157,163,167,173}; | |
int b[31623] = {0}; | |
int prime_count = 0; | |
int prime[31622]; |
View Functions in coffeescript
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
Square = (x) -> x*x |
View gist:9e6ffab4e7f2d404e545
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 square; | |
square = function ( x ) { | |
return x * x; | |
} |
View Compare with CoffeeScript
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 name; | |
name = "Rohan"; | |
if (name === "Rohan") { | |
alert("A good guy!"); | |
} |
View simple coffeescript example
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
name = "Rohan" | |
if name is “Rohan” then alert “A good guy!” |
View wget download
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
wget http://csec.nith.ac.in/img/team/rohan.jpg |
NewerOlder