TODO: Describe what the project is, what it does
- Use bullet points to lay out languages and modules like so:
- PHP (>=5.5.x)
- Uses the Amazon AWS PHP library (link to library)
- node.js (0.10.36 or higher)
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
| /** | |
| example: | |
| const searchDown = getDeepValues( | |
| ['testId', 'caption', 'model', 'modelId'], | |
| action.payload.memoizedProps, | |
| ['memoizedProps', 'props' ,'child', 'children'] | |
| ); | |
| const searchUp = getDeepValues( | |
| ['testId', 'caption', 'model'], | |
| action.payload.return, |
| @mixin linear-gradient($angle, $color-stops...) { | |
| $_angle-with-vendor-prefix: ""; | |
| $_angle: ""; | |
| @if $angle == "to top" or $angle == "bottom" { | |
| $_angle-with-vendor-prefix: bottom; | |
| $_angle: to top; | |
| } @else if $angle == "to right" or $angle == "left" { | |
| $_angle-with-vendor-prefix: left; | |
| $_angle: to right; | |
| } @else if $angle == "to bottom" or $angle == "top" { |
| // create curl function | |
| function curlContents($url, $method = 'GET', $data = false, $headers = false, $returnInfo = false) { | |
| $ch = curl_init(); | |
| if($method == 'POST') { | |
| curl_setopt($ch, CURLOPT_URL, $url); | |
| curl_setopt($ch, CURLOPT_POST, true); | |
| if($data !== false) { | |
| curl_setopt($ch, CURLOPT_POSTFIELDS, $data); | |
| } |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| $(window).load(function(){ | |
| $().hatchShow(); | |
| }); | |
| jQuery.fn.hatchShow = function(){ | |
| $('.hsjs').css('display','inner-block').css('white-space','pre').each(function(){ | |
| var t = $(this); | |
| t.wrap("<span class='hatchshow_temp' style='display:block'>"); | |
| var pw = t.parent().width(); |