Displaying a different view besides just the id or FULL: RESTful-Drupal/restful#350 (comment)
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
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { | |
return 3; | |
} | |
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { | |
NSString *header = nil; | |
switch (section) { | |
case 1: | |
header = @"Fuck that noise"; |
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
DisplayPuzzle:(NSString *)text asInteractive:(BOOL)isInteractive | |
* displays each character as a Piece except spaces are rendered as horizontal space, not Pieces. display is centered | |
if isInteractive: | |
* create Slots | |
* add PanGesture to each Piece | |
==== |
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
Warning: Invalid argument supplied for foreach() in dosomething_helpers_preprocess_partners_vars() (line 88 of /var/www/beta.dosomething.org/releases/20141209142557/lib/modules/dosomething/dosomething_helpers/dosomething_helpers.theme.inc). | |
Warning: Invalid argument supplied for foreach() in dosomething_helpers_format_partners_list() (line 127 of /var/www/beta.dosomething.org/releases/20141209142557/lib/modules/dosomething/dosomething_helpers/dosomething_helpers.theme.inc). |
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
UIImageView | |
UIPanGestureRecognizer (swipe, pinch, tap, pan = dragging) | |
tolerance for where to put it in the container | |
when the pan finishes, is it within 10 points of where i need to be. if so, snap it to there. | |
===== | |
UIView (like a div in HTML) |
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
UPDATE system | |
SET filename = REPLACE(filename, 'sites/all/modules/', 'sites/all/modules/contrib/') | |
WHERE status = 1 | |
AND filename LIKE 'sites/all/modules%' | |
UPDATE system | |
SET filename = REPLACE(filename, 'sites/all/themes/', 'sites/all/themes/contrib/') | |
WHERE status = 1 | |
AND filename LIKE 'sites/all/themes%' |
- Action Guide
- Campaign
- Campaign Group
- Campaign Run
- Fact
- Fact Page
- Home
- Image
- Static content
All of the consumers live on the Rabbit Server.
- Drupal Producer. is the message broker producer module.
- App server:
One producer (or two) needed be to external facing, so they live on an app server. Mostly for Mailchimp unsubscribes.
The rest of the producers live on the Rabbit server at
/opt/rabbit
Make sure you have an update to build. Either pull from stage or run ds build
.
- Install Rabbit
If you have brew installed, http://www.rabbitmq.com/install-homebrew.html
Follow the steps for installing, adding to your .bash_profile and then you can run
rabbitmq-server
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
Deleted field_partners field | |
Cleared cache | |
SELECT * | |
FROM field_collection_item | |
WHERE field_name='field_partners' | |
52 rows | |
SELECT * FROM field_collection_item_revision rev | |
JOIN field_collection_item item on item.item_id = rev.item_id |