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 | |
localPATH=`pwd` | |
export BUILD_CLIENT="0" | |
export BUILD_SERVER="1" | |
export USE_CURL="1" | |
export USE_CODEC_OPUS="1" | |
export USE_VOIP="1" | |
export COPYDIR="~/ioquake3" | |
IOQ3REMOTE="https://github.com/ioquake/ioq3.git" | |
IOQ3LOCAL="/tmp/ioquake3compile" |
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 | |
$path = realpath('.'); | |
$objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path), RecursiveIteratorIterator::SELF_FIRST); | |
foreach($objects as $name => $object){ | |
if ( is_dir($name) && ! is_empty_folder($name) ){ | |
echo "$name\n" ; | |
exec("touch ".$name."/".".gitignore"); | |
} | |
} |
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
using UnityEngine; | |
using System.Collections; | |
using System; | |
using System.Net; | |
using System.IO; | |
using SimpleJSON; | |
public class AirspaceCrossPromotion : MonoBehaviour { | |
string endpointURL = "https://warehouse.leapmotion.com/api/v1/cross_promotions/[your_cross_promotion_id]"; |