Skip to content

Instantly share code, notes, and snippets.

View FranciscoGutierrez's full-sized avatar
🎃
Working from home

Francisco Gutiérrez FranciscoGutierrez

🎃
Working from home
View GitHub Profile
@nolanlawson
nolanlawson / .hyper.js
Created December 13, 2016 00:32
.hyper.js
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 14,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
@emoacht
emoacht / UnityWebRequestUsage.cs
Created December 31, 2015 22:57
Sample usage of UnityWebRequest
using System.Collections;
using UnityEngine;
using UnityEngine.Experimental.Networking;
public class UnityWebRequestUsage : MonoBehaviour
{
void Start()
{
StartCoroutine(GetText());
}