Skip to content

Instantly share code, notes, and snippets.

View kvedala's full-sized avatar

Krishna Vedala kvedala

View GitHub Profile
@kvedala
kvedala / main.go
Created May 27, 2022 21:03
Generating JWT Tokens with random secret key in golang
package main
import (
"crypto/hmac"
"crypto/sha512"
"fmt"
"log"
"math/rand"
"time"
@kvedala
kvedala / spirograph.ipynb
Last active July 2, 2020 15:20
Spirograph
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvedala
kvedala / -sorting-algorithms-quick-sort-and-shell-sort.ipynb
Created April 29, 2020 02:42
Sorting algorithms - Quick sort and Shell sort
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvedala
kvedala / c-algorithms.ipynb
Last active July 21, 2020 22:54
Compile and run C Algorithms
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvedala
kvedala / factorial.c
Last active March 30, 2020 18:11
Factorial using "divide, swing and conquer" algorithm - https://oeis.org/A000142/a000142.pdf
/**
* Factorial algorithm -
* Divide, Swing & Conquer from https://oeis.org/A000142/a000142.pdf
**/
/**
* check if input number is prime.
* Return 1 if prime, otherwise 0
@kvedala
kvedala / Project Euler - Problem 14 - Longest Collatz Sequence.ipynb
Last active March 11, 2020 00:28
Project Euler - Problem 14 - Longest Collatz Sequence.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvedala
kvedala / Wiki plots in simple SVG.ipynb
Last active July 29, 2023 12:38
Generate SVG graphs using linear, quadratic and cubic Bezier curve interpolation.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvedala
kvedala / Jacobian to solve linear system.ipynb
Last active June 25, 2020 19:28
Jacobian to solve linear system.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kvedala
kvedala / Weight tracking.ipynb
Created March 1, 2020 15:08
Weight tracking.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.