Skip to content

Instantly share code, notes, and snippets.

View matiasvallejosdev's full-sized avatar
🎯
Launching

Matias Vallejos matiasvallejosdev

🎯
Launching
View GitHub Profile
@matiasvallejosdev
matiasvallejosdev / requirements.txt
Last active January 4, 2022 19:53
Library for ML Projects
appnope==0.1.0
argon2-cffi==20.1.0
astropy==4.0.1.post1
attrs==19.3.0
backcall==0.2.0
bleach==3.1.5
certifi==2020.6.20
cffi==1.14.1
chardet==3.0.4
confuse==1.3.0
@matiasvallejosdev
matiasvallejosdev / Singlenton.cs
Created January 20, 2021 23:38
Singleton Class for Unity3D
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Singlenton<T> : MonoBehaviour where T : Singlenton<T>
{
// Generic Class with T = Tipo de variable
private static T instance;
public static T Instance
{