- Meet Android Studio - User guide starting point, good for newbies
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
{ | |
"custom-layouts": [ | |
{ | |
"uuid": "{2E1FA4F0-E0E4-4C19-A61D-5DCEFFB95B3C}", | |
"name": "Omnigrid Landscape", | |
"type": "canvas", | |
"info": { | |
"ref-width": 2560, | |
"ref-height": 1392, | |
"zones": [ |
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
inline fun <reified T> Retrofit.create(): T = create(T::class.java) |
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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class #SCRIPTNAME# : MonoBehaviour { | |
private void Start() { | |
} | |
private void Update() { |
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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<color name="material_black_87">#DE000000</color> | |
<color name="material_black_54">#8A000000</color> | |
<color name="material_black_38">#61000000</color> | |
<color name="material_black_12">#1F000000</color> | |
<color name="material_white_100">#FFFFFFFF</color> | |
<color name="material_white_70">#B2FFFFFF</color> |
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
Hexadecimal standard opacity values for material design | |
Opacity - HEX | |
--------------- | |
87% DE | |
54% 8A | |
38% 61 | |
12% 1F | |
100% FF |
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
LIBNAME=libglfw3.a | |
SRCDIR=./src/ | |
TESTSDIR=./tests/ | |
EXAMPLESDIR=./examples/ | |
DEPSDIR=./deps/ | |
OBJDIR=./obj/ | |
BUILDDIR=./build/ |
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
Cool sites: | |
http://www.cprogramming.com | |
Patterns info: | |
http://programmers.stackexchange.com/questions/40373/so-singletons-are-bad-then-what | |
Conventions: | |
http://www.montefiore.ulg.ac.be/~piater/Cours/Coding-Style/ | |
Misc: |
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
autoload promptinit compinit colors | |
promptinit | |
compinit | |
colors | |
#prompt walters | |
PBRACKETS="$fg[blue]" | |
PINFO="$fg[yellow]" | |
PRINFO="$fg[red]" |
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
Black #000000 0-0-0 0.0f, 0.0f, 0.0f | |
White #FFFFFF 255-255-255 1.0f, 1.0f, 1.0f | |
10% Gray #EBEBEB 235-235-235 0.92f, 0.92f, 0.92f | |
15% Gray #E1E1E1 225-225-225 0.88f, 0.88f, 0.88f | |
20% Gray #D7D7D7 215-215-215 0.84f, 0.84f, 0.84f | |
25% Gray #D7D7D7 204-204-204 0.8f, 0.8f, 0.8f | |
30% Gray #C2C2C2 194-194-194 0.76f, 0.76f, 0.76f | |
35% Gray #B7B7B7 183-183-183 0.71f, 0.71f, 0.71f | |
40% Gray #ACACAC 172-172-172 0.67f, 0.67f, 0.67f | |
45% Gray #A0A0A0 161-161-161 0.63f, 0.63f, 0.63f |
NewerOlder