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 | |
# Protect branches in a repository. | |
# (c) 2020 tpryan | |
# Author: github.com/tpryan | |
# MIT License, see below | |
# Adapted from https://gist.github.com/miraculixx/b4c30db06bb1f3b56057 | |
function help { | |
echo "Add collaborators to one or more repositories on github" | |
echo "" | |
echo "Syntax: $0 -u user -p password [-b] [-o] -r repo1,repo2 " |
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
BASEDIR = $(shell pwd) | |
RULELIST = $(shell gcloud compute forwarding-rules list --format='value[terminator=" "](name)') | |
include Makefile.properties | |
all: cluster app | |
app: db api frontend | |
# Requests a GKE cluster | |
cluster: |
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
/* | |
****** Colors extracted from Reflow ****** | |
// hex value RGB value Closest color Used isBackground? | |
//--------------------------------------------------------------------- | |
// #000000 rgb(0,0,0) black 12 times | |
// #282729 rgb(40,39,41) *darkslategray 9 times | |
// #ffffff rgb(255,255,255) white 5 times background | |
// #7da7a6 rgb(125,167,166) *cadetblue 1 time background | |
// * means that color name is the closest match |
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
<!DOCTYPE html> | |
<html> | |
<!-- This code is only meant for previewing your Reflow design. --> | |
<head> | |
<link rel="stylesheet" href="boilerplate.css" /> | |
<link rel="stylesheet" href="page1.css" /> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" /> | |
<script>var __adobewebfontsappname__ = "reflow"</script> | |
<script src="http://use.edgefonts.net/source-sans-pro:n4,n9,n7,i7,i4,n3,i3,n6,i6,i9,n2,i2:all.js"></script> |
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
.chathead{ | |
width: 150px; | |
height: 150px; | |
border-radius: 75px; | |
border: 4px solid #FFFFFF; | |
box-shadow: 1px 1px 5px rgba(0,0,0,.5); | |
position: absolute; | |
right: -10px; | |
} |
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
<div id="Stage" class="EDGE-171675818"> | |
</div> |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!--... | |
Skipping rest of header | |
... --> | |
<!--Adobe Edge Runtime--> | |
<script type="text/javascript" charset="utf-8" src="index_edgePreload.js"></script> | |
<style> | |
.edgeLoad-EDGE-556270 { visibility:hidden; } |
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
define(function (require, exports, module) { | |
'use strict'; | |
var CommandManager = brackets.getModule("command/CommandManager"), | |
Menus = brackets.getModule("command/Menus"); | |
// Function to run when the menu item is clicked | |
function handleHelloWorld() { | |
menu.removeMenuItem(MY_COMMAND_ID); |
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
<target name="notifyWebDev" description="Plays an audio file"> | |
<echo message="Playing Audio Alert"/> | |
<exec executable='say' failonerror='true'> | |
<arg value='Development website is ready'/> | |
</exec> | |
</target> |
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
#content { | |
-webkit-flow: 'foo'; | |
-webkit-flow-into: foo; | |
} | |
.region { | |
background-color: white; | |
-webkit-box-sizing: border-box; | |
content: -webkit-from-flow('foo'); | |
-webkit-flow-from: foo; |
NewerOlder