Skip to content

Instantly share code, notes, and snippets.

View shreyas-v-agnihotri's full-sized avatar

Shreyas Agnihotri shreyas-v-agnihotri

View GitHub Profile
@shreyas-v-agnihotri
shreyas-v-agnihotri / notion-fruition-cloudflare-script-v2.js
Created September 2, 2021 17:15
A Cloudflare script, built with Fruition, to allow my custom domain to point to my personal Notion site and inject custom CSS and JS.
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'shreyasagnihotri.com';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/
@shreyas-v-agnihotri
shreyas-v-agnihotri / notion-fruition-cloudflare-script-v1.js
Last active February 12, 2023 21:39
NOTE: A newer script is available in my gists • A Cloudflare script, built with Fruition, to allow my custom domain to point to my personal Notion site and inject custom CSS and JS.
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'shreyasagnihotri.com';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/
@shreyas-v-agnihotri
shreyas-v-agnihotri / ChatViewController.swift
Created February 6, 2019 05:53
Coding sample #2 for DALI Lab application
//
// ChatViewController.swift
// Flash Chat
//
// Created by Shreyas Agnihotri on 1/10/19.
// Copyright (c) 2019 Shreyas Agnihotri. All rights reserved.
//
import UIKit
import Firebase
@shreyas-v-agnihotri
shreyas-v-agnihotri / snake_game.py
Last active February 5, 2019 06:53
Coding sample #1 for DALI Lab application
# Simple retro snake game
# Instructions: Space to start, WASD to move, P to pause, Q to quit
# Author: Shreyas Agnihotri
# Credit to Dartmouth COSC department for cs1lib graphics library
# March 2018
from cs1lib import *
from point import *
import math
import random