Skip to content

Instantly share code, notes, and snippets.

View ritog's full-sized avatar
🎯
Focusing

Ritobrata Ghosh ritog

🎯
Focusing
View GitHub Profile
@ritog
ritog / alacritty.toml
Created October 6, 2023 10:58
Example configuration file for Alacritty and simple guide
# $HOME/.config/alacritty/alacritty.toml
# by Rito Ghosh 2023-10-06
# Alacritty now uses TOML formatting for its config files.
# This is a simple example.
# There are the specification here: https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd
# It is not obvious how it translates to TOML. But it is extremely straightforward.
# example: WINDOW, COLORS, etc. are tables, and should be represented as [window], [colors], respectively.

Stuff About Complex Number I Wish Somebody Told Me

by Rito Ghosh

6 July 2022

Introduction

There are many places that teach you complex number like High School, college classes, YouTube channels, and so on.

@ritog
ritog / ex1-3.rkt
Last active June 27, 2024 17:05
Exercise 1.3 of SICP
#lang racket
(define (larger a b)
(if (> a b)
a
b))
(define (square x)
(* x x))
(define (sum-of-squares x y)