Skip to content

Instantly share code, notes, and snippets.

View ajayjain's full-sized avatar

Ajay Jain ajayjain

View GitHub Profile
@ajayjain
ajayjain / cmake_llvm.sh
Created June 16, 2018 19:52
Debug build CMake setup for LLVM
#!/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
@ajayjain
ajayjain / install.sh
Last active May 15, 2016 22:29 — forked from pltrdy/install.sh
Installation of apache spark on ubuntu machine.
#!/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
@ajayjain
ajayjain / index.html
Created October 9, 2013 04:43
CSS3 transition example with fancy box and button
<!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>