Skip to content

Instantly share code, notes, and snippets.

View midnightmadwalk's full-sized avatar
🌴
On vacation

Dhruv Maniyaa midnightmadwalk

🌴
On vacation
View GitHub Profile
@midnightmadwalk
midnightmadwalk / Solved1.c
Created May 16, 2022 09:59
Some C Bootcamp challenge
// Online C compiler to run C program online
// to run - https://www.programiz.com/c-programming/online-compiler/
#include <stdio.h>
int main() {
int x, i, n =1, eq;
printf("Input: ");
scanf("%d", &x);
@midnightmadwalk
midnightmadwalk / repl
Created March 12, 2021 16:15
use repl to upload pypi package.
#!bin/bash
# just very basic
# todo: add regex filters and make it more automatic.
set -e
pip -q install twine
sleep 5