Skip to content

Instantly share code, notes, and snippets.

View gnuwilliam's full-sized avatar

William Oliveira gnuwilliam

View GitHub Profile
@paulloz
paulloz / content.md
Last active March 28, 2024 03:08
Visual Studio Code and C# code completion and debugger for Godot

Visual Studio Code and C# code completion and debugger for Godot

Ok, this is a quick document to guide you through the setup of a Godot project in Visual Studio Code.
I'll assume you have a working C# environment installed. Note that on Linux, you might need to install Mono for everything to work fine with Godot 3.x.

1. Install the necessary extensions

First off, make sure you have the following extensions installed and active in Visual Studio Code:

@diogobaeder
diogobaeder / gist:3891068
Created October 15, 2012 06:27
Carta contra PL de regulamentação da profissão de Analista de Sistemas
Carta finalizada; Abri uma petição pública para ela, e assim que atingirmos mais de 5000 assinaturas enviarei ao Senador, que é relator do projeto.
A petição se encontra em: http://www.peticaopublica.com.br/?pi=P2012N30508
Caro Senador Wellington Dias,
@buzzedword
buzzedword / bower-hitlist.md
Created September 21, 2012 19:55
Making the web a better place: Bower Hitlist

NEW Organization Repo

Please find the new location for the bower hitlist in Github Orgs, rather than Gists. See you there!

https://github.com/bower-hitlist/bower-hitlist.github.com

Overview

Today, I'm starting a small campaign to make the state of the web better in my own way. With the advent of a unified package system like bower, it has never been easier to improve the lives of developers everywhere!

@diogobaeder
diogobaeder / gist:3738165
Created September 17, 2012 15:56
Alternative to discard stdout
from contextlib import contextmanager
from StringIO import StringIO
import os
import sys
from unittest import TestCase
class MyTest(TestCase):
@contextmanager
def discard_print(self):