Put this into the server's .htaccess file (assuming that it's an Apache):
<IfModule mod_headers.c>
<FilesMatch "\.css$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
| javascript:prompt('Copy this:',location.href.replace(/\./g,"\u200b."));return false; |
| tinyMCE.init({ | |
| mode : "exact", | |
| theme : "advanced", | |
| language : "de", | |
| valid_elements : "p,em/i,strong/b,br,strike,u,ul,ol,li", | |
| theme_advanced_buttons1 : "undo,redo,bold,italic,underline,strikethrough,bullist,numlist,outdent,indent,code", | |
| theme_advanced_buttons2 : "", | |
| theme_advanced_buttons3 : "", | |
| apply_source_formatting : true, | |
| entity_encoding : "named", |
Put this into the server's .htaccess file (assuming that it's an Apache):
<IfModule mod_headers.c>
<FilesMatch "\.css$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
| <IfModule mod_headers.c> | |
| # Set IE to render page as if it were an IE 7 | |
| Header set X-UA-Compatible "IE=7" | |
| </IfModule> |
| # This .htaccess needs Apache with: | |
| # mod_rewrite | |
| # mod_headers | |
| # mod_proxy | |
| # SSL certificate | |
| # Proxies "https://api.twitter.com.cors-proxy.io/1.1/statuses/mentions_timeline.json?count=2&since_id=14927799" | |
| # To: "https://api.twitter.com/1.1/statuses/mentions_timeline.json?count=2&since_id=14927799" | |
| # All while setting CORS header on the fly |
| file_put_contents($filename,base64_decode(str_replace(array( | |
| 'data:image/jpeg;base64,', | |
| 'data:image/png;base64,', | |
| 'data:image/gif;base64,', | |
| ),'',$datauri))); |
| javascript:(function(){$('link[rel="stylesheet"]').each(function(){var url=$(this).attr('href').replace(/[\?&][^\?&=]+=[0-9]+$/,'');url += (url.indexOf('?') == -1 ? '?' : '&') + 'nocache=' + (new Date()).getTime();console.log(url);$(this).attr('href',url);});})() |
| /** | |
| * CSS Variables test | |
| */ | |
| background: red; | |
| -webkit-var-foo: green; | |
| -moz-var-foo: green; | |
| -o-var-foo: green; | |
| var-foo: green; |
| div { | |
| color: red; | |
| -webkit-text-fill-color: transparent; | |
| background: url(http://www.bittbox.com/wp-content/uploads/2008/04/free_hires_wood_texture_5.jpg); | |
| -webkit-background-clip: text; | |
| } | |
| p { | |
| color: #8B4813; /* Color to key out. Best if a median of bg image colors */ | |
| font-size: 120px; | |
| filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ) /* Gradient fills with white */ |
| div { | |
| color: red; | |
| -webkit-text-fill-color: transparent; | |
| background: url(http://www.bittbox.com/wp-content/uploads/2008/04/free_hires_wood_texture_5.jpg); | |
| -webkit-background-clip: text; | |
| } | |
| p { | |
| color: #8B4813; /* Color to key out. Best if a median of bg image colors */ | |
| font-size: 120px; | |
| filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ) /* Gradient fills with white */ |