Skip to content

Instantly share code, notes, and snippets.

View leonmwandiringa's full-sized avatar
💭
Never lose you inner child

Leon Mwandiringa leonmwandiringa

💭
Never lose you inner child
View GitHub Profile
@leonmwandiringa
leonmwandiringa / main.go
Created December 17, 2019 18:50 — forked from zjhiphop/main.go
mongo-go-driver Demo
package main
import (
"context"
"github.com/mongodb/mongo-go-driver/bson"
"github.com/mongodb/mongo-go-driver/bson/objectid"
"github.com/mongodb/mongo-go-driver/bson/primitive"
"github.com/mongodb/mongo-go-driver/mongo"
"log"
"time"
@leonmwandiringa
leonmwandiringa / command_exists.go
Created November 30, 2019 17:12 — forked from miguelmota/command_exists.go
Golang check if command exists
package main
import (
"log"
"os/exec"
)
func main() {
path, err := exec.LookPath("ls")
if err != nil {
@leonmwandiringa
leonmwandiringa / Mongo.go
Created November 3, 2019 18:50 — forked from p4tin/Mongo.go
Golang Mongo CRUD Example
package mongo
import (
"time"
"log"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
// Profile - is the memory representation of one user profile
@leonmwandiringa
leonmwandiringa / nginx.conf
Created October 22, 2019 09:15 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@leonmwandiringa
leonmwandiringa / install.sh
Created August 22, 2019 14:13 — forked from AvnerCohen/install.sh
Install Erlang + Rabbit MQ on AWS EC2 server
# erlang deps
sudo yum groupinstall "Development Tools"
sudo yum install ncurses-devel openssl-devel
# erlang
wget http://erlang.org/download/otp_src_20.1.tar.gz
tar -zxvf otp_src_20.1.tar.gz
rm -f otp_src_20.1.tar.gz
cd otp_src_20.1/
./configure
@leonmwandiringa
leonmwandiringa / gopath
Created June 25, 2019 18:32 — forked from austingebauer/gopath
Set GOPATH, GOBIN, and PATH in current directory
#!/usr/bin/env bash
#
# Sets the GOPATH and GOBIN to the current directory.
# Adds GOBIN to the PATH.
#
# Usage:
# 1. Put this script somewhere on your PATH.
# 2. Enter directory of a golang project (contains src, pkg, bin)
# 3. Execute: . gopath
@leonmwandiringa
leonmwandiringa / encryption.js
Created September 23, 2018 17:21 — forked from vlucas/encryption.ts
Stronger Encryption and Decryption in Node.js
'use strict';
const crypto = require('crypto');
const ENCRYPTION_KEY = process.env.ENCRYPTION_KEY; // Must be 256 bytes (32 characters)
const IV_LENGTH = 16; // For AES, this is always 16
function encrypt(text) {
let iv = crypto.randomBytes(IV_LENGTH);
let cipher = crypto.createCipheriv('aes-256-cbc', new Buffer(ENCRYPTION_KEY), iv);
@leonmwandiringa
leonmwandiringa / 0_reuse_code.js
Created April 28, 2017 20:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console