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
#!/usr/bin/bash | |
# Install CMake GUI | |
sudo apt-get install cmake-gui | |
# SFML Dependencies | |
sudo apt-get install libpthread-stubs0-dev | |
sudo apt-get install libgl1-mesa-dev | |
sudo apt-get install libx11-dev | |
sudo apt-get install libxrandr-dev |
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
#!/usr/bin/env bash | |
curr="$( cd "$( dirname "$0" )" && pwd )" | |
# Project Root | |
root="$(dirname "$curr" )" | |
# Where to dump the dmg | |
bin="$root/bin/mac" |
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 | |
remove_dangling() { | |
echo "Removing dangling images ..." | |
docker rmi $(docker images -f dangling=true -q) | |
} | |
remove_stopped_containers() { | |
echo "Removing stopped containers ..." | |
docker rm $(docker ps -qa) |
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
var googleapis = require('googleapis'), | |
JWT = googleapis.auth.JWT, | |
analytics = googleapis.analytics('v3'); | |
var SERVICE_ACCOUNT_EMAIL = '[email protected]'; | |
var SERVICE_ACCOUNT_KEY_FILE = __dirname + '/key.pem'; | |
var authClient = new JWT( | |
SERVICE_ACCOUNT_EMAIL, |
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> | |
<meta charset="utf-8" /> | |
<title>Calculating zoom using Javascript</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script> | |
<script> | |
function hasPageBeenResized() { | |
var isResized; |
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
http://forums.crucial.com/t5/Crucial-SSDs/How-I-fixed-my-M4-that-wouldn-t-detect-in-the-BIOS/td-p/110964 | |
http://forums.crucial.com/t5/Crucial-SSDs/Why-did-my-SSD-quot-disappear-quot-from-my-system/ta-p/65215 |
OlderNewer