Skip to content

Instantly share code, notes, and snippets.

View eewee's full-sized avatar

Michael eewee

View GitHub Profile
// 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.
@eewee
eewee / imacros-cheatsheet.md
Created October 13, 2016 11:34
iMacros Command, Variable, and function reference
@eewee
eewee / imacro_linkedin_visite_profil_group_members.js
Created October 13, 2016 14:47
iMacro : linkedin visite profil group members
// 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 = '';
@eewee
eewee / eewee_screenshot.js
Created October 14, 2016 19:28
casperjs : screenshot
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)');
@eewee
eewee / temporary-email-address-domains
Created October 19, 2016 08:13 — forked from adamloving/temporary-email-address-domains
A list of domains for disposable and temporary email addresses. Useful for filtering your email list to increase open rates (sending email to these domains likely will not be opened).
0-mail.com
0815.ru
0clickemail.com
0wnd.net
0wnd.org
10minutemail.com
20minutemail.com
2prong.com
30minutemail.com
3d-painting.com
VERSION BUILD=10.4.28.1074
'--------------------------------------------------------------
' Ajouter des prospects sur Sellsy
' Comment cela fonctionne ?
' - Lire CSV
' - Ajouter prospect
'--------------------------------------------------------------
' Uses a Windows script to submit several datasets to a website, e. g. for filling an online database
// A METTRE DANS LE CONSTRUCTEUR D'UN MODULE
//------------------------------------------------------------
public function __construct()
// URL du front controller
//echo 'yoooooooooo : '.$this->context->link->getModuleLink('eewee_sellsy', 'fcont').'<hr><hr><hr><hr><hr><hr><hr><hr><hr><hr><hr><hr><hr>';
class Eewee_Aaa extends Module implements WidgetInterface
{
...
/**
* Content
* @return string
<?php
// Set these dependant on your BB credentials
$username = 'username';
$password = 'password';
$branch = 'master';
// FTP Credentials
@eewee
eewee / symfony4.md
Last active January 21, 2018 17:40
Symfony 4 : command

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

Ouvrir le serveur (browser)

http://localhost:8000/