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
{ | |
"id": "btok_2yzG1vVgKGfEtq", | |
"livemode": true, | |
"created": 1384803540, | |
"used": false, | |
"object": "token", | |
........ |
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
curl https://api.stripe.com/v1/tokens \ | |
-u sk_IHiqfU9wqFlw0TTOhqGINBkQXAR8g: \ | |
-d "bank_account[country]=US" \ | |
-d "bank_account[routing_number]=110000000" \ | |
-d "bank_account[account_number]=000123456789" |
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
{ | |
"id": "rp_2xxM6RpowUl7nz", | |
"object": "recipient", | |
"created": 1384817304, | |
"livemode": true, | |
"type": "corporation", | |
"description": "My First Recipient", | |
"email": "[email protected]", | |
"name": "BUSINESSNAME LLC", | |
"verified": false, |
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
curl https://api.stripe.com/v1/recipients \ | |
-u sk_IHiqfU9wqFlw0TTOhqGINBkQXAR8g: \ | |
-d "name=BUSINESSNAME LLC" \ | |
-d type=corporation \ | |
-d tax_id=00000000 \ | |
-d "[email protected]" \ | |
-d "description=My first recipient" |
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
A fermata is an element of musical notation indicating that the note should be sustained. Exactly how much longer it is held is up to the discretion of the performer. |
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
We will continue to make available our existing products, | |
and we will provide support and critical updates to our | |
users. However, as we’ll be busy with new projects at | |
Google, we do not plan to release new features for the | |
Sparrow apps. |
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
Connected to ChoiceShirts FTP server | |
Skipping Orders020112183600.csv - already in status=Finished | |
Skipping Orders020212183615.csv - already in status=Finished | |
Skipping Orders020312183609.csv - already in status=Finished | |
Skipping Orders020612183604.csv - already in status=Finished | |
Skipping Orders020712183548.csv - already in status=Finished | |
Skipping Orders020812183604.csv - already in status=Finished | |
Skipping Orders020912183554.csv - already in status=Finished | |
Skipping Orders021012183612.csv - already in status=Finished | |
Skipping Orders021312183440.csv - already in status=Finished |
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
Hello, | |
I am Ching Chan, a principle assurance manager in one of the banks in Malaysia. | |
I am contacting you in regards to the 12 Million United States Dollars belonging to my late client. The bank has given me an ultimatum to provide a member of his family and all efforts to get his relatives has been unsuccessful. Since you are having the same surname with my client I want to present you as the rightful person to put claim on the money. Please reply to my private email for further details and instructions. | |
Thanks, | |
Ching Chan | |
E-Mail: [email protected] |
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
Rank Classes | |
Experience: Work | Social | |
Access: Public | Permeable | Private | |
Financing: Funded | Subsidized | Bootstrapped | |
Scale: Independent | Network | Chain | |
Meetings: Casual | Scheduled | |
Cost: Free | Rent | Membership | |
Physical Space Longevity: Permanent | Semi-permanent | Temporary | |
Layout: Open | Closed |
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
<?php | |
/** | |
* Hook called prior to deployment. | |
* | |
* @param String | |
*/ | |
public function pre_deploy_hook($key = '') | |
{ | |
log_message('debug', 'Pre-deploy hook called'); | |
$this->go_maintenance($key); |