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
trainingCsv <- "./training.csv" | |
testCsv <- "./test.csv" | |
trainingData <- read.csv(trainingCsv) | |
testData <- read.csv(testCsv) | |
numColumns <- dim(trainingData)[2] | |
columnNames <- colnames(trainingData) | |
stopifnot(numColumns == dim(testData)[2] + 1) | |
stopifnot(columnNames[-numColumns] == colnames(testData)) |
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 | |
if [ "$TERM" = "screen" ]; then | |
echo "Sorry, you're already inside a screen" | |
elif [ `screen -D | wc -l` -eq 1 ]; then | |
echo "Launching new screen..." | |
/usr/bin/screen | |
else | |
echo "Resuming previous screen..." | |
/usr/bin/screen -D -x | |
fi |
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 | |
if [ $UID -ne 0 ]; then | |
echo >&2 "You should run this as root" | |
exit | |
fi | |
# Id of user who needs to get root access: | |
COOL_USER_ID=1089 |
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 (count($argv) != 3) { | |
error_log("Pass input_file_path output_file_path"); | |
exit; | |
} | |
$input_file_path = $argv[1]; | |
$output_file_path = $argv[2]; | |
$json_str = file_get_contents($input_file_path); |
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> | |
<meta charset="utf-8"> | |
<title>CKEditor</title> | |
<script type="text/javascript" src="./ckeditor.js"></script> | |
<script type="text/javascript"> | |
var editor1, editor1isModified = false; | |
function initialize() { | |
CKEDITOR.replace('editor1', { |
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/python | |
''' | |
Quickly compile and execute a source file in one-go. Does cleanup of executable file, if any. | |
Handles C, C++, Java, PHP, Shell and Python | |
''' | |
import argparse | |
from os import path, system, remove | |
def sourcefile(x): | |
if not path.isfile(x): |
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
package manu.sandbox.utils; | |
import java.util.Set; | |
public interface ScoredSet<T extends Comparable<T>> extends Set<T>, Cloneable { | |
interface ElementWithScore<T> { | |
T getElement(); | |
Double getScore(); | |
} |
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 | |
define('GOOGLE_OAUTH2_CLIENT_ID', 'client id'); // this will be of form "<number>.apps.googleusercontent.com" | |
define('GOOGLE_OAUTH2_CLIENT_SECRET', 'client secret'); // this will be a base64 string | |
define('GOOGLE_OAUTH2_REDIRECT_URI', 'redirect url'); // This URL should be registered under "Redirect URIs" | |
define('YOUR_DOMAIN', 'your domain'); // your domain | |
define('OAUTH2_SESSION_DURATION', 90); //in seconds | |
require __DIR__ . "/url_get_contents.php"; // Use https://gist.github.com/m-manu/7462652 |
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 | |
/** | |
* Read entire contents of given URL as a string. Optionally, get headers as well in an easily accessible array. | |
* @param string $url URL to fetch data from | |
* @param mixed $params Parameters to the URL, typically an array. In case of POST, can be a string | |
* @param string $method HTTP method - can be 'GET' (default) or 'POST' | |
* @param bool $include_headers Should response headers be included? | |
* @return mixed Contents of the webpage as a string. Returns <i>false</i> in case of failure. If parameter <b>$include_headers</b> is <i>true</i>, returns an <i>array</i> containing response code, response headers and response body. | |
*/ |
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/python | |
import os | |
import sys | |
import csv | |
home = os.getenv("HOME") | |
known_hosts_path = home+'/.ssh/known_hosts' | |
known_hosts_optimized_path = home+'/.ssh/known_hosts_optimized' | |
d = {} | |
csvfile = open(known_hosts_path, 'r') |