Skip to content

Instantly share code, notes, and snippets.

View geocine's full-sized avatar
🤖
지식은 행동으로 번성하고, 게으르면 시들어간다.

Aivan Monceller geocine

🤖
지식은 행동으로 번성하고, 게으르면 시들어간다.
View GitHub Profile

Screencasting Framework

The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.

Why you should care about screencasting?

You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.

  1. Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
package com.webileapps.myrtprofile;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.Button;
/**
*
@geocine
geocine / gist_tag.rb
Last active December 25, 2015 02:49 — forked from fresky/gist_tag.rb
# A Liquid tag for Jekyll sites that allows embedding Gists and showing code for non-JavaScript enabled browsers and readers.
# by: Brandon Tilly
# Source URL: https://gist.github.com/1027674
# Post http://brandontilley.com/2011/01/31/gist-tag-for-jekyll.html
#
# Example usage: {% gist 1027674 gist_tag.rb %} //embeds a gist for this plugin
require 'cgi'
require 'digest/md5'
require 'net/https'
@geocine
geocine / README.md
Last active February 4, 2021 02:49 — forked from pasela/README.md

A pastel color theme for mintty

screenshot

Settings

Merge mintty-color-pastel-rc into your .minttyrc

or

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@geocine
geocine / git_submodules.md
Created September 22, 2016 16:07 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@geocine
geocine / MutationCollectionTests.cs
Created December 12, 2016 01:24 — forked from DanielRobinsonSoftware/MutationCollectionTests.cs
Mutate a list of custom objects in GraphQL for .NET
using System.Collections.Generic;
using GraphQL.Types;
using Xunit;
namespace GraphQL.Tests.Execution.Collections
{
public class Foo
{
public Foo()
{
@geocine
geocine / scramble_333.js
Created September 19, 2017 04:07 — forked from cs0x7f/scramble_333.js
new javascript 3x3 random state scrambler used in cstimer
/*
scramble_333.js
3x3x3 Solver / Scramble Generator in Javascript.
The core 3x3x3 code is from a min2phase solver by Shuang Chen.
Compiled to Javascript using GWT and j2js project.
new feature:
@geocine
geocine / multiple_ssh_setting.md
Created May 10, 2018 03:08 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
@geocine
geocine / README.md
Created May 11, 2018 16:15 — forked from ToughCrab24/README.md
Docker Swarm Setup with Docker Machine

Swarm Setup

Local

#1 Create virtual machines

docker-machine create manager1
docker-machine create worker1
docker-machine create worker2