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:
| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
| public class SnapTopLinearLayoutManager extends LinearLayoutManager { | |
| public SnapTopLinearLayoutManager(Context context) { | |
| super(context); | |
| } | |
| public SnapTopLinearLayoutManager(Context context, int orientation, boolean reverseLayout) { | |
| super(context, orientation, reverseLayout); | |
| } |
| /* | |
| * Copyright 2014 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| // Create CustomView.xib, set File's Owner to CustomView. | |
| // Link the top level view in the XIB to the contentView outlet. | |
| class CustomView : UIView { | |
| @IBOutlet private var contentView:UIView? | |
| // other outlets | |
| override init(frame: CGRect) { // for using CustomView in code | |
| super.init(frame: frame) | |
| self.commonInit() |
| @interface AchievementManager : NSObject | |
| +(AchievementManager*) sharedManager; | |
| /** Local copy of current achievements progress */ | |
| @property(nonatomic, retain) NSMutableDictionary *achievementsDictionary; | |
| /** Must be called right after Game Center authentication */ | |
| -(void) loadAchievements; |