Skip to content

Instantly share code, notes, and snippets.

View julian-a-avar-c's full-sized avatar

Julian A Avar C julian-a-avar-c

View GitHub Profile
@julian-a-avar-c
julian-a-avar-c / cc2000.rb
Created October 9, 2020 17:49
Console Calculator 2000
# could be shorter or better implemented, but this'll do for now :)
class String
def is_numeric?
Rational(self) != nil rescue false
end
end
def parse(input)
if input.kind_of? String
@julian-a-avar-c
julian-a-avar-c / FP for C# intro.cs
Last active October 5, 2021 18:55
I've been learning some FP, so I wanted to teach my friends some of the cool stuff I've been learning :)
using System;
using System.Linq;
using System.Text.Json;
using System.Text.RegularExpressions;
using System.Collections.Generic;
namespace FunctionalProgrammingForCSharp {
class Program {
static void title(string title_name, string separator = "\n----\n") {
Console.Write(separator + $" {title_name}" + separator);
@julian-a-avar-c
julian-a-avar-c / file_zip.rb
Last active May 24, 2021 03:55
zip lines of two files
# under CC0 License
# zips the lines of two files
# don't know how to extend ruby
# instead made a function
# this works cuz `File.open(file, "r").each` return an Enumerable of lines
$i = { a: "#{__dir__}/a.txt", b: "#{__dir__}/b.txt" }
$o = "#{__dir__}/o.txt"
# Inspired by Gonkee's [_Godot 3: How to make a Joystick_](https://www.youtube.com/watch?v=uGyEP2LUFPg)
# Version V0.1.1
# Assumptions
# Joystick : Node2D -> Joystick.gd
# |- Boundary : Sprite
# |- Handle : TouchScreenButton
# Motivation
@julian-a-avar-c
julian-a-avar-c / !UnityFPSController.md
Last active June 13, 2021 16:24
Unity FPS Controller

Unity FPS Controller

Please use Tree to get an idea of the required tree structure. Every node in Tree can be found as an image.

In addition, custom components(scripts) are also included.