Skip to content

Instantly share code, notes, and snippets.

View cesarrac's full-sized avatar

Cesar R Castillo cesarrac

  • San Juan, Puerto Rico
View GitHub Profile
@cesarrac
cesarrac / PRBoxers.csv
Created January 15, 2022 03:19
PR Boxers
Number Name Date of first title win Divisions
1 Sixto Escobar June 6, 1934 Bantamweight (U & L 2)
2 Carlos Ortiz June 12, 1959 Light welterweight (U & L 2)
3 José Torres March 30, 1965 Light heavyweight (U, M, M & L)
4 Ángel Espada June 28, 1975 Welterweight (M)
5 Alfredo Escalera July 5, 1975 Super featherweight (M)
6 Wilfred Benítez March 6, 1976 Light welterweight (M & L), welterweight (M & L) and light middleweight (M)
7 Esteban De Jesús May 8, 1976 Lightweight (M)
8 Samuel Serrano October 16, 1976 Super featherweight (M 2 & L 2)
9 Wilfredo Gómez May 21, 1977 Super bantamweight (M & L), featherweight (M) and super featherweight (M)
@cesarrac
cesarrac / unity 2d camera follow
Created June 15, 2018 21:29 — forked from unity3diy/unity 2d camera follow
unity 2d camera follow script, add this script to camera and drag character or your object into it. simple!
using UnityEngine;
using System.Collections;
public class FollowCamera : MonoBehaviour {
public float interpVelocity;
public float minDistance;
public float followDistance;
public GameObject target;
public Vector3 offset;