https://laravel-news.com/minio-s3-compliant-storage
- How to use:
| var ret={}; | |
| $('*').each(function () { | |
| var str = $(this).css('font-family'); | |
| str = str + ':' + $(this).css('font-weight'); | |
| str = str + ':' + $(this).css('font-style'); | |
| if (ret[str] ) { | |
| ret[str] = ret[str] + 1; | |
| } else { | |
| ret[str] = 1; | |
| } |
| <?php | |
| function toInt($float) | |
| { | |
| // handle blank values | |
| if (blank($float)) { | |
| return 0; | |
| } | |
| // separate at decimal |
| <template> | |
| <section> | |
| <span class="circle" :class="{current: current, completed: complete}"> | |
| <span v-if="complete" class="fa fa-check u-icon__inner text-white"></span> | |
| </span> | |
| <small class="description"><slot></slot></small> | |
| </section> | |
| </template> | |
| <script> |
$ uname -r
| <div class="container"> | |
| <img src="http://endurancecompany.com/enduranceco.png" alt=""> | |
| <h3> | |
| Our site is temporarily unavailable but you can visit us on <a href="https://www.facebook.com/EnduranceCo/">Facebook</a> or <a href="https://twitter.com/EnduranceCo">Twitter</a>. We’ll be back to normal soon. | |
| </h3> | |
| </div> |
| #text-block .flickr { | |
| color: transparent; | |
| text-shadow: white 0 0 1px; | |
| -webkit-transition: text-shadow 0.2s ease-in-out; | |
| -moz-transition: text-shadow 0.2s ease-in-out; | |
| transition: text-shadow 0.2s ease-in-out; | |
| } |
| /* | |
| * Params.js | |
| * | |
| * http://lecklider.com/2015/12/parsing-get-parameters-in-javascript.html | |
| * | |
| * Super simple parser of query string parameters. | |
| * Creates a variable 'params' on the 'window' object. | |
| * | |
| */ | |
| (function() { |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |