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 / !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.

# 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 / 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"
@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 / 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 / basic_oak_static_server.ts
Last active October 12, 2020 05:34
Basic Deno static server example using Oak
// deno run --allow-net --allow-read main.ts
// deno std is not totally stable, look at source to get an idea of how it does it
import { ensureFile } from "https://deno.land/[email protected]/fs/ensure_file.ts";
import { Application, Context, Router, send } from "https://deno.land/x/oak/mod.ts";
// quality of life variables
const cwd = Deno.cwd().replaceAll("\\", "/");
const public_folder = `${cwd}/public`;
var muted = false
func toggle_mute_all():
self.muted = !self.muted
AudioServer.set_bus_mute(AudioServer.get_bus_index("Master"), self.muted)
@julian-a-avar-c
julian-a-avar-c / show-all-fonts.sh
Created March 8, 2021 01:27
print all usable fonts
# will print all the font families that can be used
# currently using it for XeLaTeX
## \usepackage{fontspec}
## \setmainfont{<name of font>}
fc-list : outline -format "%{family}\n" | sort | uniq
<h2>Members</h2>
<p>
<strong>Programming&ensp;&Colon;&ensp;</strong>
Abdullah Salem <a href="https://fenguinn.itch.io/">Itch</a> &bullet;
Lilou <a href="https://liloupalomino.itch.io/">Itch</a> &bullet;
Julian <a href="https://jaacko-torus.itch.io">Itch</a> &bullet;
Justin <a href="https://seijin2008.itch.io/">Itch</a> &bullet;
Sean Ayers
</p>
<p>
// godot shader
shader_type canvas_item;
uniform float bell_width = 4.0;
float bell(float x) {
return exp(-pow(bell_width * (x - 0.5), 2));
}
// usage