Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
module ActiveRecord | |
class SchemaDumper | |
def dump(stream) | |
header(stream) | |
extensions(stream) | |
enums(stream) | |
tables(stream) | |
trailer(stream) | |
stream | |
end |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
/** | |
* Documentation: http://docs.azk.io/Azkfile.js | |
*/ | |
function ruby_system(command, extra) { | |
var merge = require('azk')._.merge; | |
var extra = extra || {}; | |
return merge({ | |
// Dependent systems |
/** | |
* Documentation: http://docs.azk.io/Azkfile.js | |
*/ | |
var ruby_system = function(command) { | |
return { | |
// Dependent systems | |
depends: ["postgres", "mongodb", "redis", "mail"], | |
// More images: http://images.azk.io | |
image: "gullitmiranda/ruby", |
Param($S,$I,$Cert,$L,$P,$Cfg) | |
$start = Get-Date | |
$service_name = $S | |
$subscription_id = $I | |
$certificate = $Cert | |
$label = $L | |
$package = $P | |
$config_file = $Cfg |
<?php | |
mail("[email protected]",$_POST["email"]," | |
Nome: {$_POST["nome"]} | |
Email: {$_POST["email"]} | |
Assunto: {$_POST["assunto"]} | |
Mensagem: {$_POST["messagem"]}","FROM:{$_POST["nome"]}<{$_POST["email"]}>"); | |
echo "Cadastrado com sucesso!"; | |
?> |