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:
| s/NUMBER(22,0)/BIGINT/ | |
| s/NUMBER(9,0)/INT/ | |
| s/NUMBER(8,0)/INT/ | |
| s/NUMBER(6,0)/MEDIUMINT/ | |
| s/NUMBER(5,0)/SMALLINT/ | |
| s/NUMBER(3,0)/TINYINT/ | |
| s/NUMBER(2,0)/TINYINT/ | |
| s/NUMBER(1,0)/BIT/ | |
| s/NUMBER(16,2)/DECIMAL(16,2)/ | |
| s/NUMBER(11,2)/DECIMAL(11,2)/ |
| #!/bin/bash | |
| # cpustatus | |
| # | |
| # Prints the current state of the CPU like temperature, voltage and speed. | |
| # The temperature is reported in degrees Celsius (C) while | |
| # the CPU speed is calculated in megahertz (MHz). | |
| function convert_to_MHz { | |
| let value=$1/1000 | |
| echo "$value" |
| img:hover { | |
| -webkit-filter: grayscale(0%); | |
| -webkit-transition: .5s ease-in-out; | |
| -moz-filter: grayscale(0%); | |
| -moz-transition: .5s ease-in-out; | |
| -o-filter: grayscale(0%); | |
| -o-transition: .5s ease-in-out; | |
| } | |
| img { |
| // create file: | |
| sudo vim /usr/share/applications/intellij.desktop | |
| // add the following | |
| [Desktop Entry] | |
| Version=13.0 | |
| Type=Application | |
| Terminal=false | |
| Icon[en_US]=/home/rob/.intellij-13/bin/idea.png | |
| Name[en_US]=IntelliJ |
| <ul> | |
| <#list .data_model?keys as key> | |
| <li>${key}</li> | |
| </#list> | |
| </ul> |