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 | |
# Generates gource video (h.264) out of multiple repositories. | |
# Pass the repositories in command line arguments. | |
# Example: | |
# <this.sh> /path/to/repo1 /path/to/repo2 | |
# 960x540 is youtube resolution | |
RESOLUTION="960x540" | |
outfile="gource.mp4" | |
i=0 |
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
Bedroom selection order: | |
<?php | |
$names = [ | |
'Artem', | |
'Andrey', | |
'Valera', | |
'Thomas', | |
'Eric' | |
]; | |
shuffle($names); |