Skip to content

Instantly share code, notes, and snippets.

View saroj22322's full-sized avatar
🏠
Working from home

Saroj Tripathi saroj22322

🏠
Working from home
View GitHub Profile
@saroj22322
saroj22322 / cleanup_airflow_db.py
Last active February 12, 2024 15:32
Airflow DB Cleanup DAG using 'airflow db clean' utils
# MIT License
# Copyright (c) 2024 Saroj Tripathi
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
@saroj22322
saroj22322 / matchCalculator.c
Last active February 12, 2024 15:16
Match calculator in C programming.
/**
* @name Match Calculator
* @author Saroj Tripathi
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void lowerCaseName(char* name) {
@saroj22322
saroj22322 / hangman.c
Last active April 25, 2024 16:57
Hangman Game in C Programming
/**
* @autor Saroj Tripathi
* @name Hangman
* https://www.onlinegdb.com/online_c_compiler . Just copy this source code and test it on this online compiler.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <time.h>