Skip to content

Instantly share code, notes, and snippets.

View Coac's full-sized avatar

Victor Le Coac

View GitHub Profile
@Coac
Coac / keybase.md
Created December 3, 2017 14:16
keybase.md

Keybase proof

I hereby claim:

  • I am coac on github.
  • I am coac (https://keybase.io/coac) on keybase.
  • I have a public key ASBf5xTzTkpPWm0PKRVaU5n2rwuSltozUCuQB1YGfOS9Cwo

To claim this, I am signing this object:

@Coac
Coac / TerrainGenerator.cs
Created April 27, 2016 18:55
A basic procedural terrain generation make in Unity3D
using UnityEngine;
using System.Collections;
public class TerrainGenerator : MonoBehaviour {
public Texture2D grassTexture;
public Texture2D rockTexture;
void Start()
@Coac
Coac / NumberSumDecomposition.java
Last active February 14, 2016 19:06
NumberSumDecomposition with duplication
public class Application {
public static void main(String[] args) {
int[] tab = new int[4];
tab[0] = 1;
tab[1] = 10;
tab[2] = 2;
tab[3] = 5;
getSumDecomposition(53, tab);
}