This file contains hidden or 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
[Tue Mar 04 20:32:56.275827 2014] [ssl:warn] [pid 10952:tid 140190021068608] AH01909: RSA certificate configured for 192.168.33.10.xip.io:443 does NOT include an ID which matches the server name | |
[Tue Mar 04 20:32:58.155500 2014] [ssl:warn] [pid 11202:tid 139739659188032] AH01909: RSA certificate configured for 192.168.33.10.xip.io:443 does NOT include an ID which matches the server name | |
[Tue Mar 04 20:32:58.231900 2014] [ssl:warn] [pid 11203:tid 139739659188032] AH01909: RSA certificate configured for 192.168.33.10.xip.io:443 does NOT include an ID which matches the server name | |
[Tue Mar 04 20:48:59.062314 2014] [fastcgi:error] [pid 14607:tid 139739552024320] [client 192.168.33.1:59866] FastCGI: comm with server "/usr/lib/cgi-bin/php5-fcgi" aborted: idle timeout (30 sec) | |
[Tue Mar 04 20:48:59.062945 2014] [fastcgi:error] [pid 14607:tid 139739552024320] [client 192.168.33.1:59866] FastCGI: incomplete headers (0 bytes) received from server "/usr/lib/cgi-bin/php5-fcgi" |
This file contains hidden or 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
# More information at https://github.com/jakeleboeuf/contributor/issues/8 | |
git log --author="Michael Stramel|mstramel|stramel" --perl-regexp --all --pretty=tformat: --numstat | \ | |
grep -v docs | \ | |
gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END \ | |
{ printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }' - |
This file contains hidden or 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
/* | |
TODO: | |
X Maybe account for defaults: color: var(--header-color, blue); | |
- Verify cross domain working or not (it is working from dropbox) | |
- Option to wait to apply anything until all <link>s are parsed or inject what we have and update as each <link> returns | |
- Need to test on a more complex CSS file | |
- Option to save parsed file in local/session storage so there isn't a delay on additional page loads. Could only do it for links (with URLs to use as keys) and style blocks with IDs of some sort | |
- Need to test more complex values like rgba(255,0,0,0.5); and something with !important | |
- Try multiple links | |
- Local links |
This file contains hidden or 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
'body': | |
'ctrl-shift-s': 'window:save-all' | |
'.workspace .editor': | |
'ctrl-d': 'editor:duplicate-lines' | |
'ctrl-shift-D': 'editor:delete-line' | |
'.editor': | |
'alt-shift-right': 'editor:select-to-end-of-line' | |
'alt-right': 'editor:move-to-end-of-line' |
This file contains hidden or 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
<!-- | |
@license | |
Copyright (c) 2016 The Polymer Project Authors. All rights reserved. | |
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt | |
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt | |
Code distributed by Google as part of the polymer project is also | |
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt | |
--> |
This file contains hidden or 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
<!doctype html> | |
<head> | |
<base href="https://polygit.org/polymer+:2.0-preview/webcomponentsjs+webcomponents+:v1/custom-elements+webcomponents+*/shadydom+webcomponents+*/shadycss+webcomponents+*/components/"> | |
<script src="webcomponentsjs/webcomponents-loader.js"></script> | |
<link href="polymer/polymer-element.html" rel="import"> | |
</head> | |
<body> | |
<script id="jsbin-source-html" type="text/html"><!doctype html> |
This file contains hidden or 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
module.exports = { | |
'extends': ['eslint:recommended', 'google'], | |
'env': { | |
browser: true, | |
es6: true | |
}, | |
'globals': { | |
Polymer: true | |
}, | |
'rules': { |
This file contains hidden or 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
Polymer.__importLazyGroup = function( | |
callingElement, group, fromElement, options) { | |
if (!fromElement) { | |
fromElement = Polymer.DomModule.import(callingElement.localName); | |
} | |
var importStatuses = {loaded: [], failed: []}; | |
var groupAttribute = group ? '[group=' + group + ']' : ':not([group])'; | |
var query = | |
'link' +groupAttribute+ '[rel=\'lazy-import\'][href]:not([href=\'\'])'; |
This file contains hidden or 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
last 3 versions | |
not Explorer < 11 | |
not ExplorerMobile < 11 |
OlderNewer