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
export PGCLUSTER="9.4/main" |
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 bash -l | |
set -e | |
### | |
# Add the line below to your setup command in Project Settings | |
# | |
# wget https://gist.githubusercontent.com/mimimalizam/27959bbc653de3965bb40955f4bc43df/raw/pg-downgrade-semaphore.sh && bash pg-downgrade-semaphore.sh | |
# | |
# Note: reset your dependency cache in Project Settings > Admin, before running this script |
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
on ExportDone(recordingID) | |
set destFolder to "Users:ceicke:Desktop:" | |
set tvShow to "bla.mp4" | |
tell application "iTunes" | |
activate | |
set newTVShow to ("Macintosh HD:" & destFolder & tvShow) as alias | |
add newTVShow | |
quit |
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 | |
counter=0 | |
for tag in `git for-each-ref --sort=taggerdate --format='%(refname:short)' refs/tags` | |
do | |
echo $tag | |
git checkout $tag | |
code_line_count=`grep -vR '^\s*$\|^\s*#.*$' ./app/**/* | wc -l` | |
test_line_count=`grep -vR '^\s*$\|^\s*#.*$' ./features/**/* | wc -l` |