Skip to content

Instantly share code, notes, and snippets.

View FireLord's full-sized avatar
🦾
Building Apps

Aman Kumar FireLord

🦾
Building Apps
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
int partioning(int A[],int LB,int UB)
{
int down,up,temp,pivot,i;
pivot=A[LB];
down=LB;
up=UB+1;
while(down<up)
#include <stdio.h>
#include <stdlib.h>
void bubble_sort(int a[], int n)
{
int temp, pass, i;
for (pass = 1; pass < n; pass++)
{
for (i = 0; i < n - pass; i++)
{
@FireLord
FireLord / .zshrc
Last active November 28, 2024 06:07
MacOS .zshrc
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
# Path to your Oh My Zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time Oh My Zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
import SwiftUI
import AVKit
import UIKit
import CoreMedia
import AVFoundation
// MARK: - Notification & Helper Structs
extension Notification.Name {
static let startVideoExport = Notification.Name("startVideoExportNotification")
}