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
sdk.dir=/Users/runner/Library/Android/sdk | |
ndk.dir=/Users/runner/Library/Android/sdk/ndk-bundle |
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
name: Auto-deploy | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
# This workflow contains a single job called "deploy" | |
deploy: | |
# The type of runner that the job will run on |
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/sh | |
LIST=$(git diff --name-only --diff-filter=AM HEAD) | |
for file in $LIST | |
do | |
if [ "$file" == '#' ]; then | |
continue | |
fi | |
EXTENSION=$(echo "$file" | grep ".spp$") |
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
var blinder = require('color-blind'); | |
var colorBlindWatch = $('.color-blind-watch'); | |
var colorBlindResult = $('.color-blind-result-watch'); | |
var randomColor = '#000000'; | |
window.setInterval(function(){ | |
randomColor = '#'+ ('000000' + Math.floor(Math.random()*16777215).toString(16)).slice(-6); | |
colorBlindFn(randomColor); | |
}, 1000); |
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
var color '#'+ ('000000' + Math.floor(Math.random()*16777215).toString(16)).slice(-6); |
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
module Fastlane | |
module Actions | |
class SouyuzAction < Action | |
def self.run(params) | |
require 'souyuz' | |
absolute_app_path = File.expand_path(Souyuz::Manager.new.work(params)) | |
if absolute_app_path.include?(".ipa") | |
Actions.lane_context[SharedValues::IPA_OUTPUT_PATH] = absolute_app_path | |
ENV[SharedValues::IPA_OUTPUT_PATH.to_s] = absolute_app_path |
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/sh | |
# Arguments | |
MYSQL_PASSWORD=${1} | |
SERVER_NAME=${2} | |
SERVER_ALIAS=${3} | |
SERVER_ADMIN=${4} | |
MAIL_ADDRESS=${5} | |
MAIL_DOMAIN=${6} | |
MAIL_REPLY_PREFIX=${7} |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.ssh.forward_agent = true | |
config.vm.network :private_network, ip: "10.0.0.10" |
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/sh | |
# vagrant shell script for simple lamp stack | |
export DEBIAN_FRONTEND=noninteractive | |
# update | |
apt-get -qq update | |
echo "Updated system." | |
# php55 repository | |
apt-get -qq -y install python-software-properties |
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] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
NewerOlder