This file contains hidden or 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
| def method(args); return args; end |
This file contains hidden or 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
| class BalanceEntry < ActiveRecord::Base | |
| belongs_to :user | |
| # attributes: kind (debit or credit), source (stripe, paypal, bank transfer, etc.), amount (positive or negative float), verified (boolean) | |
| after_create :perform_transaction | |
| def perform_transaction | |
| # withdraw or deposit on Stripe, Paypal, etc. | |
| end |
This file contains hidden or 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
| class BalanceEntry < ActiveRecord::Base | |
| belongs_to :user | |
| # attributes: kind (debit or credit), source (stripe, paypal, bank transfer, etc.), amount (positive or negative float), verified (boolean) | |
| after_create :perform_transaction | |
| def perform_transaction | |
| # withdraw or deposit on Stripe, Paypal, etc. | |
| end |
This file contains hidden or 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
| class BalanceEntry < ActiveRecord::Base | |
| belongs_to :user | |
| # attributes: kind (debit or credit), source (stripe, paypal, bank transfer, etc.), amount (positive or negative float), verified (boolean) | |
| after_create :perform_transaction | |
| def perform_transaction | |
| # withdraw or deposit on Stripe, Paypal, etc. | |
| end |
This file contains hidden or 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
| #background h1, #background h2 {text-shadow: 0 0 5px rgba(0,0,0,.3)} |
This file contains hidden or 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
| Verifying that +jmonegro is my Bitcoin username. You can send me #bitcoin here: https://onename.io/jmonegrov |
I hereby claim:
- I am jmonegro on github.
- I am jmonegro (https://keybase.io/jmonegro) on keybase.
- I have a public key whose fingerprint is 5ED1 8AA6 F181 9AA3 E8DB 24BE B6C0 BDBF EFBE C45B
To claim this, I am signing this object:
This file contains hidden or 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 name="post_submit"> | |
| <div class="grid submit"> | |
| <form class="grid-block form-horizontal"> | |
| <div class="control-group"> | |
| <label class="control-label">{{i18n "url"}}</label> | |
| <div class="controls"><input id="url" type="text" value="" /></div> | |
| </div> | |
| <div class="control-group"> | |
| <label class="control-label">{{i18n "title"}}</label> | |
| <div class="controls"><input id="title" type="text" value="" /><a href="#" class="get-title-link inline-link">{{i18n "suggest_title"}}</a></div> |
OlderNewer