This file contains 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
<template> | |
<Page class="page"> | |
<StackLayout> | |
<Label :text="uuid"></Label> | |
</StackLayout> | |
</Page> | |
</template> | |
<script> |
This file contains 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
collection: people | |
{ | |
name: 'some name', | |
age: 23, | |
... | |
groups: [ | |
{ | |
id: 1, | |
... | |
}, |
This file contains 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
function run_cmd(cmd, args, callBack ) { | |
var spawn = require('child_process').spawn; | |
var child = spawn(cmd, args); | |
var resp = ""; | |
child.stdout.on('data', function (buffer) { resp += buffer.toString() }); | |
child.stdout.on('end', function() { callBack (resp) }); | |
} // () |
This file contains 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
-- DISCLAIMER -- | |
il presente elenco consiste in una raccolta di cognomi presenti sul territorio italiano (non necessariamente "italiani") | |
viene generato prendendo processando automaticamente uno o più archivi anagrafici e non è controllato in alcun modo | |
è pertanto altamente possibile che ci siano errori o refusi | |
non è ne pretende di essere un elenco omnicomprensivo di tutti i cognomi esistenti | |
---------------- | |
abbondanza | |
abu | |
accadia |
This file contains 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
-- DISCLAIMER -- | |
il presente elenco consiste in una raccolta di nomi presenti sul territorio italiano (non necessariamente "italiani") | |
viene generato prendendo processando automaticamente uno o più archivi anagrafici e non è controllato in alcun modo | |
è pertanto altamente possibile che ci siano errori o refusi | |
non è nè pretende di essere un elenco omnicomprensivo di tutti i nomi esistenti | |
---------------- | |
abaco | |
abbondanza | |
abbondanzia |
This file contains 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/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
This file contains 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
foreach ($aMail as $rMail) { | |
//Create the Transport | |
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, 'tls') | |
->setUsername('[email protected]') | |
->setPassword('SoftwareService'); | |
//Create the Mailer using your created Transport | |
$mailer = Swift_Mailer::newInstance($transport); | |
//Create a message |