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
######################## | |
######################## | |
######################## | |
# PLEASE READ THIS | |
# A newer and improved version of this filter was developed by WhiteMagic grab it at | |
# https://www.dropbox.com/s/2kdmku7tznbj42r/average_filter.py?dl=0 | |
import math | |
import time |
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
###################### | |
# Project Specific | |
###################### | |
/build/www/** | |
/src/test/javascript/coverage/ | |
/src/test/javascript/PhantomJS*/ | |
###################### | |
# Node | |
###################### |
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
<launch.json> | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "vuejs: chrome", | |
"url": "http://localhost:8000", | |
"webRoot": "${workspaceFolder}/public", | |
"sourceMapPathOverrides": { | |
"webpack:///resources/assets/js/*.vue": "${workspaceFolder}/resources/assets/js/*.vue", |
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
//whole words | |
^(?=.*\bWORD_1\b)(?=.*\bWORD_2\b).*$ | |
//any char | |
^(?=.*WORD_1)(?=.*WORD_2).*$ |
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
netstat -a -n -o | find "8080" |
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
curl -v telnet://IP:PORT |