This file contains hidden or 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 | |
# This script sets up a debug build directory for LLVM in /dev/shm, an in-memory TEMPORARY filesystem. | |
# Note that /dev/shm is not persisted across reboots, but the RAM tmpfs allows for faster linking. | |
set -ex | |
SOURCE_DIR=/data/scratch/$USER/llvm/llvm | |
if [ -z "$1" ]; then |
This file contains hidden or 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/sh | |
# stop execution on error | |
set -e | |
# Install Anaconda if you haven't already!! | |
# Installation of java 8 | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update |
This file contains hidden or 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> | |
<script src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js"></script> | |
<meta charset=utf-8 /> | |
<title>Welcome to JS Bin</title> | |
<meta name="viewport" content="width=device-width"> | |
<body> | |
<div class="box"></div> | |
<br> |