Skip to content

Instantly share code, notes, and snippets.

View marciuz's full-sized avatar

Marcello Verona marciuz

View GitHub Profile
Agostini
Aiello
Albanese
Amato
Antonelli
Arena
Baldi
Barbieri
Barone
Basile
@marciuz
marciuz / first_name_ITA_F.txt
Created June 27, 2013 06:41
List of common italians first names (females)
Alessandra
Alessia
Alice
Angela
Anna
Arianna
Aurora
Beatrice
Camilla
Caterina
@marciuz
marciuz / first_name_ITA_M.txt
Created June 27, 2013 06:42
List of common italians first names (males)
Alberto
Alessandro
Alessio
Alex
Andrea
Angelo
Antonio
Armando
Augusto
Christian
@marciuz
marciuz / nom_famille_FR.txt
Created June 27, 2013 06:48
Nom de famille (last names) France
Adam
Albert
Andre
Arnaud
Aubert
Aubry
Bailly
Barbier
Baron
Barre
@marciuz
marciuz / prenom_F
Created June 27, 2013 06:55
List of common french first names (female)
Agathe
Alexandra
Alexia
Alice
Alicia
Amandine
Ambre
Amélie
Anaël
Anaëlle
@marciuz
marciuz / prenom_M
Created June 27, 2013 06:55
List of common italians first names (males)
Aaron
Adam
Adrian
Adrien
Alexandre
Alexis
Amine
Anthony
Antoine
Antonin
@marciuz
marciuz / Italy.class.php
Last active December 19, 2015 03:29
Package fro DataGenerator Plugin
<?php
/**
* @package Countries
*/
class Country_Italy extends CountryPlugin {
protected $countryName = "Italy";
protected $countrySlug = "italy";
protected $regionNames = "Regioni";
SOURCE: http://www.intgovforum.org/cms/2014/Contributions/REMARKS_INDONESIA.PDF
(first 8096 chars)
Array
(
[language] => English
[id] => 531ef4b35c8fc
[status] => PROCESSED
[themes] => Array
(
@marciuz
marciuz / gist:8a72fd2b20ce6c5bad0b
Last active August 29, 2015 14:17
Create a new Drupal website
drush dl drupal --drupal-project-rename=example
cd example
drush site-install standard --db-url='mysql://[username]:[password]@localhost/example' --site-name=example --account-name=admin --account-pass=[passwd]
drush dl ctools views date token ds
alias wwwperm="find . \( -type d -exec chmod -v 755 '{}' \; \) -o \( -type f -exec chmod -v 644 '{}' \; \)"