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
Go to menu: | |
Find -> Find in Files... (windows: ctrl+shift+f) | |
Switch on reg_ex button (windows: alt+r) | |
Find: | |
^.*\S+.*$ | |
Where: | |
c:\your_folder\,*.php,*.js,*.inc,*.html,*.htm,*.scss, -*/folder_to_exclude/*, -*.min.js |
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 ; | |
import openfl.display.Sprite; | |
/** | |
* ... | |
* @author Kenton Hamaluik | |
*/ | |
class AABB | |
{ | |
public var center:Vector = new Vector(); |
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
var es = require('event-stream'), | |
gulp = require('gulp'), | |
riot = require('gulp-riot'), | |
rimraf = require('gulp-rimraf'), | |
jshint = require('gulp-jshint'), | |
stylus = require('gulp-stylus'), | |
concat = require('gulp-concat'), | |
uglify = require('gulp-uglify'), | |
notify = require("gulp-notify"), | |
plumber = require('gulp-plumber'), |
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
~ $ git clone https://github.com/letsencrypt/letsencrypt | |
~ $ cd letsencrypt | |
~ $ letsencrypt-auto --renew-by-default --webroot -w /var/www/ --email [email protected] --text --agree-tos -d website.com -d www.website.com auth | |
~ $ letsencrypt --apache |