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:
| Get-Command # Retrieves a list of all the commands available to PowerShell | |
| # (native binaries in $env:PATH + cmdlets / functions from PowerShell modules) | |
| Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft* | |
| Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item" | |
| Get-Help # Get all help topics | |
| Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page) | |
| Get-Help -Name Get-Command # Get help for a specific PowerShell function | |
| Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command |
| ffmpeg -i input.mkv -movflags faststart -c:v libx265 -crf 25 -c:a aac -b:a 128k output.mp4 |
| #! /bin/bash | |
| # Batch Convert Script by StevenTrux | |
| # The Purpose of this Script is to batch convert any video file to mp4 or mkv format for chromecast compatibility | |
| # this script only convert necessary tracks if the video is already | |
| # in H.264 format it won't convert it saving your time! | |
| # Put all video files need to be converted in a folder! | |
| # the name of files must not have " " Space! | |
| # Rename the File if contain space |
| [Unit] | |
| Description=TeamCity Build Agent | |
| After=network.target | |
| [Service] | |
| Type=forking | |
| PIDFile=$AGENT_HOME/logs/buildAgent.pid | |
| ExecStart=/usr/bin/sudo -u teamcity $AGENT_HOME/bin/agent.sh start | |
| ExecStop=/usr/bin/sudo -u teamcity $AGENT_HOME/bin/agent.sh stop |
| #!/bin/bash | |
| # | |
| # Jenkins Swarm Client | |
| # | |
| # chkconfig: 2345 89 9 | |
| # description: jenkins-swarm-client | |
| source /etc/rc.d/init.d/functions |
| import javax.net.ssl.SSLParameters; | |
| import javax.net.ssl.SSLSocket; | |
| import javax.net.ssl.SSLSocketFactory; | |
| import java.io.*; | |
| /** Establish a SSL connection to a host and port, writes a byte and | |
| * prints the response. See | |
| * http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
| */ | |
| public class SSLPoke { |