This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file : .gitconfig | |
configgist | |
lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all | |
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |
lg = !"git lg1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ========================================================================= | |
# COVERAGE CONFIGURATION FILE: .coveragerc | |
# ========================================================================= | |
# LANGUAGE: Python | |
# SEE ALSO: | |
# * http://nedbatchelder.com/code/coverage/ | |
# * http://nedbatchelder.com/code/coverage/config.html | |
# ========================================================================= | |
[run] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using UnityEngine.EventSystems; | |
public class SetFirstSelectable : MonoBehaviour | |
{ | |
public GameObject firstSelectable; | |
public void ApplyFirstSelectable(GameObject firstSelectable) | |
{ | |
this.firstSelectable = firstSelectable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*==== DebugConsole.cs ==================================================== | |
* Class for handling multi-line, multi-color debugging messages. | |
* Original Author: Jeremy Hollingsworth | |
* Based On: Version 1.2.1 Mar 02, 2006 | |
* | |
* Modified: Simon Waite | |
* Date: 22 Feb 2007 | |
* | |
* Modification to original script to allow pixel-correct line spacing | |
* |