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
/// | |
xxx | |
http://sec064/ShcToolsApolloMvc3.Release/NotaFiscal/Chave/xxx | |
. | |
. | |
. |
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
--------- | |
MERGE | |
--------- | |
branch origem : xxx | |
branch destino: xxx | |
---------- | |
status | |
---------- | |
check-in : OK|ERRO |
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
nomeParametro1 | |
nomeParametro2 | |
/// | |
xxx : _xxx.Object, |
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
var ordenarComIf = function(a, b, c) { | |
var primeiro = ''; | |
var segundo = ''; | |
var terceiro = ''; | |
if (a > b && a > c) { | |
primeiro = 'a'; | |
if (b > c) { | |
segundo = 'b'; | |
terceiro = 'c'; |
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
<script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js" type="text/javascript"></script> | |
<script id="tarefasTemplate" type="text/x-jquery-tmpl"> | |
<li> | |
${horaDecimal}, ${valorHora} | |
</li> | |
</script> | |
<div id="debug"> |
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
<script src="@Url.Content("~/Scripts/jquery-1.7.2.min.js")" type="text/javascript"> </script> | |
<!-- https://github.com/douglascrockford/JSON-js --> | |
<script src="@Url.Content("~/Scripts/knockout-restfull/json2.js")" type="text/javascript"> </script> | |
<!-- http://www.kendoui.com/ --> | |
<script src="@Url.Content("~/Scripts/knockout-kendo/kendo.web.min.js")" type="text/javascript"> </script> | |
<!-- https://github.com/SteveSanderson/knockout --> | |
<script src="@Url.Content("~/Scripts/knockout-kendo/knockout-2.1.0.js")" type="text/javascript"> </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
source 'https://rubygems.org' | |
gem 'rails', '3.2.8' | |
group :development, :test do | |
gem 'rspec-rails', '2.11.0' | |
gem 'pry' | |
gem 'awesome_print' | |
gem 'guard-rspec', '0.5.5' | |
end |
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
require 'logger' | |
# intializing | |
@log = Logger.new(STDOUT) | |
@log.level = Logger::INFO | |
@log = Logger.new(STDOUT) | |
# logging | |
@log.level = Logger::INFO | |
@log.debug("Created logger") |
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
# http://flavio.castelli.name/2010/05/28/rails_execute_single_test/ | |
#single file | |
rake test path_to_test_file | |
#or | |
ruby -I"lib:test" path_to_test_file | |
#single method | |
ruby -I"lib:test" path_to_test_file -n "name_of_the_method" |
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
gem install heroku | |
git clone git://github.com/cloudhead/dorothy.git myblog | |
cd myblog | |
heroku create | |
sublime Gemfile # or other editor | |
# copy all code from Gemfile below | |
bundle install | |
git add . -A |
OlderNewer