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
package main | |
// A script to work out the dates of codebar workshops for the West London chapter. | |
// Our workshops are on the second and fourth Tuesdays of every month. | |
// https://codebar.io/west-london | |
import "time" | |
import "fmt" | |
func main() { |
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 | |
# Pull down the latest docker images | |
# | |
# "docker-compose pull" will pull down the latest images but will not do it | |
# intelligently as it will attempt to update things multiple times if they | |
# are dependencies of several services (eg. mysql). | |
# | |
# It will also only work on the current directory. | |
# |
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
<?xml version="1.0"?> | |
<!-- Location: $HOME/config/phpcs.xml --> | |
<ruleset name="burhan"> | |
<rule ref="Squiz.Commenting.FunctionComment"> | |
<!-- excluded because they can't be used for both php 5 and 7 --> | |
<!-- PHP 7 will make this complaint if scalar type hints (eg int) are missing --> | |
<exclude name="Squiz.Commenting.FunctionComment.ScalarTypeHintMissing" /> | |
<!-- PHP 5 will make this complaint if scalar type hints (eg. int) exist --> | |
<exclude name="Squiz.Commenting.FunctionComment.InvalidTypeHint" /> | |
</rule> |