Skip to content

Instantly share code, notes, and snippets.

View dot1mav's full-sized avatar
🌎
D00r the Plan3t

Ma V dot1mav

🌎
D00r the Plan3t
View GitHub Profile
@afzouni
afzouni / shit-for-brains.md
Last active October 27, 2022 13:26
Shit for Brains - Block List Farsi Twitter

Total Accounts: 50,550 (2022-09-24)

Block List

List of Accouns is Here contains JSON, CSV and Raw Text.

Accouts gathering using Like Blockers and below links are theirs API.

Changelog:

  • 2022-09-19 (1 to 52)
  • 2022-09-24 (53 to 242) - by @torabkheslat and @MohammadJavadJamali
@whoisjeeva
whoisjeeva / socks5.py
Created January 15, 2021 11:47
Socks5 proxy server in Python
import socket
import threading
import select
SOCKS_VERSION = 5
class Proxy:
@brospars
brospars / readme.md
Created September 3, 2019 12:33
Guide to setup Ionic with Vue project for Android

Guide to setup Ionic with Vue project

  1. Install Vue CLI npm install -g @vue/cli
  2. Create your App vue create my-vue-app
  3. Choose the recommended default setup (with router, store, etc)
  4. Add Ionic/Vue as a dependency of your project npm install @ionic/vue
  5. Add Ionic as a Vue plugin in your main.js
// [...]
@turbo
turbo / std.md
Last active June 24, 2024 03:00
Git Commit Message Standard

Merged from https://github.com/joelparkerhenderson/git_commit_message and https://chris.beams.io/posts/git-commit/

General Rules

  • Commit messages must have a subject line and may have body copy. These must be separated by a blank line.
  • The subject line must not exceed 50 characters
  • The subject line should be capitalized and must not end in a period
  • The subject line must be written in imperative mood (Fix, not Fixed / Fixes etc.)
  • The body copy must be wrapped at 72 columns
  • The body copy must only contain explanations as to what and why, never how. The latter belongs in documentation and implementation.
@MOOOWOOO
MOOOWOOO / autoblueprint.py
Created April 10, 2017 02:53
flask auto blueprint register
# coding: utf-8
__author__ = 'Jux.Liu'
# (folder, blueprint, prefix)
INSTALLED_MODULES = [
('routes', 'main', '/'),
('api', 'api', '/api'),
('routes', 'store', '/')
]