This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cc | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
me against the world baby Love Ya |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compile.bsh ( Downloaded with DM http://fddm.mobi/ ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upgun |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { module: { loaders: [ { test: /\.css/, loader: "style-loader!css-loader" }, { test: /\.gif/, loader: "url-loader?limit=10000&minetype=image/gif" }, { test: /\.jpg/, loader: "url-loader?limit=10000&minetype=image/jpg" }, { test: /\.png/, loader: "url-loader?limit=10000&minetype=image/png" }, { test: /\.js$/, loader: "jsx-loader" } ], noParse: /parse-latest.js/ } }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Edit: /etc/pmta/config | |
<domain *> | |
... | |
... | |
smtp-greeting-timeout 1m | |
bounce-upon-no-mx yes | |
</domain> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bounce-category-patterns> | |
/failed\,5\.0\.0 \(undefined status\)\,x\-pmta\;bounce\-queue/ bad-domain | |
</bounce-category-patterns> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# This is just a demo and simple script, we will add a lot of things to it | |
# libraries we need | |
import sys, requests, itertools | |
from lxml.html import fromstring # foromstring is found in lxml.html | |
def getAllPossibilties(charset, minlength, maxlength): |