Skip to content

Instantly share code, notes, and snippets.

View razzbee's full-sized avatar
💭
Working on wire purse

Razak Zakari razzbee

💭
Working on wire purse
View GitHub Profile
@razzbee
razzbee / Libsodium Base64 encode and Decode in C++
Last active September 3, 2020 19:13
Encoding and Decoding Base64 string using Libcodium C library in C++
``
//
// Created by Razak Zakari on 12/04/2018.
//
#define BASE64_VARIATION sodium_base64_VARIANT_ORIGINAL
#include <algorithm>
#include <math.h>
#include <vector>
@razzbee
razzbee / ffmpeg-compilation-centos.html
Created April 16, 2016 04:50
Compiling ffmpeg on centos the easy way
This gist gives an easy way to install ffmpeg the easy way, just copy and paste the commands below one by one ,
we used this on http://playslack.com server for conversion .. hope it helps :D
#Create a dir to hold the sources ########
mkdir /home/ffmpeg_sources
#########INSTALL REQUIRED TOOLS ###########
yum install autoconf automake cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel