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
[Settings] | |
Grid=1 | |
Suffix=_GLS | |
[Hotkeys] | |
PTT= | |
AlertRecall= | |
ArmySelect=Grave | |
IdleWorker=Shift+Grave | |
TargetChoose=LeftMouseButton,Z |
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
data:text/html, <html contenteditable style="font-family: courier"> |
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
# Copyright 2017 Google Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
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
package com.google.functions.examples.scalajs | |
import scala.scalajs.js.annotation._ | |
import scala.scalajs.js | |
import js.DynamicImplicits._ | |
@js.native | |
trait Request extends js.Any { | |
val body: js.Dictionary[Any] = js.native | |
} |
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 python | |
import sys | |
import os | |
import argparse | |
from os import path | |
from os.path import isfile as exists | |
import signal | |
import json | |
import xml.etree.ElementTree as ET |
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 | |
clear | |
function color (){ | |
echo "\e[$1m$2\e[0m" | |
} | |
function extend (){ | |
local str="$1" |
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
type Weatherpic { | |
caption: String | Null, | |
imageUrl: String, | |
uid: UserID | |
} | |
type UserID extends String; | |
path /weatherpics { | |
read() { 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
path /users/$uid { | |
read() = isCurrentUser($uid); | |
write() = isCurrentUser($uid); | |
} | |
path /users/$uid/$password is Password; | |
type Password { | |
service: String, | |
password: String, |
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
path /quotes { | |
write() = true; | |
read() = true; | |
} | |
path /quotes/$moviequote is Moviequote; | |
type Moviequote { | |
movie: String, | |
quote: String |
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 ruby | |
if not ARGV[0] or ARGV[0] == "-h" | |
puts "Usage: ./go_dist <project>" | |
exit | |
end | |
project_path = ARGV[0] | |
project = project_path.split('/')[-1] | |
puts "\e[1mStarting distribution of \e[32m'#{project}'\e[0m" | |
platforms = { |