Use this:
^((?![INSERT YOUR WORD THAT YOU WANT TO EXCLUDE HERE]).)*$
Don't forget to check the Regex checkbox!
Example:
I'm excluding logs that contains Pusher words here. So, this is what I put inside the filter box: ^((?!pusher).)*$
| ## Global install of the app generator | |
| npm install -g create-react-app | |
| ## Setup the app (first-time only) | |
| create-react-app my-app | |
| cd my-app | |
| git init | |
| # Create the Heroku app; requires free account at https://www.heroku.com/ | |
| heroku create -b https://github.com/heroku/heroku-buildpack-static.git |
Use this:
^((?![INSERT YOUR WORD THAT YOU WANT TO EXCLUDE HERE]).)*$
Don't forget to check the Regex checkbox!
Example:
I'm excluding logs that contains Pusher words here. So, this is what I put inside the filter box: ^((?!pusher).)*$
This has been moved to a blog post.
| // add to Preferences > Key Bindings - User | |
| // see http://stackoverflow.com/a/26619524 for context | |
| { "keys": ["tab"], "command": "expand_abbreviation_by_tab", | |
| "context": [ | |
| { | |
| "operand": "source.js", | |
| "operator": "equal", | |
| "match_all": true, | |
| "key": "selector" |
| Baidu Maps API Detailed Explanation | |
| - | |
| Explanation of [drawing Objects onto Baidu Maps](http://developer.baidu.com/map/jsdemo.htm#f0_7). | |
| Draw Shit Onto Baidu Map: | |
| - | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| // Refer to https://gist.github.com/remy/350433 | |
| try { | |
| // Test webstorage existence. | |
| if (!window.localStorage || !window.sessionStorage) throw "exception"; | |
| // Test webstorage accessibility - Needed for Safari private browsing. | |
| localStorage.setItem('storage_test', 1); | |
| localStorage.removeItem('storage_test'); | |
| } catch(e) { | |
| (function () { | |
| var Storage = function (type) { |
A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.
Running a local server for testing purposes:
Re: On layout & web performance by Kelly Norton
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>#lazyweb Is there any documentation about which jQuery functions/effects trigger layout? re: kellegous.com/j/2013/01/26/l…
— Dave Rupert (@davatron5000) January 28, 2013
getWidthOrHeight() used in jQuery.fn.width/height
clientLeft