Skip to content

Instantly share code, notes, and snippets.

View salemzii's full-sized avatar
💭
ready

salem ododa salemzii

💭
ready
View GitHub Profile
@salemzii
salemzii / ssl_smtp_example.go
Last active June 1, 2023 10:00 — forked from chrisgillis/ssl_smtp_example.go
Golang SSL SMTP Example
package main
import (
"crypto/tls"
"fmt"
"log"
"net/mail"
"net/smtp"
"os"
"sync"
@Geoyi
Geoyi / install virtualenv ubuntu 16.04.md
Created September 16, 2017 12:19 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 
@htdat
htdat / del_fb_group_pending_posts.js
Created March 4, 2017 15:39
Delete FB group pending posts for admins
/**
* Please use this file at your own risk. I don't provide the support for it.
* Any suggestion or problem are welcomed to report here :)
*/
/**
* Usage:
* 1. Log-in as an group admin in the desktop
* 2. Go to your group pending list like: https://www.facebook.com/groups/[group-id]/pending/
* 3. Insert the following code to your browser console. See the guide: https://developer.chrome.com/devtools/docs/console
@chrisgillis
chrisgillis / ssl_smtp_example.go
Created April 16, 2014 14:48
Golang SSL SMTP Example
package main
import (
"fmt"
"log"
"net"
"net/mail"
"net/smtp"
"crypto/tls"
)