SYMFONY 4 :
Creer un nouveau projet dans le dossier sf4
composer create-project symfony/skeleton sf4
Lancer un serveur :
php -S 127.0.0.1:8000 -t public
<?php | |
$listTrashmail = [ | |
"027168.com","0815.ru","0815.ry","0815.su","0845.ru","0box.eu","0clickemail.com","0v.ro","0w.ro","0wnd.net","0wnd.org","0x207.info","1-8.biz","1000rebates.stream","100likers.com","10mail.com","10mail.org","10minut.com.pl","10minut.xyz","10minutemail.be","10minutemail.cf","10minutemail.co.uk","10minutemail.co.za","10minutemail.com","10minutemail.de","10minutemail.ga","10minutemail.gq","10minutemail.ml","10minutemail.net","10minutemail.nl","10minutemail.pro","10minutemail.us","10minutemailbox.com","10minutemails.in","10minutenemail.de","10minutesmail.com","10minutesmail.fr","10minutmail.pl","10x9.com","123-m.com","12hosting.net","12houremail.com","12minutemail.com","12minutemail.net","12storage.com","140unichars.com","147.cl","14n.co.uk","1ce.us","1chuan.com","1clck2.com","1fsdfdsfsdf.tk","1mail.ml","1pad.de","1st-forms.com","1to1mail.org","1zhuan.com","20email.eu","20email.it","20mail.in","20mail.it","20minutemail.com","20mm.eu","2120001.net","21cn.com","24hourmail.com","24hourmail.net |
//forEach | |
[1,2,3].forEach(function(item, index){ | |
console.log(item, index) | |
}) | |
//map | |
const three = [1,2,3] | |
const doubled = three.map(function(item){ | |
return item * 2 | |
}) |
composer create-project symfony/skeleton sf4
php -S 127.0.0.1:8000 -t public
<?php | |
// Set these dependant on your BB credentials | |
$username = 'username'; | |
$password = 'password'; | |
$branch = 'master'; | |
// FTP Credentials |
class Eewee_Aaa extends Module implements WidgetInterface | |
{ | |
... | |
/** | |
* Content | |
* @return string |
0-mail.com | |
0815.ru | |
0clickemail.com | |
0wnd.net | |
0wnd.org | |
10minutemail.com | |
20minutemail.com | |
2prong.com | |
30minutemail.com | |
3d-painting.com |
var casper = require('casper').create(); | |
var utils = require('utils'); | |
var urls = [ | |
'http://www.eewee.fr/', | |
'http://www.eewee.fr/page/2/', | |
]; | |
var i = 0; | |
casper.start(); | |
casper.userAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X)'); |
// Auto-visit profiles of group members on Linkedin with iMacros | |
// Configure : | |
// - email linkedin | |
// - password linkedin | |
// - proxy (option) | |
// To learn more about iMacros: http://imacros.net/ | |
// 1. Variables Initialization | |
var macro, proxy, linkedinEmail, linkedinPassword, linkedinGroup, i, j; | |
macro = ''; |
iMacros supports 3 types of variables
// iMacro CheatSheet - Command Reference | |
// http://wiki.imacros.net/Command_Reference | |
// iMacros supports 3 types of variables: | |
// * The macro variables !VAR0 thru !VAR9. They can be used with the SET and ADD command inside a macro. | |
// * Built-in variables. They contain certain values set by iMacros. | |
// * User-defined variables. They are defined in-macro using the SET command. | |