- Requirements: Update Git and Node to latest versions.
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
#Set Environment Variables for Azure RM Terraform | |
$ENV:ARM_SUBSCRIPTION_ID = "" | |
$ENV:ARM_CLIENT_ID = "" | |
$ENV:ARM_CLIENT_SECRET = "" # This should end with an '=' symbol | |
$ENV:ARM_TENANT_ID = "" |
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
#Installs SQL Server locally with standard settings for Developers/Testers. | |
# Install SQL from command line help - https://msdn.microsoft.com/en-us/library/ms144259.aspx | |
$sw = [Diagnostics.Stopwatch]::StartNew() | |
$currentUserName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name; | |
$SqlServerIsoImagePath = "???\Downloads\Microsoft\SQL Server 2016 Developer Edition\en_sql_server_2016_developer_x64_dvd_8777069.iso" | |
#Mount the installation media, and change to the mounted Drive. | |
$mountVolume = Mount-DiskImage -ImagePath $SqlServerIsoImagePath -PassThru | |
$driveLetter = ($mountVolume | Get-Volume).DriveLetter | |
$drivePath = $driveLetter + ":" |
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
# Redis Cheatsheet | |
# All the commands you need to know | |
redis-server /path/redis.conf # start redis with the related configuration file | |
redis-cli # opens a redis prompt | |
# Strings. |
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
public class VideoManager : MonoBehaviour | |
{ | |
[SerializeField] | |
private RenderTexture _renderTexture = null; | |
[SerializeField] | |
private VideoClip _videoClip = null; | |
private IEnumerator Start() | |
{ | |
Application.runInBackground = true; |
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
s ^%oddENV("callererrorinfo")=1 ; record caller location | |
s ^%oddENV("callererrorinfo")=2 ; record caller stack | |
s ^%oddENV("callererrorinfo")=3 ; record caller ^%ETN | |
Do $SYSTEM.OBJ.DisplayError() |
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
import org.json.JSONArray; | |
import org.json.JSONObject; | |
import java.sql.ResultSet; | |
import java.text.DecimalFormat; | |
import java.text.DecimalFormatSymbols; | |
import java.util.Locale; | |
/** | |
* Utility for converting ResultSets into some Output formats |
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
ftp://ftp.intron.ac/ | |
ftp://ftp.ox.ac/ | |
ftp://ftp.robelle3000.ai/ | |
ftp://ftp.linux.org.ar/ | |
ftp://ftp.secyt.gov.ar/ | |
ftp://eclipt.uni-klu.ac.at/ | |
ftp://ftp.ad.or.at/ | |
ftp://ftp.adis.at/ | |
ftp://ftp.ai.univie.ac.at/ | |
ftp://ftp.cg.tuwien.ac.at/ |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<Export generator="Cache" version="25" zv="Cache for UNIX (SUSE Linux Enterprise Server for x86-64) 2014.1 (Build 608U)" ts="2014-05-19 00:22:31"> | |
<Class name="%CJS.RoutineWizard"> | |
<Description><![CDATA[ | |
Studio Template:<br> | |
Create a new Cache JavaScript Routine.]]></Description> | |
<StorageStrategy/> | |
<Super>%ZEN.Template.studioTemplate</Super> | |
<TimeChanged>63325,86382.045933</TimeChanged> | |
<TimeCreated>63325,65834.566957</TimeCreated> |