Skip to content

Instantly share code, notes, and snippets.

View rgarlik's full-sized avatar
🐦

Richard rgarlik

🐦
  • ⊂ʕ◔ϖ◔ʔつ
  • Slovakia
  • 15:25 (UTC +02:00)
View GitHub Profile
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Rendering;
using UnityEngine.Rendering.Universal;
using UnityEngine.UI;
public class PostProcessChange : MonoBehaviour
{
public Slider TemperatureSlider;
@rgarlik
rgarlik / falling_letters.md
Last active January 13, 2023 22:37
The Falling Letter : Project assignment

Falling Letter : Project assignment

You will be making a Falling Letter game in pure JavaScript (without any frontend frameworks) according to this assignment. The project will be in the form of a serious

0.1 Create a workspace

Create a new empty folder for your project. Then, open VS Code and go to File => Open Folder and open your folder within VS Code.

By hitting Ctrl + ~ (or going into Terminal => New Terminal) you'll be able to open up a Linux shell within your VS Code environment. This shell's working directory is automatically set to your project's folder.

@rgarlik
rgarlik / login.sh
Last active March 21, 2023 19:59
A script to obtain a Firebase JWT key for auth testing purposes.
#!/bin/bash
# Example usage:
# ./login.sh --email <email> --password <password> --apikey <api_key>
usage() {
echo "Usage: $0 --email <email> --password <password> --apikey <api_key>"
}
while [[ $# -gt 0 ]]