- any given program, when running, is obsolete.
- if a program is useless, it will have to be documented.
- if a program is useful, it will have to be changed.
- any program will expand to fill all available memory.
- the value of a program is proportional to the weight of its output.
- program complexity grows until it exceeds the capability of the programmer to maintain it.
- make it possible for programmers to write in english and you will find that programmers cannot write in english.
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
labuser@rsdirtylnx:/home/incoming/relayserver/quicksetup_apache$ sudo ./ap-setup.sh | |
+ source /home/incoming/relayserver/quicksetup_apache/__funcs__.sh | |
./ap-setup.sh: 12: ./ap-setup.sh: source: not found | |
+ clear | |
+ echo | |
+ echo You are about to execute the Relay Server quick setup script for | |
You are about to execute the Relay Server quick setup script for | |
+ echo Apache. Output of this setup script will be captured in ap-setup.log. | |
Apache. Output of this setup script will be captured in ap-setup.log. |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | |
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.no-icons.min.css" rel="stylesheet"> | |
<link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet"> | |
<style> | |
</style> | |
<!-- none of the rest of the tags are required for html5, wee! --> | |
<!-- body --> | |
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
/** | |
* css gradient for triangle shaped arrow (SO) | |
* http://stackoverflow.com/q/12431596/1397351 | |
*/ | |
.shape { | |
float: left; | |
position: relative; | |
border: 1px solid #ccc; | |
border-right: none; | |
width: 240px; height: 80px; |
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
# Parse ini style numbers in strings. | |
# hex = '$123ABC' | |
# dec = '123456' | |
String::getHex = -> parseInt @, 16 | |
String::iniHex = -> if "#{@.charAt 0}" is '$' then do "#{@.slice 1}".getHex else +@ |
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
// Ratings. | |
$ranks-color: gold !default; | |
@mixin clearfix() { | |
content: "clearfix"; | |
} |
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin appearance($var) { | |
-webkit-appearance: $var; | |
-moz-appearance: $var; | |
appearance: $var; | |
} |
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
// ---- | |
// libsass (v3.1.0) | |
// ---- | |
// | |
// @author Daryl Roberts | |
// @license MIT | |
// | |
@mixin side-shadow($shadow, $side, $base-size: 50px) { |
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
// | |
// @author Daryl Roberts | |
// @license MIT | |
// @url https://gist.github.com/sorahn/7915cae6c820e351158f | |
// | |
@mixin side-shadow($shadow, $side, $base-size: 50px) { | |
// If you need to make shadows larger than 50px, you can | |
// override the base size. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer