This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| Subject: [PATCH] PHP 5.6 - LibSSL 1.1 compatibility | |
| This patch does not try to backport the 7.1 openssl module, it is the | |
| improved version of the 5.6 original openssl module. | |
| https://github.com/oerdnj/deb.sury.org/issues/566 | |
| http://zettasystem.com/PHP-5.6.31-OpenSSL-1.1.0-compatibility-20170801.patch | |
| Upstream-Status: Deny [https://github.com/php/php-src/pull/2667] | |
| Reason: As PHP 5.6 is no longer actively supported only security fixes |
| #!/bin/bash | |
| # Creator: Phil Cook | |
| # Modified: Andy Miller | |
| osx_major_version=$(sw_vers -productVersion | cut -d. -f1) | |
| osx_minor_version=$(sw_vers -productVersion | cut -d. -f2) | |
| osx_patch_version=$(sw_vers -productVersion | cut -d. -f3) | |
| osx_patch_version=${osx_patch_version:-0} | |
| osx_version=$((${osx_major_version} * 10000 + ${osx_minor_version} * 100 + ${osx_patch_version})) | |
| brew_prefix=$(brew --prefix | sed 's#/#\\\/#g') |
| GPG_TTY=$(tty) | |
| export GPG_TTY |
| <div> | |
| <button type="button" class="my-df-addtocart-btn" data-addtocart="{{id}}"> | |
| {{#translate}}Add To Cart{{/translate}} | |
| </button> | |
| </div> |
| /** | |
| * A mixin which helps you to add depth to elements according to the Google Material Design spec: | |
| * http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-dimensionality | |
| * | |
| * Please note that the values given in the specification cannot be used as is. To create the same visual experience | |
| * the blur parameter has to be doubled. | |
| * | |
| * Adapted from a LESS version at https://medium.com/@Florian/freebie-google-material-design-shadow-helper-2a0501295a2d | |
| * | |
| * Original Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp) |
| <!-- START OF DOOFINDER SCRIPT --> | |
| <script type="text/javascript"> | |
| var doofinder_script = '//cdn.doofinder.com/media/js/doofinder-4.latest.min.js'; | |
| (function(d,t){var f=d.createElement(t),s=d.getElementsByTagName(t)[0];f.async=1; | |
| f.src=('https:'==location.protocol?'https:':'http:')+doofinder_script; | |
| s.parentNode.insertBefore(f,s)}(document,'script') | |
| ); | |
| if(!doofinder){var doofinder={};} | |
| // More options: http://www.doofinder.com/developer/doofinder-layer | |
| doofinder.options = { |
| $ sudo apt-get autoclean | |
| $ sudo apt-get clean | |
| $ sudo apt-get autoremove | |
| # if you installed the debian-goodies package... | |
| $ dpigs -H -n 25 | |
| # You can install ncdu to find large files in a graphical interface through terminal | |
| $ ncdu |
| console.log('Hola, mundo!'); |
| mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql |