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:
Copyright (c) 2011 ZURB, http://www.zurb.com/ |
# 1.install gource using HomeBrew | |
$ brew install gource | |
# 2.install avconv | |
git clone git://git.libav.org/libav.git | |
cd libav | |
# it will take 3-5 minutes to complie, be patient. | |
./configure --disable-yasm | |
make && make install |
// | |
// RSTimingFunction.h | |
// | |
// Created by Raphael Schaad on 2013-09-28. | |
// This is free and unencumbered software released into the public domain. | |
// | |
#import <UIKit/UIKit.h> |
A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.
As it turns out, there are several open-source tools that allow for conversion between file types. Pandoc is one of them, and it's powerful. In fact, pandoc's website says "If you need to convert files from one markup format into another, pandoc is your swiss-army knife." But, although pandoc can convert from markdown into .docx, it doesn't work in the other direction.
using System; | |
using UnityEngine.Events; | |
using UnityEngine.EventSystems; | |
namespace UnityEngine.UI | |
{ | |
/// <summary> | |
/// Simple toggle -- something that has an 'on' and 'off' states: checkbox, toggle button, radio button, etc. | |
/// </summary> | |
[AddComponentMenu("UI/Toggle", 35)] |
public class AsyncTaskProcessor : ITickable | |
{ | |
public event Action LoadStarted = delegate {}; | |
public event Action LoadComplete = delegate {}; | |
// New workers to prevent a process from being popped before completion | |
List<WorkerData> _newWorkers = new List<WorkerData>(); | |
// We use a stack here because otherwise sub process of current workers would never execute | |
// causing a state of limbo. |