Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Alirezaies's full-sized avatar
Busy

Sadegh Alirezaie Alirezaies

Busy
View GitHub Profile
@Alirezaies
Alirezaies / all_email_provider_domains.txt
Created December 13, 2023 00:50 — forked from ammarshah/all_email_provider_domains.txt
A list of all email provider domains (free, paid, blacklist etc). Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
0-mail.com
007addict.com
020.co.uk
027168.com
0815.ru
0815.su
0clickemail.com
0sg.net
0wnd.net
0wnd.org
@Alirezaies
Alirezaies / .vimrc
Created December 12, 2023 21:17 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'
@Alirezaies
Alirezaies / Dockerfile
Created November 2, 2019 12:01
telelgram-cli Docker File
FROM ubuntu:xenial
LABEL Maintainer="Mohammad Sadegh Alirezaie <alirezaie@sadegh.org>" \
Name="tg-cli" \
Version=1.0
RUN apt-get update \
&& apt-get install -y \
libreadline-dev \
libconfig-dev \
libssl-dev \

Keybase proof

I hereby claim:

  • I am alirezaies on github.
  • I am alirezaies (https://keybase.io/alirezaies) on keybase.
  • I have a public key whose fingerprint is 27D9 E70C 4418 DA2E DF37 D0C5 35B7 C49A 4BC1 F6B3

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am alirezaies on github.
  • I am alirezaies (https://keybase.io/alirezaies) on keybase.
  • I have a public key ASCl9aQ3EEwoTxCch2x4NCWaDNjSNxfA9Ea94Mi3kpyPoAo

To claim this, I am signing this object:

@Alirezaies
Alirezaies / gist:03f7df9480d2f9dcb22a04297bdae41b
Created July 27, 2017 20:37 — forked from Atem18/gist:4696071
Tutorial to seting up a django website in production.

******************************************************************** Set up Django, Nginx and Gunicorn in a Virtualenv controled by Supervisor********************************************************************

Steps with explanations to set up a server using:

  • Virtualenv
  • Virtualenvwrapper
  • Django
  • Gunicorn
@Alirezaies
Alirezaies / gh-activity.py
Last active June 3, 2017 16:28
Get The Latest Activity Of A User In Github
#!/usr/bin/python3
# -*- Coding:utf-8 -*-
from xml.dom import minidom
import urllib.request
def activity(username):
"""This Function Returns Latest Activity Of A User In Github"""
xml_str = urllib.request.urlopen('https://github.com/%s.atom' %(username)).read()