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 | |
### BEGIN INIT INFO | |
# Provides: php-fastcgi | |
# Required-Start: $local_fs $remote_fs $network $syslog | |
# Required-Stop: $local_fs $remote_fs $network $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts the php-fastcgi web server | |
# Description: starts php-fastcgi using start-stop-daemon |
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
// this mixin can be used in any sass template to easily deploy | |
// consistent gradients quickly. Just change the values of $start | |
// and $end to the colors you want your gradient to travel between. | |
// You can pass different colors when calling the mixin like this: | |
// > @include grad(#279333,#192566) | |
// Better still you can define color variables and do it like this | |
// > $yellow = #f30; |
NewerOlder