$ find . fileName
grep -R 'etoxin' *
| $.ajax({ | |
| url: "https://api.mongolab.com/api/1/databases/geolocation/collections/boom?apiKey=XXXXXXXXXXXXXXXXXX", | |
| type: "POST", | |
| data: JSON.stringify( object ), | |
| contentType: "application/json" | |
| }).done(function( msg ) { | |
| console.log(msg); | |
| }); |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Boom!</title> | |
| <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet"> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
| <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script> | |
| <script> | |
| var stuff = { | |
| run: function () { |
| @for $a from 1 through 100{ | |
| @for $b from 1 through 100{ | |
| @for $c from 1 through 100{ | |
| @for $d from 1 through 100{ | |
| .margin-#{$a}-#{$b}-#{$c}-#{$d}{ | |
| margin: $a $b $c $d; | |
| } | |
| } | |
| } | |
| } |
$ crontab -u testuser -e
If you have never done this before, it will ask you which editor you wish to edit with. I like vim, but will recommend nano for ease of use.
Once in the editor add the following line:
@reboot /usr/local/bin/forever start /your/path/to/your/app.js
| // icon colouring. | |
| $icon-color-set: (black $black), | |
| (white $white), | |
| (green $green), | |
| (orange $orange), | |
| (red $red), | |
| (utility-blue $utility-blue), | |
| (ocean-blue $ocean-blue), | |
| (transition-blue2 $transition-blue2), | |
| (transition-blue3 $transition-blue3), |
| // Links | |
| @mixin link($color, $percent){ | |
| color: $color; | |
| &:active, | |
| &:focus, | |
| &:hover { | |
| color: darken($color, $percent); | |
| } | |
| } |
| # Find in file. (Grep) | |
| Select-String stringYouWantToSearch .\fileYouWantToSearch.txt |
| python -m SimpleHTTPServer |