Skip to content

Instantly share code, notes, and snippets.

View naruse's full-sized avatar

Juan Sebastian Muñoz naruse

  • Pencil Square Games
  • Canada
View GitHub Profile
@naruse
naruse / Calc.cs
Created October 22, 2013 12:48
Basically draws a calculator and all the logic inside of it.
/*
Basically draws a calculator and all the logic inside.
programmed by: Juan Sebastian Munoz Arango
naruse@gmail.com
October
*/
using UnityEngine;
@naruse
naruse / Date.h
Created December 17, 2018 19:27
Date.h
#pragma once
using namespace::std;
class Date {
public:
int year;
int month;
int day;
int hour;
@naruse
naruse / Input.txt
Created December 17, 2018 19:26
Input Day 4 advent of code 2018 Part 1
[1518-05-11 00:22] falls asleep
[1518-10-11 00:51] wakes up
[1518-10-12 00:31] wakes up
[1518-04-08 00:57] wakes up
[1518-09-26 23:59] Guard #2851 begins shift
[1518-11-06 00:40] wakes up
[1518-08-06 00:04] Guard #2851 begins shift
[1518-09-27 00:54] wakes up
[1518-07-09 00:00] Guard #2153 begins shift
[1518-04-11 00:37] falls asleep
@naruse
naruse / Part1.cpp
Created December 17, 2018 19:24
Advent Of Code Day 4 Part 1 2018 C++.
/*
--- Day 4: Repose Record ---
You've sneaked into another supply closet - this time, it's across
from the prototype suit manufacturing lab. You need to sneak inside
and fix the issues with the suit, but there's a guard stationed
outside the lab, so this is as close as you can safely get.
As you search the closet for anything that might help, you discover
that you're not the first person to want to sneak in. Covering the
walls, someone has spent an hour starting every midnight for the past
/*
Created by: Juan Sebastian Munoz Arango
naruse@gmail.com
2014
www.pencilsquaregames.com
Feel free to use it for your personal / commercial projects.
a mention of the source would be nice but if you dont feel like
its alright.
/*
Problem:
Given 2 strings, write a method to know if one is a permutation of the
other.
Approach:
if we assume the string is in ASCII, we can use an integer array of 256
chars and mark the used chars and add them.
Assuming the interviewer mentions the string is in UNICODE, then the max #
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
public class LODFixer {
[MenuItem("Window/FixLODRendeer")]
static void LODRendeer()
[MenuItem("FixLODRendeer")]
static void LODRendeer()
{
LODGroup[] lodgroups = (LODGroup[])GameObject.FindObjectsOfType(typeof(LODGroup));
//For every LOD group: get the current groups and get the renderer names..
foreach (LODGroup lodgroup in lodgroups)
{
SerializedObject obj = new SerializedObject(lodgroup);
/*
Created by
Juan Sebastian Munoz Arango
naruse@gmail.com
all rights reserved
*/
namespace ProDrawCall {
using System;
using System.Collections.Generic;
/*
Created by
Juan Sebastian Munoz Arango
naruse@gmail.com
all rights reserved
*/
namespace ProDrawCall {
using System;
using System.Collections.Generic;