Skip to content

Instantly share code, notes, and snippets.

@bayu-code-lab
bayu-code-lab / all_email_provider_domains.txt
Created July 18, 2022 05:12 — 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
@bayu-code-lab
bayu-code-lab / python guide.md
Created October 4, 2021 18:44 — forked from asaah18/python guide.md
a python guide/cheat-sheet for mind refreshing and looking for specific info

Python Guide

This python guide is intended to those who already know python and want a mind refresh or looking for a specific syntax
-as this guide doesn't elaborate in explaining thing that a programmer would already know -like: variable, function, csv, json-.

additionally, this guide is not intended to be a replacement for reading official Python documentation.

@bayu-code-lab
bayu-code-lab / browser_detect.js
Created July 26, 2021 14:08 — forked from Fl0pZz/browser_detect.js
JavaScript: Detect Browser
// browser detect
var BrowserDetect = {
init: function(userAgent, appVersion) {
this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
this.version = this.searchVersion(userAgent) || this.searchVersion(appVersion) || "an unknown version";
this.OS = this.searchString(this.dataOS) || "an unknown OS";
},
searchString: function(data) {
for (var i = 0; i < data.length; i++) {
var dataString = data[i].string;