Skip to content

Instantly share code, notes, and snippets.

View utkar-sh-ukla's full-sized avatar
Learning and growing!

μtkarsh utkar-sh-ukla

Learning and growing!
View GitHub Profile
@utkar-sh-ukla
utkar-sh-ukla / work-product.md
Last active March 10, 2023 20:02
GSOC'22 Work-Product
@utkar-sh-ukla
utkar-sh-ukla / myscript.sh
Created August 24, 2022 09:17 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"
@utkar-sh-ukla
utkar-sh-ukla / README.md
Created July 16, 2022 09:28 — forked from hofmannsven/README.md
SCSS Cheatsheet
@utkar-sh-ukla
utkar-sh-ukla / _font-weight.scss
Created July 16, 2022 09:28 — forked from kendrick/_font-weight.scss
Sass: Font Weight Mixin
@mixin font-weight($style: normal) {
$style: to_lower_case($style);
$weights: (
thin: 100,
ultralight: 100,
ultra-light: 100,
extralight: 200,
extra-light: 200,
light: 300,
normal: 400,
@function modular-scale($increment, $value: $modular-scale-base, $ratio: $modular-scale-ratio) {
@return $value * (math-pow($ratio, $increment));
}
@function math-pow($number, $exp) {
@if (round($exp) !=$exp) {
@return math-exp($exp * math-ln($number));
}
// Traditional method for integers
@utkar-sh-ukla
utkar-sh-ukla / c++Template.cpp
Created May 19, 2021 16:31 — forked from kodekracker/c++Template.cpp
Basic C++ Template for Competitive Programming
/*
* Note: This template uses some c++11 functions , so you have to compile it with c++11 flag.
* Example:- $ g++ -std=c++11 c++Template.cpp
*
* Author : Akshay Pratap Singh
* Handle: code_crack_01
*
*/
/******** All Required Header Files ********/