Skip to content

Instantly share code, notes, and snippets.

View Obsaa's full-sized avatar
💭
I may be slow to respond.

Obsaa Abdalhalim Obsaa

💭
I may be slow to respond.
View GitHub Profile
@Obsaa
Obsaa / iterm2.md
Created January 11, 2018 02:52 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
Fullscreen + Enter
Previous Tab + Left Arrow
Next Tab + Right Arrow
Go to Tab + Number
Go to Window + Option + Number
Go to Split Pane by Direction + Option + Arrow
@Obsaa
Obsaa / iterm2.md
Created January 11, 2018 02:52 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
Fullscreen + Enter
Previous Tab + Left Arrow
Next Tab + Right Arrow
Go to Tab + Number
Go to Window + Option + Number
Go to Split Pane by Direction + Option + Arrow
@Obsaa
Obsaa / Stack_ArrayImplementation.C
Created June 10, 2017 14:40 — forked from mycodeschool/Stack_ArrayImplementation.C
This is a basic array based implementation of stack data structure in C.
// Stack - Array based implementation.
// Creating a stack of integers.
#include<stdio.h>
#define MAX_SIZE 101
int A[MAX_SIZE]; // integer array to store the stack
int top = -1; // variable to mark top of stack in array
// Push operation to insert an element on top of stack.