Skip to content

Instantly share code, notes, and snippets.

View TotallyNotChase's full-sized avatar
Time ain't on my side

Chase TotallyNotChase

Time ain't on my side
  • Hell
View GitHub Profile
@TotallyNotChase
TotallyNotChase / sieve.c
Last active March 12, 2020 11:26
Benchmark to sieve + string checks
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<stdbool.h>
#include<stdint.h>
#include<inttypes.h>
#include<math.h>
#include<time.h>
typedef struct uint64_vector
@TotallyNotChase
TotallyNotChase / README.md
Last active July 13, 2021 17:33
flask-jwt-backend example

To set up this project locally, follow this project structure:-

flask-jwt-backend-example

|--app/
   |--templates/  
        |--index.html
        |--account.html
        |--services.html
 |--__init__.py
#include<stdio.h>
#include<stdlib.h>
#define COLORS_SIZE 256
struct PixelTuple
{
int red;
int green;
int blue;