Date: [date]
Between us [company name] and you [customer name].
In short; neither of us will share any confidential information about each-other, by any means, with anyone else.
| <?php wp_footer(); ?> | |
| <?php if (!$user_ID) : ?> | |
| <script type="text/javascript"> | |
| var _gaq = _gaq || []; | |
| _gaq.push(['_setAccount', 'UA-9669661-12']); | |
| _gaq.push(['_trackPageview']); |
| (function() { | |
| var requests = window.performance.getEntries(); | |
| var hosts = {}; | |
| var output = ""; | |
| for(var requestIdx = 0; requestIdx < requests.length; requestIdx++) { | |
| var request = requests[requestIdx]; | |
| var origin = new URL(request.name).origin; | |
| hosts[origin] = 1; |
| TRUNCATE dataflow_batch_export; | |
| TRUNCATE dataflow_batch_import; | |
| TRUNCATE log_customer; | |
| TRUNCATE log_quote; | |
| TRUNCATE log_summary; | |
| TRUNCATE log_summary_type; | |
| TRUNCATE log_url; | |
| TRUNCATE log_url_info; | |
| TRUNCATE log_visitor; | |
| TRUNCATE log_visitor_info; |
| # Ignore PHPStorm | |
| /.idea/ | |
| /.phpstorm.meta.php | |
| #Ignore vagrant | |
| /.vagrant/ | |
| # Ignore code coverage reports | |
| /build/ |
| #!/bin/sh | |
| sudo find . -type f -exec chmod 644 {} \; | |
| sudo find . -type d -exec chmod 755 {} \; | |
| sudo chmod o+w var app/etc | |
| sudo chmod 550 mage | |
| sudo chmod -R o+w media |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| @include keyframe(fadeout) { | |
| 0% { | |
| opacity: 1; | |
| } | |
| 100% { | |
| opacity: 0; | |
| } | |
| } |
I was experimenting on custom styling the <select> elements of a form I was building. One of the things I tried implementing was truncating the text with an ellipsis in case it extended beyond the <select>'s width. It didn't look consistent through browsers, but I've accidentally discovered something really nice.