Skip to content

Instantly share code, notes, and snippets.

View hmofrad's full-sized avatar

Mohammad H. Mofrad hmofrad

View GitHub Profile
   cd dir
   ctags -R
   cscope -R -p10
   grep -rnw 'dir' -e 'pattern'
@hmofrad
hmofrad / git_cheatsheet.md
Last active July 31, 2017 00:55
Git Cheat Sheet

Git Cheat Sheet

Git basic

Clone a git repository

git clone repo_address 

Commit to a git repository

@hmofrad
hmofrad / img.c
Last active January 2, 2017 16:52
/* See if our average vector matches that of Python's */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <png.h>
// For getting the PNG data and header/information back
typedef struct
{