-
Notifications
You must be signed in to change notification settings - Fork 0
/
sriumiya_wp276.sql
390 lines (341 loc) · 852 KB
/
sriumiya_wp276.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
-- MySQL dump 10.13 Distrib 5.5.42, for Linux (x86_64)
--
-- Host: localhost Database: sriumiya_wp276
-- ------------------------------------------------------
-- Server version 5.5.42-cll
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` (`meta_id`, `comment_id`, `meta_key`, `meta_value`) VALUES (1,2,'akismet_history','a:2:{s:4:\"time\";d:1432626586.6241419315338134765625;s:5:\"event\";s:9:\"check-ham\";}'),(2,2,'email_notification_notqueued','1432621251'),(3,2,'akismet_result','false'),(4,2,'akismet_history','a:2:{s:4:\"time\";d:1432621251.3862659931182861328125;s:5:\"event\";s:9:\"check-ham\";}');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2015-07-06 02:00:47','2015-07-06 02:00:47','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'post-trashed','','',0,0),(2,9,'NancyBlubaug','jaime_brumbaugh@yahoo.de','http://Belle.ly','179.176.22.222','2015-05-26 13:20:50','2015-05-26 06:20:50','Hello admin, i see your site needs fresh posts.\n\nDaily updates will rank your blog in google higher, content is \nking nowadays. If you are to lazy to write unique posts everyday you should search in google for:\nIghtsero\'s Essential Tool',0,'0','','',0,0),(3,20,'Madie','lethabrackett@zoho.com','http://www.swallow-all.com/profile.php?u=KatriceHebe','101.50.1.16','2015-07-06 06:59:00','2015-07-06 06:59:00','As a result of fact that it needed not much less compared to the simple tools we\'ve \r\ntoday to make glass, glass was known to be a \r\ngem of the century.\r\n\r\nFeel free to visit my website glass bong online \r\nindia [<a href=\"http://www.swallow-all.com/profile.php?u=KatriceHebe\" rel=\"nofollow\">Madie</a>]',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36','',0,0),(4,20,'Driving Lessons Lucan','oliver_beall@gmail.com','http://enghk.com/groups/looking-at-price-ranges-and-costs-when-purchasing-a-car/','101.50.1.16','2015-07-06 08:07:34','2015-07-06 08:07:34','Good post. I learn something new and challenging on sites I stumbleupon on a \r\ndaily basis. It will always be helpful to read through content from other authors and practice a \r\nlittle something from their sites.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36','',0,0),(5,20,'Cole','marcosgallant@gmail.com','https://foursquare.com/user/129968732/lists/created','101.50.1.16','2015-07-06 21:20:39','2015-07-06 21:20:39','You really make it seem so easy with your presentation but I find this matter to be \r\nreally something that I think I would never understand.\r\n\r\nIt seems too complex and extremely broad for me. I\'m looking forward for your next \r\npost, I will try to get the hang of it!',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0','',0,0),(6,19,'Blanche','lorriecostello@gmail.com','http://beautyraven.com/profile.php?u=EduardoQual','101.50.1.16','2015-07-07 09:54:09','2015-07-07 09:54:09','Instead of going through numerous little glass containers that \r\nwon\'t last beyond a few meals, mix the week, a percentage that will last.\r\n\r\n\r\nAlso visit my blog post - weed vaporizer pen ebay (<a href=\"http://beautyraven.com/profile.php?u=EduardoQual\" rel=\"nofollow\">Blanche</a>)',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',0,0),(7,19,'Arnulfo','landon.cuellar@inbox.com','https://twitter.com/acceptable513/status/555984393429590016','101.50.1.16','2015-07-07 23:44:15','2015-07-07 23:44:15','At 59, I had a genius cancer Doc save my life.\r\n\r\nAlso visit my web page 4 (Insanely) Simple Weight Loss Tricks Anyone Can Start ...\r\n(<a href=\"https://twitter.com/acceptable513/status/555984393429590016\" rel=\"nofollow\">Arnulfo</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(8,19,'Deanna','edithmargolin@freenet.de','http://host.madison.com/users/profile/janineggaines/','101.50.1.16','2015-07-08 00:38:57','2015-07-08 00:38:57','Constantly clear your cigarette pipes often to generate them long-lasting and \r\nas good as new.\r\n\r\nMy homepage; glass pipes cheap (<a href=\"http://host.madison.com/users/profile/janineggaines/\" rel=\"nofollow\">Deanna</a>)',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',0,0),(9,19,'fat loss formula','lanewithers@animail.net','https://twitter.com/delightful672/status/555334041487302656','101.50.1.16','2015-07-08 01:12:32','2015-07-08 01:12:32','Nearly all restaurants can give you a salad or vegetables \r\nin place of french fries or potatoes.\r\n\r\nFeel free to visit my website <a href=\"https://twitter.com/delightful672/status/555334041487302656\" rel=\"nofollow\">fat loss formula</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(10,19,'diamant gratuit boom beach','gena_andrews@yahoo.com','http://www.chosengames.com/index.php?task=profile&id=2104','101.50.1.16','2015-07-08 03:42:49','2015-07-08 03:42:49','You don\'t stop very often to think about how you are feeling.\r\nYour appearance is somehow a reflection of the company you work for.\r\n\r\nHow Much Echinacea Should You Take To Cure Your Bronchitis.',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',0,0),(11,19,'http://Youmob.com','marlonbisbee@web.de','http://Youmob.com/mob.aspx?profile=immensemus565&mob=http://plumbingalexandria.weebly.com','101.50.1.16','2015-07-08 04:01:34','2015-07-08 04:01:34','Which plumbing technicians have The Local Plumbers - No Call Out \r\nCharge - Tanks Leaks (<a href=\"http://Youmob.com/mob.aspx?profile=immensemus565&mob=http://plumbingalexandria.weebly.com\" rel=\"nofollow\">http://Youmob.com</a>) expertise?',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(12,19,'Chelsey','ron_pidgeon@gmail.com','https://twitter.com/crazypropo460/status/556413502911688704','101.50.1.16','2015-07-08 04:38:44','2015-07-08 04:38:44','Have a snack about 10am when you are at school, some thing \r\nlike fruit or raw veges (carrot, celery, cucumber \r\netc).\r\n\r\nAlso visit my website; fat loss supplements stack (<a href=\"https://twitter.com/crazypropo460/status/556413502911688704\" rel=\"nofollow\">Chelsey</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(13,19,'Barbara','altacolson@yahoo.de','https://twitter.com/abackhampe840/status/556194646918184960','101.50.1.16','2015-07-08 05:21:42','2015-07-08 05:21:42','The lap band worked excellent. Lost115 pounds in two years.\r\n\r\n\r\n\r\nHere is my blog post: fat loss happens on monday [<a href=\"https://twitter.com/abackhampe840/status/556194646918184960\" rel=\"nofollow\">Barbara</a>]',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(14,19,'Leoma','miquelparas@t-online.de','https://twitter.com/uglykismet194/status/555853189925576705','101.50.1.16','2015-07-08 06:25:38','2015-07-08 06:25:38','Just drink a looottt of water, consume lots of greens, and exercise \r\nas much as What happens when you ask Zach \r\nGalifianakis about his ... (<a href=\"https://twitter.com/uglykismet194/status/555853189925576705\" rel=\"nofollow\">Leoma</a>) can, specially \r\ncardio.',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(15,19,'Angelica','latanya.batiste@gmail.com','https://twitter.com/rampantimp175/status/556039915579133952','101.50.1.16','2015-07-08 07:54:21','2015-07-08 07:54:21','Be upset the day soon after the 7th day you obtain four-five lbs.\r\n\r\n\r\nAlso visit my weblog - Rapid Weight Loss: 4 Ways to Accelerate Your Fat-Loss \r\n(<a href=\"https://twitter.com/rampantimp175/status/556039915579133952\" rel=\"nofollow\">Angelica</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(16,19,'Hay Day Triche - Diamants illimités immédiatement!','alejandrobaer@aol.com','http://cms.glomme.de/themes/photography/item/3-interaction-between-depth-of-focus-and-aperture?amp=','101.50.1.16','2015-07-08 07:54:39','2015-07-08 07:54:39','Angry Birds est un outil de piratage assez récent avec \r\nlequel tu peux ajouter un nombre illimité de tout article.',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(17,19,'Iesha','florentinaknoll@t-online.de','https://delicious.com/testytechnique827','101.50.1.16','2015-07-08 12:24:15','2015-07-08 12:24:15','This is my first time pay a quick visit at here and i am truly happy to read all at one place.\r\n\r\n\r\nStop by my website ... nagelpilz behandlung (<a href=\"https://delicious.com/testytechnique827\" rel=\"nofollow\">Iesha</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(18,19,'Candida','colingarrison@web.de','http://www.stumbleupon.com/stumbler/chivalrouswoman81','101.50.1.16','2015-07-08 13:41:06','2015-07-08 13:41:06','Which universities did you acquire your Ph.D.s in Nutrition and Physical \r\nexercise Physiology from?\r\n\r\nStop by my weblog - Holland & Barrett ... (<a href=\"http://www.stumbleupon.com/stumbler/chivalrouswoman81\" rel=\"nofollow\">Candida</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(19,19,'Angelo','conrad_engle@yahoo.de','https://twitter.com/shallowtai924/status/556418162464653313','101.50.1.16','2015-07-08 14:16:43','2015-07-08 14:16:43','Does your blog have a contact page? I\'m having a tough time locating it but, I\'d like to \r\nsend you an email. I\'ve got some recommendations for \r\nyour blog you might be interested in hearing.\r\n\r\nEither way, great site and I look forward to seeing it improve over time.\r\n\r\n\r\n\r\nmy web-site ... weight loss concept 2 (<a href=\"https://twitter.com/shallowtai924/status/556418162464653313\" rel=\"nofollow\">Angelo</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(20,19,'Dick','rethaschafer@gmail.com','https://twitter.com/boorishute119/status/555311496990044161','101.50.1.16','2015-07-08 18:22:32','2015-07-08 18:22:32','If you set Lose Weight with the ... (<a href=\"https://twitter.com/boorishute119/status/555311496990044161\" rel=\"nofollow\">Dick</a>) time that you generally weigh yourself, it will send a notification to quit you forgetting to input.',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(21,19,'Maggie','pablo_child@gmail.com','http://www.faceparty.com/member/blog.aspx?pid=9083760','101.50.1.16','2015-07-08 20:19:42','2015-07-08 20:19:42','The 22 comments concerning \'8 suggestions for healthy and balanced consuming\' uploaded \r\nare individual sights.\r\n\r\nmy website Female Diet & Nutrition, <a href=\"http://www.faceparty.com/member/blog.aspx?pid=9083760\" rel=\"nofollow\">Maggie</a>,',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(22,19,'Sheri','earnestine_metcalfe@gawab.com','https://twitter.com/rampantimp175/status/556039915579133952','101.50.1.16','2015-07-08 21:44:34','2015-07-08 21:44:34','Among breakfast and lunch you need to have a slow carb snack (remember you will be consuming 4 to5 meals a day at 2 1/2 to three hour intervals).\r\n\r\n\r\nMy blog post: Men\'s Fitness [<a href=\"https://twitter.com/rampantimp175/status/556039915579133952\" rel=\"nofollow\">Sheri</a>]',0,'0','Mozilla/5.0 (Windows NT 6.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(23,19,'Flynn','tiffanystella@googlemail.com','https://Twitter.com/machoenigm920/status/556319836775923712','101.50.1.16','2015-07-08 23:12:22','2015-07-08 23:12:22','tends to make tracking a snap.\r\n\r\nMy web-site; Twitter (<a href=\"https://Twitter.com/machoenigm920/status/556319836775923712\" rel=\"nofollow\">Flynn</a>)',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',0,0),(24,19,'Tanja','youngantoine@zoho.com','https://twitter.com/abackhampe840/status/556194646918184960','101.50.1.16','2015-07-08 23:20:47','2015-07-08 23:20:47','I just began this fat loss diet plan bodybuilding (<a href=\"https://twitter.com/abackhampe840/status/556194646918184960\" rel=\"nofollow\">Tanja</a>) plan on Monday last week.',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',0,0),(25,19,'Lavern','rachelholyman@gmail.com','https://twitter.com/machoenigm920/status/556319836775923712','101.50.1.16','2015-07-08 23:38:25','2015-07-08 23:38:25','And I feel like..King Kong.\r\n\r\nAlso visit my web site: Holland & Barrett, <a href=\"https://twitter.com/machoenigm920/status/556319836775923712\" rel=\"nofollow\">Lavern</a>,',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',0,0),(26,263,'Jacki','wilburnwhatmore@gmail.com','http://nicoleturso.journalism.cuny.edu/2008/10/12/fundamentally-f-ing-tired-of-fundamentals/','101.50.1.16','2015-07-12 07:21:06','2015-07-12 07:21:06','Its inventor, conventional artist Robert Mickelsen Memory, boasts that despite the fact that he \r\ndid not try it, the pipe is fully functional.\r\n\r\nHere is my webpage: bongs for sale online nz - <a href=\"http://nicoleturso.journalism.cuny.edu/2008/10/12/fundamentally-f-ing-tired-of-fundamentals/\" rel=\"nofollow\">Jacki</a>,',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0),(27,263,'Emerson','justinebeckenbauer@t-online.de','http://www.sciclubscarpone-castelletto.com/sciclub/?attachment_id=312','101.50.1.16','2015-07-12 07:26:20','2015-07-12 07:26:20','for building idealistic water move for plant development, all glass inflow \r\nand output filter pipe designed.\r\n\r\nmy web-site - glass pipes for sale china (<a href=\"http://www.sciclubscarpone-castelletto.com/sciclub/?attachment_id=312\" rel=\"nofollow\">Emerson</a>)',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=409 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://sriumiyati.com','yes'),(2,'home','http://sriumiyati.com','yes'),(3,'blogname','Blog Petajakarta','yes'),(4,'blogdescription','Blog Petajakarta','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@sriumiyati.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/index.php/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:4:{i:0;s:29:\"image-widget/image-widget.php\";i:1;s:55:\"resize-image-after-upload/resize-image-after-upload.php\";i:2;s:41:\"wordpress-importer/wordpress-importer.php\";i:3;s:30:\"youtube-embed-plus/youtube.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:73:\"/home/sriumiya/public_html/wp-content/themes/sparkling/page-fullwidth.php\";i:1;s:73:\"/home/sriumiya/public_html/wp-content/themes/sparkling/inc/customizer.php\";i:2;s:64:\"/home/sriumiya/public_html/wp-content/themes/sparkling/index.php\";i:4;s:66:\"/home/sriumiya/public_html/wp-content/themes/sparkling/options.php\";i:5;s:65:\"/home/sriumiya/public_html/wp-content/themes/sparkling/single.php\";}','no'),(41,'template','sparkling','yes'),(42,'stylesheet','sparkling','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','31535','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','posts','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','0','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"home-widget-1\";a:0:{}s:13:\"home-widget-2\";a:0:{}s:13:\"home-widget-3\";a:0:{}s:15:\"footer-widget-1\";a:1:{i:0;s:17:\"widget_sp_image-2\";}s:15:\"footer-widget-2\";a:2:{i:0;s:17:\"widget_sp_image-3\";i:1;s:17:\"widget_sp_image-4\";}s:15:\"footer-widget-3\";a:1:{i:0;s:17:\"widget_sp_image-5\";}s:13:\"array_version\";i:3;}','yes'),(98,'cron','a:5:{i:1436775237;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1436796047;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1436796064;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1436839291;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(99,'_transient_twentyfifteen_categories','1','yes'),(102,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.2.2\";s:7:\"version\";s:5:\"4.2.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1436752884;s:15:\"version_checked\";s:5:\"4.2.2\";s:12:\"translations\";a:0:{}}','yes'),(116,'_transient_random_seed','22a4f925f21431a411486251e33381dd','yes'),(117,'_site_transient_timeout_browser_afc0dd1f4bdfa183ea07d50c68c58ce7','1436752891','yes'),(118,'_site_transient_browser_afc0dd1f4bdfa183ea07d50c68c58ce7','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"43.0.2357.130\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(121,'can_compress_scripts','1','yes'),(137,'_site_transient_timeout_wporg_theme_feature_list','1436158909','yes'),(138,'_site_transient_wporg_theme_feature_list','a:4:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(140,'theme_mods_fashionistas','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1436148172;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(141,'current_theme','Sparkling','yes'),(142,'theme_mods_sparkling','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:9;}s:12:\"header_image\";s:84:\"http://sriumiyati.com/wp-content/uploads/2015/07/cropped-petajakarta_border_top2.png\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:239;s:3:\"url\";s:84:\"http://sriumiyati.com/wp-content/uploads/2015/07/cropped-petajakarta_border_top2.png\";s:13:\"thumbnail_url\";s:84:\"http://sriumiyati.com/wp-content/uploads/2015/07/cropped-petajakarta_border_top2.png\";s:6:\"height\";i:48;s:5:\"width\";i:252;}}','yes'),(143,'theme_switched','','yes'),(145,'_site_transient_timeout_popular_importers_en_US','1436320997','yes'),(146,'_site_transient_popular_importers_en_US','a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:86:\"Install the Blogger importer to import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:109:\"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:9:\"wpcat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:82:\"Install the LiveJournal importer to import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:99:\"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:61:\"Install the blogroll importer to import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:58:\"Install the RSS importer to import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:84:\"Install the Tumblr importer to import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:130:\"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','yes'),(147,'_site_transient_timeout_browser_030fae53d5f1a9e07a8b8b1286069d4d','1436754935','yes'),(148,'_site_transient_browser_030fae53d5f1a9e07a8b8b1286069d4d','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"webkit\";s:7:\"version\";s:6:\"534.34\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(149,'recently_activated','a:0:{}','yes'),(157,'rewrite_rules','a:71:{s:57:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:54:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:49:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:55:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:50:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:49:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:66:\"index.php/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:68:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:78:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:98:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:87:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:75:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:50:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:45:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:30:\"index.php/(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(161,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(165,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(166,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(167,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(169,'widget_sparkling-cats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(170,'widget_sparkling_popular_posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(171,'widget_sparkling-social','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(172,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(180,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1436752888;s:7:\"checked\";a:1:{s:9:\"sparkling\";s:5:\"1.9.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(181,'sparkling','a:50:{s:25:\"sparkling_slider_checkbox\";s:1:\"1\";s:26:\"sparkling_slide_categories\";s:2:\"10\";s:22:\"sparkling_slide_number\";s:1:\"3\";s:11:\"site_layout\";s:9:\"pull-left\";s:13:\"element_color\";s:0:\"\";s:19:\"element_color_hover\";s:0:\"\";s:14:\"custom_favicon\";s:103:\"http://sriumiyati.com/wp-content/uploads/2015/02/cropped-cropped-cropped-cropped-peta-jakarta-logo2.png\";s:12:\"w2f_cfa_text\";s:0:\"\";s:14:\"w2f_cfa_button\";s:0:\"\";s:12:\"w2f_cfa_link\";s:0:\"\";s:9:\"cfa_color\";s:0:\"\";s:12:\"cfa_bg_color\";s:0:\"\";s:13:\"cfa_btn_color\";s:0:\"\";s:17:\"cfa_btn_txt_color\";s:0:\"\";s:20:\"main_body_typography\";a:4:{s:4:\"size\";s:4:\"14px\";s:4:\"face\";s:9:\"Open Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#6B6B6B\";}s:13:\"heading_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:12:\"nav_bg_color\";s:0:\"\";s:14:\"nav_link_color\";s:0:\"\";s:20:\"nav_item_hover_color\";s:0:\"\";s:15:\"nav_dropdown_bg\";s:0:\"\";s:17:\"nav_dropdown_item\";s:0:\"\";s:23:\"nav_dropdown_item_hover\";s:0:\"\";s:21:\"nav_dropdown_bg_hover\";s:0:\"\";s:22:\"footer_widget_bg_color\";s:0:\"\";s:15:\"footer_bg_color\";s:0:\"\";s:17:\"footer_text_color\";s:0:\"\";s:17:\"footer_link_color\";s:0:\"\";s:18:\"custom_footer_text\";s:82:\"<a href=\"http://sriumiyati.com/\" title=\"My Blog\">My Blog</a> All rights reserved.\";s:12:\"social_color\";s:0:\"\";s:19:\"social_footer_color\";s:0:\"\";s:15:\"social_facebook\";s:0:\"\";s:14:\"social_twitter\";s:0:\"\";s:17:\"social_googleplus\";s:0:\"\";s:14:\"social_youtube\";s:0:\"\";s:12:\"social_vimeo\";s:0:\"\";s:15:\"social_linkedin\";s:0:\"\";s:16:\"social_pinterest\";s:0:\"\";s:10:\"social_rss\";s:0:\"\";s:13:\"social_tumblr\";s:0:\"\";s:13:\"social_flickr\";s:0:\"\";s:16:\"social_instagram\";s:0:\"\";s:15:\"social_dribbble\";s:0:\"\";s:12:\"social_skype\";s:0:\"\";s:17:\"social_foursquare\";s:0:\"\";s:17:\"social_soundcloud\";s:0:\"\";s:13:\"social_github\";s:0:\"\";s:14:\"social_spotify\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";}','yes'),(184,'category_children','a:0:{}','yes'),(198,'_site_transient_timeout_browser_7793979e70bb01e23833a4f7789d7a63','1436765115','yes'),(199,'_site_transient_browser_7793979e70bb01e23833a4f7789d7a63','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:3:\"9.0\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(205,'_site_transient_timeout_available_translations','1436174237','yes'),(206,'_site_transient_available_translations','a:57:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:57:37\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-27 06:36:25\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 18:55:51\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-30 08:59:10\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-03 00:26:43\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 15:36:06\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-25 13:39:01\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 20:09:08\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-15 10:49:37\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-12 09:59:32\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.5/haz.zip\";s:3:\"iso\";a:1:{i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 19:32:58\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-27 08:22:08\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:43:50\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-23 15:23:08\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-23 18:44:13\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 06:59:29\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-08 07:10:14\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-10 17:07:58\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.2.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-09 10:15:05\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.5/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-06-23 22:36:27\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-31 11:58:44\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 09:29:23\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-29 08:27:12\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-05-26 07:01:28\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.5\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-05 10:51:50\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.2.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-04-29 06:37:03\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:19:\"2015-07-04 19:52:42\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.2.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','yes'),(238,'jr_resizeupload_version','1.7.1','yes'),(239,'jr_resizeupload_width','1200','yes'),(240,'jr_resizeupload_height','1200','yes'),(241,'jr_resizeupload_quality','90','yes'),(242,'jr_resizeupload_resize_yesno','yes','yes'),(243,'jr_resizeupload_recompress_yesno','no','yes'),(244,'jr_resizeupload_convertbmp_yesno','no','yes'),(245,'jr_resizeupload_convertpng_yesno','no','yes'),(246,'jr_resizeupload_convertgif_yesno','no','yes'),(248,'_site_transient_timeout_browser_bfa58c308f5ca3be02504bfe8661769b','1436854785','yes'),(249,'_site_transient_browser_bfa58c308f5ca3be02504bfe8661769b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"39.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(255,'_image_widget_version','4.1','yes'),(256,'widget_widget_sp_image','a:5:{i:2;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:100;s:6:\"height\";i:78;s:4:\"size\";s:25:\"tribe_image_widget_custom\";s:5:\"align\";s:6:\"center\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:79:\"http://sriumiyati.com/wp-content/uploads/2015/02/smartstackedhybridpmsint-1.jpg\";s:12:\"aspect_ratio\";d:1.28897058823529420124032185412943363189697265625;s:13:\"attachment_id\";i:194;}i:3;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"size\";s:25:\"tribe_image_widget_custom\";s:5:\"align\";s:4:\"left\";s:3:\"alt\";s:0:\"\";s:13:\"attachment_id\";i:192;s:8:\"imageurl\";s:60:\"http://sriumiyati.com/wp-content/uploads/2015/02/dki_web.png\";s:12:\"aspect_ratio\";d:0.99704142011834318015672806723159737884998321533203125;}i:4;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"size\";s:25:\"tribe_image_widget_custom\";s:5:\"align\";s:5:\"right\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:61:\"http://sriumiyati.com/wp-content/uploads/2015/02/bpbd_web.png\";s:12:\"aspect_ratio\";d:0.99704142011834318015672806723159737884998321533203125;s:13:\"attachment_id\";i:191;}i:5;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:100;s:6:\"height\";i:81;s:4:\"size\";s:25:\"tribe_image_widget_custom\";s:5:\"align\";s:6:\"center\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:70:\"http://sriumiyati.com/wp-content/uploads/2015/02/twitter_logo_blue.png\";s:12:\"aspect_ratio\";d:1.23002159827213830567416152916848659515380859375;s:13:\"attachment_id\";i:195;}s:12:\"_multiwidget\";i:1;}','yes'),(262,'youtubeprefs_alloptions','a:44:{s:9:\"centervid\";i:1;s:6:\"glance\";i:1;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:14:\"iv_load_policy\";i:3;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";i:0;s:8:\"showinfo\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"controls\";i:2;s:8:\"autohide\";i:2;s:5:\"html5\";i:1;s:5:\"theme\";s:5:\"light\";s:5:\"color\";s:3:\"red\";s:5:\"wmode\";s:6:\"opaque\";s:2:\"vq\";s:0:\"\";s:8:\"nocookie\";i:0;s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"ogvideo\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:10:\"oldspacing\";i:0;s:10:\"responsive\";i:0;s:9:\"widgetfit\";i:1;s:9:\"schemaorg\";i:0;s:9:\"ftpostimg\";i:0;s:4:\"spdc\";i:0;s:7:\"dynload\";i:0;s:11:\"defaultdims\";i:0;s:10:\"defaultvol\";i:0;s:4:\"dohl\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:3:\"vol\";i:50;s:6:\"apikey\";s:0:\"\";s:2:\"hl\";s:0:\"\";s:7:\"dyntype\";s:0:\"\";s:7:\"spdcexp\";i:24;s:7:\"version\";s:4:\"10.2\";s:3:\"pro\";s:0:\"\";s:3:\"ssl\";i:0;}','yes'),(263,'embed_autourls','1','yes'),(264,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1436752886;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.3.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:29:\"image-widget/image-widget.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4078\";s:4:\"slug\";s:12:\"image-widget\";s:6:\"plugin\";s:29:\"image-widget/image-widget.php\";s:11:\"new_version\";s:3:\"4.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/image-widget/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/image-widget.4.1.1.zip\";}s:55:\"resize-image-after-upload/resize-image-after-upload.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"34171\";s:4:\"slug\";s:25:\"resize-image-after-upload\";s:6:\"plugin\";s:55:\"resize-image-after-upload/resize-image-after-upload.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/resize-image-after-upload/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/resize-image-after-upload.1.7.1.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip\";}s:30:\"youtube-embed-plus/youtube.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"37263\";s:4:\"slug\";s:18:\"youtube-embed-plus\";s:6:\"plugin\";s:30:\"youtube-embed-plus/youtube.php\";s:11:\"new_version\";s:4:\"10.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/youtube-embed-plus/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/youtube-embed-plus.10.2.zip\";}}}','yes'),(266,'youtubeprefs_spdcall','a:0:{}','yes'),(299,'_site_transient_timeout_browser_e0ac10a57490aad2a8e6720df766fddc','1436947672','yes'),(300,'_site_transient_browser_e0ac10a57490aad2a8e6720df766fddc','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"41.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(339,'_site_transient_timeout_browser_9efff9e24bbda319a1b6c8c0080767c9','1437288323','yes'),(340,'_site_transient_browser_9efff9e24bbda319a1b6c8c0080767c9','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"43.0.2357.132\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(357,'_transient_timeout_plugin_slugs','1436806656','no'),(358,'_transient_plugin_slugs','a:6:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";i:2;s:29:\"image-widget/image-widget.php\";i:3;s:55:\"resize-image-after-upload/resize-image-after-upload.php\";i:4;s:41:\"wordpress-importer/wordpress-importer.php\";i:5;s:30:\"youtube-embed-plus/youtube.php\";}','no'),(380,'_transient_is_multi_author','0','yes'),(381,'_transient_all_the_cool_cats','3','yes'),(389,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1436731059','yes'),(390,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"5223\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3269\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3204\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2734\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2503\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2001\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1906\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1836\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1787\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1769\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1738\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1728\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1621\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1419\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1357\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1299\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1207\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1165\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1150\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1021\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"975\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"942\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"932\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"896\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"865\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"853\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"806\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"791\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"767\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"743\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"738\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"736\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"695\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"687\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"682\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"669\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"649\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"645\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"640\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"639\";}}','yes'),(391,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1436795757','no'),(392,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1436795757','no'),(393,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1436752557','no'),(394,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1436795759','no'),(395,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Neil Gaiman Speech at MIT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2015/07/neil-gaiman-commencement/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"<p>“Make good art.”</p>\n<p><span class=\"embed-youtube\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 12 Jul 2015 20:15:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: WordCamp Scranton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/07/wordcamp-scranton/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:800:\"<p>As was just announced, I’m going to make a not-surprise appearance at WordCamp Scranton next Saturday. It’s their first year <a href=\"https://central.wordcamp.org/\">doing a Wordcamp</a> and I was able to find some space in my schedule to swing by in between business meetings in New York and Philadelphia, so very much looking forward to meeting the Scranton community.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Matt Mullenweg (<a href=\"https://twitter.com/photomatt\">@photomatt</a>) will Host a Town Hall Q&A at WordCamp Scranton! <a href=\"https://t.co/qmZSWYPQBS\">https://t.co/qmZSWYPQBS</a></p>\n<p>— WordCamp Scranton (@WCScranton) <a href=\"https://twitter.com/WCScranton/status/619508207283625984\">July 10, 2015</a></p></blockquote>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jul 2015 16:03:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WPWeekly Episode 198 – Tackling Mental Health With Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=46473&preview_id=46473\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/wpweekly-episode-198-tackling-mental-health-with-cory-miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2636:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by Cory Miller, <a href=\"https://ithemes.com/our-founder/\">founder of iThemes</a>. Miller discusses his entrepreneurship journey and shares in detail, how he <a href=\"http://wordpress.tv/2015/07/02/cory-miller-entrepreneurship-and-my-mental-health/\">maintains his mental health</a>.</p>\n<p>We learn that people battling mental health are not alone and that it’s ok to ask for help. Miller explains how seeing a counselor four times a year helps him maintain his mental health. We also discuss coping mechanisms that might work for those not interested in seeing a counselor.</p>\n<p>For more background on this episode, I highly encourage you to <a href=\"http://wordpress.tv/2015/07/02/cory-miller-entrepreneurship-and-my-mental-health/\">watch his presentation</a> at WordCamp Denver 2015, on mental health. Also, check out <a href=\"http://www.slideshare.net/corymiller303/the-emotional-roller-coaster-of-entrepreneurship-how-i-cope-7-years-in\">his slides on slideshare</a> that are filled with motivational messages.</p>\n<p>I apologize for the audio quality in this episode. Miller was in New Mexico on a spotty WiFi connection that seemed to get worse as the show went on.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/save-import-image-from-url/\">Save and Import Image from URL</a> replaces the built-in ‘Import from URL’ media upload tab. It allows users to download an image from a remote URL and upload it to the WordPress media gallery.</p>\n<p class=\"shortdesc\"><a href=\"https://wordpress.org/plugins/meerkat/\">Meerkat</a> lets you embed your Meerkat stream on your site so your followers, friends, and fans can watch your stream anywhere.</p>\n<p><a href=\"https://wordpress.org/plugins/simple-job-board/\">Simple Job Board</a> is an easy and lightweight plugin that adds a job board to your website.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 15th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #198:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2015 22:01:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: SocialCrumbs: A Free WordPress Theme that Streams Social Activity Using IFTTT Recipes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/socialcrumbs-a-free-wordpress-theme-that-streams-social-activity-using-ifttt-recipes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3949:\"<p>With all of the content an average user generates across social media sites, it can be challenging to get a full view of all that activity. Let’s face it, your social media posts are scattered all over the web.</p>\n<p><a href=\"https://github.com/ademilter/socialcrumbs\" target=\"_blank\">SocialCrumbs</a> is a non-traditional, niche WordPress theme that aggregates all of your social media activity into one stream with the help of <a href=\"https://ifttt.com/\" target=\"_blank\">IFTTT</a> recipes. The theme was created by <a href=\"http://ademilter.com/\" target=\"_blank\">Adam Ilter</a>, a user interface designer and developer living in Istanbul. He designed a Pinterest-style display to output the social posts brought in by IFTTT. The masonry grid is responsive and colorful with posts featuring icons for each social network.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/socialcrumbs-screenshot.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/socialcrumbs-screenshot.jpg?resize=1025%2C745\" alt=\"socialcrumbs-screenshot\" class=\"aligncenter size-full wp-image-46451\" /></a></p>\n<p>You can view a live demo of SocialCrumbs at <a href=\"http://adem.social/\" target=\"_blank\">adem.social</a>.</p>\n<p>In order to use the theme, you need to sign up for IFTTT and set up recipes for all the social accounts you want to include in the stream. The theme’s readme.txt files includes a list of 19 <a href=\"https://github.com/ademilter/socialcrumbs#recipes\" target=\"_blank\">recipes</a> that Ilter has pre-configured, with a checklist of many more planned.</p>\n<p>Certain networks have multiple options. For example, you can choose to include Twitter tweets and/or favorites:</p>\n<ul>\n<li>twitter-tweet-write <a href=\"https://ifttt.com/recipes/189363\" target=\"_blank\">https://ifttt.com/recipes/189363</a></li>\n<li>twitter-tweet-favorite <a href=\"https://ifttt.com/recipes/189331\" target=\"_blank\">https://ifttt.com/recipes/189331</a></li>\n</ul>\n<p>It can take up to 15 minutes for the content to appear in your theme after posting to the social network, as most IFTTT recipes check for new trigger data at that interval.</p>\n<p>It’s important to note that this theme is hosted on GitHub, not officially supported, and is an example of a fun, experimental concept that relies on IFTTT. As such, it doesn’t includes a single post template but rather outputs as an index. SocialCrumbs is not yet capable of providing a comprehensive archive for social media posts, so it’s not a theme you would use if you intend to record all of your social activities for preservation.</p>\n<p>One might argue that this kind of functionality is better housed in a plugin. In that case you might want to take a look at the <a href=\"https://wordpress.org/plugins/social-streams/\" target=\"_blank\">Social Streams</a> or <a href=\"https://wordpress.org/plugins/wp-social-stream/\" target=\"_blank\">WP Social Stream</a> plugins on WordPress.org. WP Social Stream is based on <a href=\"https://github.com/christianv/jquery-lifestream\" target=\"_blank\">jQuery Lifestream</a>, as opposed to IFTTT. The methods of retrieving social posts vary from plugin to plugin, depending on how you want to fetch, display, and store that content.</p>\n<p>The most ideal use for the SocialCrumbs theme would be where you dedicate a subsite to its display, i.e. for showing social media posts surrounding an event or brand. If it was forked to include the ability to make the social media content searchable and sortable, SocialCrumbs would be even more useful beyond a simple visual display of activities.</p>\n<p>In its current state, the theme is a nice example of IFTTT and WordPress working together to create a configurable social stream that aggregates activity from multiple networks to a single page of your WordPress site. Check it out on <a href=\"https://github.com/ademilter/socialcrumbs\" target=\"_blank\">GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2015 18:31:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Paired Opposites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/07/paired-opposites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:517:\"<blockquote><p>I used to think that paired opposites were a given, that love was the opposite of hate, right the opposite of wrong. But now I think we sometimes buy into these concepts because it is so much easier to embrace absolutes than to suffer reality. I don’t think anything is the opposite of love. Reality is unforgivingly complex.</p>\n<p>— Anne Lamott</p></blockquote>\n<p>From her great book <a href=\"http://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Bird by Bird</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2015 14:58:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Chris Pearson Loses Cybersquatting Case Against Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wptavern.com/automattic-wins-cybersquatting-case-against-chris-pearson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6258:\"<p>First <a href=\"http://domainnamewire.com/2015/07/08/wordpress-wins-another-round-against-chris-pearson/\">reported by Domain Name Wire</a>, Automattic has <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">won their <span class=\"_Tgc\"> Uniform Domain-Name Dispute-Resolution Policy</span> (UDRP) case</a> against <a href=\"http://www.pearsonified.com/\">Chris Pearson</a>. UDRP requests are<span class=\"_Tgc\"> a process established by the Internet Corporation for Assigned Names and Numbers (ICANN) for the resolution of disputes regarding the registration of internet domain names. </span></p>\n<h2>Automattic Wins Thesis.com</h2>\n<p>According to <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">findings by the UDRP panel</a>, in late 2014, a third-party who owned <a href=\"http://themeshaper.com/\">Thesis.com</a> approached Automattic and Pearson to see if they were interested in buying the domain. Automattic won the domain by bidding $100K.</p>\n<p>Soon after winning the domain, Pearson filed a UDRP request with ICANN seeking relief requesting that the domain name be transferred from Automattic to himself. In June 2015, a three-member panel was appointed to review the case.</p>\n<p>According to <a href=\"https://www.icann.org/resources/pages/rules-be-2012-02-25-en\">rule number five</a> set forth by ICANN for the UDRP process, Respondents have 20 days to respond to the Provider. If a Respondent does not submit a response, in the absence of exceptional circumstances, the Panel decides the dispute based upon the complaint.</p>\n<p>In a controversial move, the Panel accepted and reviewed Automattic’s late response.</p>\n<blockquote><p>The Panel notes that Respondent failed to submit its response within the requisite time period, failing to comply with ICANN Rule #5. In its discretion, the Panel considered Respondent’s arguments in the late filed Response in the interest of justice.</p></blockquote>\n<p>Pearson satisfied two of the three burdens imposed under the Policy in order for the Panel to order transfer of a domain name from the entity registering it. Pearson failed to provide evidence that showed Thesis.com redirects to Themeshaper.com. In its response to the Panel, Automattic admitted to using the domain in this way but it appears to have had no affect on the Panel’s decision.</p>\n<p>The Panel noted that if Complainant’s submissions are insufficient, it may request additional exhibits or information under Rule 12 but given the outcome, the Panel chose not to seek additional submissions.</p>\n<p>You can view the panel’s findings in <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">this public document.</a> The panel concluded that the Complainant (Pearson) failed to establish all three elements required under the ICANN Policy and that relief shall be denied.</p>\n<blockquote><p>A party must satisfy all three of the burdens imposed under the Policy in order for the Panel to order transfer of a domain name from the entity registering it. Here, Complainant failed to establish that Respondent registered and used the disputed domain name in bad faith.</p>\n<p><em>See Starwood Hotels & Resorts Worldwide, Inc. v. Samjo CellTech.Ltd</em>, FA 406512 (Nat. Arb. Forum Mar. 9, 2005) (finding that the complainant failed to establish that respondent registered and used the disputed domain name in bad faith because mere assertions of bad faith are insufficient for a complainant to establish Policy ¶ 4(a)(iii)). Therefore, the Panel finds that Complainant failed to support its allegations under Policy ¶ 4(a)(iii) and finds for Respondent.</p></blockquote>\n<p>Therefore, Thesis.com is allowed to remain under Automattic’s ownership.</p>\n<h2>Automattic Strikes Back</h2>\n<p>On June 16th, Automattic struck back by <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=1\">filing a petition for cancellation</a> with the United States Patent and Trademark Office. In their petition, Automattic argues that the three trademarks owned by Pearson, DIYTHEMES, THESIS THEME, and THESIS, should be cancelled.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/PetitionForCancellation.png\"><img class=\"size-full wp-image-46431\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/PetitionForCancellation.png?resize=704%2C721\" alt=\"Petition for Cancellation\" /></a>Petition for Cancellation\n<p>When questioned about the Thesis.com domain and petition to cancel Perason’s trademarks, Automattic responded with the following statement:</p>\n<blockquote><p>Chris Pearson tried to seize a domain Automattic owns through the UDRP process. As part of defending ourselves we have dug into the trademarks that were being claimed by the aggressor, as that was the basis of his claim.</p>\n<p>We’re happy the panel ruled in our favor. We think Thesis.com is a cool, generic .com that could be used for a variety of things. Just because you have a small WordPress theme doesn’t mean you have a right to seize generic English word .com domains.</p></blockquote>\n<p>I’ve reached out to Pearson for comment but have yet to receive a response.</p>\n<h2>Automattic’s Interest in Thesis.com Remains Unexplained</h2>\n<p>There are a lot of unanswered questions that need to be answered. For instance, why did Automattic participate in the bidding process for Thesis.com when it has nothing to do with WordPress.com or associated services?</p>\n<p>The turbulent history between <a href=\"http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/\">Matt Mullenweg and Pearson in 2010</a> nearly resulted in a lawsuit over GPLv2 compliance. The statement from Automattic fails to clarify why the company pursued Pearson again years later by bidding on a domain relevant to his business, apart from stating that it’s “a cool generic.com”. Going after Pearson’s trademarks in order to have them cancelled raises questions as to whether the move is motivated by retribution.</p>\n<p>We’ll keep a close eye on the <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=1\">trademark cancellation petition</a> and if there are any updates, we’ll let you know.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2015 04:40:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: PhpStorm 9 Introduces Partial PHP 7 Support, Inline Debugging, and Remote File Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46327\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/phpstorm-9-introduces-partial-php-7-support-inline-debugging-and-remote-file-editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3006:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/introduce_parameter.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/introduce_parameter.png?resize=1025%2C513\" alt=\"New in PhpStorm 9: Introduce parameter refactoring\" class=\"size-full wp-image-46421\" /></a>New in PhpStorm 9: <em>Introduce parameter</em> refactoring\n<p><a href=\"http://www.jetbrains.com/phpstorm/whatsnew/\" target=\"_blank\">PhpStorm 9</a> was released this week with a slew of improvements and new features for PHP and web developers. The popular IDE is used by more than 300,000 developers and its development team usually puts out one major release per year. <a href=\"http://wptavern.com/phpstorm-8-released-with-full-wordpress-support\" target=\"_blank\">Version 8</a> was released last September with official support for WordPress.</p>\n<p>Highlights of version 9 include:</p>\n<ul>\n<li>PHP Language & Editing Experience: Includes <a href=\"http://blog.jetbrains.com/phpstorm/2015/05/postfix-code-completion-for-php-in-phpstorm-9-eap/\" target=\"_blank\">postfix code completion for PHP</a>, partial PHP 7 support, advanced code understanding, and other enhancements</li>\n<li>New Debugging Experience: <a href=\"http://blog.jetbrains.com/phpstorm/2015/03/inline-debugging-for-php-in-phpstorm-9-eap/\" target=\"_blank\">Inline debugger</a> for PHP and <a href=\"http://blog.jetbrains.com/phpstorm/2015/07/debugging-improvements-in-phpstorm-9/\" target=\"_blank\">debugging workflow enhancements</a></li>\n<li>Remote Development: <a href=\"http://blog.jetbrains.com/phpstorm/2015/04/remote-edit-in-phpstorm-9-eap/\" target=\"_blank\">Remote edit</a>, PHP Code Sniffer and Mess Detector via remote PHP interpreters</li>\n<li>Many improvements related to frameworks and tools</li>\n<li>A range of new and updated third-party plugins available in the <a href=\"https://plugins.jetbrains.com/phpStorm\" target=\"_blank\">PhpStorm plugin repository</a></li>\n</ul>\n<p>The new <a href=\"http://blog.jetbrains.com/phpstorm/2015/03/inline-debugging-for-php-in-phpstorm-9-eap/\" target=\"_blank\">inline debugging</a> feature is already a hit with WordPress developers. It lets you view variable values in the source code, next to their usages, without having to switch over to the Variables pane or Debug tool window.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Pretty much in love with <a href=\"https://twitter.com/phpstorm\">@phpstorm</a> 9\'s inline debugging h/t <a href=\"https://twitter.com/jeremyfelt\">@jeremyfelt</a></p>\n<p>— Zack Tollman (@tollmanz) <a href=\"https://twitter.com/tollmanz/status/618905116326805504\">July 8, 2015</a></p></blockquote>\n<p></p>\n<p>Auto-recognition of <a href=\"https://youtrack.jetbrains.com/issue/WI-21339\" target=\"_blank\">common WordPress global variables</a> (global variable => classname) is also included in the latest release.</p>\n<p>Check out the version 9 tour video to see some of the new features in action:</p>\n<p><span class=\"embed-youtube\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 22:33:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Edit WordPress Email Templates in the Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/edit-wordpress-email-templates-in-the-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3806:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mailboxes.jpg?resize=1024%2C496\" alt=\"mailboxes\" class=\"aligncenter size-full wp-image-39214\" /></a></p>\n<p>Argentinian WordPress developer <a href=\"https://wp.timersys.com/\" target=\"_blank\">Damian Logghe</a> had never touched the <a href=\"https://codex.wordpress.org/Theme_Customization_API\" target=\"_blank\">Customizer API</a>, but with all the controversy swirling around it, he decided to jump in to see what all the fuss was about.</p>\n<p>“The customizer has been making a lot of noise lately, as we all know, bringing politics to WordPress, and by politics I mean people arguing but getting nowhere,” he said.</p>\n<p>“As a plugin developer I never coded with the customizer and I only used it as a front end user. But at the latest <a href=\"https://buenosaires.wordcamp.org/2015/\" target=\"_blank\">WordCamp Buenos Aires</a>, <a href=\"https://twitter.com/eliorivero\" target=\"_blank\">Elio Rivero</a> spoke about using the customizer in plugins, and I decided to give it a try instead of entering into debate. And you know what? I loved it!”</p>\n<p>Logghe was contracted to build a new WordPress site and was looking for an easy way to beautify WordPress’ default emails. He thought that the customizer would be the best choice for the job. After a week of development, he created <a href=\"https://wordpress.org/plugins/email-templates/\" target=\"_blank\">Email Templates</a>, the first plugin to enhance WordPress email templates using the customizer.</p>\n<p>Email Templates can be accessed under the Appearance menu. The plugin creates customizer panels for editing the template, email header, footer, and settings. It even includes the ability to send a test email.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-panels.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-panels.jpg?resize=1014%2C638\" alt=\"email-templates-panels\" class=\"aligncenter size-full wp-image-46399\" /></a></p>\n<p>Adding a logo to the top of your email template is as easy as uploading an image. You can also customize the alignment, background color, and header text. The plugin includes panels for changing the “from name” and “from email”, footer text, and basic template styles.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-logo.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/email-templates-logo.jpg?resize=1025%2C643\" alt=\"email-templates-logo\" class=\"aligncenter size-full wp-image-46401\" /></a></p>\n<p>After you finish your customizations, you can fire off a test email to see how the new template looks in your inbox. I tested the plugin and found that it works as advertised. Ordinarily, customizing WordPress’ default email template is not something your average user would attempt to do. The <a href=\"https://wordpress.org/plugins/email-templates/\" target=\"_blank\">Email Templates</a> plugin makes this accessible to anyone.</p>\n<p>Building with the Customizer API has solidified Logghe’s belief in its potential for the future of WordPress. His example of live previewing email templates is a creative use of the API in the context of a plugin.</p>\n<p>“In my opinion, the customizer is the right choice for every design change,” he said. “The API is extremely easy to use and previewing changes on the fly makes it awesome for every end user.</p>\n<p>“It is just matter of time until the waters get calm and everyone migrates to it. In a year or so, editing your theme without the customizer is going to feel strange.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 20:00:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: 39 WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45228\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2015/07/39-wordcamps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:220:\"<p>There have been 39 WordCamps already so far this year, <a href=\"https://wordpress.org/news/2015/07/wordcamps-update/\">here are a bunch more interesting stats about WordCamps including a list of upcoming ones.</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 15:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Joseph: WordCamp SLC 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://josephscott.org/?p=13154\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://josephscott.org/archives/2015/07/wordcamp-slc-2015/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1045:\"<p><a href=\"https://slc.wordcamp.org/2015/\">WordCamp Salt Lake City 2015</a> is coming September 12 at Washington Square ( 451 South State Street ). <a href=\"https://slc.wordcamp.org/2015/tickets/\">Tickets</a> are already on sale, only <a href=\"https://slc.wordcamp.org/2015/tickets/\">$18 each</a>. The <a href=\"https://slc.wordcamp.org/2015/attendees/\">attendees page</a> has a list of some of the people who have already signed up.</p>\n<p><a href=\"https://slc.wordcamp.org/2015/speakers/\">Speakers</a> are being <a href=\"https://slc.wordcamp.org/2015/news/\">announced on the news page</a>. If you area interested in presenting fill out the <a href=\"https://slc.wordcamp.org/2015/07/01/call-for-speakers/\">call for speakers form</a>. We are also looking for <a href=\"https://slc.wordcamp.org/2015/07/01/call-for-volunteers/\">volunteers</a> and <a href=\"https://slc.wordcamp.org/2015/07/01/call-for-sponsors/\">sponsors</a>.</p>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>Come learn and hang out with the local Utah WordPress community.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 14:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Joseph Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Napoleon Champagne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45221\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2015/07/napoleon-champagne/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:130:\"<blockquote><p>In victory you deserve champagne.</p>\n<p>In defeat you need it.</p>\n<p>— Napoleon Bonaparte</p></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 04:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: BuddySlack Plugin Sends BuddyPress Activities to a Slack Channel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46203\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/buddyslack-plugin-sends-buddypress-activities-to-a-slack-channel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4041:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/buddyslack.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/buddyslack.jpg?resize=656%2C300\" alt=\"buddyslack\" class=\"aligncenter size-full wp-image-46372\" /></a></p>\n<p>Not long after the WordPress project adopted Slack as its primary form of communication, David Bisset started using it to help <a href=\"http://davidbisset.com/organizing-a-conference-with-slack/\" target=\"_blank\">organize WordCamp Miami 2015</a>. The application added real time communication for organizers, speakers, volunteers, sponsors, and the public. He found it to be a helpful addition to the WordCamp’s conference communication tools.</p>\n<p>As a new fan of the platform, Bisset decided to build an extension for those who want to use Slack with BuddyPress. <a href=\"https://wordpress.org/plugins/buddyslack/\" target=\"_blank\">BuddySlack</a> is his first plugin released on WordPress.org. The bare bones plugin will send a notice to Slack whenever an activity stream item is generated by any of the following core components:</p>\n<ul>\n<li>Members</li>\n<li>Profiles</li>\n<li>Activity</li>\n<li>Groups</li>\n</ul>\n<p>The plugin allows you send your selected stream of activity posts to a particular channel, private group, or as a direct message to a user on your Slack team. It also includes an optional Slack settings panel within BuddyPress user profiles, allowing them to opt out of having their activities sent to Slack.</p>\n<p>In order to use the BuddySlack plugin, you’ll need to set up an incoming webhook via Slack, which can then be entered into the plugin’s settings panel.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/screenshot-1.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/screenshot-1.png?resize=1025%2C736\" alt=\"screenshot-1\" class=\"aligncenter size-full wp-image-46379\" /></a></p>\n<p>Bisset doesn’t plan on officially supporting the plugin but will add more features as time permits. He recognizes that it is currently somewhat limited, as it only supports sending activities for four default BuddyPress components. In the future, Bisset plans to expand it to support custom BP components as well as allow the user to customize the message sent to Slack.</p>\n<p>Ideally, the plugin would allow you to set certain trigger words so that you wouldn’t have to send the entire stream of activities from a selected component. Right now the best use for BuddySlack might be on a smaller social network that doesn’t have a constant stream of activities. For example, if the Groups component is used sparingly, sending group activity stream posts to a specific Slack channel could be useful. Being able to narrow it down to a specific group would be even better.</p>\n<p>The <a href=\"http://wptavern.com/wp-slack-plugin-sends-notifications-to-slack-based-on-events-triggered-in-wordpress\" target=\"_blank\">Slack plugin for WordPress</a> allows you to set up multiple integrations for sending notices to different channels. It also allows for sending test notifications and temporarily disabling notices. These might be a few handy features that could benefit <a href=\"https://wordpress.org/plugins/buddyslack/\" target=\"_blank\">BuddySlack</a>. Bisset is accepting pull requests if anyone wishes to <a href=\"https://github.com/dimensionmedia/buddyslack\" target=\"_blank\">contribute to the plugin on GitHub</a>.</p>\n<p>Slack integration via a plugin is also available for <a href=\"http://wptavern.com/bbpress-slack-integration-send-new-topics-and-replies-to-a-slack-channel\" target=\"_blank\">bbPress</a>, <a href=\"http://wordpress.org/plugins/slack-woocommerce\" target=\"_blank\">WooCommerce</a>, <a href=\"http://wordpress.org/plugins/slack-edd\" target=\"_blank\">Easy Digital Downloads</a>, <a href=\"http://wordpress.org/plugins/slack-contact-form-7\" target=\"_blank\">Contact Form 7</a>, and <a href=\"http://wordpress.org/plugins/slack-gravityforms\" target=\"_blank\">Gravity Forms</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2015 01:49:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Update Adobe Flash Immediately to Patch Critical Security Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wptavern.com/update-adobe-flash-immediately-to-patch-critical-security-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2384:\"<p>If you have Adobe Flash installed, you’ll want to make sure it’s updated to the <a href=\"https://get.adobe.com/flashplayer/\">latest version</a> as it patches a <a href=\"https://helpx.adobe.com/security/products/flash-player/apsa15-03.html\">critical security vulnerability</a>. According <a href=\"http://www.theregister.co.uk/2015/07/07/hacking_team_zero_days_flash_windows_kernel/\">to The Register</a>, confidential source code was stolen from <a href=\"http://www.theverge.com/2015/7/6/8899861/hacking-team-hacked-security-leak\">Hacking Team</a> and <a href=\"http://www.theregister.co.uk/2015/07/06/unified_cdm_static_password/\">leaked online</a>.</p>\n<p>Within the leaked source code, software vulnerabilities used by Hacking Team to break into PCs was discovered. Source code for the vulnerabilities is out in the open which means you should update as soon as possible. You’re at risk if you use the following:</p>\n<table border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"1\">\n<tbody>\n<tr>\n<td width=\"120\">Adobe Flash Player Desktop Runtime</td>\n<td width=\"120\">18.0.0.194 and earlier</td>\n<td width=\"120\">Windows and Macintosh</td>\n</tr>\n<tr>\n<td>Adobe Flash Player Extended Support Release</td>\n<td>13.0.0.296 and earlier</td>\n<td>Windows and Macintosh</td>\n</tr>\n<tr>\n<td>Adobe Flash Player for Google Chrome</td>\n<td>18.0.0.194 and earlier</td>\n<td>Windows, Macintosh and Linux</td>\n</tr>\n<tr>\n<td>Adobe Flash Player for Internet Explorer 10 and Internet Explorer 11</td>\n<td>18.0.0.194 and earlier</td>\n<td>Windows 8.0 and 8.1</td>\n</tr>\n<tr>\n<td width=\"60\">Adobe Flash Player</td>\n<td>11.2.202.468 and earlier</td>\n<td>Linux</td>\n</tr>\n<tr>\n<td>AIR Desktop Runtime</td>\n<td>18.0.0.144 and earlier</td>\n<td>Windows and Macintosh</td>\n</tr>\n<tr>\n<td>AIR SDK</td>\n<td>18.0.0.144 and earlier</td>\n<td>Windows, Macintosh, Android and iOS</td>\n</tr>\n<tr>\n<td>AIR SDK & Compiler</td>\n<td>18.0.0.144 and earlier</td>\n<td>Windows, Macintosh, Android and iOS</td>\n</tr>\n</tbody>\n</table>\n<p>Visit Adobe’s <a href=\"https://get.adobe.com/flashplayer/\">Flash Player download page</a> to determine which version you’re using and upgrade if necessary. In recent months, Adobe has fixed a <a href=\"https://helpx.adobe.com/security.html\">series of security vulnerabilities</a> in Flash. At this point, it may be safer to uninstall Flash all together.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 22:28:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Stack Exchange Blog Ditches WordPress for Jekyll\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/stack-exchange-blog-ditches-wordpress-for-jekyll\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4747:\"<p>Last week Stack Exchange <a href=\"http://blog.stackexchange.com/2015/07/the-new-stack-exchange-blog/\" target=\"_blank\">announced</a> its new blog, revamped to publish company news and engineering posts. The first post on the blog, written by Jon Chan, Stack Overflow’s developer evangelist, made no small amount of fanfare over <a href=\"http://blog.stackexchange.com/2015/07/how-we-built-our-blog/\" target=\"_blank\">migrating from WordPress to Jekyll</a>.</p>\n<p>Chan’s explanation of the team’s process cites a few curious reasons for their dissatisfaction with WordPress:</p>\n<blockquote><p>During the original proposal stage for the engineering blog, we also had a conversation about what engine we would use. At the time, all of our blogs were running WordPress…which we weren’t so happy about. It was very buggy, difficult to log in to, not very performant, and has caused our SRE team more than a few headaches. If we were really going to revamp the new company blog, it seemed like a lot of work to try and wrestle with our WordPress installation.</p></blockquote>\n<p>With a little bit of WordPress skill, these seem like easy complaints to resolve, especially given that Chan said the team was inspired by blogs like <a href=\"https://codeascraft.com/\" target=\"_blank\">Code as Craft</a> and <a href=\"http://oktrends.okcupid.com/\" target=\"_blank\">OkTrends</a>, both powered by WordPress. However, anti-WordPress sentiments continue to run high within the Stack Overflow community, which recently ranked the software as <a href=\"http://wptavern.com/stack-overflow-developer-survey-ranks-wordpress-as-the-3rd-most-dreaded-technology\" target=\"_blank\">the third most dreaded technology</a>.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/get-rid-of-wp.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/get-rid-of-wp.png?resize=800%2C528\" alt=\"photo credit: StackExchange Blog\" class=\"size-full wp-image-46331\" /></a>photo credit: <a href=\"http://blog.stackexchange.com/2015/07/how-we-built-our-blog/\">StackExchange Blog</a>\n<p>After a great deal of consideration, the Stack Exchange team opted to use a static engine, eventually landing on <a href=\"http://jekyllrb.com/\" target=\"_blank\">Jekyll</a>. Chan outlined the advantages they perceived in the move:</p>\n<ul>\n<li>Posts are in Markdown, something most of our company was familiar with</li>\n<li>Jekyll is just static site generation, so it’s much more performant</li>\n<li>Complete flexibility for front end work, no need to wrestle with templates</li>\n<li>Open source with a strong community, which we love</li>\n<li>Not WordPress or PHP</li>\n</ul>\n<p>Chan described the migration process, an endeavor that was fraught with obstacles. There is a <a href=\"http://wptavern.com/export-your-wordpress-blog-to-jekyll-with-one-click\" target=\"_blank\">Jekyll Exporter plugin</a> available to those who want to migrate their blogs over, but Stack Exchange opted to use the <a href=\"https://github.com/thomasf/exitwp\" target=\"_blank\">exitwp</a> tool to get them most of the way there.</p>\n<p>Since Jekyll doesn’t offer native support for comments, one of the biggest challenges in the migration was preserving that content and porting it into a new system. The Stack Exchange team decided to use <a href=\"https://disqus.com/\" target=\"_blank\">Disqus</a> for comments but were unable to properly migrate their existing comments and had to craft an alternative solution.</p>\n<p>“The worst part of this is how unsupported we were by the Disqus team,” Chan said. “We waited on the order of weeks for support responses and for over a month they went unresolved. Sending in official support tickets, emails, and posts on their Discuss forum went unnoticed.”</p>\n<p>Despite their unsatisfactory experience with Disqus and the fact that they have to sacrifice Stack Exchange login capabilities in order to use it, Chan said they will continue with it going forward.</p>\n<p>If you’re running a large, high profile blog on WordPress, it requires a certain level of expertise to customize themes and plugins and to ensure a high level of performance. It’s unclear whether or not the Stack Exchange team was lacking in expertise (based on some of the complaints cited) or simply unwilling to continue with WordPress after unsatisfactory experiences. No massive migration from one platform to another is ever going to be easy and bug-free, but Chan’s <a href=\"http://blog.stackexchange.com/2015/07/how-we-built-our-blog/\" target=\"_blank\">account</a> offers some valuable insight on how difficult it currently is to move from WordPress to Jekyll while preserving all of your content.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 21:29:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: HeroPress Ends Experiment With WPChat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wptavern.com/heropress-ends-experiment-with-wpchat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2781:\"<p>Since March of this year, <a href=\"http://heropress.com/\">HeroPress</a> has published inspirational essays from people all over the world. Instead of allowing comments on the site itself, Topher DeRosia, founder of HeroPress, partnered with <a href=\"http://www.wpchat.com\">WPChat</a> to host conversations for each essay. Unfortunately, many of the articles received little feedback.</p>\n<p>Starting this week, DeRosia is allowing contributing writers <a href=\"http://heropress.com/thoughts-on-comments/\">to decide</a> whether they want comments enabled on their essay or not. “I made the decision to have no comments because I wanted the essays to stand alone, with one voice, that being the voice of the contributor.” DeRosia told the Tavern.</p>\n<p>Directing people to a third-party site is an odd way to generate a conversation around an article. DeRosia explains why he chose to host comments on WPChat, “I chose to attach WPChat to the project because it seemed like a good way for readers to express themselves without marring the surface of the essay itself.”</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/HeroPress3SurveyOnWPChat.png\"><img class=\"size-full wp-image-46347\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/HeroPress3SurveyOnWPChat.png?resize=816%2C594\" alt=\"Example of a Conversation on WPChat About a HeroPress Essay\" /></a>Example of a Conversation on WPChat\n<p><em><a href=\"https://wpchat.com/t/isolated-and-intrigued-heropress-essay-3/796\">Isolated and intrigued</a></em> as well as <em><a href=\"https://wpchat.com/t/finding-stability-in-wordpress/893\">Finding stability in WordPress</a></em> are two examples where great conversations took place on WPChat. However, these conversations are few and far between. “That leads me to believe there could be more quality input out there and people are simply not interested in making an extra account to comment,” said DeRosia.</p>\n<p>Contributors who choose to enable comments don’t need to worry about moderation. DeRosia will heavily moderate comments with a zero tolerance policy for trolls. As for WPChat hosting future conversations, DeRosia says, “I like WPChat but in this case, I simply don’t think it’s the tool for the job.”</p>\n<p>Comments connect authors to readers and are an <a href=\"http://wptavern.com/why-comments-still-matter\">important part of the internet</a>. Sometimes, the feedback is better than the post itself. However, requiring readers to register to a forum to comment on articles hosted on a different site is too high of a roadblock. The commenting process should be as smooth and simple as possible. Enabling comments on HeroPress is a step in the right direction.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 20:29:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Customer Success?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/07/customer-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"<p>“Customer support, when done well, is a career.” Automattic’s support lead Andrew Spittle on <a href=\"http://andrewspittle.com/2015/07/02/customer-success/\">customer success vs customer support</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2015 03:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: BuiltWith Reports a 7% Increase in WordPress’ Usage from January – July 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/builtwith-reports-a-7-increase-in-wordpress-usage-from-january-july-2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4602:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/chart.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/chart.jpg?resize=1025%2C511\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-46313\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/S3JE5YAMND\">Luis Llerena</a>\n<p>BuiltWith, the popular service dedicated to monitoring internet technology trends and providing platform usage analytics, released its bi-annual <a href=\"http://blog.builtwith.com/2015/07/06/entire-internet-cms-usage-january-july-2015/\" target=\"_blank\">internet coverage report for CMS usage from January – July 2015</a>. The report shows that WordPress, which accounts for 48% of total CMS’s tracked, added 1.1 million domains since January.</p>\n<blockquote><p>WordPress has been found on an additional 1.1 million domains since January but only accounts for a 7% increase in customer base. Whereas Ghost was added to 2,184 domain home pages and accounts for a 17% increase in their customer base.</p></blockquote>\n<p>The title of the summary is “CMS Market Share Increases by Install Base,” but WordPress is the only CMS shown in the chart with an actual market share value assigned based on its place among tracked competitors.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/builtwith-cms-marketshare-june-2015-report.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/builtwith-cms-marketshare-june-2015-report.png?resize=600%2C793\" alt=\"builtwith-cms-marketshare-june-2015-report\" class=\"aligncenter size-full wp-image-46289\" /></a></p>\n<p>BuiltWith indexed 328,852,063 domains during this quarter. Instead of simply showing the increase by usage numbers, the summary focuses on the percentage increase in customer base for a more interesting comparison. When commenters noted that this is not, in fact, market share data, Ghost co-founder John O’Nolan replied, “Relative growth compared to existing size is pretty much the only sane measure.”</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/JohnONolan\">@JohnONolan</a> Strange perspective. Ghost added 17% or 2,184 domains. WordPress added 7% or 1,149,956. That\'s only 535 times more sites ;)</p>\n<p>— Aigars Silkalns (@AigarsSilkalns) <a href=\"https://twitter.com/AigarsSilkalns/status/618368722613497856\">July 7, 2015</a></p></blockquote>\n<p></p>\n<p>Oddly, the report did not share any figures for <a href=\"http://trends.builtwith.com/cms/Drupal\" target=\"_blank\">Drupal</a> or <a href=\"http://trends.builtwith.com/cms/Joomla!\" target=\"_blank\">Joomla</a>, which <a href=\"http://w3techs.com/technologies/overview/content_management/all\" target=\"_blank\">W3techs estimates as WordPress’ closest CMS competitors</a> in terms of market share. BuiltWith’s summary appears to be limited to the fastest growing platforms based on percentage increase in customer base.</p>\n<p>The CMS report also included some interesting stats on the WordPress versions it detected on sites indexed. These numbers roughly correspond to the project’s <a href=\"https://wordpress.org/about/stats/\" target=\"_blank\">version usage stats</a>, although WordPress doesn’t publish numbers for versions older than 3.0. BuiltWith found that 1748 websites are still running on WordPress 2.1, released eight years ago. This number is down 259 sites since the beginning of the year.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-versions.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-versions.png?resize=600%2C545\" alt=\"photo credit: BuiltWith\" class=\"size-full wp-image-46308\" /></a>photo credit: <a href=\"http://blog.builtwith.com/2015/07/06/entire-internet-cms-usage-january-july-2015/\">BuiltWith</a>\n<p>According to Gary Brewer, founder of BuiltWith, “Wix and Squarespace’s main acquisition for existing websites that are using a CMS are from WordPress sites.” He also notes that WordPress continues to dominate without the help of celebrity advertisements. <a href=\"https://www.youtube.com/watch?v=mjhZ11vGl1Q\" target=\"_blank\">Wix’s ad with Heidi Klum</a> and <a href=\"https://www.youtube.com/watch?v=BKIlfLReHyo\" target=\"_blank\">Squarespace’s Jeff Bridges commercial</a>, which aired during the Super Bowl, are evidence of both companies’ massive marketing budgets. WordPress.com, the world’s leading provider of free WordPress sites, has yet to explore that route.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2015 23:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: New Proposal on Trac to Remove Post Formats from WordPress Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45949\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/new-proposal-on-trac-to-remove-post-formats-from-wordpress-core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4154:\"<p><a href=\"http://codex.wordpress.org/Post_Formats\">Post Formats</a> is a feature introduced in WordPress 3.1 that enables themes to visually differentiate between types of content. A<a href=\"http://wptavern.com/post-format-history-and-wordpress-3-6\"> metabox with radio buttons</a> was added in WordPress 3.6 to expose the feature to users and allow them to easily select a format. Since WordPress 3.6 was released, there has been <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=closed&status=new&status=reopened&status=reviewing&component=Post+Formats&order=priority\">little effort</a> to improve the feature.</p>\n<p>Morten Rand-Hendriksen <a href=\"http://wptavern.com/wordpress-trainer-morten-rand-hendriksen-on-common-pain-points-roadblocks-and-advice-for-new-users\">teaches WordPress</a> to thousands of people through <a href=\"http://www.lynda.com/WordPress-tutorials/WordPress-Essential-Training/154417-2.html\">Lynda.com</a>. After spending time writing training materials for post formats, Hendriksen was reminded of how much post formats shouldn’t be in WordPress core.</p>\n<p>He’s created a <a href=\"https://core.trac.wordpress.org/ticket/32844\">new ticket on trac</a> suggesting post formats be removed from WordPress and placed into a plugin similar to how the link manager and blogroll <a href=\"https://codex.wordpress.org/Links_Manager\">were removed</a> in WordPress 3.5.</p>\n<blockquote><p>After the termination of Post Formats UI, it appears the feature has largely been left to pasture and implementation across themes is at best spotty and inconsistent. One example of this is how different Post Formats are treated in the default themes, culminating in the minimalist/absent inclusion in Twenty Fifteen.</p></blockquote>\n<p>Hendriksen lists six key arguments that come up when discussing the removal of post formats from WordPress:</p>\n<ul>\n<li>Feature support is inconsistent across themes causing users to wonder why the panel and options appear and disappear when themes are switched.</li>\n<li>When implemented, behavior is inconsistent between themes causing a perception of arbitrary or broken behavior in the eyes of the user.</li>\n<li>Specification for what exactly each post format does is vague and ambiguous giving theme developers too much room to come up with arbitrary and non-standard behaviors that cause user confusion when themes are switched.</li>\n<li>The use case for Post Formats seems to have gone away or have been supplanted for the larger goal of making modular, Snowfall-like post editing available.</li>\n<li>Post Formats behavior can be mimicked by theme developers through the use of Categories or other custom taxonomies.</li>\n</ul>\n<p>Applying the <a href=\"https://en.wikipedia.org/wiki/Pareto_principle#In_software\">80/20 rule</a> to software development, Hendriksen believes post formats is in the 20% range or lower. He ends the ticket by proposing post formats be moved into a feature plugin.</p>\n<p>This would allow it to be improved concurrently with WordPress and open up opportunities to experiment with different implementations and ideas. Alternatively, it could be abandoned if no interest is shown to improve it.</p>\n<h2>Move Post Formats to a Plugin</h2>\n<p>My opinion of Post Formats hasn’t changed since the <a href=\"http://wptavern.com/why-arent-post-formats-in-wordpress-more-popular\">last time I wrote about them</a>. They’re still unpredictable, I don’t see many sites using them, and they’re tough to explain to new users.</p>\n<p>Considering post formats dramatically impact the presentation of content, it’s strange that the core team has not continually improved the feature after 3.6. By now, they should be rock solid. Instead, it’s a feature with no obvious future.</p>\n<p>Although you can leave a comment on this post, the best place to leave feedback is in this <a href=\"https://core.trac.wordpress.org/ticket/32844\">trac ticket</a>. It’s time WordPress core developers got involved with the conversation to let us know what they think about the future of post formats in WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2015 18:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: WordPress 4.3 Improves User Search and Turns Comments Off on Pages by Default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://wptavern.com/wordpress-4-3-improves-user-search-and-turns-comments-off-on-pages-by-default\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4001:\"<p><a href=\"http://wptavern.com/wordpress-4-3-beta-1-now-available-for-testing\" target=\"_blank\">WordPress 4.3 beta 1</a> was put into the hands of testers last week. Those who have been following 4.3 developments are already familiar with the major features headlining this release, ie. the new <a href=\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\" target=\"_blank\">site icons</a>, <a href=\"http://wptavern.com/menu-customizer-officially-approved-for-merge-into-wordpress-4-3\" target=\"_blank\">menu management in the customizer</a>, and <a href=\"https://core.trac.wordpress.org/ticket/32589\" target=\"_blank\">more secure passwords</a>. However, there are also a couple lesser-known improvements that will have a positive impact on millions of WordPress users.</p>\n<h4>Improved User Search</h4>\n<p>Searching for users in the admin is about to get much easier, thanks to work on a <a href=\"https://core.trac.wordpress.org/ticket/27304\" target=\"_blank\">ticket</a> opened by John Blackbourn 16 months ago. He notes that “only the user_login (username) and user_nicename (sanitized username) fields are searched,” excluding the following more likely fields:</p>\n<ul>\n<li>First name</li>\n<li>Last name</li>\n<li>Nickname</li>\n<li>Display name</li>\n</ul>\n<p>This issue was especially problematic in large, multi-thousand member multisite installations where finding a user in the admin often meant knowing exactly what to query and then paging through results. WordPress 4.3 contributions from <a href=\"https://profiles.wordpress.org/mordauk\" target=\"_blank\">Pippin Williamson</a> and <a href=\"https://profiles.wordpress.org/wonderboymusic\" target=\"_blank\">Scott Taylor</a> make it possible to <a href=\"https://core.trac.wordpress.org/changeset/32980\" target=\"_blank\">search by the user’s email, URL, and display name</a>.</p>\n<h4>Comments Turned Off on Pages by Default</h4>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/comments-off-on-pages-by-default.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/comments-off-on-pages-by-default.jpg?resize=962%2C323\" alt=\"comments-off-on-pages-by-default\" class=\"aligncenter size-full wp-image-46275\" /></a></p>\n<p>WordPress 4.3 will also bring a welcome change to turn off comments on pages by default. In the future when you create pages, you won’t have to remember to go into the discussion settings to disable comments. One might think this would be a simple little thing to change, but quite a bit of discussion has gone into crafting the best solution to the <a href=\"https://core.trac.wordpress.org/ticket/31168\" target=\"_blank\">ticket</a> opened five months ago.</p>\n<p>This change also applies to all custom post types. Mel Choyce outlined the new behavior in a <a href=\"https://make.wordpress.org/core/2015/07/06/comments-are-now-turned-off-on-pages-by-default/\" target=\"_blank\">post</a> on the make.wordpress.org/core blog:</p>\n<blockquote><p>Post registrations that don’t explicitly add support for comments will now default to comments being off on new posts of that type (before, they defaulted to on). Up until now, post type support for comments has only affected admin UI; a developer could omit comment support on registration but still allow comments to be posted. <strong>This is a change in behavior</strong>, and we will be closely monitoring its effects during beta. Moving to explicit support will allow core behavior to be more predictable and robust in the future, but we will always consider real-world usage.</p></blockquote>\n<p>The change also comes with a new function and a filter that you can use to restore the current behavior of comments to your post type, if necessary. More details and an example on how to use the filter are available on the make.wordpress.org/core announcement <a href=\"https://make.wordpress.org/core/2015/07/06/comments-are-now-turned-off-on-pages-by-default/\" target=\"_blank\">post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2015 05:07:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Why We Encrypt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://ma.tt/2015/07/why-we-encrypt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"<p>From one of the best blogs on the internet, <a href=\"https://www.schneier.com/blog/archives/2015/06/why_we_encrypt.html\">Bruce Schnier writes on Why We Encrypt</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2015 04:46:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Akismet: Akismet WordPress Plugin 3.1.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://blog.akismet.com/2015/07/06/akismet-3-1-3-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1014:\"<p>Version 3.1.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update addresses an issue causing some users to see blank Akismet settings screens. After installing this update, the settings screen should either load successfully, or it will display an error message with instructions for fixing the problem.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1854/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1854/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1854&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 23:49:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Jetpack 3.6 Adds the Ability to Manage Your Connections to Jetpack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wptavern.com/jetpack-3-6-adds-the-ability-to-manage-your-connections-to-jetpack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3928:\"<p>Jetpack 3.6 <a href=\"http://jetpack.me/2015/07/06/jetpack-3-6-updated-social-widgets-jetpack-cli-and-more/\">is available</a> and has <a href=\"https://wordpress.org/plugins/jetpack/changelog/\">several bug fixes and enhancements</a>. <a href=\"http://jetpack.me/support/jetpack-cli/\">Jetpack CLI</a> which is a command line interface for Jetpack and extends off of <a href=\"http://wp-cli.org/\" target=\"_blank\">wp-cli</a> for WordPress, has undergone a number of improvements. There are a handful of new extra sidebar widgets, including Facebook Like Box, and Social Media Icons.</p>\n<p>Existing widgets such as Top Posts are more configurable. The Top Posts and Pages widget now allows you to show or hide different page types from the widget. For example, if you only want to show post and page results, check the boxes for Posts and Pages in the widget configuration area.</p>\n<p>The new Facebook Like box widget is streamlined and looks much better than its predecessor.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/NewJetpackFacebookWidget.png\"><img class=\"size-full wp-image-46248\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/NewJetpackFacebookWidget.png?resize=332%2C310\" alt=\"New Jetpack Facebook Widget is Streamlined\" /></a>New Jetpack Facebook Widget is Streamlined\n<p>There’s a social media icons widget that’s great for themes that don’t already have a built-in method of displaying social networking connections. Simply place it in the sidebar and apply your username to each service you use. On the Tavern test site, the icons were a little too small for my liking but I realize this is an issue with the theme we use.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/SocialMediaIconsWidget.png\"><img class=\"size-full wp-image-46249\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/SocialMediaIconsWidget.png?resize=335%2C128\" alt=\"Social Media Icons Widget\" /></a>Social Media Icons Widget\n<p>Jetpack 3.6 also introduces a connection manager where users can manage a site’s <a href=\"http://jetpack.me/support/primary-user/\">Primary User</a>, see any other connected users, and/or manage your connection to WordPress.com. The team says there are plans to add additional features to My Jetpack in future versions.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/JetpackConnectionManager.png\"><img class=\"size-full wp-image-46247\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/JetpackConnectionManager.png?resize=1025%2C383\" alt=\"Jetpack Connection Manager\" /></a>Jetpack Connection Manager\n<p>In a sign of the times, <a href=\"http://www.stumbleupon.com/\">StumbleUpon</a> is no longer an option in the sharing module. Email sharing now uses <a href=\"https://developers.google.com/recaptcha/intro\">reCAPTCHA 2.0</a> to verify human behavior. Stats are more accurate as previewing posts and pages no longer count as pageviews.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/AvailableSharingButtons.png\"><img class=\"size-full wp-image-46229\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/AvailableSharingButtons.png?resize=778%2C345\" alt=\"StumbleUpon Sharing Button Retired from Jetpack\" /></a>StumbleUpon Sharing Button Retired from Jetpack\n<p>Jetpack Carousel supports HTML 5 and the Slideshare shortcode is fixed. Deprecated card types for Twitter cards are removed and the Facebook share button now shows up for the Australian and Canadian locale.</p>\n<p>Upgrade to <a href=\"https://wordpress.org/plugins/jetpack/\">Jetpack 3.6</a> to take advantage of the numerous bug fixes and enhancements. If you’d like to be the first to test new features and help Jetpack users experience fewer problems, consider participating in the <a href=\"http://wptavern.com/jetpack-relaunches-beta-testing-program\">Jetpack Beta testing program</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 22:58:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Pressnomics 4 Set for March 3-4, 2016 in Phoenix, AZ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46236\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/pressnomics-4-set-for-march-3-4-2016-in-phoenix-az\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2822:\"<p>Pressnomics <a href=\"http://pressnomics.com/2015/07/announcing-dates-for-pressnomics-4/\">has announced</a> that the 4th iteration of the event will take place on March 3-4, 2016 at Tempe Mission Palms Hotel, Phoenix, AZ. Started in 2012 by Joshua Strebel of <a title=\"http://page.ly\" href=\"http://page.ly\">Pagely,</a> Pressnomics is a conference dedicated to the business aspects of WordPress, whether it is software as a service, commercial themes and plugins, or development agencies.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/Pressnomics4Dates.png\"><img class=\"aligncenter size-full wp-image-46243\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/Pressnomics4Dates.png?resize=655%2C240\" alt=\"Date for Pressomics 4\" /></a>When the event concluded last year, there was talk of it being moved to Europe for 2016. Despite the event taking place in the US in 2016, I asked Strebel if plans to host Pressnomics in Europe or even a branch of the conference are still on the table?</p>\n<blockquote><p>We are conversing with folks in Europe to try to make something happen in 2016, in addition to, Pressnomics 4 in Phoenix. Rather than ice everything until all details are final, we decided to swing and see if we can make both happen.</p></blockquote>\n<p>Tickets go on sale <strong>September 1st, 2015 at 10AM PST</strong>. Despite feedback from attendees that ticket prices should increase, event co-organizer Sally Strebel, says prices will remain roughly the same as last year.</p>\n<blockquote><p>I’ve been told by numerous people that we should increase the cost of tickets for this event and that they go to other conferences that cost more and return less value.</p>\n<p>Thank you for looking out for us and I truly value your opinion, however we have decided to keep costs essentially the same as last year because it’s not about the money. It’s about giving back. We look forward to growing our businesses together.</p></blockquote>\n<p>Companies immediately applied to be sponsors within minutes of receiving sponsorship information. Those companies include, GoDaddy, Envato, Sucuri, iThemes, Easy Digital Downloads, and more.</p>\n<p>I had the privilege <a href=\"http://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3\">to attend Pressnomics 3</a> and it was by far one of the most unique WordPress conferences I’ve attended. Compared to WordCamps, the atmosphere is much different and you can tell speakers are more open and relaxed since sessions are not recorded.</p>\n<p>March is a great time of year to host a conference in Phoenix. If Pressnomics 3 is anything to go by, Pressnomics 4 will be amazing. If you have the opportunity to attend Pressnomics 4, I highly suggest doing so as it’s a memorable experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 22:48:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: PHP 4 Style Constructors Will Be Deprecated in WordPress 4.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/php-4-style-constructors-will-be-deprecated-in-wordpress-4-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1730:\"<p>PHP 4 style constructors are being deprecated in WordPress 4.3 to ease the transition to support PHP 7. According to Aaron Jorbin, on the <a href=\"https://make.wordpress.org/core/2015/07/02/deprecating-php4-style-constructors-in-wordpress-4-3/\">Make WordPress Core blog post</a>, WordPress <a href=\"https://core.trac.wordpress.org/changeset/32990\">r32990</a> introduces a change so that all classes use the PHP 5 style constructors, while still retaining the PHP 4 style constructors for backwards compatibility.</p>\n<p>A deprecated_constructor warning that follows the same rules as <a href=\"https://developer.wordpress.org/reference/functions/_deprecated_function/\">deprecated_function</a> will also be displayed for WordPress classes that are not external libraries</p>\n<p><a href=\"http://chriscct7.com/\">Chris Christoff</a>, who contributes to WordPress core, <a href=\"https://gist.github.com/chriscct7/d7d077afb01011b1839d\">generated a list of plugins</a> on the WordPress plugin directory that have widgets calling <code>WP_Widget::WP_Widget()</code> and/or <code>parent::WP_Widget()</code> and/or <code>{object}->WP_Widget()</code>.</p>\n<p>The list includes more than 4,000 plugins and contains the author, title, and slug. Plugin authors should check the list to see if your plugin is listed. Even if it’s not, you’re still encouraged to make sure you’re not using a PHP 4 style constructor in your code.</p>\n<p>If you use any of the plugins listed, please create a support forum thread with a link to the <a href=\"https://make.wordpress.org/core/2015/07/02/deprecating-php4-style-constructors-in-wordpress-4-3/\">Make WordPress Core blog post</a> and politely ask them to update their plugin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 21:11:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Highlights of Matt Mullenweg’s Q&A Session at WordCamp Europe 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46152\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/highlights-of-matt-mullenwegs-qa-session-at-wordcamp-europe-2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5818:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/mullenweg-wordcamp-europe.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/mullenweg-wordcamp-europe.jpg?resize=1025%2C518\" alt=\"Kari Leigh | Found Art Photography\" class=\"size-full wp-image-46199\" /></a>Kari Leigh | <a href=\"http://www.found-art-photography.com/\" target=\"_blank\">Found Art Photography</a>\n<p>The video of <a href=\"http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/\" target=\"_blank\">Matt Mullenweg’s Q&A session at WordCamp Europe</a> is now published on WordPress.tv. For those who were unable to attend, this session provides a glimpse into what WordPress’ co-founder sees for the future of the software and the community.</p>\n<p>One of the most exciting parts of the video is where Mullenweg talks about the potential of WordPress.org to serve other languages and eventually expand avenues of core contribution to non-English speaking audiences.</p>\n<p>When asked what kind of contribution can be made to improve WordPress.org for Rosetta sites, themes, and plugins, Mullenweg replied:</p>\n<blockquote><p>Themes and plugins are undoubtedly the most important. To me, the next most important things are the Rosetta sites and having theme and plugin directories available on the Rosetta sites. There is actually a great example at <a href=\"https://ro.wordpress.org/\" target=\"_blank\">ro.wordpress.org</a>, which is the Romanian Rosetta site that shows both the potential and the problem:</p>\n<p>Now there are themes and plugins menu items there, which none of the Rosetta sites have had prior to this. But when you click on it you see mostly English in the plugin descriptions, even things like screenshots and tutorials.</p></blockquote>\n<p>He described these updates to WordPress.org as just a “hint of what could be amazing” one day. Mullenweg noted that despite Europe having 23+ recognized languages, attendees at the WordCamp were all speaking English. However, not all areas of the world are populated by people with bilingual capabilities.</p>\n<blockquote><p>I think it would be amazing to open up WordPress to have a first priority experience of the thousands of plugins and themes that are available for people who do not speak a word of English. Right now WordPress is just not accessible to that group. Luckily, over half the people in Europe are bilingual… In places where that’s a possibility, WordPress can still do well even though we don’t have a native experience in someone’s mother tongue.</p>\n<p>But English is only the third most popular language in the world and it’s not the fastest growing. There are huge audiences that I think would be an important part of the community. Someday I want it to be where, instead of things being translated from English to a different language, we’re getting core contributions translated from, say, Chinese or Hindi or Spanish, into English to be reviewed. We’re not looking to just how to translate plugins from English into other languages but vice versa. I think that will be when we’re successful.</p></blockquote>\n<p>In the same way that better language support opens up WordPress to a wider audience, Mullenweg believes that the customizer will open up the software for more non-technical users. During the Q&A he shared his thoughts on the future of the customizer:</p>\n<blockquote><p>As we currently are working, the customizer is the way forward…It essentially removes the fear and disconnect between wp-admin and the front end of a site. It’s a bridge that gives people the confidence to make changes while seeing those changes in real time. The real time feedback and safety net of seeing that, and being able to undo and redo things, is incredibly empowering, particularly for non-technical users who don’t know how to dive into CSS or the code. I personally believe that the work on the customizer is some of the most important going on in the WordPress project right now.</p></blockquote>\n<p>In addition to building the feature in a way that is responsive to mobile devices, Mullenweg noted that the customizer currently falls short on desktop:</p>\n<blockquote><p>The customizer is, for lack of a better word, a narrow interface, because it needs to show your site in addition to the admin. I think we need to do a better job of making sure that interface scales up as well as down, meaning that if you do have the space or would like to make it fullscreen, that it is responsive, so that it enlarges into an interface that probably looks and works much like the current wp-admin interface for being a fullscreen experience for editing and modifying menus, widgets, colors, fonts, header images, site title, all the things that are key to the presentation of your site.</p></blockquote>\n<p>It is curious that the customizer is being pushed through to WordPress 4.3 without the ability to scale up gracefully. If the situation were reversed, where the feature was unfriendly to mobile users, it seems less likely that it would have been deemed ready for core. This illustrates the WordPress project’s strong emphasis on being positioned to attract mobile users.</p>\n<p>Mullenweg encouraged attendees to keep an eye on the customizer, because he believes it will do a much better job than Wix and Squarespace when it comes to providing a user-friendly way to customizer websites.</p>\n<p>The entirety of the 66-minute long Q&A session is included in the video below. In addition to languages and the customizer, Mullenweg also answers questions about security, WordPress’ minimum PHP version, the possibility of multilingual features in core, and the importance of building for mobile.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 16:39:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: A Narrative of Using Composer in a WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wptavern.com/a-narrative-of-using-composer-in-a-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10900:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg?resize=150%2C150\" alt=\"petersuhm\" class=\"alignright size-thumbnail wp-image-43613\" /></a>This piece was contributed by guest author <a href=\"https://twitter.com/petersuhm\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n </p>\n<hr />\n<p>The other day I posted <a href=\"http://blog.wppusher.com/a-warning-about-using-composer-with-wordpress/\" target=\"_blank\">a warning about using Composer in WordPress plugins</a> on the WP Pusher blog. This post got a lot of attention and I feel the need to clarify a few points that were not all clear to everyone. The article was also a bit heavy on the technical stuff, so in this post I will try to make my main point more clear by using a simple narrative to illustrate it.</p>\n<h3>A narrative</h3>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/boxes.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/boxes.jpg?resize=1024%2C490\" alt=\"photo credit: Doors Open Toronto 2008 - Toronto Archives - (license)\" class=\"size-full wp-image-46150\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/25716750@N06/2527068003\">Doors Open Toronto 2008 – Toronto Archives</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Let’s imagine for a while that you and I are both plugin authors. Both of us have a great idea for a plugin we wish to distribute via WordPress.org. We want to include a few premium features in our plugins that users of the free version can unlock by entering a license key.</p>\n<p>We need some code that can handle this process. Both of us realize that this problem have probably already been solved by someone else. None of us are fans of reinventing the wheel, so we head over to Packagist and type in “license manager”. It looks like our assumption was justified. Yoast already has a package that can handle this. We both decide to do a quick <code>composer require yoast/license-manager</code>. Easy peasy. Now we can move on to work on something that really matters- the core features of our respective plugins.</p>\n<p>Fast forward, ready to release your plugin, you realize something: Your user doesn’t necessarily have Composer handy when installing your plugin from WordPress.org, so how are they going to get the code for the license manager? This situation is a bit annoying, because the only solution you really see is to just commit the whole Composer generated <code>vendor</code> directory to your plugin and push it to WordPress.org. You know this is not how Composer is supposed to work, but whatever. You don’t really have other options.</p>\n<p>Meanwhile, I have come to the same conclusion with my plugin. Just include the license manager code and be done with it.</p>\n<p>Fast forward once more, both our plugins now live in the WordPress.org repository and once in a while, someone decides to upgrade to our premium versions. Everything seems to be fine and we are both grateful that we could just use the code that Yoast had generously open sourced, and didn’t have to reinvent the wheel.</p>\n<p>One day, you receive a strange e-mail. A customer is experiencing some really strange behavior when trying to unlock your premium features. It makes no sense to you, because no one else ever reported this. After hours of debugging, you finally ask your customer to deactivate everything else, except your plugin, and then: It works! Hmm. Your plugin seems to somehow be incompatible with another plugin. My plugin.</p>\n<p>You realize this after hours of going through source code of all the other plugins the customer had installed. When you realize that we both use the license manager, a bell rings. Could this really be it? If so, how come no <code>fatal errors: cannot redeclare class</code> was caused by PHP?</p>\n<p>A week earlier, I had bumped the required version of the license manager in my plugin to the latest version, which included some (fictional) breaking changes. After even more debugging and <code>var_dump()</code>’ing, you realize that my version of the license manager is also the version loaded by PHP in your plugin. You find that really strange because you specifically required another version of the license manager with Composer. You don’t really know what to do about this.</p>\n<p>Because there really isn’t much you can do about it.</p>\n<h3>What happened here?</h3>\n<p>Now that we have all seen the problem, let’s take a moment to go through what actually happened in the narrative. First of all, why didn’t PHP cause a fatal error when two classes obviously had the same name that both of us included the license manager?</p>\n<p>The reason for this is that we used an autoloader generated by Composer. This autoloader scans the diretory structure of our dependencies and adds every class to the autoloader. If a class has already been added, Composer will ignore it. Silently. I have written a small code example if you want to see it for yourself. <a href=\"https://github.com/petersuhm/Illustrating-WordPress-Dependency-Issue\" target=\"_blank\">It’s on GitHub</a>.</p>\n<p>Why was my version of the license manager included before yours?</p>\n<p>This happened because my plugin had a name that caused it to be loaded before yours. Maybe, in the future, we will all name our plugins “Aaaaaa My Plugin” in order to be loaded first!</p>\n<p>So to sum up, the main issue here is that we won’t know which version of our dependencies are available to us at which time. It simply depends on factors we can’t fully control as plugin developers.</p>\n<h3>Is this a Composer specific issue?</h3>\n<p>No. It really isn’t. WordPress doesn’t have a way of dealing with third party code in plugins or themes. Therein lies the problem. The reason why I’m talking about Composer is that it is gaining a lot of traction these days. If WordPress developers want to use Composer in plugins released via WordPress.org, this needs to be solved somehow. Otherwise, we will see true chaos when all plugins starts to be incompatible with each other because they use different versions. Welcome to debugging hell.</p>\n<h3>What can we do about this?</h3>\n<p>Someone who has been really concerned about this and has worked hard to find a potential solution is <a href=\"https://twitter.com/CoenJacobs\" target=\"_blank\">Coen Jacobs</a>. I decided to reach out to Coen and ask him if he thinks there is anything we can do about this.</p>\n<p><strong>Many developers are already including 3rd party code in their plugins. Is this really a problem?</strong></p>\n<p>Yes, this is already a problem in the plugins ecosystem. It will become even worse when more people figure out it’s a good idea to put common functionality in separate packages. These packages can then be bundled with multiple plugins and the issue will appear more and more. I’ve been speaking to a couple developers who have already been through debug hell trying to find out what’s causing this issue.</p>\n<p><strong>Moving forward, would you suggest developers stop including 3rd party code in their plugins?</strong></p>\n<p>I’m a bit torn on this subject. It makes no sense from a developers point of view to tell people to stop bundling shared packages in their plugins. On the other hand, everybody wants the best possible user experience for their users. It’s a tough decision to make for sure.</p>\n<p>At this point, I want to push WordPress related development forward. I want to share libraries and use libraries shared by others. Nobody should be reinventing the wheel over and over again. So I would take the risk of running into issues like this, solving the problems as they show up.</p>\n<p>This also means that I’ll be doing my damned best to find a long term solution for this issue. More people will start using Composer, more people will bundle libraries with their plugins. This problem will show up more often, so it’s time to fix it.</p>\n<p><strong>What can plugin developers do to prevent this problem?</strong></p>\n<p>There is a workaround that I have seen some people use already. It basically comes down to moving your dependency to the namespace of your plugin. Danny van Kooten <a href=\"https://github.com/ibericode/scroll-triggered-boxes/commit/9ceef204073e4049b82833e96c0202a5754fd230\" target=\"_blank\">did this for one of his plugins</a>. This is not ideal however. Every time he updates his dependencies, he has to go through all the files and change the namespaces again. Now this is not such a big task for a relatively small library like Pimple, but a massive undertaking for larger libraries.</p>\n<p>This can only be done with namespaces though, so you’ll have to make your plugin require PHP 5.3+ as well. I’m not gonna lie, I think every plugin should start doing that sooner or later, but it’s definitely something you need to consider when you decide to do this.</p>\n<p><strong>What would the ideal solution be, if there is any?</strong></p>\n<p>The ideal situation would be using some sort of dependency manager. There is of course Composer, the most used dependency manager. Composer is very hard, if not impossible, to use for the vast majority of the WordPress users. It’s a developer’s tool after all.</p>\n<p>WordPress should make this easier for its end users, while still enabling developers to utilize pretty much any package they want. On this thought, I have started putting together the <a href=\"https://github.com/coenjacobs/wordpress-composer-installer\" target=\"_blank\">WordPress Composer Installer</a> plugin, which does all the hard Composer work while people install plugins as they always have. As soon as I am been able to finish this up, I’ll integrate it properly into the whole plugin installer flow.</p>\n<p>Now maybe one day, this can be integrated in core WordPress. It has a long way to go, but the proof of concept already works.</p>\n<h3>Conclusion</h3>\n<p>If you have been reading this far, first of all: Thank you. Second of all, I hope you now see how this is something that will eventually become a problem. Our current situation is very frustrating, because we simply don’t have the tools we need. Still, I think it’s important that we keep talking about this and make sure that we all, as WordPress developers, understand the potential issues caused by conflicting third party dependencies in our code.</p>\n<p>Finally, I want to mention one more time that this is not a Composer issue. It’s a WordPress issue.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 12:03:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Resonar: A Free WordPress Blog Theme Designed to Showcase Featured Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/resonar-a-free-wordpress-blog-theme-designed-to-showcase-featured-images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2501:\"<p><a href=\"https://wordpress.org/themes/resonar/\" target=\"_blank\">Resonar</a> is an elegant WordPress blog theme that was launched in mid-March on WordPress.com and is now available to self-hosted WordPress sites. This theme makes a big impact with its strong typography and fullscreen featured images.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-screenshot.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-screenshot.jpg?resize=660%2C495\" alt=\"resonar-screenshot\" class=\"aligncenter size-full wp-image-46158\" /></a></p>\n<p>Resonar was designed by <a href=\"http://takashiirie.com/\" target=\"_blank\">Takashi Irie</a>, the same designer for the Twenty Fifteen and Twenty Fourteen default themes. Irie’s designs are also behind the popular <a href=\"http://wptavern.com/espied-a-free-wordpress-portfolio-theme-for-designers-and-photographers\" target=\"_blank\">Espied</a> and <a href=\"https://wordpress.org/themes/ryu/\" target=\"_blank\">Ryu</a> themes.</p>\n<p>The homepage for Resonar is created by assigning a sticky post with a large featured image (ideally 2000px wide and 1500px high). If you frequently change this sticky post, your site will always have a fresh focal point on the homepage.</p>\n<p>If you’re looking for a theme that highlights longform posts, Resonar fits the bill with its unique styling for blockquotes, pull quotes, overhanging images.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-quotes.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/resonar-quotes.jpg?resize=660%2C915\" alt=\"resonar-quotes\" class=\"aligncenter size-full wp-image-46167\" /></a></p>\n<p>The centered blog layout keeps the focus on the content, but you don’t have to sacrifice widget areas to use the theme. Clicking on the ellipsis icon in the main menu will reveal a 576px-wide slide-out sidebar where you can drop in widgets and display a social links menu.</p>\n<p>As Resonar revolves around fullscreen featured images, you’ll need to be prepared to have a 2000px by 1500px image for each post in order to keep the theme looking its best. Check out the <a href=\"https://resonardemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see Resonar in action. Self-hosted WordPress blog owners can <a href=\"https://wordpress.org/themes/resonar/\" target=\"_blank\">download the theme from WordPress.org</a> or install it via the admin themes browser.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 04:41:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Matt: Trevor Noah & Jerry Seinfeld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45210\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ma.tt/2015/07/trevor-noah-jerry-seinfeld/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:425:\"<p> </p>\n<p><a href=\"http://comediansincarsgettingcoffee.com/trevor-noah-thats-the-whole-point-of-apartheid-jerry\">Trevor Noah, the new host of the Daily Show, was on Jerry Seinfeld’s Comedians in Cars Getting Coffee show</a>, and it was quite interesting. I really love this show, even when it’s slow you get some fun thoughts. I would embed the video but that doesn’t seem possible.</p>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2015 03:24:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Automattic Challenge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/07/automattic-challenge/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:313:\"<p>“We have two interesting challenges for you – to write the shortest code possible and to write the fastest code possible.” One of the prizes is a conference ticket and three nights in a hotel. Check it out over at the <a href=\"http://automattic.paris/\">Automattic React Europe Challenge</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 05 Jul 2015 05:50:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: New VideoPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://ma.tt/2015/07/new-videopress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:283:\"<p><a href=\"https://en.blog.wordpress.com/2015/07/01/videopress-next/\">We launched a shiny new version of VideoPress</a> that makes mobile better, is way faster, has a sleek UI, and is HTML5. This is targeted at WordPress.com users right now, but will expand for everyone soon.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Jul 2015 05:56:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: Automattic Overhauls VideoPress and Open Sources Technologies Used to Build It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wptavern.com/automattic-overhauls-videopress-and-open-sources-technologies-used-to-build-it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2837:\"<p><a href=\"http://videopress.com/\">VideoPress</a>, Automattic’s video hosting service, has undergone a <a href=\"https://en.blog.wordpress.com/2015/07/01/videopress-next/\">complete overhaul</a>. The video player is now responsive and adjusts well to mobile devices. Videos can be embedded anywhere and are easier to share, thanks to permalinks.</p>\n<p>There’s also a couple of neat options for sharing videos. Similar to YouTube, you can select a time stamp where the video will start playing. You can also loop and autoplay videos.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/VideoPressSharingOptions.png\"><img class=\"wp-image-46114 size-full\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/VideoPressSharingOptions.png?resize=566%2C319\" alt=\"VideoPress Sharing Options\" /></a>VideoPress Sharing Options\n<p>One thing I noticed is that pasting a VideoPress permalink into the self hosted WordPress visual editor does not load the video. This is because WordPress does not have <a href=\"https://codex.wordpress.org/Embeds\">oEmbed support</a> for VideoPress.</p>\n<p>To embed videos into posts, you need to copy the HTML embed code from the video and past it into the WordPress text editor. Pasting the code into the visual editor doesn’t work. Guillermo Rauch, who works on the VideoPress team at Automattic says they are <a href=\"https://en.blog.wordpress.com/2015/07/01/videopress-next/?c=221756#comment-221760\">working on adding oEmbed support</a>.</p>\n<p>The new video player takes up little space and is unbranded. According to Rauch, the player’s skin and behavior is controlled by JavaScript, HTML and CSS. This opens the door for customizations by theme developers in the future. Thanks to major performance enhancements, pages with videos on them will load faster, even for those on slow internet connections. Here’s an example of a video using the new player.</p>\n<p></p>\n<p></p>\n<p>A feature that I think a lot of people will enjoy is real-time seek which lets you skim through videos and helps you start playing at a desired point. Last but not least, the libraries used to build the new video player have been open sourced, including <a href=\"https://github.com/automattic/jpeg-stream\">jpeg-stream</a>, <a href=\"https://github.com/automattic/pixel-stack\">pixel-stack</a>, and <a href=\"https://github.com/automattic/video-thumb-grid\">video-thumb-grid</a>.</p>\n<p>If you’re interested in using VideoPress, you need a <a href=\"https://wordpress.com/plans/\">Premium or Business</a> plan on WordPress.com. The premium plan is $99 per year and includes 13GB of space. Videos take up a lot of space and one has to wonder if it’s worth the cost or if YouTube is a better option. If you use VideoPress, let us know what you think of these improvements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Jul 2015 03:46:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Matt: Domain Anonymity and the Brilliance of Entertainment Lobbyists\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45202\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://ma.tt/2015/07/domain-anonymity-and-the-brilliance-of-entertainment-lobbyists/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1747:\"<blockquote><p>To rid the internet of piracy, entertainment companies are willing to greatly reduce privacy, at least where website registration is concerned.</p>\n<p>Where the entertainment industry views proxy registration as a pirate’s tool for obfuscation, privacy advocates see identity concealment as a feature that can enable free speech and freedom from harassment.</p></blockquote>\n<p>So there’s <a href=\"http://www.buzzfeed.com/hamzashaban/proposed-domain-name-rule-threatens-website-owner-anonymity\">a new proposal to force any “commercial” website, which could cover pretty much anything, to have real WHOIS/contact info</a>. This is a terrible idea, and of course there are already ample and simple means to bypass proxy services being actually abused with a court order. But they want to go a step further, so potentially a parenting blogger with ads or affiliate links on their site would be forced to put their actual home address and phone number in a public directory anyone on the internet can access, or break the law. What could go wrong? <a href=\"https://www.eff.org/deeplinks/2015/06/changes-domain-name-rules-place-user-privacy-jeopardy\">EFF has more about why this impacts user privacy</a>.</p>\n<p>I think the better question here, is <em>when has the entertainment industry <strong>ever</strong> proposed something good for consumers or the internet?</em> I’m not kidding, 100% serious: have they ever been right?</p>\n<p>It seems like a good approach for governing bodies like FCC, ICANN, or Congress to just blanket oppose or do the opposite of what MPAA or COA propose, and they’ll be on the right side of history and magically appear to be a very tech-savvy candidate or regulator.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 22:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: Lasso Adds Real Time Revision Restoring to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wptavern.com/lasso-adds-real-time-revision-restoring-to-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3491:\"<p>This week Nick Haskins launched an update to <a href=\"https://lasso.is/\" target=\"_blank\">Lasso</a>, which introduces real time revision restoring. Lasso, a plugin originally designed to improve the experience of using of <a href=\"http://aesopstoryengine.com/\" target=\"_blank\">Aesop Story Engine</a>, is currently one of the most user-friendly and well-supported attempts at bringing frontend editing to WordPress.</p>\n<p>The plugin works with or without Aesop Story Engine. Lasso brings a minimal, unobtrusive approach to editing that keeps the focus on content creation. Haskins hopes to ship <a href=\"https://lasso.is/the-road-to-version-one/\" target=\"_blank\">version 1.0</a> of the plugin this fall, and the source was recently <a href=\"http://wptavern.com/lasso-frontend-editing-plugin-for-wordpress-now-available-on-github\" target=\"_blank\">made available to developers and testers on GitHub</a>.</p>\n<p>“Our goal is simple: be a front-end editor that negates the use of the WordPress post editor,” Haskins said. “One of the last areas to tackle in this endeavor was revisions.”</p>\n<p><a href=\"https://lasso.is/0-9-6-release-notes/\" target=\"_blank\">Lasso 0.9.6</a> allows users to restore revisions in real time while editing a post on the front end. The plugin introduces a new and unique approach to displaying revisions, removing the default “diff style” comparison in favor of a simpler sliding interface.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/lasso-revisions.gif\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/lasso-revisions.gif?resize=948%2C723\" alt=\"lasso-revisions\" class=\"aligncenter size-full wp-image-46097\" /></a></p>\n<p>Lasso displays the last six revisions and users can click on the time to restore a revision live. It functions like a little piece of magic on the front end.</p>\n<p>“Because Lasso already operates within the post_content, there wasn’t really a huge technical challenge to overcome,” Haskins said. “The biggest bottle neck was finding a way to do this that would cause no confusion.</p>\n<p>“WordPress revisions use a “diff style” comparison, which I don’t think benefits 80% of WordPress users. After all they’re not coders. So we decided to restore the post as it was, and most importantly, the context that it lives in,” he said.</p>\n<p>The live revisions restoring supports images, markup, and everything else that you would expect to be parsed into HTML, but Haskins has a few outstanding items he hopes to polish up.</p>\n<p>“Things like shortcodes and ombeds are not processed into HTML as they need a page refresh, so finding a way to parse these live is just about the only technical challenge that we still have to overcome,” he said. “This doesn’t prevent things from working, but I think a user expects these items to show as they appear on site.”</p>\n<p>This is the first time a plugin author has done anything like this with revision display and restore. It transforms the process of reviewing revisions into a visual and interactive experience. Removing the “diff style” comparison makes it much easier for the average content creator to decide on which revision to restore. If you want to test it out or take a closer look at how it works, check out <a href=\"https://github.com/AesopInteractive/lasso\" target=\"_blank\">Lasso on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 19:19:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: WordPress 4.3 Beta 1 Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wptavern.com/wordpress-4-3-beta-1-now-available-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3292:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?resize=960%2C474\" alt=\"testing\" class=\"aligncenter size-full wp-image-46092\" /></a></p>\n<p>WordPress 4.3 is right around the corner with <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\" target=\"_blank\">beta 1</a> released and ready for testing. According to the <a href=\"https://make.wordpress.org/core/version-4-3-project-schedule/\" target=\"_blank\">4.3 project schedule</a>, there will be no more commits for new enhancements or feature requests from this point on. Contributors are now focusing on bug fixes and documentation ahead of August 18th, the target release date.</p>\n<p>With all the controversy surrounding WordPress 4.3’s inclusion of <a href=\"https://core.trac.wordpress.org/ticket/32576\" target=\"_blank\">menus in the customizer</a>, you may have missed a few other lesser known features that are on track to be included and need to be put through the paces. The <a href=\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\" target=\"_blank\">new site icons feature</a> was added to trunk this week, along with a text editor for the Press This posting interface.</p>\n<p>WordPress lead developer Mark Jaquith has been working on <a href=\"https://core.trac.wordpress.org/ticket/32589\" target=\"_blank\">making passwords more secure</a>. As of 4.3, WordPress will no longer send passwords via email. The password strength meter is now more tightly integrated. It will warn users upon selection of a weak password and can also suggest a secure password.</p>\n<p>One interesting new improvement added to the post editor is <a href=\"https://core.trac.wordpress.org/ticket/31441\" target=\"_blank\">recognition of some basic markdown-esque patterns inside TinyMCE</a>:</p>\n<blockquote><p>Certain text patterns are automatically transformed as you type, including * and – transforming into unordered lists, 1. and 1) for ordered lists, > for blockquotes and one to six number signs (#) for headings</p></blockquote>\n<p>For those who are used to formatting text this way, the post editor in WordPress 4.3. will be a more friendly place for speedy composition.</p>\n<p>Admin post and page <a href=\"https://core.trac.wordpress.org/ticket/32395\" target=\"_blank\">list tables</a> will take a huge leap forward to become more responsive in this release, improving the experience of using WordPress on smaller screens. Previously, the columns that could not fit were truncated, but WordPress 4.3 will allow columns to be toggled into view.</p>\n<p>Check out release lead Konstantin Obenland’s <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\" target=\"_blank\">beta announcement</a> post to download a zip of the beta. If you want to help test, the easiest way is to get hooked up via the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\">WordPress Beta Tester</a> plugin. Bug reports are welcome on the <a href=\"https://wordpress.org/support/forum/alphabeta\" target=\"_blank\">Alpha/Beta support forums</a> and can also be filed on <a href=\"https://make.wordpress.org/core/reports/\" target=\"_blank\">WordPress trac</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 16:39:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WPWeekly Episode 197 – WordPress Theme Review Roundtable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=46068&preview_id=46068\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wptavern.com/wpweekly-episode-197-wordpress-theme-review-roundtable\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2582:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, and <a href=\"https://profiles.wordpress.org/cais\"><span class=\"st\">Edward Cassie</span></a> who are members of the <a href=\"https://make.wordpress.org/themes/\">WordPress Theme Review Team</a>. We learn why the team exists, its goals, and what the process is for getting a theme into the <a href=\"https://wordpress.org/themes/\">official directory</a>.</p>\n<p>The team clarified the difference between <a href=\"https://make.wordpress.org/themes/handbook/review/required/\">requirements</a> and guidelines. We discuss the results of three separate surveys that indicate users want to see improvements to the way theme demo content is displayed. Last but not least, we learn how you can <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">get involved</a> with the team.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://tommcfarlin.com/the-wordpress-community-a-comedy-of-drama-ego-oligarchies-and-more/\">The WordPress Community (A Comedy of Drama, Ego, Oligarchies, and More)</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/plugin-grouper/\">Plugin Grouper</a> allows users to group plugins together to make them easier to manage.</p>\n<p><a href=\"https://wordpress.org/plugins/import-liked-youtube-videos/\">WordPress Import YouTube Liked Videos</a> helps users connect to their YouTube account and import their recently liked videos.</p>\n<p><a href=\"https://wordpress.org/plugins/author-chat/\">Author Chat</a> is an internal chat system that lets your authors or users with access to the dashboard chat with each other.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, June 8th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #197:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 16:35:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: Ship: A New App for Shipping Plugins from GitHub to WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/ship-a-new-app-for-shipping-plugins-from-github-to-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4863:\"<p>One of the small hurdles to hosting a plugin on WordPress.org is the fact that you have to use SVN to ship your updates. Most developers are far more familiar with Git. It’s not difficult to learn how to use SVN for the sake of WordPress.org plugins, but many find it to be inconvenient.</p>\n<p><a href=\"http://ship.getherbert.com/\" target=\"_blank\">Ship</a> is a new application designed to eliminate this hassle by helping developers ship plugins directly from GitHub to WordPress.org. All you have to do is tag the release on GitHub and the app will automatically push updates to the plugin’s official SVN repo on WordPress.org.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship.png?resize=1025%2C641\" alt=\"ship\" class=\"aligncenter size-full wp-image-46026\" /></a></p>\n<p>The application was created by <a href=\"https://twitter.com/jasonagnew__\" target=\"_blank\">Jason Agnew</a> and his team at <a href=\"http://bigbitecreative.com/\" target=\"_blank\">Big Bite Creative</a>, authors of the <a href=\"http://wptavern.com/herbert-a-new-wordpress-plugin-framework\" target=\"_blank\">Herbert plugin framework</a>. The team built the app in Laravel in just five days. It’s currently hosted on Digital Ocean, but Agnew plans to move it over to AWS once Ship has gained more users.</p>\n<p>“We’ve reached a point where most developers are familiar with GitHub, and as a result, Git,” Agnew said in his <a href=\"http://bigbitecreative.com/introducing-ship-publishing-your-wordpress-plugin/\" target=\"_blank\">announcement</a>. “If you plan to do anything open source you’re likely to find yourself on there – even Apple has made the move. Unfortunately WordPress.org uses SVN, which most developers don’t use daily, or are even familiar with. It’s easy enough to pick up, but why should you learn something new to update your plugin?”</p>\n<p>With the help of the Ship app, developers won’t have to touch SVN at all during the process of sending updates to WordPress.org plugin repositories.</p>\n<p>“For years most plugin developers have used GitHub and then shipped to WordPress.org SVN using a bash script,” Agnew said. “You’ll find plenty out there, but they require you to keep both a Git and SVN repo on your machine — plus you need to remember to run it every time you tag a new release. We thought there must be a simpler way to do this, so we put our heads together. After a few days we had put together the first version of Ship.”</p>\n<p>In order to use the app you must have already <a href=\"https://wordpress.org/plugins/add/\" target=\"_blank\">submitted your plugin zip file to WordPress.org</a>. You can then sign into the <a href=\"http://ship.getherbert.com/\" target=\"_blank\">Ship</a> app with GitHub and authorize its access to your repositories.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/authorize-ship-app.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/authorize-ship-app.jpg?resize=716%2C434\" alt=\"authorize-ship-app\" class=\"aligncenter size-full wp-image-46044\" /></a></p>\n<p>The app will then fetch your repositories and you’ll have the opportunity to select the ones you want to link up with a WordPress.org SVN address in order to start syncing updates.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship-sync-reops.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/ship-sync-reops.jpg?resize=842%2C525\" alt=\"ship-sync-reops\" class=\"aligncenter size-full wp-image-46046\" /></a></p>\n<p>Big Bite Creative has built many custom plugins over the years, but Agnew said they never had the time to open source them.</p>\n<p>“Now with Herbert out there we want to start releasing more plugins on Github – Ship is part of making that process easier,” he said.</p>\n<p>In the future, Agnew and his team would like to eliminate the need to first submit your plugin on WordPress.org and instead have that process initiated by Ship. They used “Sign in with GitHub” to save time when initially building the app but would also like to open it up for other services like BitBucket.</p>\n<p>The new Ship app effectively gets around WordPress.org’s SVN requirement for plugin repos, which has long been a minor deterrent and annoyance for developers wanting to host their work in the directory. If Ship is successful in making plugin developer’s lives easier, the result will be more open source extensions available to WordPress users. Agnew and his team welcome feedback on the app and have created <a href=\"https://github.com/getherbert/ship\" target=\"_blank\">an empty repo on GiHub</a> to capture any suggestions or issues.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 01:13:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Which One of These Six Cities Should Host WordCamp US?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46027\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wptavern.com/which-one-of-these-six-cities-should-host-wordcamp-us\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1498:\"<p>When Matt Mullenweg <a href=\"http://wptavern.com/wordcamp-us-2015-now-accepting-applications-for-host-city\">put out the call</a> to cities interested in hosting WordCamp US, we learned the criteria they would have to meet in order to qualify. Venues would need to seat approximately 1,000-2,00 people, have hotels within 3 miles of the venue, hotel costs for a range of budgets, and average flight costs from the West Coast, East Coast, Midwest, Mexico, and Canada.</p>\n<p>Applications to host WordCamp US 2015 <a href=\"https://make.wordpress.org/community/2015/07/01/wordcamp-us-update/\">officially closed today</a>. Six cities submitted applications to host the event, they include:</p>\n<ul>\n<li>Chattanooga</li>\n<li>Chicago</li>\n<li>Detroit</li>\n<li>Orlando</li>\n<li>Philadelphia</li>\n<li>Phoenix</li>\n</ul>\n<p>On the Make WordPress Community site, Cami Kaos says applications are being carefully reviewed and organizers of the host city will be contacted as soon as possible. Dates for the event won’t be given until a host city and venue is chosen.</p>\n<p>Out of all the cities selected, I want WordCamp US to be in Chicago. I love Chicago and it’s a quick flight from Cleveland. The city also has awesome pizza. Take the poll below and vote for which city you think should host WordCamp US. This poll is only for fun and will not affect the outcome of the host city.</p>\nNote: There is a poll embedded within this post, please visit the site to participate in this post\'s poll.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2015 00:28:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: It’s Not a WordPress Problem, It’s a People Problem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=46019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/its-not-a-wordpress-problem-its-a-people-problem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1503:\"<p>Tom McFarlin <a href=\"https://tommcfarlin.com/the-wordpress-community-a-comedy-of-drama-ego-oligarchies-and-more/\">published a thoughtful piece</a> on what he perceives to be the sad state of the WordPress community. Too many people are participating in behavior that is embarrassing from the outside looking in. It’s a long read, but it highlights the need for members of the WordPress community to stop and reflect on our actions.</p>\n<p>The WordPress community is described by many as being open, friendly, with a willingness to help. It’s all of those things but in the past few months, discussions on hotly debated topics such as the Customizer have brought the worst out of people.</p>\n<p>Criticism is one thing, personal attacks are another and simply unnecessary. Unfortunately, text is a difficult medium to decipher context. Emoticons and emoji help, but it doesn’t solve the problem. We as a community need to approach discussions with open minds. We can have different perspectives and viewpoints but we need to clearly communicate them without tearing the opposition down in the process. We must also learn to agree to disagree.</p>\n<p>McFarlin’s post is an inward facing moment for the WordPress community. Is this how we want people on the outside to portray us? WordPress is software created by passionate people who work tirelessly to improve the web. Let’s all take a deep breath, collect ourselves, and do more to listen and understand each other.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 23:21:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordPress 4.3 Adds New Site Icons Feature and a Text Editor to Press This\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3433:\"<p>WordPress 4.3 is on track to include a new site icons feature, which will allow administrators to easily upload an image to be used as the favicon and app icons for a site. Favicons have traditionally been handled by WordPress themes or plugins, but the new core support means that users no longer have to hunt down an extension to handle this basic site feature.</p>\n<p>This addition landed in 4.3 in response to a four-year old trac <a href=\"https://core.trac.wordpress.org/ticket/16434\" target=\"_blank\">ticket</a> requesting an easier way for non-technical users to upload and crop an image to use as a favicon. Konstantin Obenland, release lead for 4.3, <a href=\"https://core.trac.wordpress.org/changeset/32994\" target=\"_blank\">committed the feature to WordPress trunk</a> this week, along with the following summary of its current capabilities:</p>\n<blockquote><p>This v1 marries Jetpack’s Site Icon module with the Media Modal, reusing code from the Custom Header admin. For now, the core-provided icons will be limited to a favicon, an iOS app icon, and a Windows tile icon, leaving .ico support and additional icons to plugins to add.</p></blockquote>\n<p>After testing WordPress 4.3-alpha, I found that the experience of adding a favicon in the settings panel is smoother and more intuitive than any plugin I’ve ever tried. The screen offers users a nice preview of the image as a favicon and mobile icon. It also doesn’t burden you with any notices about sizes and image quality, unless you attempt to upload an image that is less than 512px in width.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-site-icon.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/wordpress-site-icon.jpg?resize=848%2C691\" alt=\"wordpress-site-icon\" class=\"aligncenter size-full wp-image-46000\" /></a></p>\n<p>If you want to test the feature, you can provide feedback on the <a href=\"https://core.trac.wordpress.org/ticket/16434\" target=\"_blank\">ticket</a> or via the announcement <a href=\"https://make.wordpress.org/core/2015/06/30/today-in-the-nightly-site-icons-text-editor-in-press-this/\" target=\"_blank\">post</a>.</p>\n<p>Another major enhancement added to 4.3 this week is a text editor for Press This. Many WordPress users appreciate the streamlined simplicity of the Press This post editor but were held back from using it to compose posts due to the lack of HTML editing support. The addition of a text editor offers the same capabilities as the standard editor in <em>post-new.php</em>.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/press-this-text-editor.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/press-this-text-editor.jpg?resize=1025%2C466\" alt=\"press-this-text-editor\" class=\"aligncenter size-full wp-image-46007\" /></a></p>\n<p>Press This will also receive a few <a href=\"https://core.trac.wordpress.org/changeset/32999\" target=\"_blank\">polishes</a> in addition to the text editor, including auto-scrolling when the caret moves out of the viewport while the user is typing (similar to editor-expand) and auto-resizing for the textarea. WordPress 4.3’s improvements to Press This are not exactly a replacement for the dearly-departed distraction-free writing mode, but the post editor at <em>wp-admin/press-this.php</em> is quickly becoming one of the more zen-like interfaces in the admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 20:50:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Safari the new IE?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45200\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/07/safari-the-new-ie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:291:\"<p>“In recent years, Apple’s strategy towards the web can most charitably be described as ‘benevolent neglect.\'” <a href=\"http://nolanlawson.com/2015/06/30/safari-is-the-new-ie/\">Nolan Lawson throws the gauntlet down by asking Is Safari the new Internet Explorer?</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 18:28:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Gut Bacteria and Mood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/06/gut-bacteria-and-mood/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"<p><a href=\"http://www.nytimes.com/2015/06/28/magazine/can-the-bacteria-in-your-gut-explain-your-mood.html\">Can the Bacteria in Your Gut Explain Your Mood?</a> Answer: Maybe.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 06:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: WordPress for iOS 5.3 Released With Refreshed Stats and a New Layout for Posts and Pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://wptavern.com/wordpress-for-ios-5-3-released-with-refreshed-stats-and-a-new-layout-for-posts-and-pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2620:\"<p>WordPress for iOS 5.3 <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">is available on iTunes</a> and has a few new features. Post listings display more content making them easier to browse. A search feature has been added to the post listing screen that displays results as you type.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressForIos53Search.png\"><img class=\"size-large wp-image-45969\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressForIos53Search.png?resize=281%2C500\" alt=\"Search bar in WordPress for iOS 5.3\" /></a>Search bar in WordPress for iOS 5.3\n<p>I tested the search feature on two different sites. The first site is on WordPress.com and doesn’t use featured images. Search results displayed quickly with little lag.</p>\n<p>The second is a self hosted WordPress site that uses featured images. I noticed lag as the app tried to display real-time results as I typed which also lagged the app. I couldn’t do anything else within the app until the search query finished.</p>\n<p>I don’t use the search feature often and this experience has me concerned. Instead of being fast and fluid, it’s chunky and slow. I also don’t see the need to display featured images in search results. I think this would make the search query and the app faster.</p>\n<p>WordPress.com and self hosted WordPress sites are now combined under My Sites. Instead of seeing a spinning circle when checking stats, there’s a progress bar at the top. This gives the appearance that the stats page loads faster. The stats page also has a subtle color scheme change that makes things more pronounced.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressiOS53StatsPage.png\"><img class=\"size-large wp-image-45975\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressiOS53StatsPage.png?resize=281%2C500\" alt=\"WordPress for iOS 5.3 Stats Page\" /></a>WordPress for iOS 5.3 Stats Page\n<p>Last but not least, 5.3 includes <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?utf8=%E2%9C%93&q=is%3Aclosed+is%3Aissue+milestone%3A5.3+label%3Abug+\">several bug fixes</a>. Overall, 5.3 is a decent update. Remember to use caution when searching a site with a lot of posts that use featured images. WordPress for iOS 5.3 <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=\">is available for free on iTunes</a>. If you encounter any issues in 5.3, please report them <a href=\"https://ios.forums.wordpress.org/\">in the support forum</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jul 2015 00:26:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Filter to Disable the Customizer Shot Down on WordPress Trac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/filter-to-disable-the-customizer-shot-down-on-wordpress-trac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7716:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/do-not-shut-off.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/do-not-shut-off.jpg?resize=823%2C420\" alt=\"photo credit: shutoff - (license)\" class=\"size-full wp-image-45971\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/86846941@N00/404597014\">shutoff</a> – <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>WordPress 4.3 will <a href=\"http://wptavern.com/menu-customizer-officially-approved-for-merge-into-wordpress-4-3\" target=\"_blank\">introduce menu management via the customizer</a>, providing live previews on the frontend for adding, deleting, and ordering menu items. Although users still have the option to manage menus using the admin interface, developers who are not keen on the feature are searching for an easy way to disable the customizer and remove its links throughout WordPress.</p>\n<p>In certain scenarios involving client work, the customizer can be more trouble than it’s worth and may not be a beneficial addition to a custom-tailored WordPress admin.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/pollyplummer\">@pollyplummer</a> very interesting. I\'m not against the new updates but the customizer is hell in the agency world.</p>\n<p>— Edward McIntyre (@twittem) <a href=\"https://twitter.com/twittem/status/613500444162195456\">June 24, 2015</a></p></blockquote>\n<p></p>\n<p><a href=\"https://twitter.com/hereswhatidid\" target=\"_blank\">Gabe Shackle</a>, an application developer and UI engineer at <a href=\"http://www.risdall.com/\" target=\"_blank\">Risdall</a>, created a <a href=\"https://core.trac.wordpress.org/ticket/32772\" target=\"_blank\">ticket</a> on WordPress trac last week, requesting a filter to disable the customizer. His patch offers developers an easy way to enable the ‘no-customizer-support’ class within the body tag.</p>\n<blockquote><p>Due to the fact that the ‘customizer-support’ class is added via JavaScript on page render, it cannot be manipulated using any core filters or actions currently.</p>\n<p>By setting the filter value to false, the Customizer is essentially hidden from the admin and the links that were currently pointing at the Customizer (widgets, themes, etc…) are reverted to their previous dashboard destinations.</p></blockquote>\n<p>Currently, developers who want to disable the customizer have to employ a combination of different methods in order to effectively remove everything that the customizer introduces into the admin.</p>\n<p>“This filter makes this process into a simple boolean filter so that developers who do not want or need the Customizer can easily remove it,” Shackle said.</p>\n<p>WordPress lead developer <a href=\"https://profiles.wordpress.org/dd32\" target=\"_blank\">Dion Hulse</a> replied to the ticket to say that although he doesn’t use the customizer much himself, he doesn’t think that WordPress users would benefit from an easy way to turn it off.</p>\n<blockquote><p>Personally as much as I don’t use the customizer a lot of the time, I think offering a filter to disable it is probably not in the best interests of WordPress users.</p>\n<p>The customizer, as much as some dislike it, is a major component of the future of WordPress UX – whether that is a good or bad thing remains to be seen by some – but like it or hate it, it’s here.</p></blockquote>\n<p>Hulse <a href=\"https://core.trac.wordpress.org/ticket/32772#comment:1\" target=\"_blank\">suggested</a>, as an alternative, that a better way to disable it would be to remove the <code>customize</code> capability from the roles.</p>\n<p>Shackle further explained that he was attempting to follow the precedent of the admin bar, which he considers to be a similar type of UX component.</p>\n<p>“The Admin Bar can be disabled not only by a filter but by a global variable, core function, and user profile setting,” he said. “The Customizer has none of these options.”</p>\n<p>Nick Halsey, the developer of the Menu Customizer plugin that is being merged into 4.3, <a href=\"https://core.trac.wordpress.org/ticket/32772#comment:3\" target=\"_blank\">replied</a> based on assumptions about why Shackle might request a filter to disable the feature:</p>\n<blockquote><p>I have yet to see a valid reason for something like this. In most cases, concerns about not wanting users to have access to the Customizer stem from the fact that you’re not giving them the appropriate capabilities. And the customize capability can be used to turn off the Customizer if you really must.</p>\n<p>While you can remove the customize meta capability (or re-map it or whatever), doing so simply because you don’t want to train users or don’t want to use the Customizer is doing yourself and your users an enormous disservice. As dd32 mentioned, the Customizer will only continue to grow in importance within WordPress. Additionally, user testing has shown that the Customizer experience is generally easier for users to grasp than the admin, which largely stems from the value of having live-previewing available. We’re putting a significant amount of time into the Customizer every release to continue improving it, conducting frequent user tests along the way to optimize usability.</p></blockquote>\n<p>Halsey promptly closed the ticket following this exchange. I followed up with Shackle to find out why the proposed alternative to remove the <code>customize</code> capability is inadequate for his purposes.</p>\n<p>“Mostly I was hoping that the Customizer could be treated more like the admin bar, which has 3+ methods for disabling it,” Shackle said. “Having a clearly labeled filter is, in my opinion, more legible than modifying user capabilities. A PHP developer with virtually no WordPress knowledge could most likely understand much quicker what’s happening with a filter named ‘enable_customizer_support’ rather than ‘map_meta_cap’.”</p>\n<p>Obviously, not all tickets and patches will be considered valid by the maintainers of WordPress core components, but Shackle was disappointed by the defensive response to the discussion.</p>\n<p>“Honestly, had the reply simply been something along the lines of ‘You should just use the <code>customize</code> capability to achieve the same effect’ I really wouldn’t have had any issue,” he said.</p>\n<p>“Unfortunately, it seems any approach other than ‘Customizer for all things!’ means I get to be told multiple times how much of a disservice I’m doing my clients and what a lazy developer I am for not just re-training my clients how to manage their sites’ appearance.</p>\n<p>“It feels like the Customizer team themselves have an all-or-nothing approach to the project and that anyone who questions this is wrong, regardless of their reasoning,” Shackle said.</p>\n<p>This exchange demonstrates that since core contributors view the customizer as a major part of the future of WordPress, this is one feature where there will be little willingness to support efforts to make it more modular. Disabling support for the customizer will continue to require use of ‘map_meta_cap,’ the same <a href=\"https://github.com/parallelus/customizer-remove-all-parts/blob/master/wp-crap.php#L75\" target=\"_blank\">method</a> the creators of the <a href=\"http://wptavern.com/new-plugin-removes-all-traces-of-the-customizer-in-wordpress\" target=\"_blank\">Customizer Remove All Parts</a> plugin have employed.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2015 23:08:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: UpThemes Adds Managed WordPress Hosting to Theme Club Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45775\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/upthemes-adds-managed-wordpress-hosting-to-theme-club-business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4711:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes.jpg?resize=665%2C300\" alt=\"upthemes\" class=\"aligncenter size-full wp-image-45946\" /></a></p>\n<p>After five years of selling themes and support, UpThemes is branching out into the managed WordPress hosting business. Last week the company <a href=\"https://upthemes.com/blog/2015/06/upthemes-hosting/\" target=\"_blank\">announced</a> the new hosting venture and partnership with <a href=\"http://aesopstoryengine.com/\" target=\"_blank\">Aesop Interactive</a>:</p>\n<blockquote><p>We are excited to announce UpThemes Hosting, a managed WordPress hosting solution that includes 40+ premium WordPress themes including our entire theme library, all themes from the collection of Aesop Interactive (makers of Aesop Story Engine), as well as a curated selection of beautifully-designed themes from WordPress.org.</p></blockquote>\n<p>For <a href=\"https://upthemes.com/hosting/\" target=\"_blank\">$20/month</a> customers can host one WordPress site with 5GB disk space and 100GB monthly bandwith. Tech support is included along with 40+ commercial themes from UpThemes and Aesop Interactive. Users have control over their sites as they would with a standard WordPress installation, i.e. FTP access, ability to install plugins and themes, etc.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes-hosting.png\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/upthemes-hosting.png?resize=640%2C647\" alt=\"upthemes-hosting\" class=\"aligncenter size-full wp-image-45944\" /></a></p>\n<p>“This is actually a partnership with <a href=\"http://www.pressed.net/\" target=\"_blank\">Pressed.net</a>, a division of <a href=\"http://www.site5.com/p/wordpress/\" target=\"_blank\">Site5</a>, that sits on top of their managed WordPress hosting architecture,” UpThemes co-founder Chris Wallace told the Tavern. “We’ve looked at many opportunities for a hosting partnership over the years and none of the options felt quite right to us, so we waited until there was one that provided our customers with the best hosting service and support.</p>\n<p>“Site5 understood that need and we’ve worked hand-in-hand for many months to finally release this product. We’re very proud of it and think it provides more value than the typical WordPress hosting product.”</p>\n<p>The hybrid combination of hosting plus a theme club is fairly unique in the WordPress ecosystem, but Wallace believes it provides an easier path for UpThemes customers looking to build an online presence.</p>\n<p>“Our audience is mainly DIYers who just need a site up and running,” he said. “We’ve always been looking to make it as easy as possible to purchase and install an UpThemes theme so a hosting platform where all our themes are pre-installed seemed like the perfect solution to the problem of ‘which theme do I pick’ and ‘how do I install a theme’ and ‘will your theme work on my webhost?\'”</p>\n<p>The new hosting product also helps UpThemes deal with the financial volatility and unpredictability of managing a theme club business.</p>\n<p>“From a business perspective, selling themes alone has always made it difficult to pin down our customer acquisition cost and churn rate (meaning the number of customers who stop paying their annual renewals),” Wallace said.</p>\n<p>“Since we offer an annual license, we don’t know if a customer will renew for a whole year, which, as you can imagine, makes it hard to know the lifetime value of the customer. It’s a hard thing to analyze. Some people care enough to renew but most people don’t understand the value enough to care.”</p>\n<p>UpThemes will continue to serve the small business and DIY market and Wallace hopes to add more journalists, storytellers, and photographers with the new Aesop Interactive partnership.</p>\n<p>“Beyond our new hosting venture, we also serve thousands of blogs on WordPress.com, which helps us offer a one-click method of buying and using our themes without any sort of installation required,” Wallace said.</p>\n<p>“I think that really is one of the key points for us: closing the gap on how much knowledge you need to use our themes. We’d like to make it even easier for certain types of customers (e-commerce, for example) to hit the ground running.</p>\n<p>“There are so many variables to creating a successful online business and we just want to give less technical WordPress users an easier path to success.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2015 17:54:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Loyalists vs Mercenaries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45198\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2015/06/loyalists-vs-mercenaries/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:853:\"<blockquote><p>Finally, think about being somewhere other than the Bay Area or NYC. Yes, they are great places to start companies, find talent, and get investment. But they are also places where others start companies, get investment, and find your talent. It’s a ratrace, a treadmill, and it’s grueling. If you can avoid it, you owe it to yourself to try.</p></blockquote>\n<p>Fred Wilson on <a href=\"http://avc.com/2015/06/loyalists-vs-mercenaries/\">Loyalists vs Mercenaries in companies</a>. I’m so happy to see the non-SF/NYC company idea continue to pick up steam, and I think its natural conclusion is distributed work as Automattic does. Like any relationship, I think the most rewarding employee/employer relationships are the ones that grow <a href=\"http://ma.tt/2015/06/ten-years-of-automattic/\">over decades</a>, not just years.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2015 06:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: The Recommended Hosting Page on WordPress.org Starts Over From Scratch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45904\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4803:\"<p>One of the most difficult tasks for new WordPress users is choosing a good webhost. The process can involve getting recommendations from friends, searching Google for reviews, and taking advantage of trial offers. Since 2005, WordPress.org has had a <a href=\"https://web.archive.org/web/20050913180027/http://wordpress.org/hosting/\">recommended hosts page</a> featuring companies that meet certain criteria.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressRecommendedHosts2005.png\"><img class=\"size-full wp-image-45906\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/WordPressRecommendedHosts2005.png?resize=761%2C841\" alt=\"WordPress.org Recommended Host Page in 2005\" /></a>WordPress.org Recommended Host Page in 2005\n<p>Over the years, new companies would rarely be added to the page. For several years, <a href=\"http://www.bluehost.com/\">Bluehost</a>, <a href=\"https://www.dreamhost.com/home.2.html\">DreamHost</a>, and <a href=\"http://laughingsquid.com/\">Laughing Squid</a> were the only companies listed.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/RecommendedHostsIn2014.png\"><img class=\"size-full wp-image-45907\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/RecommendedHostsIn2014.png?resize=727%2C600\" alt=\"Recommend Hosts Page in 2014\" /></a>Recommend Hosts Page in 2014\n<p>I’ve spoken to a number of people in the webhosting industry in the last two years and the general consensus is that, to get on the list, you need to pay Matt Mullenweg a lot of money, which isn’t true. Bluehost is often used as an example as they’re owned by <a href=\"http://www.endurance.com/\">Endurance International Group</a> who <a href=\"http://www.prweb.com/releases/2014/05/prweb11874425.htm\">invested in Automattic</a> in 2014. Bluehost has been on the list since 2005, long before any investment took place.</p>\n<h2>A Fresh Start to The Recommended Hosts Page</h2>\n<p>Currently, Bluehost is the only recommended webhost <a href=\"https://wordpress.org/hosting/\">on the</a><a href=\"https://wordpress.org/hosting/\"> page</a> because it’s going through a revamp. Near the bottom of the page is a paragraph that admits a lot has changed in the industry over the years.</p>\n<blockquote><p>Much has changed in the hosting world since this page was originally set up. There are now many types of dedicated and cloud accounts that are as easy as shared hosting was a generation ago, and shared and managed hosts have evolved significantly to become more tailored to WordPress. WordPress is often now the most commonly used application on major web hosts!</p></blockquote>\n<p>I asked Mullenweg if hosts that were on the page before are eligible to be re-added, “Of course, anyone is up for consideration and Bluehost is up for being removed.”</p>\n<p>The WordPress.org team is starting over from scratch and as such, webhosting companies are asked to complete <a href=\"http://mcm.polldaddy.com/s/2015-wordpress-hosting-survey\">the following</a> survey by <strong>July 31st</strong>.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/FirstPageofTheSurvey.png\"><img class=\"size-full wp-image-45908\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/FirstPageofTheSurvey.png?resize=616%2C415\" alt=\"First Page of The Survey\" /></a>First Page of The Survey\n<p>The survey is 40 questions long and includes questions such as:</p>\n<ul>\n<li>What’s the WordPress-specific landing page you’d want /hosting to point to?</li>\n<li>What type of customers do you target?</li>\n<li>Please describe your technology stack, and why you like it.</li>\n<li>Is 100% of the code included or promoted with your WordPress install GPL or compatible?</li>\n</ul>\n<p>It may seem like a tedious process, but those I’ve spoken to in the past affiliated with companies once on the list say it generates thousands to millions of dollars in signups. This should motivate companies to complete the survey accurately. Even if a company is not listed on the page, those who fill out the survey will be giving WordPress.org a lot of information that may come in handy for other uses.</p>\n<h2>It’s About Time</h2>\n<p>The recommended hosting page is long overdue for a revamp. There are companies such as, A2 Hosting, Pagely, WP Engine, InMotion Hosting, and countless others that are doing a great job hosting large and small WordPress sites. Perhaps it’s time they become the ones recommended instead of the standard three. If you own or operate a webhosting company with an emphasis on WordPress, <a href=\"http://mcm.polldaddy.com/s/2015-wordpress-hosting-survey\">fill out the survey</a>, as it’s the best chance you have to getting on the recommended hosts page.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2015 03:52:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: VaultPress Comes Out on Top in Recent Survey of WordPress Backup Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/vaultpress-comes-out-on-top-in-recent-survey-of-wordpress-backup-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2207:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/VaultFeaturesImage.png\"><img class=\"size-full wp-image-45875\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/06/VaultFeaturesImage.png?resize=647%2C363\" alt=\"Vault Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/37053322@N00/2291139919\">Code</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Steven Gliebe asked 21 WordPress professionals what they use to generate backups for their personal sites and published the results on the <a href=\"https://proplugindirectory.com/best-backup-wordpress-plugins/\">Pro Plugin Directory blog</a>. The results are split into two groups of people – writers and developers.</p>\n<p>All of the writers mentioned <a href=\"https://vaultpress.com/\">VaultPress</a> as their go-to backup solution. Some of the developers use VaultPress but most rely on backups generated by their webhost in addition to a plugin or custom strategy. <a href=\"https://ithemes.com/purchase/backupbuddy/\">BackupBuddy </a>by iThemes ended up with the second most mentions.</p>\n<p>Although <a href=\"https://deliciousbrains.com/wp-migrate-db-pro/\">WP Migrate DB Pro</a> is used primarily to migrate WordPress sites, Gilbert Pellegrom of <a href=\"http://dev7studios.com/\">Dev7studios,</a> uses it to backup his databases and user uploads with a setup <a href=\"https://deliciousbrains.com/remotely-backup-wordpress-database-media-wp-migrate-db-pro-cli/\">similar to this</a>.</p>\n<p>Bill Robbins of <a href=\"http://www.organizedthemes.com/\">Organized Themes,</a> says WPEngine provides a prompt reminding users to generate a full backup before upgrading. This sounds like a great idea and is something I think more hosts should look into doing. Daniel Espinoza of <a href=\"https://shopplugins.com/\">Shop Plugins,</a> uses a backup strategy that allows him to <strong>own his data</strong>.</p>\n<p>To learn <strong>why</strong> these 21 people use the backup strategies that they do, I encourage you to <a href=\"https://proplugindirectory.com/best-backup-wordpress-plugins/\">read the full article</a>. What plugins and services do you use to backup your sites?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2015 22:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Theme Hybrid Experiments with Free Signups for Club Membership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/theme-hybrid-experiments-with-free-signups-for-club-membership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3870:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg?resize=1024%2C514\" alt=\"photo credit: 16th st - (license)\" class=\"size-full wp-image-45884\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/79777096@N00/6866996865\">16th st</a> – <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>Justin Tadlock, creator of Theme Hybrid, <a href=\"http://themehybrid.com/weblog/steering-the-ship-back-home\" target=\"_blank\">announced</a> today that the seven year old theme club is experimenting with a radical change in club pricing. <a href=\"http://themehybrid.com/club\" target=\"_blank\">Club membership</a> is now free for anyone who wants to sign up. Although Theme Hybrid’s plugins and themes have always been free, standard club membership (which includes access to the support forums), was previously $25/year.</p>\n<p>In a post titled “<a href=\"http://themehybrid.com/weblog/steering-the-ship-back-home\" target=\"_blank\">Steering the Ship Back Home</a>,” Tadlock explains his original purpose for the club. Theme Hybrid entered the WordPress theme market with free, open source products back in the day when very few commercial theme sellers were fully adopting the GPL.</p>\n<p>“When I first laid the groundwork for Theme Hybrid, or <a href=\"http://justintadlock.com/archives/2008/05/31/project-m\" target=\"_blank\">Project M</a> as it was originally called, seven awesome years ago, the idea was to face off against ‘premium’ theme authors,” he said. “I wanted to provide a free alternative to the marketplace and show that it could work.”</p>\n<p>Tadlock described how, overall, the Theme Hybrid experience has been positive, but during the past year he faced creative blocks, burnout, and a lack of focus. As part of regaining motivation, he decided to refocus Theme Hybrid back to its radical roots.</p>\n<p>“I always knew I wanted to provide awesome free/$free WordPress themes and plugins,” he said. “However, $free doesn’t exactly put food on the table. While seven years has been a good run, I don’t think I ever found the right balance between philosophy and practical concerns.”</p>\n<p>As part of a fresh start, Tadlock is opening up his club membership in an effort to expand the community that has kept the site going over the years. In addition to the free memberships, which provide access to the forums, he is also slashing prices on the tiered memberships.</p>\n<p>“Today, I have at least a couple of months of wiggle room to try something new while figuring out the direction I want to take the business aspect of this site,” Tadlock said.</p>\n<p>Theme Hybrid’s radical shift in club pricing is another example of WordPress businesses giving away more for free, whether it be <a href=\"http://wptavern.com/lasso-frontend-editing-plugin-for-wordpress-now-available-on-github\" target=\"_blank\">commercial products on GitHub</a>, a <a href=\"http://wptavern.com/all-official-easy-digital-downloads-themes-are-now-100-free\" target=\"_blank\">suite of e-commerce themes</a>, or <a href=\"http://wptavern.com/wpsessions-changes-pricing-structure-live-events-are-now-100-free\" target=\"_blank\">live training events</a>.</p>\n<p>Theme Hybrid has always erred on the side of providing free products and tutorials for the community, as opposed to locking them up. Will giving away more for free translate into a higher number of people willing to pay for support? This question is at the core of the freemium business model, the boundaries of which Tadlock has been willing to push for the past seven years.</p>\n<p>“While trying new things is certainly frightening, I’m excited about some of the prospects,” he said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2015 21:45:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: Vienna, Austria to Host WordCamp Europe 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=45834\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wptavern.com/vienna-austria-to-host-wordcamp-europe-2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4764:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/wceu-2016-announcement.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/wceu-2016-announcement.png?resize=1022%2C511\" alt=\"photo credit: RubenSutiloFoto\" class=\"size-full wp-image-45848\" /></a>photo credit: <a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\">RubenSutiloFoto</a>\n<p>The local WordPress community in Seville welcomed a diverse group of attendees to <a href=\"https://europe.wordcamp.org/2015/\" target=\"_blank\">WordCamp Europe 2015</a> over the weekend. WordPress enthusiasts and professionals from Europe and beyond made strategic connections, <a href=\"https://twitter.com/no_fear_inc/status/615149090825965568\" target=\"_blank\">contributed</a>, found <a href=\"https://twitter.com/WCEurope/status/615286319305084929\" target=\"_blank\">jobs and employees</a>, and enjoyed presentations from a selection of world class speakers.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Seville has got the imaginative juices flowing and led to some exciting changes of life direction <a href=\"https://twitter.com/hashtag/wceu?src=hash\">#wceu</a></p>\n<p>— Fiona Barnes (@Barnes_Fiona) <a href=\"https://twitter.com/Barnes_Fiona/status/615137692293197824\">June 28, 2015</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Very happy to announce <a href=\"https://twitter.com/SergeyBiryukov\">@SergeyBiryukov</a> will be joining <a href=\"https://twitter.com/yoast\">@yoast</a>, spending 50% of his time on WP core. <a href=\"https://twitter.com/hashtag/WCEU?src=hash\">#WCEU</a> was productive.</p>\n<p>— Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/615219329035042816\">June 28, 2015</a></p></blockquote>\n<p></p>\n<p>At the conclusion of the WordCamp, organizers <a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\" target=\"_blank\">announced</a> that the 2016 event will be held in Vienna, Austria, June 24 – 26. Applications for the host city were <a href=\"http://wptavern.com/wordcamp-europe-now-taking-applications-for-2016-host-city\" target=\"_blank\">opened</a> in March and <a href=\"http://wptavern.com/applications-to-host-wordcamp-europe-2016-closing-soon\" target=\"_blank\">closed</a> at the end of April.</p>\n<p>The WordCamp Europe organization team received strong applications from the WordPress communities in Vienna, Bratislava, and Berlin. Some of the most important criteria in the selection process included organizer experience, location, venue, contributor day, and budget.</p>\n<p>Berlin was ruled out due to lack of experience among the organizers.</p>\n<p>“The reason that we ruled out Berlin is that there hasn’t yet been a WordCamp in Berlin and we felt that the team needed more WordCamp organizing experience,” Siobhan McKeown said in the official <a href=\"https://europe.wordcamp.org/2015/how-we-selected-vienna-the-wordcamp-europe-2016-host-city/\" target=\"_blank\">announcement</a>. “We’d love to see a WordCamp Berlin in the future – such a wonderful city needs a wonderful WordCamp.”</p>\n<p>Although Berlin has actually hosted three WordCamps in the past, including <a href=\"https://central.wordcamp.org/wordcamps/germany-2010/\" target=\"_blank\">WordCamp Germany 2010</a>, WordCamps Berlin <a href=\"http://wpde.org/wordcamp/\" target=\"_blank\">2012</a> and <a href=\"http://wpcamp.de/\" target=\"_blank\">2013</a>, other more weighty factors pushed Bratislava and Vienna ahead as potential host cities.</p>\n<p>Bratislava brought a strong and diverse local team to the table, but Vienna ultimately surpassed the other applicants when it came down to logistics.</p>\n<p>“In the end, the venue, location, and available dates for the WordCamp won out,” McKeown said. “We loved the Bratislava application, but none of the venues were completely suitable for our event.</p>\n<p>“The venue in Vienna, however, was perfect. We also have 100% confidence in the Vienna local team: they organized a successful WordCamp Vienna in 2015, and Paolo Belcastro, the lead applicant for WordCamp Europe 2016, has been involved in WordCamp Europe for the past three years. This means that the local team will have a leader with a ton of WCEU experience.”</p>\n<p>With a successful <a href=\"https://europe.wordcamp.org/2015/\" target=\"_blank\">WordCamp Europe 2015</a> in the bag, the organization team will now set its sights on Vienna and continue its year round planning efforts. Speaker selection usually begins five or six months in advance for this event, so those planning to apply have plenty of time to prepare.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2015 17:54:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Obama Delivers Eulogy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45195\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/06/obama-delivers-eulogy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"<p><span class=\"embed-youtube\"></span></p>\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2015 06:48:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 13 Jul 2015 01:56:00 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"173420\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 13 Jul 2015 01:30:17 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130910200210\";}','no'),(396,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1436795759','no'),(397,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1436752559','no'),(398,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1436795761','no'),(399,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2015 01:37:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"MailChimp for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jun 2013 17:32:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"54377@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"MailChimp for WordPress, the absolute best. Add subscribers to your MailChimp lists from your WordPress site, with ease.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Danny van Kooten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WPtouch Mobile Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5468@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Make your WordPress website mobile-friendly with just a few clicks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"InfiniteWP Client\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/iwp-client/#post-36147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Mar 2012 04:21:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"36147@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Install this plugin on unlimited sites and manage them all from a central dashboard.\nThis plugin communicates with your InfiniteWP Admin Panel.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"infinitewp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"NextScripts: Social Networks Auto-Poster\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/plugins/social-networks-auto-poster-facebook-twitter-g/#post-35439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Mar 2012 00:28:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"35439@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Automatically re-publishes blogposts to Facebook, Twitter, Google+, Pinterest, LinkedIn, Blogger, Tumblr, Delicious, Plurk, etc profiles and/or pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"NextScripts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"EWWW Image Optimizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/ewww-image-optimizer/#post-38780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2012 19:30:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38780@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Reduce file sizes for images in WordPress including NextGEN, GRAND FlAGallery and more using lossless/lossy methods and image format conversion.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"nosilver4u\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"31973@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Photo Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/photo-gallery/#post-63299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jan 2014 15:58:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63299@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"webdorado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SiteOrigin Widgets Bundle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 May 2014 14:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"67824@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WP-DB-Backup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/wp-db-backup/#post-472\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Mar 2007 04:41:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"472@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"On-demand backup of your WordPress database.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"ringmaster\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WP Statistics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-statistics/#post-25318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 20 Mar 2011 09:03:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25318@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Complete statistics for your WordPress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Mostafa Soufi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"The Events Calendar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/plugins/the-events-calendar/#post-14790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Dec 2009 21:58:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"14790@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Peter Chester\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Quick Page/Post Redirect Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/plugins/quick-pagepost-redirect-plugin/#post-12015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 26 Jul 2009 05:57:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12015@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Easily redirect pages/posts or custom post types to another page/post or external URL by specifying the redirect URL and type (301, 302, 307, meta).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"prophecy2040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WP Retina 2x\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wp-retina-2x/#post-39551\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jun 2012 11:25:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"39551@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Make your website look beautiful and crisp on Retina / High DPI displays.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jordy Meow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 12 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 13 Jul 2015 01:56:02 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Mon, 13 Jul 2015 02:12:10 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 13 Jul 2015 01:37:10 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130910200210\";}','no'),(400,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1436795761','no'),(401,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1436752561','no'),(402,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1436795761','no'),(403,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\'>WordPress 4.3 Beta 2</a> <span class=\"rss-date\">July 8, 2015</span><div class=\"rssSummary\">WordPress 4.3 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/07/neil-gaiman-commencement/\'>Matt: Neil Gaiman Speech at MIT</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/07/wordcamp-scranton/\'>Matt: WordCamp Scranton</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wpweekly-episode-198-tackling-mental-health-with-cory-miller\'>WPTavern: WPWeekly Episode 198 – Tackling Mental Health With Cory Miller</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/mailchimp-for-wp/\' class=\'dashboard-news-plugin-link\'>MailChimp for WordPress</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=mailchimp-for-wp&_wpnonce=d46d004cd3&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'MailChimp for WordPress\'>Install</a>)</span></li></ul></div>','no'),(404,'_site_transient_timeout_theme_roots','1436754376','yes'),(405,'_site_transient_theme_roots','a:1:{s:9:\"sparkling\";s:7:\"/themes\";}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1165 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'),(6,6,'_publicize_pending','1'),(7,6,'_wp_page_template','default'),(8,6,'geo_public','0'),(9,7,'_publicize_pending','1'),(10,7,'original_post_id','1'),(11,7,'_wp_old_slug','1'),(12,7,'_wp_page_template','default'),(13,7,'geo_public','0'),(14,8,'_publicize_pending','1'),(15,8,'original_post_id','2'),(16,8,'_wp_old_slug','2'),(17,8,'_oembed_48ba3301b3d6981a48fb92910a6d66ca','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(18,8,'_oembed_time_48ba3301b3d6981a48fb92910a6d66ca','1420963789'),(19,8,'_oembed_ed8b7bb28baa3f15005011e891d0de46','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(20,8,'_oembed_time_ed8b7bb28baa3f15005011e891d0de46','1420963790'),(21,8,'_oembed_129b563fdbecfc4be84cc33afb1aa618','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"460\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(22,8,'_oembed_time_129b563fdbecfc4be84cc33afb1aa618','1420964935'),(23,8,'_oembed_e885482e4f13abefd383ceaaab06e45c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"460\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(24,8,'_oembed_time_e885482e4f13abefd383ceaaab06e45c','1420964936'),(25,8,'geo_public','0'),(26,9,'_publicize_pending','1'),(27,9,'original_post_id','3'),(28,9,'_wp_old_slug','3'),(29,9,'geo_public','0'),(30,9,'_wp_page_template','default'),(31,10,'_publicize_pending','1'),(32,10,'original_post_id','4'),(33,10,'_wp_old_slug','4'),(34,10,'_wp_page_template','default'),(35,10,'geo_public','0'),(36,11,'_publicize_pending','1'),(37,11,'original_post_id','5'),(38,11,'_wp_old_slug','5'),(39,11,'geo_public','0'),(40,11,'_wp_page_template','default'),(41,12,'_publicize_pending','1'),(42,12,'original_post_id','6'),(43,12,'_wp_old_slug','6'),(44,13,'_publicize_pending','1'),(45,13,'original_post_id','7'),(46,13,'_wp_old_slug','7'),(47,13,'geo_public','0'),(48,13,'_oembed_602bf52dae5e63736eb1c38bb039a8ee','{{unknown}}'),(49,13,'_wp_page_template','default'),(50,13,'_oembed_6c8d171bc796259ccbc2350d4bae4331','{{unknown}}'),(51,13,'_oembed_2438acd02c4487abc373d8abd9bde8d8','{{unknown}}'),(52,14,'_publicize_pending','1'),(53,14,'original_post_id','8'),(54,14,'_wp_old_slug','8'),(55,14,'_wp_page_template','default'),(56,14,'geo_public','0'),(57,15,'_publicize_pending','1'),(58,15,'original_post_id','9'),(59,15,'_wp_old_slug','9'),(60,15,'_wp_page_template','default'),(61,15,'geo_public','0'),(62,16,'_publicize_pending','1'),(63,16,'original_post_id','10'),(64,16,'_wp_old_slug','10'),(65,17,'_publicize_pending','1'),(66,17,'original_post_id','11'),(67,17,'_wp_old_slug','11'),(68,18,'_oembed_0740763509493beb85f6557cac378ce7','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(69,18,'_publicize_pending','1'),(71,18,'original_post_id','12'),(72,18,'_wp_old_slug','12'),(73,18,'_oembed_48ba3301b3d6981a48fb92910a6d66ca','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(74,18,'_oembed_time_48ba3301b3d6981a48fb92910a6d66ca','1420944049'),(75,18,'_oembed_ed8b7bb28baa3f15005011e891d0de46','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(76,18,'_oembed_time_ed8b7bb28baa3f15005011e891d0de46','1420944049'),(77,18,'_oembed_time_0740763509493beb85f6557cac378ce7','1420946642'),(78,18,'_oembed_3e935b01ac7f1ec59aec7f3c1acd2b9e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(79,18,'_oembed_time_3e935b01ac7f1ec59aec7f3c1acd2b9e','1420946642'),(80,18,'_oembed_1375f05f14c6b1e75e7520fae648a702','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(81,18,'_oembed_time_1375f05f14c6b1e75e7520fae648a702','1420955046'),(82,18,'_oembed_3990374f35a9f317515d73b3be375f74','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(83,18,'_oembed_time_3990374f35a9f317515d73b3be375f74','1420955047'),(84,18,'_oembed_5ebdbde35f65780dc434d55fc5fc00fd','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(85,18,'_oembed_time_5ebdbde35f65780dc434d55fc5fc00fd','1420962823'),(86,18,'_oembed_0625212089ec7c2417adfa0001660c36','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(87,18,'_oembed_time_0625212089ec7c2417adfa0001660c36','1420962823'),(88,18,'_oembed_c7a4b15a079aa3f7a77be0f04bd24cc0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(89,18,'_oembed_time_c7a4b15a079aa3f7a77be0f04bd24cc0','1420963076'),(90,18,'_oembed_a3310c126e71ca8a3f080cbb4ca99d25','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(91,18,'_oembed_time_a3310c126e71ca8a3f080cbb4ca99d25','1420963077'),(92,18,'_oembed_bdcc43369bd4067dc032690c1e5a13e4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(93,18,'_oembed_time_bdcc43369bd4067dc032690c1e5a13e4','1420963148'),(94,18,'_oembed_a89a57d779be94ea699eb49f801b1cea','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(95,18,'_oembed_time_a89a57d779be94ea699eb49f801b1cea','1420963148'),(96,18,'_oembed_2fc55ccda321e0816f48c9b8384a52d8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(97,18,'_oembed_time_2fc55ccda321e0816f48c9b8384a52d8','1420963220'),(98,18,'_oembed_13c742425d4ad2487fd1f342ab55ec2b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(99,18,'_oembed_time_13c742425d4ad2487fd1f342ab55ec2b','1420963220'),(100,18,'_oembed_715c3990afd7154d7e01cd877d3a39e0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(101,18,'_oembed_time_715c3990afd7154d7e01cd877d3a39e0','1420963301'),(102,18,'_oembed_570cd48fdb60bf943ec6e0135454cfaa','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(103,18,'_oembed_time_570cd48fdb60bf943ec6e0135454cfaa','1420963302'),(104,18,'_oembed_6ebd81b33940caa724661ec227148541','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(105,18,'_oembed_time_6ebd81b33940caa724661ec227148541','1420963308'),(106,18,'_oembed_a4ea1fd5cb86b1ccfb88befd5b470022','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(107,18,'_oembed_time_a4ea1fd5cb86b1ccfb88befd5b470022','1420963308'),(108,18,'_oembed_cf3e3e829fd12ae0f30aa2390180467e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(109,18,'_oembed_time_cf3e3e829fd12ae0f30aa2390180467e','1420963370'),(110,18,'_oembed_16708f3cd476fd1cb640d3693a780286','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(111,18,'_oembed_time_16708f3cd476fd1cb640d3693a780286','1420963371'),(112,18,'_oembed_196e3dcb7d69a430486c80a56e261b37','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(113,18,'_oembed_time_196e3dcb7d69a430486c80a56e261b37','1420963385'),(114,18,'_oembed_d0c0f50019e2a9ca920cb997671a4b04','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(115,18,'_oembed_time_d0c0f50019e2a9ca920cb997671a4b04','1420963385'),(116,18,'_oembed_129b563fdbecfc4be84cc33afb1aa618','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"460\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(117,18,'_oembed_time_129b563fdbecfc4be84cc33afb1aa618','1420964698'),(118,18,'_oembed_e885482e4f13abefd383ceaaab06e45c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"460\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(119,18,'_oembed_time_e885482e4f13abefd383ceaaab06e45c','1420964699'),(120,18,'_oembed_aa06487a29a133bcdc17bf7e80d22398','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(121,18,'_oembed_time_8076216f088cab318d99438c83b7282b','1421036994'),(122,18,'_oembed_8076216f088cab318d99438c83b7282b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(123,18,'_oembed_time_3f9720190ea016b08b84dd000c45ebf4','1421036994'),(124,18,'_oembed_b1e788506380abb69f31db105efddece','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(125,18,'_oembed_3f9720190ea016b08b84dd000c45ebf4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(126,18,'_oembed_time_aa06487a29a133bcdc17bf7e80d22398','1421037473'),(127,18,'_oembed_3c836b7a92a158a6108a6752f4fc36cc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(128,18,'_oembed_time_3c836b7a92a158a6108a6752f4fc36cc','1421037473'),(129,18,'_oembed_4b747878b8875098db9f7af3fc9eddfa','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(130,18,'_oembed_time_4b747878b8875098db9f7af3fc9eddfa','1421037495'),(131,18,'_oembed_8e8aefeb74218413bb6334688cbf9fe6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(132,18,'_oembed_time_8e8aefeb74218413bb6334688cbf9fe6','1421037495'),(133,18,'_oembed_f41e34fdf80379d1c3bc1433f3f622ce','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(134,18,'_oembed_time_f41e34fdf80379d1c3bc1433f3f622ce','1421049362'),(135,18,'_oembed_f35b2f37fb368239655c7629b2ccc8f0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(136,18,'_oembed_time_f35b2f37fb368239655c7629b2ccc8f0','1421049363'),(137,18,'_oembed_time_b1e788506380abb69f31db105efddece','1421050177'),(138,18,'_oembed_37a0109ae1401e7dfc7715cc9d023c58','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(139,18,'_oembed_time_37a0109ae1401e7dfc7715cc9d023c58','1421050177'),(140,18,'_oembed_fe6f560dffde47511765ae561b2c2166','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(141,18,'_oembed_time_fe6f560dffde47511765ae561b2c2166','1421052500'),(142,18,'_oembed_93f447dc39d10a705c4e9a142d407c6c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(143,18,'_oembed_time_93f447dc39d10a705c4e9a142d407c6c','1421052500'),(144,18,'_oembed_d125212562778d5c0ae4ae00333c39b6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(145,18,'_oembed_time_d125212562778d5c0ae4ae00333c39b6','1421052536'),(146,18,'_oembed_c32a6a430264d25bc9a7b459c65be7a0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(147,18,'_oembed_time_c32a6a430264d25bc9a7b459c65be7a0','1421052536'),(148,18,'_oembed_74ef557dd44ddf622186148dda0a49f6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(149,18,'_oembed_time_74ef557dd44ddf622186148dda0a49f6','1421052564'),(150,18,'_oembed_ff50a508f6821ddcb4e589ae51d4376c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(151,18,'_oembed_time_ff50a508f6821ddcb4e589ae51d4376c','1421052565'),(152,18,'_oembed_2067272488191948c9ab3568cac22d3f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(153,18,'_oembed_time_2067272488191948c9ab3568cac22d3f','1421052573'),(154,18,'_oembed_252f45e5e8f89cbe54840968a1ee3ace','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(155,18,'_oembed_time_252f45e5e8f89cbe54840968a1ee3ace','1421052573'),(156,18,'_oembed_41b788c25402c72e74c33ce6e87a9d33','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(157,18,'_oembed_time_41b788c25402c72e74c33ce6e87a9d33','1421052613'),(158,18,'_oembed_e2267e277f1449a0b4b310fbf68c4dd8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(159,18,'_oembed_time_e2267e277f1449a0b4b310fbf68c4dd8','1421052614'),(160,18,'_oembed_29a08914d9cdf576d1002acfb6282ec8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"492\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(161,18,'_oembed_time_29a08914d9cdf576d1002acfb6282ec8','1421052994'),(162,18,'_oembed_49c19f4bc45a48c9007a6437374abfcb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"492\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(163,18,'_oembed_time_49c19f4bc45a48c9007a6437374abfcb','1421052995'),(164,18,'_oembed_adcb289be1ef8080fea64b1430b10cf9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"461\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(165,18,'_oembed_time_adcb289be1ef8080fea64b1430b10cf9','1421053112'),(166,18,'_oembed_e883938f5257adbe2d70746db38839eb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"461\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(167,18,'_oembed_time_e883938f5257adbe2d70746db38839eb','1421053112'),(168,18,'_oembed_263aa92f5aba1bf399e8a9ece0764083','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(169,18,'_oembed_time_263aa92f5aba1bf399e8a9ece0764083','1421053133'),(170,18,'_oembed_615ee3122ea4eb1c9869dbc2413a311b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(171,18,'_oembed_time_615ee3122ea4eb1c9869dbc2413a311b','1421053133'),(172,18,'_oembed_a908cbcf9af319f97137383b8a2970c8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(173,18,'_oembed_time_a908cbcf9af319f97137383b8a2970c8','1421053136'),(174,18,'_oembed_a10845c0a13e0734b9f14034be6632a2','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(175,18,'_oembed_time_a10845c0a13e0734b9f14034be6632a2','1421053136'),(176,18,'_oembed_ba6d19e501c9264f631aee2c7347b273','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(177,18,'_oembed_time_ba6d19e501c9264f631aee2c7347b273','1421053431'),(178,18,'_oembed_66976e056d6ad93829fbc10034979af9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(179,18,'_oembed_time_66976e056d6ad93829fbc10034979af9','1421053431'),(180,18,'_oembed_8876cf8c10d2a0d31298bc3df623e3ce','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(181,18,'_oembed_time_8876cf8c10d2a0d31298bc3df623e3ce','1422862127'),(182,18,'_oembed_ef731d99375e9a5f6e7e21e253141461','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(183,18,'_oembed_time_ef731d99375e9a5f6e7e21e253141461','1422862128'),(184,18,'_oembed_efcd33093c3b6044774e36edf78e89f1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(185,18,'_oembed_time_efcd33093c3b6044774e36edf78e89f1','1423044282'),(186,18,'_oembed_09a0a776ac6e88d9b3eaec30e11dda96','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(187,18,'_oembed_time_09a0a776ac6e88d9b3eaec30e11dda96','1423044282'),(188,18,'_oembed_d1dc13194be4b0ac26485dc860966b46','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(189,18,'_oembed_time_d1dc13194be4b0ac26485dc860966b46','1425551105'),(190,18,'_oembed_8c4220b6f602587159f18f205ed72a09','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(191,18,'_oembed_time_8c4220b6f602587159f18f205ed72a09','1425551105'),(192,19,'_publicize_pending','1'),(193,19,'original_post_id','14'),(194,19,'_wp_old_slug','14'),(195,20,'_publicize_pending','1'),(196,20,'original_post_id','15'),(197,20,'_wp_old_slug','15'),(198,21,'_publicize_pending','1'),(199,21,'original_post_id','16'),(200,21,'_wp_old_slug','16'),(201,22,'_publicize_pending','1'),(202,22,'original_post_id','17'),(203,22,'_wp_old_slug','17'),(204,23,'_publicize_pending','1'),(205,23,'original_post_id','18'),(206,23,'_wp_old_slug','18'),(207,24,'_publicize_pending','1'),(208,24,'original_post_id','19'),(209,24,'_wp_old_slug','19'),(210,25,'_publicize_pending','1'),(211,25,'original_post_id','20'),(212,25,'_wp_old_slug','20'),(213,26,'_publicize_pending','1'),(214,26,'original_post_id','21'),(215,26,'_wp_old_slug','21'),(216,27,'_publicize_pending','1'),(217,27,'original_post_id','22'),(218,27,'_wp_old_slug','22'),(219,28,'_publicize_pending','1'),(220,28,'original_post_id','23'),(221,28,'_wp_old_slug','23'),(222,29,'_publicize_pending','1'),(223,29,'original_post_id','24'),(224,29,'_wp_old_slug','24'),(225,29,'_wpas_skip_tumblr','1'),(226,29,'_wpas_skip_linkedin','1'),(227,29,'_wpas_skip_twitter','1'),(228,29,'_wpas_skip_google_plus','1'),(229,29,'_wpas_skip_facebook','1'),(230,29,'_wpas_skip_path','1'),(231,30,'_publicize_pending','1'),(232,30,'original_post_id','25'),(233,30,'_wp_old_slug','25'),(234,31,'_publicize_pending','1'),(235,31,'original_post_id','26'),(236,31,'_wp_old_slug','26'),(237,32,'_wp_attached_file','2015/01/cd83f-img_1069_bw.jpeg'),(238,32,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:600;s:6:\"height\";i:680;s:4:\"file\";s:30:\"2015/01/cd83f-img_1069_bw.jpeg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(239,32,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/54a35a53e4b0170492d35f2c/1419993494856/IMG_1069_bw.jpeg?format=original'),(240,33,'_wp_attached_file','2015/01/fd2dc-1414430975738.jpg'),(241,33,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:438;s:6:\"height\";i:261;s:4:\"file\";s:31:\"2015/01/fd2dc-1414430975738.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(242,33,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544e80d2e4b0d6a3acdebaca/1414430975738/?format=original'),(243,34,'_publicize_pending','1'),(244,34,'original_post_id','27'),(245,34,'_wp_old_slug','27'),(246,35,'_publicize_pending','1'),(247,35,'original_post_id','28'),(248,35,'_wp_old_slug','28'),(249,37,'_wp_attached_file','2015/01/b5a85-1420712271195.jpg'),(250,37,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1500;s:6:\"height\";i:1953;s:4:\"file\";s:31:\"2015/01/b5a85-1420712271195.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:16:\"Paulinus_Hardi_S\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1417690324;s:9:\"copyright\";s:8:\"Paulinus\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(251,37,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/54ae5942e4b0c715bd713ccd/1420712271195/?format=original'),(252,38,'_publicize_pending','1'),(253,38,'original_post_id','29'),(254,38,'_wp_old_slug','29'),(255,39,'_wp_attached_file','2014/12/img.jpg'),(256,39,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1500;s:6:\"height\";i:752;s:4:\"file\";s:15:\"2014/12/img.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(257,39,'pre_import_post_parent','0'),(258,39,'pre_import_post_id','13'),(259,39,'_original_import_url','http://static.squarespace.com/static/539fd7dde4b091554a614beb/542d61b2e4b08f9cfbc4cd56/548d5e68e4b02bdc07d42984/1420488045832/#img.jpg'),(260,40,'_publicize_pending','1'),(261,40,'original_post_id','30'),(262,40,'_wp_old_slug','30'),(263,42,'_publicize_pending','1'),(264,42,'original_post_id','31'),(265,42,'_wp_old_slug','31'),(266,43,'_wp_attached_file','2015/01/e173e-1418707546217.jpg'),(267,43,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:314;s:6:\"height\";i:311;s:4:\"file\";s:31:\"2015/01/e173e-1418707546217.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(268,43,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/548fc259e4b057b610545978/1418707546217/?format=original'),(269,44,'_publicize_pending','1'),(270,44,'original_post_id','32'),(271,44,'_wp_old_slug','32'),(272,44,'_wp_page_template','default'),(273,44,'geo_public','0'),(274,45,'_wp_attached_file','2015/01/5b880-1414509713341.jpg'),(275,45,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:336;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2015/01/5b880-1414509713341.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(276,45,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544fb491e4b0b58203ba047e/1414509713341/?format=original'),(277,46,'_wp_attached_file','2015/01/13bff-1414346639208.jpg'),(278,46,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:525;s:6:\"height\";i:350;s:4:\"file\";s:31:\"2015/01/13bff-1414346639208.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(279,46,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544d378ae4b0d70e824803cb/1414346639208/?format=original'),(280,47,'_wp_attached_file','2015/01/31541-1420488025799.jpg'),(281,47,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1500;s:6:\"height\";i:752;s:4:\"file\";s:31:\"2015/01/31541-1420488025799.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(282,47,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/54aaed56e4b07985e37a61d2/1420488025799/?format=original'),(283,52,'_wp_attached_file','2015/01/a2b4b-1419994204415.png'),(284,52,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:525;s:6:\"height\";i:427;s:4:\"file\";s:31:\"2015/01/a2b4b-1419994204415.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(285,52,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544d3217e4b08f142d9e0e4e/1419994204415/?format=original'),(286,54,'_wp_attached_file','2015/01/f6ee2-1414346406409.png'),(287,54,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:250;s:6:\"height\";i:290;s:4:\"file\";s:31:\"2015/01/f6ee2-1414346406409.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(288,54,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544d34e4e4b0399666b83ec0/1414346406409/?format=original'),(289,56,'_wp_attached_file','2015/01/bef21-1414430460423.png'),(290,56,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:450;s:6:\"height\";i:346;s:4:\"file\";s:31:\"2015/01/bef21-1414430460423.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(291,56,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544e7eb1e4b0b1199cf934f9/1414430460423/?format=original'),(292,58,'_wp_attached_file','2015/01/55e29-sedlar_bio_002_edit.jpg'),(293,58,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:37:\"2015/01/55e29-sedlar_bio_002_edit.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(294,58,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/54ae11c3e4b0c715bd707202/1420693956438/sedlar_bio_002_edit.jpg?format=original'),(295,60,'_wp_attached_file','2015/01/fc10b-1414256074883.jpg'),(296,60,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:670;s:6:\"height\";i:480;s:4:\"file\";s:31:\"2015/01/fc10b-1414256074883.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(297,60,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544bd5c9e4b07c493b2140f1/1414256074883/?format=original'),(298,62,'_wp_attached_file','2015/01/da28d-1414257788562.png'),(299,62,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:670;s:6:\"height\";i:386;s:4:\"file\";s:31:\"2015/01/da28d-1414257788562.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(300,62,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544bdc7ce4b05d5a7fec780f/1414257788562/?format=original'),(301,64,'_wp_attached_file','2015/01/0af06-inundation233studio.png'),(302,64,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:600;s:6:\"height\";i:359;s:4:\"file\";s:37:\"2015/01/0af06-inundation233studio.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(303,64,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544bde63e4b0d4afb024938f/1415381898178/Inundation+%233+Studio?format=original'),(304,66,'_wp_attached_file','2015/01/7c9d4-1414274127143.png'),(305,66,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:670;s:6:\"height\";i:222;s:4:\"file\";s:31:\"2015/01/7c9d4-1414274127143.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(306,66,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544c1c4ee4b0d6a3acda99f7/1414274127143/?format=original'),(307,68,'_wp_attached_file','2015/01/e2126-1414336360887.png'),(308,68,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:670;s:6:\"height\";i:411;s:4:\"file\";s:31:\"2015/01/e2126-1414336360887.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(309,68,'auto_import','http://static1.squarespace.com/static/539fd7dde4b091554a614beb/t/544d0f68e4b0b3ec31aab8c2/1414336360887/?format=original'),(310,73,'_publicize_pending','1'),(311,73,'geo_public','0'),(312,73,'_wp_page_template','default'),(313,75,'_oembed_129b563fdbecfc4be84cc33afb1aa618','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"460\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(314,75,'_oembed_time_129b563fdbecfc4be84cc33afb1aa618','1421034391'),(315,75,'_oembed_e885482e4f13abefd383ceaaab06e45c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"460\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(316,75,'_oembed_time_e885482e4f13abefd383ceaaab06e45c','1421034391'),(317,75,'_publicize_pending','1'),(318,75,'geo_public','0'),(319,75,'_oembed_time_16708f3cd476fd1cb640d3693a780286','1421037389'),(320,75,'_oembed_16708f3cd476fd1cb640d3693a780286','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(321,75,'_oembed_time_cf3e3e829fd12ae0f30aa2390180467e','1421037389'),(322,75,'_oembed_cf3e3e829fd12ae0f30aa2390180467e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(323,75,'_oembed_aa06487a29a133bcdc17bf7e80d22398','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(324,75,'_oembed_time_aa06487a29a133bcdc17bf7e80d22398','1421037608'),(325,75,'_oembed_3c836b7a92a158a6108a6752f4fc36cc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(326,75,'_oembed_time_3c836b7a92a158a6108a6752f4fc36cc','1421037608'),(327,75,'_oembed_4b747878b8875098db9f7af3fc9eddfa','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(328,75,'_oembed_time_4b747878b8875098db9f7af3fc9eddfa','1421041141'),(329,75,'_oembed_8e8aefeb74218413bb6334688cbf9fe6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(330,75,'_oembed_time_8e8aefeb74218413bb6334688cbf9fe6','1421041141'),(331,75,'_oembed_ba6d19e501c9264f631aee2c7347b273','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(332,75,'_oembed_time_ba6d19e501c9264f631aee2c7347b273','1421054474'),(333,75,'_oembed_66976e056d6ad93829fbc10034979af9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(334,75,'_oembed_time_66976e056d6ad93829fbc10034979af9','1421054474'),(335,75,'_wp_page_template','default'),(336,75,'_oembed_ef731d99375e9a5f6e7e21e253141461','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(337,75,'_oembed_time_ef731d99375e9a5f6e7e21e253141461','1422862349'),(338,75,'_oembed_ed8b7bb28baa3f15005011e891d0de46','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(339,75,'_oembed_time_ed8b7bb28baa3f15005011e891d0de46','1422865119'),(340,75,'_oembed_09a0a776ac6e88d9b3eaec30e11dda96','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(341,75,'_oembed_time_09a0a776ac6e88d9b3eaec30e11dda96','1423048432'),(342,83,'_publicize_pending','1'),(343,83,'geo_public','0'),(344,83,'_wp_page_template','default'),(353,85,'_menu_item_type','post_type'),(354,85,'_menu_item_menu_item_parent','0'),(355,85,'_menu_item_object_id','8'),(356,85,'_menu_item_object','page'),(357,85,'_menu_item_target',''),(358,85,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(359,85,'_menu_item_xfn',''),(360,85,'_menu_item_url',''),(361,86,'_menu_item_type','post_type'),(362,86,'_menu_item_menu_item_parent','0'),(363,86,'_menu_item_object_id','83'),(364,86,'_menu_item_object','page'),(365,86,'_menu_item_target',''),(366,86,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(367,86,'_menu_item_xfn',''),(368,86,'_menu_item_url',''),(369,87,'_menu_item_type','post_type'),(370,87,'_menu_item_menu_item_parent','0'),(371,87,'_menu_item_object_id','75'),(372,87,'_menu_item_object','page'),(373,87,'_menu_item_target',''),(374,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(375,87,'_menu_item_xfn',''),(376,87,'_menu_item_url',''),(377,88,'_menu_item_type','post_type'),(378,88,'_menu_item_menu_item_parent','0'),(379,88,'_menu_item_object_id','73'),(380,88,'_menu_item_object','page'),(381,88,'_menu_item_target',''),(382,88,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(383,88,'_menu_item_xfn',''),(384,88,'_menu_item_url',''),(385,89,'_menu_item_type','post_type'),(386,89,'_menu_item_menu_item_parent','0'),(387,89,'_menu_item_object_id','9'),(388,89,'_menu_item_object','page'),(389,89,'_menu_item_target',''),(390,89,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(391,89,'_menu_item_xfn',''),(392,89,'_menu_item_url',''),(393,109,'_wp_attached_file','2015/01/petajakarta_year1_final_webv2-0_opt.pdf'),(394,136,'_wp_attached_file','2015/01/img021.jpg'),(395,136,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:4962;s:6:\"height\";i:3509;s:4:\"file\";s:18:\"2015/01/img021.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(396,136,'_wp_attachment_image_alt','Gotong Royong Goes Digital lewat PetaJakarta.org'),(397,152,'geo_public','0'),(398,152,'_publicize_pending','1'),(399,152,'_wpas_skip_facebook','1'),(400,152,'_wpas_skip_google_plus','1'),(401,152,'_wpas_skip_twitter','1'),(402,152,'_wpas_skip_linkedin','1'),(403,152,'_wpas_skip_tumblr','1'),(404,152,'_wpas_skip_path','1'),(405,153,'_wp_attached_file','2015/02/15946552566_dda9a88a25_o.jpg'),(406,153,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:5184;s:6:\"height\";i:3456;s:4:\"file\";s:36:\"2015/02/15946552566_dda9a88a25_o.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(407,154,'_wp_attached_file','2015/02/15861856331_4428056ec6_k.jpg'),(408,154,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:36:\"2015/02/15861856331_4428056ec6_k.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(409,160,'geo_public','0'),(410,160,'_oembed_34a37286d6e6fac2018cc8447d787312','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(411,160,'_oembed_time_34a37286d6e6fac2018cc8447d787312','1425348059'),(412,160,'_publicize_pending','1'),(413,160,'_oembed_dd77a9aec435709f0b8e9b77151c3fd5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(414,160,'_oembed_498667fdb94e2129688209bbb5a1f4c3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(415,160,'_oembed_time_498667fdb94e2129688209bbb5a1f4c3','1422854231'),(416,160,'_oembed_time_dd77a9aec435709f0b8e9b77151c3fd5','1422854232'),(417,160,'_oembed_96e9a2a33e2af821fcab4df08b672df3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(418,160,'_oembed_time_96e9a2a33e2af821fcab4df08b672df3','1422862127'),(419,160,'_oembed_b6aa42da14eb1d685ca5a54fbd239a62','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(420,160,'_oembed_time_b6aa42da14eb1d685ca5a54fbd239a62','1423044282'),(421,160,'_oembed_9e60a05093382b3a62f55ab66dc1e715','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"550\"><p>Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(422,160,'_oembed_time_9e60a05093382b3a62f55ab66dc1e715','1425551104'),(423,161,'_wp_attached_file','2015/02/15765103814_649cc6bb09_k.jpg'),(424,161,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:36:\"2015/02/15765103814_649cc6bb09_k.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(425,162,'_wp_attached_file','2015/02/16200036060_3db224152e_k.jpg'),(426,162,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:36:\"2015/02/16200036060_3db224152e_k.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(427,182,'_wp_attached_file','2015/02/cropped-peta-jakarta-logo2.png'),(428,182,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:945;s:6:\"height\";i:169;s:4:\"file\";s:38:\"2015/02/cropped-peta-jakarta-logo2.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(429,182,'_wp_attachment_is_custom_header','pub/twentytwelve'),(430,182,'_wp_attachment_custom_header_last_used_pub/twentytwelve','1422866954'),(431,182,'_wp_attachment_context','custom-header'),(432,189,'_wp_attached_file','2015/02/cropped-cropped-cropped-peta-jakarta-logo2.png'),(433,189,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:945;s:6:\"height\";i:169;s:4:\"file\";s:54:\"2015/02/cropped-cropped-cropped-peta-jakarta-logo2.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(434,189,'_wp_attachment_context','custom-header'),(435,189,'_wp_attachment_custom_header_last_used_pub/sela','1423044475'),(436,189,'_wp_attachment_is_custom_header','pub/sela'),(437,190,'_wp_attached_file','2015/02/ands-logo.jpg'),(438,190,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1372;s:6:\"height\";i:660;s:4:\"file\";s:21:\"2015/02/ands-logo.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(439,191,'_wp_attached_file','2015/02/bpbd_web.png'),(440,191,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:337;s:6:\"height\";i:338;s:4:\"file\";s:20:\"2015/02/bpbd_web.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(441,192,'_wp_attached_file','2015/02/dki_web.png'),(442,192,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:337;s:6:\"height\";i:338;s:4:\"file\";s:19:\"2015/02/dki_web.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(443,193,'_wp_attached_file','2015/02/global_challengescol.pdf'),(444,194,'_wp_attached_file','2015/02/smartstackedhybridpmsint-1.jpg'),(445,194,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1753;s:6:\"height\";i:1360;s:4:\"file\";s:38:\"2015/02/smartstackedhybridpmsint-1.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(446,195,'_wp_attached_file','2015/02/twitter_logo_blue.png'),(447,195,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1139;s:6:\"height\";i:926;s:4:\"file\";s:29:\"2015/02/twitter_logo_blue.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(448,196,'_wp_attached_file','2015/02/uow_smart_web.png'),(449,196,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1200;s:6:\"height\";i:249;s:4:\"file\";s:25:\"2015/02/uow_smart_web.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(450,202,'_oembed_6327f4c07550f97f6e6670bcb9279dbc','{{unknown}}'),(451,202,'_oembed_c7ccc19b55e7eb5a88981cfdb621853e','{{unknown}}'),(452,202,'_wp_page_template','default'),(453,202,'geo_public','0'),(454,202,'_oembed_bab8f3396256f4a138cd12857bb046a2','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Jakarta banjir lagi . No coment ! malu ah udah mati2an kemaren ngedukung . <a href=\"http://t.co/q1SUuZK76s\">pic.twitter.com/q1SUuZK76s</a></p>— J.E 's Ebod. (@jang_ebod) <a href=\"https://twitter.com/jang_ebod/status/538551849297526784\">November 29, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(455,202,'_oembed_time_bab8f3396256f4a138cd12857bb046a2','1423648877'),(456,202,'_oembed_74e38ce659a01f5b4866e84ecbf915a9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>07.30 Banjir setinggi 3m rendam RW 07 Rawajati, Pancoran Jaksel <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"http://t.co/ohUSabEJC0\">pic.twitter.com/ohUSabEJC0</a></p>— Polsek Pancoran (@PolsekPancoran) <a href=\"https://twitter.com/PolsekPancoran/status/535230863102201857\">November 20, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(457,202,'_oembed_time_74e38ce659a01f5b4866e84ecbf915a9','1423648877'),(458,202,'_oembed_9427a8b1ce210f660c67651a4539254b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>지금 부산 상황을 한마디로 표현하면 "부틀란티스"...급류에 휩쓸리지 않도록 부산시민 여러분 조심하세요! <a href=\"https://twitter.com/hashtag/%EC%95%88%EC%A0%84%ED%95%B4?src=hash\">#안전해</a> <a href=\"http://t.co/NZdH8TANpv\">pic.twitter.com/NZdH8TANpv</a></p>— 옴부즈맨 (@gombury) <a href=\"https://twitter.com/gombury/status/503798709771964416\">August 25, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(459,202,'_oembed_time_9427a8b1ce210f660c67651a4539254b','1423648878'),(460,202,'_oembed_ef8d0ebdf5cef561a13e2b98ecf6be85','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>17:01 <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> di dpn Pasar Jagal Buncit Jaksel, sementara tidak bisa dilintasi semua jenis ranmor. <a href=\"https://twitter.com/Robi30045\">@robi30045</a> <a href=\"http://t.co/gSrjieDv8g\">pic.twitter.com/gSrjieDv8g</a></p>— TMC Polda Metro Jaya (@TMCPoldaMetro) <a href=\"https://twitter.com/TMCPoldaMetro/status/537547610936987648\">November 26, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(461,202,'_oembed_time_ef8d0ebdf5cef561a13e2b98ecf6be85','1423648878'),(462,202,'_oembed_e9fe18c4eece60c93928272a1560b57d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> 40cm di jl teladan Gandaria-selatan CC: <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/Ahok_BasukiTP\">@Ahok_BasukiTP</a> <a href=\"http://t.co/Q3ivX0O3a1\">pic.twitter.com/Q3ivX0O3a1</a></p>— Shapto Priyono (@tattooman) <a href=\"https://twitter.com/tattooman/status/537500690034069504\">November 26, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(463,202,'_oembed_time_e9fe18c4eece60c93928272a1560b57d','1423648878'),(464,202,'_publicize_pending','1'),(465,202,'_oembed_ba6d19e501c9264f631aee2c7347b273','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(466,202,'_oembed_time_ba6d19e501c9264f631aee2c7347b273','1423649037'),(467,202,'_oembed_df5ae871a8b8f89f853f3f64f91272a4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>Jakarta banjir lagi . No coment ! malu ah udah mati2an kemaren ngedukung . <a href=\"http://t.co/q1SUuZK76s\">pic.twitter.com/q1SUuZK76s</a></p>— J.E 's Ebod. (@jang_ebod) <a href=\"https://twitter.com/jang_ebod/status/538551849297526784\">November 29, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(468,202,'_oembed_time_df5ae871a8b8f89f853f3f64f91272a4','1423653924'),(469,202,'_oembed_14b0edcf0e6d462eada2a30c00720913','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>지금 부산 상황을 한마디로 표현하면 "부틀란티스"...급류에 휩쓸리지 않도록 부산시민 여러분 조심하세요! <a href=\"https://twitter.com/hashtag/%EC%95%88%EC%A0%84%ED%95%B4?src=hash\">#안전해</a> <a href=\"http://t.co/NZdH8TANpv\">pic.twitter.com/NZdH8TANpv</a></p>— 옴부즈맨 (@gombury) <a href=\"https://twitter.com/gombury/status/503798709771964416\">August 25, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(470,202,'_oembed_time_14b0edcf0e6d462eada2a30c00720913','1423653925'),(471,202,'_oembed_0f403ca4fb48dfa01dce686a3932f66e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>17:01 <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> di dpn Pasar Jagal Buncit Jaksel, sementara tidak bisa dilintasi semua jenis ranmor. <a href=\"https://twitter.com/Robi30045\">@robi30045</a> <a href=\"http://t.co/gSrjieDv8g\">pic.twitter.com/gSrjieDv8g</a></p>— TMC Polda Metro Jaya (@TMCPoldaMetro) <a href=\"https://twitter.com/TMCPoldaMetro/status/537547610936987648\">November 26, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(472,202,'_oembed_time_0f403ca4fb48dfa01dce686a3932f66e','1423653925'),(473,202,'_oembed_e693656fe3852ffc137d261274d0d865','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> 40cm di jl teladan Gandaria-selatan CC: <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/Ahok_BasukiTP\">@Ahok_BasukiTP</a> <a href=\"http://t.co/Q3ivX0O3a1\">pic.twitter.com/Q3ivX0O3a1</a></p>— Shapto Priyono (@tattooman) <a href=\"https://twitter.com/tattooman/status/537500690034069504\">November 26, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(474,202,'_oembed_time_e693656fe3852ffc137d261274d0d865','1423653925'),(475,202,'_oembed_48ba3301b3d6981a48fb92910a6d66ca','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>Pak <a href=\"https://twitter.com/jokowi_do2\">@jokowi_do2</a>, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(476,202,'_oembed_time_48ba3301b3d6981a48fb92910a6d66ca','1423653925'),(477,207,'_wp_attached_file','2015/02/cropped-cropped-cropped-cropped-peta-jakarta-logo2.png'),(478,207,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:945;s:6:\"height\";i:169;s:4:\"file\";s:62:\"2015/02/cropped-cropped-cropped-cropped-peta-jakarta-logo2.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(479,207,'_wp_attachment_context','custom-header'),(480,207,'_wp_attachment_custom_header_last_used_pub/blogum','1423649681'),(482,216,'_wp_page_template','default'),(483,216,'geo_public','0'),(484,216,'_oembed_8e9d45a07cc77c76abb2a52d2452c8e4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Komplek Sunter Bisma Jkt Utara, terendam +/-70cm akibat curah hujan tinggi selama 2 malam <a href=\"https://twitter.com/hashtag/JakartaBanjir?src=hash\">#JakartaBanjir</a> <a href=\"http://t.co/zChSsEP94m\">pic.twitter.com/zChSsEP94m</a></p>— Evelyn Faustina (@efaustina) <a href=\"https://twitter.com/efaustina/status/564946953079750657\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(485,216,'_oembed_time_8e9d45a07cc77c76abb2a52d2452c8e4','1424146456'),(486,216,'_oembed_60a6a4a0beff5fe446a5afee13df3fe7','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> rawabuaya di kedalaman 60 cm <a href=\"http://t.co/QiChYzzBAh\">pic.twitter.com/QiChYzzBAh</a></p>— Budi Supriyanto (@BudiBislovers) <a href=\"https://twitter.com/BudiBislovers/status/564745911528460288\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(487,216,'_oembed_time_60a6a4a0beff5fe446a5afee13df3fe7','1424146457'),(488,216,'_oembed_a33008d0ca9192c1f68d82a1df40965e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/CommuterLine\">@CommuterLine</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di jalan gunung sahari raya,,rel kerenden di st.rajawali <a href=\"http://t.co/aQ5lUalOCg\">pic.twitter.com/aQ5lUalOCg</a></p>— and_rhe (@andrieseru) <a href=\"https://twitter.com/andrieseru/status/564704157995515904\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(489,216,'_oembed_time_a33008d0ca9192c1f68d82a1df40965e','1424146457'),(490,216,'_oembed_e71044d55986067740a0540b5d5156e4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Pintu Air Karet 14:00 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/CK1URNr3SF\">pic.twitter.com/CK1URNr3SF</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/564687467777765376\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(491,216,'_oembed_time_e71044d55986067740a0540b5d5156e4','1424146457'),(492,216,'_oembed_bd2701361168648dcaeb13e89b8c43b6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/KelapaGading?src=hash\">#KelapaGading</a> depan showroom <a href=\"https://twitter.com/hashtag/Ford?src=hash\">#Ford</a> <a href=\"http://t.co/uTOOjq2mX9\">pic.twitter.com/uTOOjq2mX9</a></p>— Callvin Cheung (@Callvin_Cheung) <a href=\"https://twitter.com/Callvin_Cheung/status/564679290139066368\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(493,216,'_oembed_time_bd2701361168648dcaeb13e89b8c43b6','1424146457'),(494,216,'_oembed_c7702a8a449f7886d8ec60e150e18f6e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> komplek kft banjir masih 1meter lebih ,mobil pompa Dr DKI Udh dtng <a href=\"http://t.co/rFUjOoHi7s\">pic.twitter.com/rFUjOoHi7s</a></p>— thiolenna (@tlenna) <a href=\"https://twitter.com/tlenna/status/565666804748787712\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(495,216,'_oembed_time_c7702a8a449f7886d8ec60e150e18f6e','1424146457'),(496,216,'_oembed_53e3c77321ce95896b0935b4cb480d96','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Evakuasi <a href=\"https://twitter.com/hashtag/KorbanBanjir?src=hash\">#KorbanBanjir</a> at Rt.08/10 CIPULIR, sore ini kedalaman air 1,5 m <a href=\"https://twitter.com/hashtag/FORMULA?src=hash\">#FORMULA</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/sigit_iko\">@sigit_iko</a> <a href=\"http://t.co/j6Bi5Syhhr\">pic.twitter.com/j6Bi5Syhhr</a></p>— Sejuta Berdaya #Gres (@iwan_rahmat) <a href=\"https://twitter.com/iwan_rahmat/status/565102500064133121\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(497,216,'_oembed_time_53e3c77321ce95896b0935b4cb480d96','1424146458'),(498,216,'_oembed_d7ed0b315c72f7048e138fe8982283f8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Menerima & mnyalurkan bantuan u/ korban banjir. Cp Kokom 081585519492,edi 087881151971 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"http://t.co/MW04At7ho7\">pic.twitter.com/MW04At7ho7</a></p>— UPC (@urbanpoor) <a href=\"https://twitter.com/urbanpoor/status/564981247340855297\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(499,216,'_oembed_time_d7ed0b315c72f7048e138fe8982283f8','1424146458'),(500,216,'_oembed_time_cece41b8ad43de4d27e7684733d5c740','1424146458'),(501,216,'_oembed_76521085ca0c0a56a56354af6a83a202','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> ah, thank you! Sangat terbantu. Informasi tentang banjir bisa langsung kesini <a href=\"http://t.co/REjnD4ZPZd\">http://t.co/REjnD4ZPZd</a></p>— Wahyu Kristianto (@kristories) <a href=\"https://twitter.com/kristories/status/564745536972926976\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(502,216,'_oembed_time_76521085ca0c0a56a56354af6a83a202','1424146458'),(503,216,'_oembed_a5328ac516f2feb0c2ec004f0c308905','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Bagi teman-teman di <a href=\"https://twitter.com/petajkt\">@petajkt</a> dan <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> ,tetap semangat ya.Warga Jakarta mengandalkan kalian. :)</p>— Jakarta GreenMap (@GreenMapJakarta) <a href=\"https://twitter.com/GreenMapJakarta/status/564692926173675520\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(504,216,'_oembed_time_a5328ac516f2feb0c2ec004f0c308905','1424146459'),(505,216,'_oembed_a70684c5ee1430dde1a509f4d4d30b54','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Teman-teman di <a href=\"https://twitter.com/petajkt\">@petajkt</a> pasti sibuk sekarang.Tetap semangat ya.</p>— Yansen Li (@yansen_li) <a href=\"https://twitter.com/yansen_li/status/564689439914356738\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(506,216,'_oembed_time_a70684c5ee1430dde1a509f4d4d30b54','1424146459'),(507,216,'_oembed_992f3369d4d9df792709ea50a5213c3e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> komplek ciputat baru,tang-sel <a href=\"http://t.co/ixk12HNwze\">pic.twitter.com/ixk12HNwze</a></p>— Azizah Kurniawan (@AzizahKurniawa2) <a href=\"https://twitter.com/AzizahKurniawa2/status/564706983970734081\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(508,216,'_oembed_time_992f3369d4d9df792709ea50a5213c3e','1424146459'),(509,216,'_oembed_77f7a7d525ee51a379ec3f366dface26','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a>#banjir di perumnas 3 bekasi timur. Kedalaman sekitar 60 cm - 1 m.</p>— ono289 (@bayuhartono289) <a href=\"https://twitter.com/bayuhartono289/status/564691346720448512\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(510,216,'_oembed_time_77f7a7d525ee51a379ec3f366dface26','1424146459'),(511,216,'_oembed_4541849bf66b177bca97e66302af4343','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Hindari jalan yang menuju roxy dari arah Harmoni <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/tVrcSZXAJJ\">pic.twitter.com/tVrcSZXAJJ</a></p>— APRIANI WARDANINGRUM (@ApLy_09) <a href=\"https://twitter.com/ApLy_09/status/564661421141524482\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(512,216,'_oembed_time_4541849bf66b177bca97e66302af4343','1424148646'),(513,216,'_oembed_5aaab5730941a57aa6da8d4faba86d26','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>.<a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> Medan Merdeka Barat - Utara.(ring1) <a href=\"http://t.co/cGtwMHtAr2\">pic.twitter.com/cGtwMHtAr2</a></p>— Prada (@adimuliapradana) <a href=\"https://twitter.com/adimuliapradana/status/564641787461906432\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(514,216,'_oembed_time_5aaab5730941a57aa6da8d4faba86d26','1424148646'),(515,216,'_oembed_fb07101f6203274d1c265b1493b8cc99','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> jalan mangga 11 kondisi air 50cm kendaraan jgn lewat lagi. Pompa tlg di perbanyak</p>— William T (@papoiibear) <a href=\"https://twitter.com/papoiibear/status/564630319048167425\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(516,216,'_oembed_time_fb07101f6203274d1c265b1493b8cc99','1424148647'),(517,216,'_oembed_34965803751a0f80942deb68263988ed','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Banjir di Kawasan Industri Pulogadung <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/petajkt?src=hash\">#petajkt</a> <a href=\"http://t.co/X731GRSnga\">pic.twitter.com/X731GRSnga</a></p>— ElviraPC (@elvirapc) <a href=\"https://twitter.com/elvirapc/status/564628606924492802\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(518,216,'_oembed_time_34965803751a0f80942deb68263988ed','1424148647'),(519,216,'_oembed_abd3b38846f0707092ae8ea57a7cd356','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> kami sampaikan laporan dari kawan-kawan di daerah Sunter, Banjir di Sunter Kirana III 20 - 30 CM. Take care. <a href=\"http://t.co/s2b1JEno03\">pic.twitter.com/s2b1JEno03</a></p>— Storania (@storania) <a href=\"https://twitter.com/storania/status/564626804900503553\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(520,216,'_oembed_time_abd3b38846f0707092ae8ea57a7cd356','1424148647'),(521,216,'_oembed_3c59690e7da475b81c9ba9e3a2928853','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> 50cm Jl. Papanggo 2C RT/RW. 008/03 Tanjung Priok, Jakut. <a href=\"https://twitter.com/hashtag/Cuaca?src=hash\">#Cuaca</a> hujan deras <a href=\"http://t.co/7CqdmP15re\">pic.twitter.com/7CqdmP15re</a></p>— SayaMelaporkanTaruna (@IsiTaruna) <a href=\"https://twitter.com/IsiTaruna/status/564626600772120576\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(522,216,'_oembed_time_3c59690e7da475b81c9ba9e3a2928853','1424148647'),(523,216,'_oembed_5ad76cd627b433738fda59e99208aef1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di Kelapa Hibrida - Klp Gading. Tinggi bervariasi 40 - 60 cm. Hujan masi deras <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"http://t.co/IzybMxLYpJ\">pic.twitter.com/IzybMxLYpJ</a></p>— Ridwan Sugianto (@pipigembrot) <a href=\"https://twitter.com/pipigembrot/status/564625939989299201\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(524,216,'_oembed_time_5ad76cd627b433738fda59e99208aef1','1424148648'),(525,216,'_oembed_b13b82a80656d6b22b44bdb45bb4ec8a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Banjir makin tinggi di jalan persahabatan timur 1 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/jktbanjir?src=hash\">#jktbanjir</a> <a href=\"https://twitter.com/hashtag/banjirjkt?src=hash\">#banjirjkt</a> <a href=\"http://t.co/BaOgKTq3ys\">pic.twitter.com/BaOgKTq3ys</a></p>— Juniors Place (@JrPlaceRwmangun) <a href=\"https://twitter.com/JrPlaceRwmangun/status/564604217285812224\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(526,216,'_oembed_time_b13b82a80656d6b22b44bdb45bb4ec8a','1424148648'),(527,216,'_oembed_e0f77bf16020f41b09e5fbf17e042462','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> banjir diperumh taman pulogebang cakung, sekitar 25-30cm <a href=\"http://t.co/pA58NCW59p\">pic.twitter.com/pA58NCW59p</a></p>— Harry Satya (@h_satya) <a href=\"https://twitter.com/h_satya/status/564594003178311682\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(528,216,'_oembed_time_e0f77bf16020f41b09e5fbf17e042462','1424148648'),(529,216,'_oembed_9a066c8fcf1a841442eaa61a33838e53','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Rorotan rt 5 rw 7 air sudah masuk kedalam rumah. <a href=\"https://twitter.com/b2ce4e93075341c\">@b2ce4e93075341c</a> <a href=\"https://twitter.com/InfoJakarta123\">@InfoJakarta123</a> <a href=\"https://twitter.com/lurahrorotan\">@lurahrorotan</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/aafe4u8GyG\">pic.twitter.com/aafe4u8GyG</a></p>— nafis kurtubi (@nafisannie) <a href=\"https://twitter.com/nafisannie/status/562470708572217344\">February 3, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(530,216,'_oembed_time_9a066c8fcf1a841442eaa61a33838e53','1424148648'),(531,216,'_oembed_b6cf0850e065618713dab8a1fa369511','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> ini view Kali Belakang rumah yg tidak kuat menampung debit air yg terlalu banyak at komplek KEMENDAGRI <a href=\"http://t.co/8FGPALNRtI\">pic.twitter.com/8FGPALNRtI</a></p>— Onynduud (@tonnynduut) <a href=\"https://twitter.com/tonnynduut/status/558521408930578434\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(532,216,'_oembed_time_b6cf0850e065618713dab8a1fa369511','1424148648'),(533,216,'_oembed_ea192dfbb4ab4013664981d19a56ef10','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> ini pak ahok di depan rumah saya <a href=\"http://t.co/xQMvsj3oIR\">pic.twitter.com/xQMvsj3oIR</a></p>— cece (@vierlieocktavia) <a href=\"https://twitter.com/vierlieocktavia/status/558465856305262592\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(534,216,'_oembed_time_ea192dfbb4ab4013664981d19a56ef10','1424148649'),(535,216,'_oembed_6a68e56d757ad9ae28217d1023e7011f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>suasana banjir Rw 05 dan 06 kel. serdang, kec kemayoran, jakarta pusat. <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/iQRECnEulN\">pic.twitter.com/iQRECnEulN</a></p>— Dicky Oskandar (@dickyoskandar) <a href=\"https://twitter.com/dickyoskandar/status/558416759468728320\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(536,216,'_oembed_time_6a68e56d757ad9ae28217d1023e7011f','1424148649'),(537,216,'_oembed_0fe87e992192cada75c4e2cd28facf3f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di komplek tugu permai ancol jakarta utara <a href=\"http://t.co/HiY1vUTNYV\">pic.twitter.com/HiY1vUTNYV</a></p>— Amaryadi (@amaryadi46) <a href=\"https://twitter.com/amaryadi46/status/558415908826128385\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(538,216,'_oembed_time_0fe87e992192cada75c4e2cd28facf3f','1424148649'),(539,216,'_oembed_a21eb14eb0fd32c342a2d37d9260f2b6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> diatas dengkul hampir mau sepaha di wilayah koja jakut <a href=\"http://t.co/U8dNbXhRCh\">pic.twitter.com/U8dNbXhRCh</a></p>— Lutfia-Fiaaa (@Lutfia_Fiaaa2) <a href=\"https://twitter.com/Lutfia_Fiaaa2/status/558413926006657026\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(540,216,'_oembed_time_a21eb14eb0fd32c342a2d37d9260f2b6','1424148649'),(541,216,'_oembed_9717cb602fd5d1187a5f36d1f20eb063','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> kawasan tugu utara, koja jakarta utara 30-40 cm <a href=\"http://t.co/ks35M76JsH\">pic.twitter.com/ks35M76JsH</a></p>— iqballsalasa (@iqballsalasa) <a href=\"https://twitter.com/iqballsalasa/status/558389999385579520\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(542,216,'_oembed_time_9717cb602fd5d1187a5f36d1f20eb063','1424148649'),(543,216,'_oembed_2abf816622c211ab7833ceb49d863ee3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>4:32 WIB. <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> Komp. Sekretaris Negara Rt. 8/15 <a href=\"https://twitter.com/hashtag/Plumpang?src=hash\">#Plumpang</a> <a href=\"https://twitter.com/hashtag/TuguUtara?src=hash\">#TuguUtara</a> <a href=\"https://twitter.com/hashtag/Koja?src=hash\">#Koja</a> <a href=\"http://t.co/QLjiIC2PuE\">pic.twitter.com/QLjiIC2PuE</a></p>— #GaliHartaKarun (@BISMAMedia) <a href=\"https://twitter.com/BISMAMedia/status/558377260005076992\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(544,216,'_oembed_time_2abf816622c211ab7833ceb49d863ee3','1424148650'),(545,216,'_oembed_aad72ade1222b5d3b6fbbdf82dbfcc6b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>18:15:TMA waduk Pondok Bandung RW 2 KBU Jakbar terpantau normal.<a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/poskotanews\">@poskotanews</a> <a href=\"https://twitter.com/indopos\">@indopos</a> <a href=\"http://t.co/PiKanHrVwI\">pic.twitter.com/PiKanHrVwI</a></p>— Solichin LMK 02 KBU (@solichin_92663) <a href=\"https://twitter.com/solichin_92663/status/558231069774733312\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(546,216,'_oembed_time_aad72ade1222b5d3b6fbbdf82dbfcc6b','1424148650'),(547,216,'_oembed_ad869fb9a40841335b36d965e5ed59c8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> geo sudah di aktifkan bos.. <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> mulai mengisi rutinitas hari ini. Keep spirit guys <a href=\"http://t.co/vuQqfP6wYI\">pic.twitter.com/vuQqfP6wYI</a></p>— Ardiansyah J Prawira (@ardiduker) <a href=\"https://twitter.com/ardiduker/status/558136861835534336\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(548,216,'_oembed_time_ad869fb9a40841335b36d965e5ed59c8','1424148650'),(549,216,'_oembed_63d496116bea5f51880ac3f8d6acf9a1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a>#banjir kondisi banjir di jl mangga 11 kepaduri, sdh mulai surut tapi lambat <a href=\"http://t.co/13wTMhYujl\">pic.twitter.com/13wTMhYujl</a></p>— William T (@papoiibear) <a href=\"https://twitter.com/papoiibear/status/548767265311563776\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(550,216,'_oembed_time_63d496116bea5f51880ac3f8d6acf9a1','1424148650'),(551,216,'_oembed_13f0f732486a2982afd6184411fc3204','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> rumah susun bci cengkareng timur <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/soboASeAjn\">pic.twitter.com/soboASeAjn</a></p>— siti laelatul izah (@10_laela) <a href=\"https://twitter.com/10_laela/status/548740483241889792\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(552,216,'_oembed_time_13f0f732486a2982afd6184411fc3204','1424148651'),(553,216,'_oembed_b55a5a16796fc555a4c4c586bf532fa7','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Saluran air di samping Pasar Jatirawasari tdk berfungsi, akses warga menuju Cempaka Putih Barat tergenang <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/kaBwqbXG1A\">pic.twitter.com/kaBwqbXG1A</a></p>— Muhammad Ziad (@mziadz) <a href=\"https://twitter.com/mziadz/status/548659262671450112\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(554,216,'_oembed_time_b55a5a16796fc555a4c4c586bf532fa7','1424148651'),(555,216,'_oembed_375c16dd93981e666736c68e6b4da4f3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>TMA Kali. BKB Pondok Bandung RW 02 KBU terpantau tinggi <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/xTvdcQe9za\">pic.twitter.com/xTvdcQe9za</a></p>— Solichin LMK 02 KBU (@solichin_92663) <a href=\"https://twitter.com/solichin_92663/status/548643629829332993\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(556,216,'_oembed_time_375c16dd93981e666736c68e6b4da4f3','1424148651'),(557,216,'_oembed_58c5af3298c35b21bc709d106bb62172','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> jln.pam raya , sumur batu , jakpus ketinggian : +/- 30-40 cm <a href=\"http://t.co/fUmkbxkpYX\">pic.twitter.com/fUmkbxkpYX</a></p>— Helmi Dwimas P (@Helmi_jkt) <a href=\"https://twitter.com/Helmi_jkt/status/545950637620355072\">December 19, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(558,216,'_oembed_time_58c5af3298c35b21bc709d106bb62172','1424148651'),(559,216,'_oembed_65d6be14dc374bb12beb3c3e7a9176a0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Juanda 3 sudah dikirim perahu karet tim SAR dan pol PP <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> terima kasih <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a></p>— Mas Bro ® (@saya_masbro) <a href=\"https://twitter.com/saya_masbro/status/564641566086541312\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(560,216,'_oembed_time_65d6be14dc374bb12beb3c3e7a9176a0','1424148651'),(561,216,'_oembed_431c2f758f5da7d64d38768d62651fdb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Terima kasih <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> atas bantuan mobil pompa untuk komplek KFT,cengkareng barat. <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> <a href=\"http://t.co/uXkjSh5cbf\">pic.twitter.com/uXkjSh5cbf</a></p>— Suryadhamma Setyawan (@SuryaGuang) <a href=\"https://twitter.com/SuryaGuang/status/565795875562074113\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(562,216,'_oembed_time_431c2f758f5da7d64d38768d62651fdb','1424148652'),(563,216,'_oembed_5b3559c75e8116a24ffed2e0b490f81f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> bpk ibu trima ksh bantuannya skrg jl. Bellyra n pulomas VA sdh nyala lampunya. Sktr jl. Harpa Klp Gdg BCS air tgl 3cm.</p>— Argia 'HijaBella' (@ArgiaHijabella) <a href=\"https://twitter.com/ArgiaHijabella/status/565367645894373377\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(564,216,'_oembed_time_5b3559c75e8116a24ffed2e0b490f81f','1424148652'),(565,216,'_oembed_9e82afb04f1a9c3eefbd13bb34a039db','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/nitnot_478\">@nitnot_478</a> siang Mba, adiknya jd mau dievakuasi? Kita lg ada didekat Jl. Raflesia</p>— Monica (@monictika) <a href=\"https://twitter.com/monictika/status/565051338992533504\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(566,216,'_oembed_time_9e82afb04f1a9c3eefbd13bb34a039db','1424148652'),(567,216,'_oembed_f18b8f768368d608796681087cb37a14','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Butuh prahu karet utk evakuasi di budidarma semper timur, <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> sepinggang org dewasa. Cp warga 087885057561 (sri) <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a></p>— gugun muhammad (@gugunmuhammad1) <a href=\"https://twitter.com/gugunmuhammad1/status/558462196783382529\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(568,216,'_oembed_time_f18b8f768368d608796681087cb37a14','1424148652'),(569,216,'_oembed_e6f0ae4ba6b72b5a831d099eb86ae5dc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Mahasiswa Uni <a href=\"https://twitter.com/UOW\">@UOW</a>, <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> & <a href=\"https://twitter.com/twitter\">@twitter</a> membuat <a href=\"http://t.co/z6tqieVbOz\">http://t.co/z6tqieVbOz</a> sbg sarana utk kumpulkan & sebarkan info ttg banjir di Jkt.</p>— Dr David Engel (@DubesAustralia) <a href=\"https://twitter.com/DubesAustralia/status/566544885231005697\">February 14, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(570,216,'_oembed_time_e6f0ae4ba6b72b5a831d099eb86ae5dc','1424148652'),(571,216,'_oembed_99ad0f27b1d7a3e5a37844c1993ec6c1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> awesome work on keeping Jakarta residents informed of flooding trouplespots. <a href=\"https://twitter.com/hashtag/banjirJKT?src=hash\">#banjirJKT</a></p>— Rick Mulia (@rickmulia) <a href=\"https://twitter.com/rickmulia/status/564659355748810753\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(572,216,'_oembed_time_99ad0f27b1d7a3e5a37844c1993ec6c1','1424148653'),(573,216,'_oembed_902bb3007a953b6bdc25f6816309aec5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Happy monday all, berhubung hujan, aku nemu ini buat cek dan lapor daerah2 <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> dari <a href=\"https://twitter.com/petajkt\">@petajkt</a> smoga bermanfaat <a href=\"http://t.co/xHWzJsKGTS\">http://t.co/xHWzJsKGTS</a></p>— Rinni Wulandari (@rinni_w) <a href=\"https://twitter.com/rinni_w/status/564589091136606208\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(574,216,'_oembed_time_902bb3007a953b6bdc25f6816309aec5','1424148653'),(575,216,'_oembed_1bd13387eca410d86a57ebe2f7573ab6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Crowdsourcing flood location <a href=\"https://twitter.com/petajkt\">@petajkt</a>. There's always more to <a href=\"https://twitter.com/twitter\">@twitter</a> than frenzy twitwar & buzzer <a href=\"http://t.co/2cKw5hfW5a\">pic.twitter.com/2cKw5hfW5a</a></p>— Arif Kusbandono (@rifti) <a href=\"https://twitter.com/rifti/status/564587089795104768\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(576,216,'_oembed_time_1bd13387eca410d86a57ebe2f7573ab6','1424148653'),(577,216,'_oembed_485e24ca5b6552193c5f619cdb76fb1b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>akun <a href=\"https://twitter.com/petajkt\">@petajkt</a> mesti diperluas nih jd petajabodetabek :))</p>— yanhr (@yan_hr) <a href=\"https://twitter.com/yan_hr/status/564546679802560512\">February 8, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(578,216,'_oembed_time_485e24ca5b6552193c5f619cdb76fb1b','1424148653'),(579,216,'_oembed_2a0ab533611c19630ac196176997b95b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di jl. Mangga 11, 10cm saja surutnya lama, pompa hny ada2, mohon agar bs di tmbh lagi <a href=\"http://t.co/dXxL51OP5E\">pic.twitter.com/dXxL51OP5E</a></p>— William T (@papoiibear) <a href=\"https://twitter.com/papoiibear/status/566908261530476544\">February 15, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(580,216,'_oembed_time_2a0ab533611c19630ac196176997b95b','1424150302'),(581,216,'_oembed_862308981404c87d2fb2bc5ce7e20164','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/lewatmana\">@lewatmana</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> komplek KFT,Cengkareng Barat, 90 cm,Mohon Bantuan Pompa mobil <a href=\"http://t.co/JyOpMHGuJX\">pic.twitter.com/JyOpMHGuJX</a></p>— Suryadhamma Setyawan (@SuryaGuang) <a href=\"https://twitter.com/SuryaGuang/status/565658642465443841\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(582,216,'_oembed_time_862308981404c87d2fb2bc5ce7e20164','1424150302'),(583,216,'_oembed_51380167415130c3440fcb9ac6f652d9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> banjir blkg sd gandhi ancol barat masih sekitar 70cm. Pompa gak jalan? <a href=\"http://t.co/dVbcgVQhU4\">pic.twitter.com/dVbcgVQhU4</a></p>— Diky Muljana (@dikylung) <a href=\"https://twitter.com/dikylung/status/565404936624963584\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(584,216,'_oembed_time_51380167415130c3440fcb9ac6f652d9','1424150302'),(585,216,'_oembed_f0123c8ee49fd0c83a8a21a4a90e5239','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> ± 50cm-60cm dijalan kebantenan 4 RT10 RW04 cilincing Jakarta Utara <a href=\"http://t.co/XyWrXVbQbc\">pic.twitter.com/XyWrXVbQbc</a></p>— Taufiq A. Pratama (@OpickNiy) <a href=\"https://twitter.com/OpickNiy/status/565393262413119488\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(586,216,'_oembed_time_f0123c8ee49fd0c83a8a21a4a90e5239','1424150303'),(587,216,'_oembed_2ed433344c4f6c8dbc252c2e6df58651','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> Banjir di depan MKG, Kelapa Gading, Jakut. <a href=\"http://t.co/ZvVHRd3rmL\">pic.twitter.com/ZvVHRd3rmL</a></p>— Budisetia Yoelioes (@garuda17845) <a href=\"https://twitter.com/garuda17845/status/565370148136435712\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(588,216,'_oembed_time_2ed433344c4f6c8dbc252c2e6df58651','1424150303'),(589,216,'_oembed_97cc7ed8f78d859d9ea305911501d2cd','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/SonoraFM92\">@SonoraFM92</a> <a href=\"https://twitter.com/lewatmana\">@lewatmana</a> <a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> Banjir di perum Permata Buana, Jl. P. Laki, jakbar <a href=\"http://t.co/pRtWbpfHm4\">pic.twitter.com/pRtWbpfHm4</a></p>— P Marvin Dalimartha (@pmdalimartha) <a href=\"https://twitter.com/pmdalimartha/status/565311081892306944\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(590,216,'_oembed_time_97cc7ed8f78d859d9ea305911501d2cd','1424150303'),(591,216,'_oembed_2c245dfabc6c831a56a824a8f1e782e0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>H+3 (11022015)hujan pagi masih banjir -/+40cm, pantauan dari teras lantai 2 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/jakartagoid\">@jakartagoid</a> <a href=\"https://twitter.com/hashtag/jelambar?src=hash\">#jelambar</a> <a href=\"https://twitter.com/hashtag/jakarta?src=hash\">#jakarta</a> <a href=\"http://t.co/PfFk16sYxK\">pic.twitter.com/PfFk16sYxK</a></p>— Anoe Freelance (@anoe_freelance) <a href=\"https://twitter.com/anoe_freelance/status/565312075090911232\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(592,216,'_oembed_time_2c245dfabc6c831a56a824a8f1e782e0','1424150303'),(593,216,'_oembed_d74836dfa0f09d0ffc95da398132e045','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Tinggi air di RW O2 kapuk masih 100 cm warga sebagian warga msh bertahan di rumah tolong pak di kondisikan bantuan <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a>.</p>— Sunartoismed (@ismedsunarto) <a href=\"https://twitter.com/ismedsunarto/status/565127348920414209\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(594,216,'_oembed_time_d74836dfa0f09d0ffc95da398132e045','1424150304'),(595,216,'_oembed_8144df953c9e10944f7ca476f1e9614d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Jln.Mangga Ubi , hari ini tinggi air masih sepinggang orang dewasa <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/BanjirJakarta?src=hash\">#BanjirJakarta</a> <a href=\"http://t.co/HDsO2kg89P\">pic.twitter.com/HDsO2kg89P</a></p>— Ayiпzℳalfin (@ayinz_07) <a href=\"https://twitter.com/ayinz_07/status/565136434957254656\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(596,216,'_oembed_time_8144df953c9e10944f7ca476f1e9614d','1424150304'),(597,216,'_oembed_72f1609036a6729d53e28637b94376e8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Perum Taman Ratu Kb Jeruk Jakbar masih <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> .Lbh parah dari kemarin. Lebih lama surutnya <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/siagabanjir?src=hash\">#siagabanjir</a> <a href=\"http://t.co/4EYmzc4ODN\">pic.twitter.com/4EYmzc4ODN</a></p>— mpel (@marvell_putra) <a href=\"https://twitter.com/marvell_putra/status/565084098738536448\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(598,216,'_oembed_time_72f1609036a6729d53e28637b94376e8','1424150304'),(599,216,'_oembed_fd231960df9a49efe27f6bc372c23fb8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/DinsosDKI1\">@DinsosDKI1</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/BeritaJakarta\">@BeritaJakarta</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> kami kesulitan makanan sedari malam tadi <a href=\"http://t.co/W1IZyZ8eTG\">pic.twitter.com/W1IZyZ8eTG</a></p>— Irawan Sutanto (@randytzar) <a href=\"https://twitter.com/randytzar/status/565074017871495168\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(600,216,'_oembed_time_fd231960df9a49efe27f6bc372c23fb8','1424150304'),(601,216,'_oembed_f2cea1209eb168ad6c7b8a16ba167948','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Yang lain surut, disini makin naik. <a href=\"https://twitter.com/hashtag/BanjirJakarta?src=hash\">#BanjirJakarta</a> satu setengah meter. <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> tlng pompa dimaksimalkan <a href=\"http://t.co/Z3LnSZb0Nw\">pic.twitter.com/Z3LnSZb0Nw</a></p>— Fight Me (@delish8989) <a href=\"https://twitter.com/delish8989/status/565055580675403776\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(602,216,'_oembed_time_f2cea1209eb168ad6c7b8a16ba167948','1424150304'),(603,216,'_oembed_ee81e9751909c4c9ae934fe4b33fc11b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> di salah satu kampung di tegal alur,kalideres,gg.mede <a href=\"http://t.co/vJlQetYESS\">pic.twitter.com/vJlQetYESS</a></p>— nimay al-batawie (@NBatawie) <a href=\"https://twitter.com/NBatawie/status/565048397564878849\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(604,216,'_oembed_time_ee81e9751909c4c9ae934fe4b33fc11b','1424150305'),(605,216,'_oembed_9957dab156763f7af9feaddc70f24805','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Kondisi Terkini Depan Wisma SMR Jl. Mitra Sunter Boulevard <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"http://t.co/7RvVUQCI4G\">pic.twitter.com/7RvVUQCI4G</a></p>— Mugiyanto, P. (@Jay_Pujay) <a href=\"https://twitter.com/Jay_Pujay/status/565048564468834305\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(606,216,'_oembed_time_9957dab156763f7af9feaddc70f24805','1424150305'),(607,216,'_oembed_1ee3d87974cce950becdbb5a2ebadf30','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Banjir parah di Jl.Perdana 6 Rw 12 Cakung Timur. Tiap tahun kami kebanjiran <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/ejnWasZRUl\">pic.twitter.com/ejnWasZRUl</a></p>— NURCHOLIS ASFIANTO (@cahayadunia55) <a href=\"https://twitter.com/cahayadunia55/status/565046357212135424\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(608,216,'_oembed_time_1ee3d87974cce950becdbb5a2ebadf30','1424150305'),(609,216,'_oembed_bee4fda79404613ed7cd94f1b83ee95f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Green Garden Jakbar naik secara pelan2 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/BPBDDKI?src=hash\">#BPBDDKI</a> <a href=\"http://t.co/6PMUyFIGlQ\">pic.twitter.com/6PMUyFIGlQ</a></p>— Anderonikus Hidajat (@darylcom2380) <a href=\"https://twitter.com/darylcom2380/status/565010944707665921\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(610,216,'_oembed_time_bee4fda79404613ed7cd94f1b83ee95f','1424150305'),(611,216,'_oembed_fdc5e9b91393a03da37ad10a660afb17','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> kapuk raya saat ini banjir masih sedalam pinggang org dewasa <a href=\"http://t.co/FCN9soVbkB\">pic.twitter.com/FCN9soVbkB</a></p>— Mulyadi (@Mulyadi_oGe) <a href=\"https://twitter.com/Mulyadi_oGe/status/565002498617131008\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(612,216,'_oembed_time_fdc5e9b91393a03da37ad10a660afb17','1424150306'),(613,216,'_oembed_afdbba839199d96e299d5da711f618ed','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> ,<a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> ,10.43situasi terkini jl.rajawali selatan 1,air masih setinggi 20 - 30 cm <a href=\"http://t.co/WPWFUo0oCn\">pic.twitter.com/WPWFUo0oCn</a></p>— bennysiregar (@benzsheregar) <a href=\"https://twitter.com/benzsheregar/status/564993819003727872\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(614,216,'_oembed_time_afdbba839199d96e299d5da711f618ed','1424150306'),(615,216,'_oembed_6f3f9bb465ee4ccfffab5a18df8813e6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> jln kembangn utara kp baru kec kembangan <a href=\"http://t.co/MLYobtCQ73\">pic.twitter.com/MLYobtCQ73</a></p>— Muhammad Sofyan (@BonetFyan) <a href=\"https://twitter.com/BonetFyan/status/564984774750527488\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(616,216,'_oembed_time_6f3f9bb465ee4ccfffab5a18df8813e6','1424150306'),(617,216,'_oembed_5a08d3e36461874bc830a79a5e231e26','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Sampai hari ini tgl 10 ,jalan ampera V gunung sahari masih tergenang air sedalam lutut orang dewasa <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/T2F5BncuM4\">pic.twitter.com/T2F5BncuM4</a></p>— Ferry Chow (@ferrychow90) <a href=\"https://twitter.com/ferrychow90/status/564959847020371968\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(618,216,'_oembed_time_5a08d3e36461874bc830a79a5e231e26','1424150306'),(619,216,'_oembed_2a66e568dd6eef34c9994f246861127d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> kapuk raya saat ini banjir sdh sepinggang org dewasa <a href=\"http://t.co/FekC0Q1HLv\">pic.twitter.com/FekC0Q1HLv</a></p>— Mulyadi (@Mulyadi_oGe) <a href=\"https://twitter.com/Mulyadi_oGe/status/564956269933387776\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(620,216,'_oembed_time_2a66e568dd6eef34c9994f246861127d','1424150306'),(621,216,'_oembed_ecdc77cb0999b778a19b997e1c917aa2','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/iinyuse\">@iinyuse</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> sekitar rusun kapuk muara sampe jl.smp122 makin tinggi banjir <a href=\"http://t.co/7mL9mmlGjF\">pic.twitter.com/7mL9mmlGjF</a></p>— M.Handdy Hermawan (@Ndai_aza) <a href=\"https://twitter.com/Ndai_aza/status/564947147355729920\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(622,216,'_oembed_time_ecdc77cb0999b778a19b997e1c917aa2','1424150307'),(623,216,'_oembed_b242cbe2a839db5cda65fd0b2a055583','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Bendungan Hilir 50 CM <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/BPBDDKI?src=hash\">#BPBDDKI</a> <a href=\"http://t.co/U9ETU5x1i1\">pic.twitter.com/U9ETU5x1i1</a></p>— Anderonikus Hidajat (@darylcom2380) <a href=\"https://twitter.com/darylcom2380/status/564946181151670272\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(624,216,'_oembed_time_b242cbe2a839db5cda65fd0b2a055583','1424150307'),(625,216,'_oembed_1f429c6a4e484964b6081b22aa9e0e2d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> bulevar kelapa gading arah pulomas, tidak dapat dilewati kendaraan <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/6cEMyoY3rf\">pic.twitter.com/6cEMyoY3rf</a></p>— Ayu (@ms_ayu) <a href=\"https://twitter.com/ms_ayu/status/564933578513854465\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(626,216,'_oembed_time_1f429c6a4e484964b6081b22aa9e0e2d','1424150307'),(627,216,'_oembed_bf112b100e04a6480b10e25231bd6bc9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Banjir gang ini aja. Bojong Indah, JakBar. Sekitar belum,asal ga ada kiriman <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"http://t.co/Ez2TXrylHN\">pic.twitter.com/Ez2TXrylHN</a></p>— Oca (@OWLca) <a href=\"https://twitter.com/OWLca/status/564765398067716096\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(628,216,'_oembed_time_bf112b100e04a6480b10e25231bd6bc9','1424150307'),(629,216,'_oembed_1100e889da72f71f289e0b7757968719','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> luapan kali samping stasiun tanabang, berakibat rel terendam. <a href=\"http://t.co/vBqYPhntba\">pic.twitter.com/vBqYPhntba</a></p>— 21seagate (@21Seagate) <a href=\"https://twitter.com/21Seagate/status/564679579835449344\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(630,216,'_oembed_time_1100e889da72f71f289e0b7757968719','1424150308'),(631,216,'_oembed_8c293537d7673503f2f8982fd94447a3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a>: komplek beacukai kel.sukapura Cilincing <a href=\"http://t.co/WTWZTiMrGS\">pic.twitter.com/WTWZTiMrGS</a></p>— Ratno Sanjoyo (@ratno_sanjoyo) <a href=\"https://twitter.com/ratno_sanjoyo/status/564678784406675456\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(632,216,'_oembed_time_8c293537d7673503f2f8982fd94447a3','1424150308'),(633,216,'_oembed_ab74bcb8f5405dc939eaa4d319a2b696','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Jalan Mangga Dua Raya banjir 70 cm <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/1ZacgaLEYa\">pic.twitter.com/1ZacgaLEYa</a></p>— Andy Farand (@andyfarand) <a href=\"https://twitter.com/andyfarand/status/564677724652843009\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(634,216,'_oembed_time_ab74bcb8f5405dc939eaa4d319a2b696','1424150308'),(635,216,'_oembed_2abf880839602d1c9d9d0c3a22c77e94','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Banjir di Kemang Timur <a href=\"http://t.co/jRHOLlyFyr\">pic.twitter.com/jRHOLlyFyr</a></p>— Bung soleh (@msoleh518) <a href=\"https://twitter.com/msoleh518/status/564644425813336064\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(636,216,'_oembed_time_2abf880839602d1c9d9d0c3a22c77e94','1424150308'),(637,216,'_oembed_a84fbc0014a0c2209ff9ad2b15a899c1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Ketinggian air di kali sodetan kalibata, RW 02 & 06 Kel.Manggarai Selatan_09-02-2015. <a href=\"http://t.co/ZbrOqLtoTl\">pic.twitter.com/ZbrOqLtoTl</a></p>— MANGGARAI SELATAN (@mang_sel) <a href=\"https://twitter.com/mang_sel/status/564624792049827841\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(638,216,'_oembed_time_a84fbc0014a0c2209ff9ad2b15a899c1','1424150308'),(639,216,'_oembed_84230e9c3be8609b632221fa32b4bbde','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> daerah Semper, Jakut <a href=\"https://twitter.com/hashtag/jktbanjir?src=hash\">#jktbanjir</a> <a href=\"http://t.co/2Ew4NqNSuW\">pic.twitter.com/2Ew4NqNSuW</a></p>— Bima (@galaxy_sakti) <a href=\"https://twitter.com/galaxy_sakti/status/564607533071859713\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(640,216,'_oembed_time_84230e9c3be8609b632221fa32b4bbde','1424150309'),(641,216,'_oembed_de164537914a1721b66262a41b6d26b6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/hashtag/NEED?src=hash\">#NEED</a> <a href=\"https://twitter.com/hashtag/LOGISTIK?src=hash\">#LOGISTIK</a> <a href=\"https://twitter.com/hashtag/URGENT?src=hash\">#URGENT</a> <a href=\"https://twitter.com/hashtag/Survivor?src=hash\">#Survivor</a> <a href=\"https://twitter.com/hashtag/banjirJKT?src=hash\">#banjirJKT</a> warga sipil KODAMAR AL di Hypermart dpn MOI, CP: Hari 0857-4062-7770 <a href=\"http://t.co/izc6hpIXOy\">pic.twitter.com/izc6hpIXOy</a></p>— RELAWAN INDONESIA (@inforelawan) <a href=\"https://twitter.com/inforelawan/status/565149039914516483\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(642,216,'_oembed_time_de164537914a1721b66262a41b6d26b6','1424150309'),(643,216,'_publicize_pending','1'),(644,216,'_oembed_5f7b177af399ab5d706afc091f3e4faf','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di jl. Mangga 11, 10cm saja surutnya lama, pompa hny ada2, mohon agar bs di tmbh lagi <a href=\"http://t.co/dXxL51OP5E\">pic.twitter.com/dXxL51OP5E</a></p>— William T (@papoiibear) <a href=\"https://twitter.com/papoiibear/status/566908261530476544\">February 15, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(645,216,'_oembed_time_5f7b177af399ab5d706afc091f3e4faf','1434363609'),(646,216,'_oembed_d11fee4d1c7940738caaa346b008c7ea','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/lewatmana\">@lewatmana</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> komplek KFT,Cengkareng Barat, 90 cm,Mohon Bantuan Pompa mobil <a href=\"http://t.co/JyOpMHGuJX\">pic.twitter.com/JyOpMHGuJX</a></p>— Suryadhamma Setyawan (@SuryaGuang) <a href=\"https://twitter.com/SuryaGuang/status/565658642465443841\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(647,216,'_oembed_time_d11fee4d1c7940738caaa346b008c7ea','1434363609'),(648,216,'_oembed_be578667495ab48fe5042d5acd1e6fc0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> banjir blkg sd gandhi ancol barat masih sekitar 70cm. Pompa gak jalan? <a href=\"http://t.co/dVbcgVQhU4\">pic.twitter.com/dVbcgVQhU4</a></p>— Diky Muljana (@dikylung) <a href=\"https://twitter.com/dikylung/status/565404936624963584\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(649,216,'_oembed_time_be578667495ab48fe5042d5acd1e6fc0','1434363610'),(650,216,'_oembed_350dc969315e70d00c816f49b3ecd6c6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> ± 50cm-60cm dijalan kebantenan 4 RT10 RW04 cilincing Jakarta Utara <a href=\"http://t.co/XyWrXVbQbc\">pic.twitter.com/XyWrXVbQbc</a></p>— Taufiq A. Pratama (@OpickNiy) <a href=\"https://twitter.com/OpickNiy/status/565393262413119488\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(651,216,'_oembed_time_350dc969315e70d00c816f49b3ecd6c6','1434363610'),(652,216,'_oembed_72cb7435e87cf585d6ca1a92d18eb580','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> Banjir di depan MKG, Kelapa Gading, Jakut. <a href=\"http://t.co/ZvVHRd3rmL\">pic.twitter.com/ZvVHRd3rmL</a></p>— Budisetia Yoelioes (@garuda17845) <a href=\"https://twitter.com/garuda17845/status/565370148136435712\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(653,216,'_oembed_time_72cb7435e87cf585d6ca1a92d18eb580','1434363610'),(654,216,'_oembed_da99c98e1f7301751fdb525d685899e2','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/SonoraFM92\">@SonoraFM92</a> <a href=\"https://twitter.com/lewatmana\">@lewatmana</a> <a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> Banjir di perum Permata Buana, Jl. P. Laki, jakbar <a href=\"http://t.co/pRtWbpfHm4\">pic.twitter.com/pRtWbpfHm4</a></p>— P Marvin Dalimartha (@pmdalimartha) <a href=\"https://twitter.com/pmdalimartha/status/565311081892306944\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(655,216,'_oembed_time_da99c98e1f7301751fdb525d685899e2','1434363610'),(656,216,'_oembed_5ca2fd6ddbf13d55b872afacc3c7f8d1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">H+3 (11022015)hujan pagi masih banjir -/+40cm, pantauan dari teras lantai 2 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/jakartagoid\">@jakartagoid</a> <a href=\"https://twitter.com/hashtag/jelambar?src=hash\">#jelambar</a> <a href=\"https://twitter.com/hashtag/jakarta?src=hash\">#jakarta</a> <a href=\"http://t.co/PfFk16sYxK\">pic.twitter.com/PfFk16sYxK</a></p>— Anoe Freelance (@anoe_freelance) <a href=\"https://twitter.com/anoe_freelance/status/565312075090911232\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(657,216,'_oembed_time_5ca2fd6ddbf13d55b872afacc3c7f8d1','1434363611'),(658,216,'_oembed_922a172a60ce229251ad3fca04c8806d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Tinggi air di RW O2 kapuk masih 100 cm warga sebagian warga msh bertahan di rumah tolong pak di kondisikan bantuan <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a>.</p>— Sunartoismed (@ismedsunarto) <a href=\"https://twitter.com/ismedsunarto/status/565127348920414209\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(659,216,'_oembed_time_922a172a60ce229251ad3fca04c8806d','1434363611'),(660,216,'_oembed_d26a1dee75f819db6f061835c6f83987','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Jln.Mangga Ubi , hari ini tinggi air masih sepinggang orang dewasa <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/BanjirJakarta?src=hash\">#BanjirJakarta</a> <a href=\"http://t.co/HDsO2kg89P\">pic.twitter.com/HDsO2kg89P</a></p>— Ayiпzℳalfin (@ayinz_07) <a href=\"https://twitter.com/ayinz_07/status/565136434957254656\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(661,216,'_oembed_time_d26a1dee75f819db6f061835c6f83987','1434363611'),(662,216,'_oembed_16c306617462b994f9c27140bf43e90c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Perum Taman Ratu Kb Jeruk Jakbar masih <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> .Lbh parah dari kemarin. Lebih lama surutnya <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/siagabanjir?src=hash\">#siagabanjir</a> <a href=\"http://t.co/4EYmzc4ODN\">pic.twitter.com/4EYmzc4ODN</a></p>— mpel (@marvell_putra) <a href=\"https://twitter.com/marvell_putra/status/565084098738536448\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(663,216,'_oembed_time_16c306617462b994f9c27140bf43e90c','1434363611'),(664,216,'_oembed_4e1f4dbebbdf0c1abfc4d0c13be81111','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/DinsosDKI1\">@DinsosDKI1</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/BeritaJakarta\">@BeritaJakarta</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> kami kesulitan makanan sedari malam tadi <a href=\"http://t.co/W1IZyZ8eTG\">pic.twitter.com/W1IZyZ8eTG</a></p>— Irawan Sutanto (@randytzar) <a href=\"https://twitter.com/randytzar/status/565074017871495168\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(665,216,'_oembed_time_4e1f4dbebbdf0c1abfc4d0c13be81111','1434363612'),(666,216,'_oembed_7f19f92703764ab2a1dacd65e99f06fb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Yang lain surut, disini makin naik. <a href=\"https://twitter.com/hashtag/BanjirJakarta?src=hash\">#BanjirJakarta</a> satu setengah meter. <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> tlng pompa dimaksimalkan <a href=\"http://t.co/Z3LnSZb0Nw\">pic.twitter.com/Z3LnSZb0Nw</a></p>— Kartini Kontemporer (@delish8989) <a href=\"https://twitter.com/delish8989/status/565055580675403776\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(667,216,'_oembed_time_7f19f92703764ab2a1dacd65e99f06fb','1434363612'),(668,216,'_oembed_182ccace01802c7adc987c55323cc8f4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> di salah satu kampung di tegal alur,kalideres,gg.mede <a href=\"http://t.co/vJlQetYESS\">pic.twitter.com/vJlQetYESS</a></p>— nimay al-batawie (@NBatawie) <a href=\"https://twitter.com/NBatawie/status/565048397564878849\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(669,216,'_oembed_time_182ccace01802c7adc987c55323cc8f4','1434363612'),(670,216,'_oembed_ed358be997f2bb04eafcb37cfbcf7307','{{unknown}}'),(671,216,'_oembed_c98c3b2571d32733891fca2c9cd0d6ca','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Banjir parah di Jl.Perdana 6 Rw 12 Cakung Timur. Tiap tahun kami kebanjiran <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/ejnWasZRUl\">pic.twitter.com/ejnWasZRUl</a></p>— NURCHOLIS ASFIANTO (@cahayadunia55) <a href=\"https://twitter.com/cahayadunia55/status/565046357212135424\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(672,216,'_oembed_time_c98c3b2571d32733891fca2c9cd0d6ca','1434363612'),(673,216,'_oembed_f8db8c296077f54a989a150aa89c9ff7','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Green Garden Jakbar naik secara pelan2 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/BPBDDKI?src=hash\">#BPBDDKI</a> <a href=\"http://t.co/6PMUyFIGlQ\">pic.twitter.com/6PMUyFIGlQ</a></p>— Anderonikus Hidajat (@darylcom2380) <a href=\"https://twitter.com/darylcom2380/status/565010944707665921\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(674,216,'_oembed_time_f8db8c296077f54a989a150aa89c9ff7','1434363613'),(675,216,'_oembed_6aaa51c0cd0dfdf1f9e8ed07e9e4a896','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> kapuk raya saat ini banjir masih sedalam pinggang org dewasa <a href=\"http://t.co/FCN9soVbkB\">pic.twitter.com/FCN9soVbkB</a></p>— Mulyadi (@Mulyadi_oGe) <a href=\"https://twitter.com/Mulyadi_oGe/status/565002498617131008\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(676,216,'_oembed_time_6aaa51c0cd0dfdf1f9e8ed07e9e4a896','1434363613'),(677,216,'_oembed_a585de6849e135961f0c19ec738a3c59','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> ,<a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> ,10.43situasi terkini jl.rajawali selatan 1,air masih setinggi 20 - 30 cm <a href=\"http://t.co/WPWFUo0oCn\">pic.twitter.com/WPWFUo0oCn</a></p>— bennysiregar (@benzsheregar) <a href=\"https://twitter.com/benzsheregar/status/564993819003727872\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(678,216,'_oembed_time_a585de6849e135961f0c19ec738a3c59','1434363613'),(679,216,'_oembed_dd32564a400a4117a9d06986c54d155a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> jln kembangn utara kp baru kec kembangan <a href=\"http://t.co/MLYobtCQ73\">pic.twitter.com/MLYobtCQ73</a></p>— Muhammad Sofyan (@BonetFyan) <a href=\"https://twitter.com/BonetFyan/status/564984774750527488\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(680,216,'_oembed_time_dd32564a400a4117a9d06986c54d155a','1434363613'),(681,216,'_oembed_6a43fb19366407dfccc094f437526305','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Sampai hari ini tgl 10 ,jalan ampera V gunung sahari masih tergenang air sedalam lutut orang dewasa <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/T2F5BncuM4\">pic.twitter.com/T2F5BncuM4</a></p>— Ferry Chow (@ferrychow90) <a href=\"https://twitter.com/ferrychow90/status/564959847020371968\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(682,216,'_oembed_time_6a43fb19366407dfccc094f437526305','1434363614'),(683,216,'_oembed_590db2cd48d8ca4c332f29679838ad63','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> kapuk raya saat ini banjir sdh sepinggang org dewasa <a href=\"http://t.co/FekC0Q1HLv\">pic.twitter.com/FekC0Q1HLv</a></p>— Mulyadi (@Mulyadi_oGe) <a href=\"https://twitter.com/Mulyadi_oGe/status/564956269933387776\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(684,216,'_oembed_time_590db2cd48d8ca4c332f29679838ad63','1434363614'),(685,216,'_oembed_8f8ddf76f3356c0591f160535633a51e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/iinyuse\">@iinyuse</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> sekitar rusun kapuk muara sampe jl.smp122 makin tinggi banjir <a href=\"http://t.co/7mL9mmlGjF\">pic.twitter.com/7mL9mmlGjF</a></p>— M.Handdy Hermawan (@Ndai_aza) <a href=\"https://twitter.com/Ndai_aza/status/564947147355729920\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(686,216,'_oembed_time_8f8ddf76f3356c0591f160535633a51e','1434363614'),(687,216,'_oembed_17a736d343cc5d0c4f01dd5a6a2535e8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Bendungan Hilir 50 CM <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/BPBDDKI?src=hash\">#BPBDDKI</a> <a href=\"http://t.co/U9ETU5x1i1\">pic.twitter.com/U9ETU5x1i1</a></p>— Anderonikus Hidajat (@darylcom2380) <a href=\"https://twitter.com/darylcom2380/status/564946181151670272\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(688,216,'_oembed_time_17a736d343cc5d0c4f01dd5a6a2535e8','1434363614'),(689,216,'_oembed_e2fd021d0646a581a31a980791c01e43','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> bulevar kelapa gading arah pulomas, tidak dapat dilewati kendaraan <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/6cEMyoY3rf\">pic.twitter.com/6cEMyoY3rf</a></p>— Ayu (@ms_ayu) <a href=\"https://twitter.com/ms_ayu/status/564933578513854465\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(690,216,'_oembed_time_e2fd021d0646a581a31a980791c01e43','1434363614'),(691,216,'_oembed_22302203fb814ca6abae9c7df04b0a31','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Banjir gang ini aja. Bojong Indah, JakBar. Sekitar belum,asal ga ada kiriman <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"http://t.co/Ez2TXrylHN\">pic.twitter.com/Ez2TXrylHN</a></p>— Oca (@OWLca) <a href=\"https://twitter.com/OWLca/status/564765398067716096\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(692,216,'_oembed_time_22302203fb814ca6abae9c7df04b0a31','1434363615'),(693,216,'_oembed_12944a2f8ce9338a66943876be0a0781','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> luapan kali samping stasiun tanabang, berakibat rel terendam. <a href=\"http://t.co/vBqYPhntba\">pic.twitter.com/vBqYPhntba</a></p>— 21seagate (@21Seagate) <a href=\"https://twitter.com/21Seagate/status/564679579835449344\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(694,216,'_oembed_time_12944a2f8ce9338a66943876be0a0781','1434363615'),(695,216,'_oembed_04bb6dbf2d9548ac6bb3753d8d2959f9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a>: komplek beacukai kel.sukapura Cilincing <a href=\"http://t.co/WTWZTiMrGS\">pic.twitter.com/WTWZTiMrGS</a></p>— Ratno Sanjoyo (@ratno_sanjoyo) <a href=\"https://twitter.com/ratno_sanjoyo/status/564678784406675456\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(696,216,'_oembed_time_04bb6dbf2d9548ac6bb3753d8d2959f9','1434363615'),(697,216,'_oembed_a20e8b30b4eb990eececa68a40230659','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Jalan Mangga Dua Raya banjir 70 cm <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/RadioElshinta\">@RadioElshinta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/1ZacgaLEYa\">pic.twitter.com/1ZacgaLEYa</a></p>— Andy Farand (@andyfarand) <a href=\"https://twitter.com/andyfarand/status/564677724652843009\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(698,216,'_oembed_time_a20e8b30b4eb990eececa68a40230659','1434363616'),(699,216,'_oembed_687e543627e42ddb324510c66c042014','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Banjir di Kemang Timur <a href=\"http://t.co/jRHOLlyFyr\">pic.twitter.com/jRHOLlyFyr</a></p>— Bung soleh (@msoleh518) <a href=\"https://twitter.com/msoleh518/status/564644425813336064\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(700,216,'_oembed_time_687e543627e42ddb324510c66c042014','1434363616'),(701,216,'_oembed_3d1d45beb1c2d4fe4a9b1d2872b778bb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Ketinggian air di kali sodetan kalibata, RW 02 & 06 Kel.Manggarai Selatan_09-02-2015. <a href=\"http://t.co/ZbrOqLtoTl\">pic.twitter.com/ZbrOqLtoTl</a></p>— MANGGARAI SELATAN (@mang_sel) <a href=\"https://twitter.com/mang_sel/status/564624792049827841\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(702,216,'_oembed_time_3d1d45beb1c2d4fe4a9b1d2872b778bb','1434363616'),(703,216,'_oembed_f41c4fbf6a86ff5d9622bfa5ac7d3cb8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> daerah Semper, Jakut <a href=\"https://twitter.com/hashtag/jktbanjir?src=hash\">#jktbanjir</a> <a href=\"http://t.co/2Ew4NqNSuW\">pic.twitter.com/2Ew4NqNSuW</a></p>— Bima (@galaxy_sakti) <a href=\"https://twitter.com/galaxy_sakti/status/564607533071859713\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(704,216,'_oembed_time_f41c4fbf6a86ff5d9622bfa5ac7d3cb8','1434363616'),(705,216,'_oembed_b1b3746c68db592ac34a9879732219e4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Komplek Sunter Bisma Jkt Utara, terendam +/-70cm akibat curah hujan tinggi selama 2 malam <a href=\"https://twitter.com/hashtag/JakartaBanjir?src=hash\">#JakartaBanjir</a> <a href=\"http://t.co/zChSsEP94m\">pic.twitter.com/zChSsEP94m</a></p>— Evelyn Faustina (@efaustina) <a href=\"https://twitter.com/efaustina/status/564946953079750657\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(706,216,'_oembed_time_b1b3746c68db592ac34a9879732219e4','1434363616'),(707,216,'_oembed_57ab389c1e4b07e2355091c7951a974c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> rawabuaya di kedalaman 60 cm <a href=\"http://t.co/QiChYzzBAh\">pic.twitter.com/QiChYzzBAh</a></p>— Budi Supriyanto (@BudiBislovers) <a href=\"https://twitter.com/BudiBislovers/status/564745911528460288\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(708,216,'_oembed_time_57ab389c1e4b07e2355091c7951a974c','1434363617'),(709,216,'_oembed_b1159b044d071411b3b6a5b280813e0a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/CommuterLine\">@CommuterLine</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di jalan gunung sahari raya,,rel kerenden di st.rajawali <a href=\"http://t.co/aQ5lUalOCg\">pic.twitter.com/aQ5lUalOCg</a></p>— and_rhe (@andrieseru) <a href=\"https://twitter.com/andrieseru/status/564704157995515904\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(710,216,'_oembed_time_b1159b044d071411b3b6a5b280813e0a','1434363617'),(711,216,'_oembed_d2f4388a74b3dd54e3da6819c05639c3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Pintu Air Karet 14:00 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/CK1URNr3SF\">pic.twitter.com/CK1URNr3SF</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/564687467777765376\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(712,216,'_oembed_time_d2f4388a74b3dd54e3da6819c05639c3','1434363617'),(713,216,'_oembed_56732d991edbb488f5c3afb69bc6e31e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/KelapaGading?src=hash\">#KelapaGading</a> depan showroom <a href=\"https://twitter.com/hashtag/Ford?src=hash\">#Ford</a> <a href=\"http://t.co/uTOOjq2mX9\">pic.twitter.com/uTOOjq2mX9</a></p>— Callvin Cheung (@Callvin_Cheung) <a href=\"https://twitter.com/Callvin_Cheung/status/564679290139066368\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(714,216,'_oembed_time_56732d991edbb488f5c3afb69bc6e31e','1434363617'),(715,216,'_oembed_92a52af4f0283b6fb29c995bf577beda','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Hindari jalan yang menuju roxy dari arah Harmoni <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/tVrcSZXAJJ\">pic.twitter.com/tVrcSZXAJJ</a></p>— APRIANI ❤ SONU SOOD (@ApLy_09) <a href=\"https://twitter.com/ApLy_09/status/564661421141524482\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(716,216,'_oembed_time_92a52af4f0283b6fb29c995bf577beda','1434363617'),(717,216,'_oembed_0fb74e5cb2ab9d811ccd0f06cc11d06f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">.<a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> Medan Merdeka Barat - Utara.(ring1) <a href=\"http://t.co/cGtwMHtAr2\">pic.twitter.com/cGtwMHtAr2</a></p>— Prada (@adimuliapradana) <a href=\"https://twitter.com/adimuliapradana/status/564641787461906432\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(718,216,'_oembed_time_0fb74e5cb2ab9d811ccd0f06cc11d06f','1434363618'),(719,216,'_oembed_1c484c83e449303c9b25fb5c2f83f608','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> jalan mangga 11 kondisi air 50cm kendaraan jgn lewat lagi. Pompa tlg di perbanyak</p>— William T (@papoiibear) <a href=\"https://twitter.com/papoiibear/status/564630319048167425\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(720,216,'_oembed_time_1c484c83e449303c9b25fb5c2f83f608','1434363618'),(721,216,'_oembed_5805708c1e6189f5e19919a0ad2abc11','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Banjir di Kawasan Industri Pulogadung <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/petajkt?src=hash\">#petajkt</a> <a href=\"http://t.co/X731GRSnga\">pic.twitter.com/X731GRSnga</a></p>— ElviraPC (@elvirapc) <a href=\"https://twitter.com/elvirapc/status/564628606924492802\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(722,216,'_oembed_time_5805708c1e6189f5e19919a0ad2abc11','1434363618'),(723,216,'_oembed_f59a01cbfd24f66474405b75cc3771ff','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> kami sampaikan laporan dari kawan-kawan di daerah Sunter, Banjir di Sunter Kirana III 20 - 30 CM. Take care. <a href=\"http://t.co/s2b1JEno03\">pic.twitter.com/s2b1JEno03</a></p>— Storania (@storania) <a href=\"https://twitter.com/storania/status/564626804900503553\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(724,216,'_oembed_time_f59a01cbfd24f66474405b75cc3771ff','1434363618'),(725,216,'_oembed_67a2fd6100bbe11ca496d4017cefa203','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> 50cm Jl. Papanggo 2C RT/RW. 008/03 Tanjung Priok, Jakut. <a href=\"https://twitter.com/hashtag/Cuaca?src=hash\">#Cuaca</a> hujan deras <a href=\"http://t.co/7CqdmP15re\">pic.twitter.com/7CqdmP15re</a></p>— SayaMelaporkanTaruna (@IsiTaruna) <a href=\"https://twitter.com/IsiTaruna/status/564626600772120576\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(726,216,'_oembed_time_67a2fd6100bbe11ca496d4017cefa203','1434363619'),(727,216,'_oembed_02b0e031013e17940c17f421728db819','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di Kelapa Hibrida - Klp Gading. Tinggi bervariasi 40 - 60 cm. Hujan masi deras <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"http://t.co/IzybMxLYpJ\">pic.twitter.com/IzybMxLYpJ</a></p>— Ridwan Sugianto (@pipigembrot) <a href=\"https://twitter.com/pipigembrot/status/564625939989299201\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(728,216,'_oembed_time_02b0e031013e17940c17f421728db819','1434363619'),(729,216,'_oembed_9f0677dee43e0027aad32ede2c858bd9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Banjir makin tinggi di jalan persahabatan timur 1 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/TMCPoldaMetro\">@TMCPoldaMetro</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/jktbanjir?src=hash\">#jktbanjir</a> <a href=\"https://twitter.com/hashtag/banjirjkt?src=hash\">#banjirjkt</a> <a href=\"http://t.co/BaOgKTq3ys\">pic.twitter.com/BaOgKTq3ys</a></p>— Juniors Place (@JrPlaceRwmangun) <a href=\"https://twitter.com/JrPlaceRwmangun/status/564604217285812224\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(730,216,'_oembed_time_9f0677dee43e0027aad32ede2c858bd9','1434363619'),(731,216,'_oembed_c4ee498a1862411cb03e02088012543c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> banjir diperumh taman pulogebang cakung, sekitar 25-30cm <a href=\"http://t.co/pA58NCW59p\">pic.twitter.com/pA58NCW59p</a></p>— Harry Satya (@h_satya) <a href=\"https://twitter.com/h_satya/status/564594003178311682\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(732,216,'_oembed_time_c4ee498a1862411cb03e02088012543c','1434363619'),(733,216,'_oembed_57b4110c62f4418ee51495071e1d6fc9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Rorotan rt 5 rw 7 air sudah masuk kedalam rumah. <a href=\"https://twitter.com/b2ce4e93075341c\">@b2ce4e93075341c</a> <a href=\"https://twitter.com/InfoJakarta123\">@InfoJakarta123</a> <a href=\"https://twitter.com/lurahrorotan\">@lurahrorotan</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/aafe4u8GyG\">pic.twitter.com/aafe4u8GyG</a></p>— nafis kurtubi (@nafisannie) <a href=\"https://twitter.com/nafisannie/status/562470708572217344\">February 3, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(734,216,'_oembed_time_57b4110c62f4418ee51495071e1d6fc9','1434363619'),(735,216,'_oembed_1ef0499f482675f03e607c6b49b9661b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> ini view Kali Belakang rumah yg tidak kuat menampung debit air yg terlalu banyak at komplek KEMENDAGRI <a href=\"http://t.co/8FGPALNRtI\">pic.twitter.com/8FGPALNRtI</a></p>— ... (@tonnynduut) <a href=\"https://twitter.com/tonnynduut/status/558521408930578434\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(736,216,'_oembed_time_1ef0499f482675f03e607c6b49b9661b','1434363620'),(737,216,'_oembed_485f82832dfc25d5c85ffcdf3f6c3af0','{{unknown}}'),(738,216,'_oembed_30016e3f0ca0e7ec506088c7b009358e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">suasana banjir Rw 05 dan 06 kel. serdang, kec kemayoran, jakarta pusat. <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/iQRECnEulN\">pic.twitter.com/iQRECnEulN</a></p>— Dicky Oskandar (@dickyoskandar) <a href=\"https://twitter.com/dickyoskandar/status/558416759468728320\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(739,216,'_oembed_time_30016e3f0ca0e7ec506088c7b009358e','1434363620'),(740,216,'_oembed_e4f91e1713821d78bed6bd269cc9d53c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> di komplek tugu permai ancol jakarta utara <a href=\"http://t.co/HiY1vUTNYV\">pic.twitter.com/HiY1vUTNYV</a></p>— ZakiAmara (@amaryadi46) <a href=\"https://twitter.com/amaryadi46/status/558415908826128385\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(741,216,'_oembed_time_e4f91e1713821d78bed6bd269cc9d53c','1434363620'),(742,216,'_oembed_2f04353c022b890917a94bb702e43a8e','{{unknown}}'),(743,216,'_oembed_453bb1b1524d6cc30355113edc1e79ab','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> kawasan tugu utara, koja jakarta utara 30-40 cm <a href=\"http://t.co/ks35M76JsH\">pic.twitter.com/ks35M76JsH</a></p>— iqballsalasa (@iqballsalasa) <a href=\"https://twitter.com/iqballsalasa/status/558389999385579520\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(744,216,'_oembed_time_453bb1b1524d6cc30355113edc1e79ab','1434363621'),(745,216,'_oembed_66e3a8126d97ffc5354626fd010f2c8a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">4:32 WIB. <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> Komp. Sekretaris Negara Rt. 8/15 <a href=\"https://twitter.com/hashtag/Plumpang?src=hash\">#Plumpang</a> <a href=\"https://twitter.com/hashtag/TuguUtara?src=hash\">#TuguUtara</a> <a href=\"https://twitter.com/hashtag/Koja?src=hash\">#Koja</a> <a href=\"http://t.co/QLjiIC2PuE\">pic.twitter.com/QLjiIC2PuE</a></p>— #GaliHartaKarun (@BISMAMedia) <a href=\"https://twitter.com/BISMAMedia/status/558377260005076992\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(746,216,'_oembed_time_66e3a8126d97ffc5354626fd010f2c8a','1434363621'),(747,216,'_oembed_2d82c51b34fb34054f870fcc27439242','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">18:15:TMA waduk Pondok Bandung RW 2 KBU Jakbar terpantau normal.<a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/poskotanews\">@poskotanews</a> <a href=\"https://twitter.com/indopos\">@indopos</a> <a href=\"http://t.co/PiKanHrVwI\">pic.twitter.com/PiKanHrVwI</a></p>— $olichin LMK 02 KBU (@SolichinLMK2KBU) <a href=\"https://twitter.com/SolichinLMK2KBU/status/558231069774733312\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(748,216,'_oembed_time_2d82c51b34fb34054f870fcc27439242','1434363621'),(749,216,'_oembed_f4129941ba663972032f207be79eac84','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> geo sudah di aktifkan bos.. <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> mulai mengisi rutinitas hari ini. Keep spirit guys <a href=\"http://t.co/vuQqfP6wYI\">pic.twitter.com/vuQqfP6wYI</a></p>— Ardiansyah J Prawira (@ardiduker) <a href=\"https://twitter.com/ardiduker/status/558136861835534336\">January 22, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(750,216,'_oembed_time_f4129941ba663972032f207be79eac84','1434363622'),(751,216,'_oembed_9a827c5bffb172c88738d397b5499679','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a>#banjir kondisi banjir di jl mangga 11 kepaduri, sdh mulai surut tapi lambat <a href=\"http://t.co/13wTMhYujl\">pic.twitter.com/13wTMhYujl</a></p>— William T (@papoiibear) <a href=\"https://twitter.com/papoiibear/status/548767265311563776\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(752,216,'_oembed_time_9a827c5bffb172c88738d397b5499679','1434363622'),(753,216,'_oembed_00661d0f4849b803276c7c8c01166f75','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> rumah susun bci cengkareng timur <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/soboASeAjn\">pic.twitter.com/soboASeAjn</a></p>— Siti Laelatul Izah (@10_laela) <a href=\"https://twitter.com/10_laela/status/548740483241889792\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(754,216,'_oembed_time_00661d0f4849b803276c7c8c01166f75','1434363622'),(755,216,'_oembed_0d3e7f36c89853a1b7dbf892ae2ae5cf','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Saluran air di samping Pasar Jatirawasari tdk berfungsi, akses warga menuju Cempaka Putih Barat tergenang <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/kaBwqbXG1A\">pic.twitter.com/kaBwqbXG1A</a></p>— Ziad (@mziadz) <a href=\"https://twitter.com/mziadz/status/548659262671450112\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(756,216,'_oembed_time_0d3e7f36c89853a1b7dbf892ae2ae5cf','1434363622'),(757,216,'_oembed_404a051bf31c382675138163c59704e0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">TMA Kali. BKB Pondok Bandung RW 02 KBU terpantau tinggi <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/xTvdcQe9za\">pic.twitter.com/xTvdcQe9za</a></p>— $olichin LMK 02 KBU (@SolichinLMK2KBU) <a href=\"https://twitter.com/SolichinLMK2KBU/status/548643629829332993\">December 27, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(758,216,'_oembed_time_404a051bf31c382675138163c59704e0','1434363622'),(759,216,'_oembed_904b7f54f29228588fb7f7fd6f69644b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> jln.pam raya , sumur batu , jakpus ketinggian : +/- 30-40 cm <a href=\"http://t.co/fUmkbxkpYX\">pic.twitter.com/fUmkbxkpYX</a></p>— Helmi DwiArgoPangga (@Helmi_jkt) <a href=\"https://twitter.com/Helmi_jkt/status/545950637620355072\">December 19, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(760,216,'_oembed_time_904b7f54f29228588fb7f7fd6f69644b','1434363623'),(761,216,'_oembed_1d3aaee205aa0d9fcc9ad982759f0073','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> komplek kft banjir masih 1meter lebih ,mobil pompa Dr DKI Udh dtng <a href=\"http://t.co/rFUjOoHi7s\">pic.twitter.com/rFUjOoHi7s</a></p>— thiolenna (@tlenna) <a href=\"https://twitter.com/tlenna/status/565666804748787712\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(762,216,'_oembed_time_1d3aaee205aa0d9fcc9ad982759f0073','1434363623'),(763,216,'_oembed_9e22214acf2aaf151c5861541de9afdb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Evakuasi <a href=\"https://twitter.com/hashtag/KorbanBanjir?src=hash\">#KorbanBanjir</a> at Rt.08/10 CIPULIR, sore ini kedalaman air 1,5 m <a href=\"https://twitter.com/hashtag/FORMULA?src=hash\">#FORMULA</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/sigit_iko\">@sigit_iko</a> <a href=\"http://t.co/j6Bi5Syhhr\">pic.twitter.com/j6Bi5Syhhr</a></p>— Sejuta Berdaya #Gres (@iwan_rahmat) <a href=\"https://twitter.com/iwan_rahmat/status/565102500064133121\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(764,216,'_oembed_time_9e22214acf2aaf151c5861541de9afdb','1434363623'),(765,216,'_oembed_ba9905dc00e5e5d6f97484e679f66b65','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Menerima & mnyalurkan bantuan u/ korban banjir. Cp Kokom 081585519492,edi 087881151971 <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"http://t.co/MW04At7ho7\">pic.twitter.com/MW04At7ho7</a></p>— UPC (@urbanpoor) <a href=\"https://twitter.com/urbanpoor/status/564981247340855297\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(766,216,'_oembed_time_ba9905dc00e5e5d6f97484e679f66b65','1434363623'),(767,216,'_oembed_460b9aaf52716223331b5b5264cbcb98','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Juanda 3 sudah dikirim perahu karet tim SAR dan pol PP <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> terima kasih <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a></p>— Mas Bro ® (@saya_masbro) <a href=\"https://twitter.com/saya_masbro/status/564641566086541312\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(768,216,'_oembed_time_460b9aaf52716223331b5b5264cbcb98','1434363624'),(769,216,'_oembed_e839c47d913165c4b6fb66cfc30f4724','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Terima kasih <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/basuki_btp\">@basuki_btp</a> atas bantuan mobil pompa untuk komplek KFT,cengkareng barat. <a href=\"https://twitter.com/hashtag/Banjir?src=hash\">#Banjir</a> <a href=\"http://t.co/uXkjSh5cbf\">pic.twitter.com/uXkjSh5cbf</a></p>— Suryadhamma Setyawan (@SuryaGuang) <a href=\"https://twitter.com/SuryaGuang/status/565795875562074113\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(770,216,'_oembed_time_e839c47d913165c4b6fb66cfc30f4724','1434363624'),(771,216,'_oembed_d45d27684759824d3b9a6867a9bc6fca','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> bpk ibu trima ksh bantuannya skrg jl. Bellyra n pulomas VA sdh nyala lampunya. Sktr jl. Harpa Klp Gdg BCS air tgl 3cm.</p>— Argia 'HijaBella' (@ArgiaHijabella) <a href=\"https://twitter.com/ArgiaHijabella/status/565367645894373377\">February 11, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(772,216,'_oembed_time_d45d27684759824d3b9a6867a9bc6fca','1434363624'),(773,216,'_oembed_d9ea42a24564f1ddcf3804afb9de2400','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/nitnot_478\">@nitnot_478</a> siang Mba, adiknya jd mau dievakuasi? Kita lg ada didekat Jl. Raflesia</p>— Monica (@monictika) <a href=\"https://twitter.com/monictika/status/565051338992533504\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(774,216,'_oembed_time_d9ea42a24564f1ddcf3804afb9de2400','1434363624'),(775,216,'_oembed_0b06b24675be93ffeca40c8e40f1983f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Butuh prahu karet utk evakuasi di budidarma semper timur, <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> sepinggang org dewasa. Cp warga 087885057561 (sri) <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a></p>— gugun muhammad (@gugunmuhammad1) <a href=\"https://twitter.com/gugunmuhammad1/status/558462196783382529\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(776,216,'_oembed_time_0b06b24675be93ffeca40c8e40f1983f','1434363624'),(777,216,'_oembed_06b85ca36e5bdbd4c2da157cb9f49086','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/NEED?src=hash\">#NEED</a> <a href=\"https://twitter.com/hashtag/LOGISTIK?src=hash\">#LOGISTIK</a> <a href=\"https://twitter.com/hashtag/URGENT?src=hash\">#URGENT</a> <a href=\"https://twitter.com/hashtag/Survivor?src=hash\">#Survivor</a> <a href=\"https://twitter.com/hashtag/banjirJKT?src=hash\">#banjirJKT</a> warga sipil KODAMAR AL di Hypermart dpn MOI, CP: Hari 0857-4062-7770 <a href=\"http://t.co/izc6hpIXOy\">pic.twitter.com/izc6hpIXOy</a></p>— RELAWAN INDONESIA (@inforelawan) <a href=\"https://twitter.com/inforelawan/status/565149039914516483\">February 10, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(778,216,'_oembed_time_06b85ca36e5bdbd4c2da157cb9f49086','1434363625'),(779,216,'_oembed_76799a1035aae4a40bc62ff36e4aeb7a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Mahasiswa Uni <a href=\"https://twitter.com/UOW\">@UOW</a>, <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> & <a href=\"https://twitter.com/twitter\">@twitter</a> membuat <a href=\"http://t.co/z6tqieVbOz\">http://t.co/z6tqieVbOz</a> sbg sarana utk kumpulkan & sebarkan info ttg banjir di Jkt.</p>— Paul Grigson (@DubesAustralia) <a href=\"https://twitter.com/DubesAustralia/status/566544885231005697\">February 14, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(780,216,'_oembed_time_76799a1035aae4a40bc62ff36e4aeb7a','1434363625'),(781,216,'_oembed_time_e13a7f03b1bc3f054c20f39f935641aa','1434363625'),(782,216,'_oembed_7acaa0d97e79310ff3ef1577ac3bedd5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> ah, thank you! Sangat terbantu. Informasi tentang banjir bisa langsung kesini <a href=\"http://t.co/REjnD4ZPZd\">http://t.co/REjnD4ZPZd</a></p>— Wahyu Kristianto (@kristories) <a href=\"https://twitter.com/kristories/status/564745536972926976\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(783,216,'_oembed_time_7acaa0d97e79310ff3ef1577ac3bedd5','1434363625'),(784,216,'_oembed_e285257eb1e5f9c6cfb3f0bfc2eb8ad6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Bagi teman-teman di <a href=\"https://twitter.com/petajkt\">@petajkt</a> dan <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> ,tetap semangat ya.Warga Jakarta mengandalkan kalian. :)</p>— Jakarta GreenMap (@GreenMapJakarta) <a href=\"https://twitter.com/GreenMapJakarta/status/564692926173675520\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(785,216,'_oembed_time_e285257eb1e5f9c6cfb3f0bfc2eb8ad6','1434363626'),(786,216,'_oembed_7b6b127da08012e08dbc1dbe2ae1aa23','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Teman-teman di <a href=\"https://twitter.com/petajkt\">@petajkt</a> pasti sibuk sekarang.Tetap semangat ya.</p>— Yansen Li (@yansen_li) <a href=\"https://twitter.com/yansen_li/status/564689439914356738\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(787,216,'_oembed_time_7b6b127da08012e08dbc1dbe2ae1aa23','1434363626'),(788,216,'_oembed_ad5191bf967c16abdc5aabba65f55b70','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> awesome work on keeping Jakarta residents informed of flooding trouplespots. <a href=\"https://twitter.com/hashtag/banjirJKT?src=hash\">#banjirJKT</a></p>— Rick Mulia (@rickmulia) <a href=\"https://twitter.com/rickmulia/status/564659355748810753\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(789,216,'_oembed_time_ad5191bf967c16abdc5aabba65f55b70','1434363626'),(790,216,'_oembed_61936af8e4a750463ca5f6e21f0f5a23','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">Happy monday all, berhubung hujan, aku nemu ini buat cek dan lapor daerah2 <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> dari <a href=\"https://twitter.com/petajkt\">@petajkt</a> smoga bermanfaat <a href=\"http://t.co/xHWzJsKGTS\">http://t.co/xHWzJsKGTS</a></p>— Rinni Wulandari (@rinni_w) <a href=\"https://twitter.com/rinni_w/status/564589091136606208\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(791,216,'_oembed_time_61936af8e4a750463ca5f6e21f0f5a23','1434363626'),(792,216,'_oembed_a6c2b52277cba1f1c6dc013a247c0de9','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\">Crowdsourcing flood location <a href=\"https://twitter.com/petajkt\">@petajkt</a>. There's always more to <a href=\"https://twitter.com/twitter\">@twitter</a> than frenzy twitwar & buzzer <a href=\"http://t.co/2cKw5hfW5a\">pic.twitter.com/2cKw5hfW5a</a></p>— Arif Kusbandono (@rifti) <a href=\"https://twitter.com/rifti/status/564587089795104768\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(793,216,'_oembed_time_a6c2b52277cba1f1c6dc013a247c0de9','1434363627'),(794,216,'_oembed_a29ff736f06ad0acf2658afb7700765d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\">akun <a href=\"https://twitter.com/petajkt\">@petajkt</a> mesti diperluas nih jd petajabodetabek :))</p>— yanhr (@yan_hr) <a href=\"https://twitter.com/yan_hr/status/564546679802560512\">February 8, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(795,216,'_oembed_time_a29ff736f06ad0acf2658afb7700765d','1434363627'),(796,216,'_oembed_e30ba8721fa816580ece99ed675f67e5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> komplek ciputat baru,tang-sel <a href=\"http://t.co/ixk12HNwze\">pic.twitter.com/ixk12HNwze</a></p>— Azizah Kurniawan (@AzizahKurniawa2) <a href=\"https://twitter.com/AzizahKurniawa2/status/564706983970734081\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(797,216,'_oembed_time_e30ba8721fa816580ece99ed675f67e5','1434363627'),(798,216,'_oembed_893a2f15c7b48a0ad748c1cefc914d46','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a>#banjir di perumnas 3 bekasi timur. Kedalaman sekitar 60 cm - 1 m.</p>— ono289 (@bayuhartono289) <a href=\"https://twitter.com/bayuhartono289/status/564691346720448512\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(799,216,'_oembed_time_893a2f15c7b48a0ad748c1cefc914d46','1434363627'),(800,221,'_wp_page_template','default'),(801,221,'_publicize_pending','1'),(802,221,'geo_public','0'),(803,221,'_oembed_23cf92220a4cb8cf9fb7bebc03060b47','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>Hmmm...looks like we're going to need a bigger scale on that there tweet-flood map <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/offthechart?src=hash\">#offthechart</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/poqtuSuJtm\">pic.twitter.com/poqtuSuJtm</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/564618563525152769\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(804,221,'_oembed_time_23cf92220a4cb8cf9fb7bebc03060b47','1424237170'),(805,221,'_oembed_5ad283fd111a70f315cd9501ee1b0fb3','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"http://t.co/Nah3uSaSrP\">http://t.co/Nah3uSaSrP</a> tops 1million twitter impressions over 4 days of flooding in Jakarta <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/SMART_facility\">@SMART_facility</a> <a href=\"http://t.co/dpUJAwZz1z\">pic.twitter.com/dpUJAwZz1z</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/565669513623248897\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(806,221,'_oembed_time_5ad283fd111a70f315cd9501ee1b0fb3','1424237170'),(807,221,'_oembed_5bb0610565557002a6c4a63be7208d51','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p>…and now I'm sending my 1000th tweet from <a href=\"https://twitter.com/twitter\">@Twitter</a>. To celebrate here's a map of flood tweets in Jakarta. <a href=\"https://twitter.com/hashtag/datagrant?src=hash\">#datagrant</a> <a href=\"http://t.co/M2anY94pVJ\">pic.twitter.com/M2anY94pVJ</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/514499701639757827\">September 23, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(808,221,'_oembed_time_5bb0610565557002a6c4a63be7208d51','1424238679'),(809,221,'_oembed_cdb9cb5561f5e06bd890cff167e21817','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>…and now I'm sending my 1000th tweet from <a href=\"https://twitter.com/twitter\">@Twitter</a>. To celebrate here's a map of flood tweets in Jakarta. <a href=\"https://twitter.com/hashtag/datagrant?src=hash\">#datagrant</a> <a href=\"http://t.co/M2anY94pVJ\">pic.twitter.com/M2anY94pVJ</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/514499701639757827\">September 23, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(810,221,'_oembed_time_cdb9cb5561f5e06bd890cff167e21817','1424921123'),(811,221,'_oembed_401f7048f199ae6c75c85c5b46181090','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p>Hmmm...looks like we're going to need a bigger scale on that there tweet-flood map <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/offthechart?src=hash\">#offthechart</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/poqtuSuJtm\">pic.twitter.com/poqtuSuJtm</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/564618563525152769\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(812,221,'_oembed_time_401f7048f199ae6c75c85c5b46181090','1424921123'),(813,221,'_oembed_49e84339c3ef98a04d09dc7ea6108e5f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p><a href=\"http://t.co/Nah3uSaSrP\">http://t.co/Nah3uSaSrP</a> tops 1million twitter impressions over 4 days of flooding in Jakarta <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/SMART_facility\">@SMART_facility</a> <a href=\"http://t.co/dpUJAwZz1z\">pic.twitter.com/dpUJAwZz1z</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/565669513623248897\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(814,221,'_oembed_time_49e84339c3ef98a04d09dc7ea6108e5f','1424921124'),(815,232,'_wp_page_template','default'),(816,232,'_publicize_pending','1'),(817,232,'geo_public','0'),(818,232,'_oembed_a4cf7ffddd1c5ad99c3e91b0542fc0c5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Illegal dumping a major problem for healt of Ciliwung River <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/snu0XqapvO\">pic.twitter.com/snu0XqapvO</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441113668051140608\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(819,232,'_oembed_time_a4cf7ffddd1c5ad99c3e91b0542fc0c5','1424668479'),(820,232,'_oembed_ae95ccbb2ddab5ebc5ed3d8183158d92','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> at the above is dki conservatory garden..and below is monkey cave <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/9W1uhc6xAm\">pic.twitter.com/9W1uhc6xAm</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441113669443665921\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(821,232,'_oembed_time_ae95ccbb2ddab5ebc5ed3d8183158d92','1424668479'),(822,232,'_oembed_a3f0553416e1116460901bb7f8d7a654','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/2ILzZ6Xzxu\">pic.twitter.com/2ILzZ6Xzxu</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441112629038157824\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(823,232,'_oembed_time_a3f0553416e1116460901bb7f8d7a654','1424668480'),(824,232,'_oembed_c3b938c14dbdf1d178877b96917e8200','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> foreign plant..no local name <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/gzTHu8heYY\">pic.twitter.com/gzTHu8heYY</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441112377170223104\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(825,232,'_oembed_time_c3b938c14dbdf1d178877b96917e8200','1424668480'),(826,232,'_oembed_0124fa3a09e1fcdd232e832b256ea66f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> massive <a href=\"https://twitter.com/hashtag/plastic?src=hash\">#plastic</a> problem after the <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/Q6VvEBXwhT\">pic.twitter.com/Q6VvEBXwhT</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441111944989126656\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(827,232,'_oembed_time_0124fa3a09e1fcdd232e832b256ea66f','1424668480'),(828,232,'_oembed_93e1278208d8944797e8883e81f1a1fb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> post <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey using Twitter + <a href=\"https://twitter.com/hashtag/opensouce?src=hash\">#opensouce</a> software CogniCity <a href=\"http://t.co/v3XzHjs02D\">pic.twitter.com/v3XzHjs02D</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441111384785309696\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(829,232,'_oembed_time_93e1278208d8944797e8883e81f1a1fb','1424668480'),(830,232,'_oembed_6214d65be77cc0c02743e9324a1ed131','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> building <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/6MJiLN3lfT\">pic.twitter.com/6MJiLN3lfT</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441110389342732288\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(831,232,'_oembed_time_6214d65be77cc0c02743e9324a1ed131','1424668481'),(832,232,'_oembed_6c688e818da4200b9640fec3fad5d05c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash mountain <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/pSQFxG7nX6\">pic.twitter.com/pSQFxG7nX6</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441109511500083200\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(833,232,'_oembed_time_6c688e818da4200b9640fec3fad5d05c','1424668481'),(834,232,'_oembed_2e7dbb619299e9dbae306c82bca74020','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Ciliwung Perspectives post <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey <a href=\"http://t.co/GJE5IL2vZV\">pic.twitter.com/GJE5IL2vZV</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441108171512242176\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(835,232,'_oembed_time_2e7dbb619299e9dbae306c82bca74020','1424668481'),(836,232,'_oembed_2ea238450c4cef499647d48f4094f946','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> people swim to get mujaer <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/oxmvkJKzZJ\">pic.twitter.com/oxmvkJKzZJ</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441106664947585024\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(837,232,'_oembed_time_2ea238450c4cef499647d48f4094f946','1424668481'),(838,232,'_oembed_d8510f7decb5a39967b97c9b55f892f1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> preparation normalization <a href=\"http://t.co/30NR7Je9Xw\">pic.twitter.com/30NR7Je9Xw</a></p>— Ariel adele glenesk (@ArielGlenesk) <a href=\"https://twitter.com/ArielGlenesk/status/441106064251965440\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(839,232,'_oembed_time_d8510f7decb5a39967b97c9b55f892f1','1424668481'),(840,232,'_oembed_5deef13778625523c4f09a2fe8d4e207','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash at kedung genting balai rakyat <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/FPJ2sWig5F\">pic.twitter.com/FPJ2sWig5F</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441105619429244928\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(841,232,'_oembed_time_5deef13778625523c4f09a2fe8d4e207','1424668482'),(842,232,'_oembed_0b96eeebc26586130941561e952a3bb4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> new house in the riverbank? <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/T3XdMXvICy\">pic.twitter.com/T3XdMXvICy</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441105597304287232\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(843,232,'_oembed_time_0b96eeebc26586130941561e952a3bb4','1424668482'),(844,232,'_oembed_05e0fb2291e64fbaabda4a4718dfcc5e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> smk 22 near Ciliwung <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/G5YRsBCUby\">pic.twitter.com/G5YRsBCUby</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441105581290422272\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(845,232,'_oembed_time_05e0fb2291e64fbaabda4a4718dfcc5e','1424668482'),(846,232,'_oembed_0c3331c2309ee375e69bffea57384168','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> villa <a href=\"http://t.co/4xLEKRWhVT\">pic.twitter.com/4xLEKRWhVT</a></p>— Ariel adele glenesk (@ArielGlenesk) <a href=\"https://twitter.com/ArielGlenesk/status/441105152351547392\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(847,232,'_oembed_time_0c3331c2309ee375e69bffea57384168','1424668482'),(848,232,'_oembed_b16bec8a5fc6f97e45fa5f9273b0d19e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> poor quality of water in Ciliwung <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/a0bCaTfcAt\">pic.twitter.com/a0bCaTfcAt</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441104883362435073\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(849,232,'_oembed_time_b16bec8a5fc6f97e45fa5f9273b0d19e','1424668483'),(850,232,'_oembed_dd8134c0be63042512780ec01ec6dc4c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Nomalization Area to begin hardscaping edge of Ciliwung River <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/s4f1o5xTVf\">pic.twitter.com/s4f1o5xTVf</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441104030178111488\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(851,232,'_oembed_time_dd8134c0be63042512780ec01ec6dc4c','1424668483'),(852,232,'_oembed_359b58a9824e795895e0cb6b7d7103ad','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> fishing at kedung poncol <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/eNMPY483L4\">pic.twitter.com/eNMPY483L4</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441103837445632001\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(853,232,'_oembed_time_359b58a9824e795895e0cb6b7d7103ad','1424668483'),(854,232,'_oembed_51347b5dea842dff301cc578ff3502e6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> so what is the definition of normalization?:) <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/BR7ZCE4uxb\">pic.twitter.com/BR7ZCE4uxb</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441103477280751617\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(855,232,'_oembed_time_51347b5dea842dff301cc578ff3502e6','1424668483'),(856,232,'_oembed_a0d65eb6bdba45441d95ef2d48db07d1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> another building in riverbank? <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/wJiBHpcIPf\">pic.twitter.com/wJiBHpcIPf</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441103142705307648\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(857,232,'_oembed_time_a0d65eb6bdba45441d95ef2d48db07d1','1424668484'),(858,232,'_oembed_44a2c34b77deda96e55b179072a29915','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> normalization <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/F3PKjmj0gU\">pic.twitter.com/F3PKjmj0gU</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441102663715782656\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(859,232,'_oembed_time_44a2c34b77deda96e55b179072a29915','1424668484'),(860,232,'_oembed_7338b7af7f28be8e595975f68e24a787','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> strong stream..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/VBSEL6bv0t\">pic.twitter.com/VBSEL6bv0t</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441102473806114816\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(861,232,'_oembed_time_7338b7af7f28be8e595975f68e24a787','1424668484'),(862,232,'_oembed_3fd92f1da8ededbef76041fbbd99d9bb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> normalization in Rindam..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/RGd09P0Zu0\">pic.twitter.com/RGd09P0Zu0</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441102205118988288\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(863,232,'_oembed_time_3fd92f1da8ededbef76041fbbd99d9bb','1424668484'),(864,232,'_oembed_e17f2af57c6ab02fb6de2b407b892e81','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> at kedung haji ilyas <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/MhgT9ZnrbY\">pic.twitter.com/MhgT9ZnrbY</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441101545212366848\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(865,232,'_oembed_time_e17f2af57c6ab02fb6de2b407b892e81','1424668484'),(866,232,'_oembed_522a77d4aaf07b07916c0ee8e29cb6f5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/plastik?src=hash\">#plastik</a> waste is a major problem after the <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/NZWTiFOWOC\">pic.twitter.com/NZWTiFOWOC</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441101413641248768\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(867,232,'_oembed_time_522a77d4aaf07b07916c0ee8e29cb6f5','1424668485'),(868,232,'_oembed_a7f0a8f7eb9cd64592f5e3b73608d21a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> people call it kedung area..(the area very deep) <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/6vEmj1oj0d\">pic.twitter.com/6vEmj1oj0d</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441101293084360705\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(869,232,'_oembed_time_a7f0a8f7eb9cd64592f5e3b73608d21a','1424668485'),(870,232,'_oembed_2d481fe573f91a9d79cfa7512122a070','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> bridge..connecting rindam (military post) <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/8d1mdBq8vF\">pic.twitter.com/8d1mdBq8vF</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100913076236288\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(871,232,'_oembed_time_2d481fe573f91a9d79cfa7512122a070','1424668485'),(872,232,'_oembed_df925f580f7b1bdf147e01223bc2a3db','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey team deployed in biodiversity and resilience workshop <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/oZwhElTzhC\">pic.twitter.com/oZwhElTzhC</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441100627972616192\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(873,232,'_oembed_time_df925f580f7b1bdf147e01223bc2a3db','1424668485'),(874,232,'_oembed_aef3bc064173bb79f2513d7feda90df5','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> lao tree.. <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/UhynDZca5k\">pic.twitter.com/UhynDZca5k</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100579503235072\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(875,232,'_oembed_time_aef3bc064173bb79f2513d7feda90df5','1424668486'),(876,232,'_oembed_9a450f2615f1cd53a087c8ac90e81999','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> rengas tree..approx 20 years old..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/uidMQMHTA8\">pic.twitter.com/uidMQMHTA8</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100425844899840\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(877,232,'_oembed_time_9a450f2615f1cd53a087c8ac90e81999','1424668486'),(878,232,'_oembed_21575221cbe5db2ee50735140d2cc962','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> fishing in ciliwung <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/fishing?src=hash\">#fishing</a> <a href=\"http://t.co/t6mIjdUiyP\">pic.twitter.com/t6mIjdUiyP</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100051314520065\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(879,232,'_oembed_time_21575221cbe5db2ee50735140d2cc962','1424668486'),(880,232,'_oembed_1b41313fb6f394358187047958d67e88','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> domestic trashbag..throw into the river <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/domestic?src=hash\">#domestic</a> trashbag <a href=\"http://t.co/BfAN4XpUWl\">pic.twitter.com/BfAN4XpUWl</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441099804995629056\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(881,232,'_oembed_time_1b41313fb6f394358187047958d67e88','1424668486'),(882,232,'_oembed_c81492a46fe079f822ae43c7c9f2d2a0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> plastic trash again? <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/plastic?src=hash\">#plastic</a> <a href=\"http://t.co/CAlnVo7bYS\">pic.twitter.com/CAlnVo7bYS</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441099524539305984\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(883,232,'_oembed_time_c81492a46fe079f822ae43c7c9f2d2a0','1424668486'),(884,232,'_oembed_ed2fe64baa72b47651bc0b1ba11dcf14','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> tofu domestic factory <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/tofu?src=hash\">#tofu</a> <a href=\"http://t.co/XSCeoEZvS1\">pic.twitter.com/XSCeoEZvS1</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441099138067750912\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(885,232,'_oembed_time_ed2fe64baa72b47651bc0b1ba11dcf14','1424668487'),(886,232,'_oembed_b319f41328fe4338d670b89c2bf74169','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/9QpOmGZrVm\">pic.twitter.com/9QpOmGZrVm</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441098920911847424\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(887,232,'_oembed_time_b319f41328fe4338d670b89c2bf74169','1424668487'),(888,232,'_oembed_4e3b4ad366b034bd0ba102682d60375a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash tree..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/trash?src=hash\">#trash</a> <a href=\"https://twitter.com/hashtag/plastic?src=hash\">#plastic</a> <a href=\"http://t.co/PhkB3FrafP\">pic.twitter.com/PhkB3FrafP</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441098717458747392\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(889,232,'_oembed_time_4e3b4ad366b034bd0ba102682d60375a','1424668487'),(890,232,'_oembed_47eae6e19ba3ce2a883f16914461bc90','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/dietplastik?src=hash\">#dietplastik</a> <a href=\"http://t.co/Lls0UpbbG7\">pic.twitter.com/Lls0UpbbG7</a></p>— Rita Padawangi (@ritapd) <a href=\"https://twitter.com/ritapd/status/441098442253672448\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(891,232,'_oembed_time_47eae6e19ba3ce2a883f16914461bc90','1424668487'),(892,232,'_oembed_8d48b82a8afcf7453288dbf0b4a11c46','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Ciliwung River community mapping starting point - fillet ikan sapu-sapu <a href=\"http://t.co/YaamYbGutL\">pic.twitter.com/YaamYbGutL</a></p>— Rita Padawangi (@ritapd) <a href=\"https://twitter.com/ritapd/status/441090453908103169\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(893,232,'_oembed_time_8d48b82a8afcf7453288dbf0b4a11c46','1424668488'),(894,232,'_oembed_2a9ac7cda1f5e5be70055cb6963ce0bd','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Ciliwung mapping starting point tanjung barat- wadas stones <a href=\"http://t.co/MGDjIo5RDE\">pic.twitter.com/MGDjIo5RDE</a></p>— Rita Padawangi (@ritapd) <a href=\"https://twitter.com/ritapd/status/441090065591062528\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(895,232,'_oembed_time_2a9ac7cda1f5e5be70055cb6963ce0bd','1424668488'),(896,232,'_oembed_db4f195fdfc2cc17b38d9e24930e2a95','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> on the way!!! <a href=\"http://t.co/IT1xSZ34J4\">pic.twitter.com/IT1xSZ34J4</a></p>— Ariel adele glenesk (@ArielGlenesk) <a href=\"https://twitter.com/ArielGlenesk/status/441080670601748481\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(897,232,'_oembed_time_db4f195fdfc2cc17b38d9e24930e2a95','1424668488'),(898,232,'_oembed_dc3b56291062aaae51d365ee2f69f9d6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"http://t.co/7wk8ucgMMi\">http://t.co/7wk8ucgMMi</a> & Ciliwung Institute prepare for <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/EfWAJDJzLZ\">pic.twitter.com/EfWAJDJzLZ</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441062967237296129\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(899,232,'_oembed_time_dc3b56291062aaae51d365ee2f69f9d6','1424668488'),(900,232,'_oembed_d8375e96100f0144e633b9aa4ba7f3bc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Ciliwung Workshop on Biodiversity and Resilience with Ciliwung Institute on now <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/UYCCRtAeMC\">pic.twitter.com/UYCCRtAeMC</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441053880978112512\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(901,232,'_oembed_time_d8375e96100f0144e633b9aa4ba7f3bc','1424668488'),(902,232,'_oembed_e2c2314ccb1c30375cae056ffc6003f1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> at saung ciliwung condet <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/OrwFVlGazD\">pic.twitter.com/OrwFVlGazD</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441044735243722752\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(903,232,'_oembed_time_e2c2314ccb1c30375cae056ffc6003f1','1424668489'),(904,232,'_oembed_fe3f9d8a171eca115d58064de755b77d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> great day for biodiversity workshop! <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/QgqSbICyk7\">pic.twitter.com/QgqSbICyk7</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441038728794865664\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(905,232,'_oembed_time_fe3f9d8a171eca115d58064de755b77d','1424668489'),(906,232,'_oembed_1c68201fa1ba0b62b776e8729f1da266','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Biodiversity and Resilience Workshop starting with Ciliwung Institute <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/9lGWLwIsrq\">pic.twitter.com/9lGWLwIsrq</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441036192327290880\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(907,232,'_oembed_time_1c68201fa1ba0b62b776e8729f1da266','1424668489'),(908,232,'_oembed_5e4a6d31d21f693193f613c6702f4f17','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> Thanks to Bukit Duri for inspiring discussion on mutual aid as what matters most in flood response <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/io8tGqX9D0\">pic.twitter.com/io8tGqX9D0</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/434326454814253056\">February 14, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(909,232,'_oembed_time_5e4a6d31d21f693193f613c6702f4f17','1424668489'),(910,232,'_oembed_a3ae559a1f5f74f9896bf47281040d57','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh61 Brp2 KrjY14Rp200000 SklhN SktN Rp110000 BjrPaha <a href=\"http://t.co/qjb6wMrE1Q\">pic.twitter.com/qjb6wMrE1Q</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433870546879524864\">February 13, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(911,232,'_oembed_time_a3ae559a1f5f74f9896bf47281040d57','1424668490'),(912,232,'_oembed_491ebd37ef7d3346b5b5aa240123e621','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh4 Brp4 KrjY12Rp360000 SklhN SktN Rp5mil. BjrDiAtasKepala <a href=\"http://t.co/4VzyT4ViXJ\">pic.twitter.com/4VzyT4ViXJ</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433867102114414592\">February 13, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(913,232,'_oembed_time_491ebd37ef7d3346b5b5aa240123e621','1424668490'),(914,232,'_oembed_7d3c3cd3d72e3c71300a873d372adccd','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh1 Brp4 KrjY30Rp4.5mil. SklhN SktN Rp500000 BjrDada <a href=\"http://t.co/Q7klGOejKA\">pic.twitter.com/Q7klGOejKA</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433862885366714368\">February 13, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(915,232,'_oembed_time_7d3c3cd3d72e3c71300a873d372adccd','1424668490'),(916,232,'_oembed_af0e818aafde0f5599154a5bb82f4132','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh29 Brp3 KrjNRp0 SklhY8 SktY8 Rp100000 BjrBahu <a href=\"http://t.co/Um6kAjZv2W\">pic.twitter.com/Um6kAjZv2W</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433846969778204673\">February 13, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(917,232,'_oembed_time_af0e818aafde0f5599154a5bb82f4132','1424668490'),(918,232,'_oembed_88df2d9fac182736a4b8accb46951cb8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh32 Brp5 KrjY14Rp200000 SklhN SktY14 Rp985000 BjrDada <a href=\"http://t.co/wwjQBAYUKq\">pic.twitter.com/wwjQBAYUKq</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433519032952582144\">February 12, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(919,232,'_oembed_time_88df2d9fac182736a4b8accb46951cb8','1424668490'),(920,232,'_oembed_248435f9f698d6d0f471713a603e9782','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh54 Brp4 KrjY14Rp 1.17mil Sklh28 Skt14 Rp220000 BjrDada <a href=\"http://t.co/cFEadDmQAJ\">pic.twitter.com/cFEadDmQAJ</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433503461313769472\">February 12, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(921,232,'_oembed_time_248435f9f698d6d0f471713a603e9782','1424668491'),(922,232,'_oembed_a8c0773779453c503d908fc16ddf1d53','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh52 Brp5 KrjY15Rp1.5m Sklh45 Skt30 Rp220000 BjrBahu <a href=\"http://t.co/qRjx4Fql69\">pic.twitter.com/qRjx4Fql69</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433498743141187584\">February 12, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(923,232,'_oembed_time_a8c0773779453c503d908fc16ddf1d53','1424668491'),(924,232,'_oembed_3c9add4764608f04e27743a01cc9a380','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Rmh64 Brp2 KrjY30Rp0 SklhN SktY21 Rp95000 BjrDada <a href=\"http://t.co/4DrbVbpbDg\">pic.twitter.com/4DrbVbpbDg</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433494597382074368\">February 12, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(925,232,'_oembed_time_3c9add4764608f04e27743a01cc9a380','1424668491'),(926,232,'_oembed_1e0b4620ce5e336f9c96b1e289d3c2da','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/mQnvos90Q4\">pic.twitter.com/mQnvos90Q4</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433489288957681664\">February 12, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(927,232,'_oembed_time_1e0b4620ce5e336f9c96b1e289d3c2da','1424668491'),(928,232,'_oembed_0ae45679ef92f99bf1df46ff61a40758','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/IbIAYn4W3V\">pic.twitter.com/IbIAYn4W3V</a></p>— PetaJakarta.org (@mapjkt) <a href=\"https://twitter.com/mapjkt/status/433486366718976001\">February 12, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(929,232,'_oembed_time_0ae45679ef92f99bf1df46ff61a40758','1424668492'),(930,232,'_oembed_0f72096db9b68ec2dbd3fb3a4f4553f0','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/mapjkt\">@mapjkt</a> Thanks to Bukit Duri residents for sharing their <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> stories and ideas for improving resilience <a href=\"http://t.co/m8i6cTAsih\">pic.twitter.com/m8i6cTAsih</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/431744031609991169\">February 7, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(931,232,'_oembed_time_0f72096db9b68ec2dbd3fb3a4f4553f0','1424668492'),(932,232,'_oembed_d29e6bcb24c7d2630d42f06b54d18002','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"545\"><p><a href=\"https://twitter.com/petajkt\">@petajkt</a> damage assessment at Tongtek Bridge with Ciliwung Merdeka <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/iC3B5DeTwt\">pic.twitter.com/iC3B5DeTwt</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/431711264809566208\">February 7, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(933,232,'_oembed_time_d29e6bcb24c7d2630d42f06b54d18002','1424668492'),(934,232,'_oembed_5f3d94c3f80c448161aafee36b6d8e2e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Illegal dumping a major problem for healt of Ciliwung River <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/snu0XqapvO\">pic.twitter.com/snu0XqapvO</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441113668051140608\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(935,232,'_oembed_time_5f3d94c3f80c448161aafee36b6d8e2e','1434363598'),(936,232,'_oembed_764cdd7e6159b111d8626653369e980a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> at the above is dki conservatory garden..and below is monkey cave <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/9W1uhc6xAm\">pic.twitter.com/9W1uhc6xAm</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441113669443665921\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(937,232,'_oembed_time_764cdd7e6159b111d8626653369e980a','1434363598'),(938,232,'_oembed_8f93814558046863996b96da921f3e09','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"und\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/2ILzZ6Xzxu\">pic.twitter.com/2ILzZ6Xzxu</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441112629038157824\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(939,232,'_oembed_time_8f93814558046863996b96da921f3e09','1434363599'),(940,232,'_oembed_15a81ad8ced98bb51d5276f7a6c03eb2','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> foreign plant..no local name <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/gzTHu8heYY\">pic.twitter.com/gzTHu8heYY</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441112377170223104\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(941,232,'_oembed_time_15a81ad8ced98bb51d5276f7a6c03eb2','1434363599'),(942,232,'_oembed_daa8a6e0e419e8400b84610a87fd2b5c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> massive <a href=\"https://twitter.com/hashtag/plastic?src=hash\">#plastic</a> problem after the <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/Q6VvEBXwhT\">pic.twitter.com/Q6VvEBXwhT</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441111944989126656\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(943,232,'_oembed_time_daa8a6e0e419e8400b84610a87fd2b5c','1434363599'),(944,232,'_oembed_ffff2d0a1f03e5817d2fee03f6bda6ac','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> post <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey using Twitter + <a href=\"https://twitter.com/hashtag/opensouce?src=hash\">#opensouce</a> software CogniCity <a href=\"http://t.co/v3XzHjs02D\">pic.twitter.com/v3XzHjs02D</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441111384785309696\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(945,232,'_oembed_time_ffff2d0a1f03e5817d2fee03f6bda6ac','1434363599'),(946,232,'_oembed_815a4aa3d1e1afaea0b1cd6d0c5c5a8c','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> building <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/6MJiLN3lfT\">pic.twitter.com/6MJiLN3lfT</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441110389342732288\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(947,232,'_oembed_time_815a4aa3d1e1afaea0b1cd6d0c5c5a8c','1434363599'),(948,232,'_oembed_79a5f11496d7fe2346136d9247451945','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash mountain <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/pSQFxG7nX6\">pic.twitter.com/pSQFxG7nX6</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441109511500083200\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(949,232,'_oembed_time_79a5f11496d7fe2346136d9247451945','1434363600'),(950,232,'_oembed_6e91998d58e8731e36ef7a2fd2e8317e','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Ciliwung Perspectives post <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey <a href=\"http://t.co/GJE5IL2vZV\">pic.twitter.com/GJE5IL2vZV</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441108171512242176\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(951,232,'_oembed_time_6e91998d58e8731e36ef7a2fd2e8317e','1434363600'),(952,232,'_oembed_a86272e5c6a9ea87cb9d86c2f25e3a84','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> people swim to get mujaer <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/oxmvkJKzZJ\">pic.twitter.com/oxmvkJKzZJ</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441106664947585024\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(953,232,'_oembed_time_a86272e5c6a9ea87cb9d86c2f25e3a84','1434363600'),(954,232,'_oembed_1655b87847f143d148d35410ea2a3dbc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> preparation normalization <a href=\"http://t.co/30NR7Je9Xw\">pic.twitter.com/30NR7Je9Xw</a></p>— Ariel adele glenesk (@ArielGlenesk) <a href=\"https://twitter.com/ArielGlenesk/status/441106064251965440\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(955,232,'_oembed_time_1655b87847f143d148d35410ea2a3dbc','1434363600'),(956,232,'_oembed_abfff9cbc792f9c961a7973543d3bf73','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash at kedung genting balai rakyat <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/FPJ2sWig5F\">pic.twitter.com/FPJ2sWig5F</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441105619429244928\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(957,232,'_oembed_time_abfff9cbc792f9c961a7973543d3bf73','1434363601'),(958,232,'_oembed_3cce2fdb0edec43ea6d1685f18f917a4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> new house in the riverbank? <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/T3XdMXvICy\">pic.twitter.com/T3XdMXvICy</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441105597304287232\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(959,232,'_oembed_time_3cce2fdb0edec43ea6d1685f18f917a4','1434363601'),(960,232,'_oembed_cdcc0df6d618d5269909d4c0f650291f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> smk 22 near Ciliwung <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/G5YRsBCUby\">pic.twitter.com/G5YRsBCUby</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441105581290422272\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(961,232,'_oembed_time_cdcc0df6d618d5269909d4c0f650291f','1434363601'),(962,232,'_oembed_77befcbabec50e39cf603d9f075bde8a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"sv\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> villa <a href=\"http://t.co/4xLEKRWhVT\">pic.twitter.com/4xLEKRWhVT</a></p>— Ariel adele glenesk (@ArielGlenesk) <a href=\"https://twitter.com/ArielGlenesk/status/441105152351547392\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(963,232,'_oembed_time_77befcbabec50e39cf603d9f075bde8a','1434363601'),(964,232,'_oembed_a6b7aecba1f03eea242a8aeb7a2c9b22','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> poor quality of water in Ciliwung <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/a0bCaTfcAt\">pic.twitter.com/a0bCaTfcAt</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441104883362435073\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(965,232,'_oembed_time_a6b7aecba1f03eea242a8aeb7a2c9b22','1434363602'),(966,232,'_oembed_583d4a26daf3475bb46b326c14c52878','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Nomalization Area to begin hardscaping edge of Ciliwung River <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/s4f1o5xTVf\">pic.twitter.com/s4f1o5xTVf</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441104030178111488\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(967,232,'_oembed_time_583d4a26daf3475bb46b326c14c52878','1434363602'),(968,232,'_oembed_0ccd68c0d51b3b0d6552c98c49bd3ccc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> fishing at kedung poncol <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/eNMPY483L4\">pic.twitter.com/eNMPY483L4</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441103837445632001\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(969,232,'_oembed_time_0ccd68c0d51b3b0d6552c98c49bd3ccc','1434363602'),(970,232,'_oembed_29abf770839abd1e8d78e1a7208edcba','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> so what is the definition of normalization?:) <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/BR7ZCE4uxb\">pic.twitter.com/BR7ZCE4uxb</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441103477280751617\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(971,232,'_oembed_time_29abf770839abd1e8d78e1a7208edcba','1434363602'),(972,232,'_oembed_af232585a2b1520741cb41554596d7e6','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> another building in riverbank? <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/wJiBHpcIPf\">pic.twitter.com/wJiBHpcIPf</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441103142705307648\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(973,232,'_oembed_time_af232585a2b1520741cb41554596d7e6','1434363603'),(974,232,'_oembed_f746209fcec34becf93f1845beaf0815','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> normalization <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/F3PKjmj0gU\">pic.twitter.com/F3PKjmj0gU</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441102663715782656\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(975,232,'_oembed_time_f746209fcec34becf93f1845beaf0815','1434363603'),(976,232,'_oembed_807dd57928bc95e0fba9b18c19bde1c7','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> strong stream..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/VBSEL6bv0t\">pic.twitter.com/VBSEL6bv0t</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441102473806114816\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(977,232,'_oembed_time_807dd57928bc95e0fba9b18c19bde1c7','1434363603'),(978,232,'_oembed_06be554949c22f711d00fced2be7d3cb','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> normalization in Rindam..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/RGd09P0Zu0\">pic.twitter.com/RGd09P0Zu0</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441102205118988288\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(979,232,'_oembed_time_06be554949c22f711d00fced2be7d3cb','1434363603'),(980,232,'_oembed_2d9759545970e87345d1584f6c4a9450','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> at kedung haji ilyas <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/MhgT9ZnrbY\">pic.twitter.com/MhgT9ZnrbY</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441101545212366848\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(981,232,'_oembed_time_2d9759545970e87345d1584f6c4a9450','1434363604'),(982,232,'_oembed_1ac15523ddecf93c4bebe96ce2b94101','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/plastik?src=hash\">#plastik</a> waste is a major problem after the <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/NZWTiFOWOC\">pic.twitter.com/NZWTiFOWOC</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441101413641248768\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(983,232,'_oembed_time_1ac15523ddecf93c4bebe96ce2b94101','1434363604'),(984,232,'_oembed_2c6f8630a92ac87901afb4855f7f8f01','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> people call it kedung area..(the area very deep) <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/6vEmj1oj0d\">pic.twitter.com/6vEmj1oj0d</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441101293084360705\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(985,232,'_oembed_time_2c6f8630a92ac87901afb4855f7f8f01','1434363604'),(986,232,'_oembed_cd761edfb2036423ddd4a28c4fb79d89','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> bridge..connecting rindam (military post) <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/8d1mdBq8vF\">pic.twitter.com/8d1mdBq8vF</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100913076236288\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(987,232,'_oembed_time_cd761edfb2036423ddd4a28c4fb79d89','1434363604'),(988,232,'_oembed_2cb28a32d19f904891609a76f7aa3762','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey team deployed in biodiversity and resilience workshop <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/oZwhElTzhC\">pic.twitter.com/oZwhElTzhC</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441100627972616192\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(989,232,'_oembed_time_2cb28a32d19f904891609a76f7aa3762','1434363605'),(990,232,'_oembed_219ea37a31642bbd22e7591d12db2a97','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"es\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> lao tree.. <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/UhynDZca5k\">pic.twitter.com/UhynDZca5k</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100579503235072\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(991,232,'_oembed_time_219ea37a31642bbd22e7591d12db2a97','1434363605'),(992,232,'_oembed_c9e036da40af41501c14ff35bb3adb6d','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> rengas tree..approx 20 years old..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/uidMQMHTA8\">pic.twitter.com/uidMQMHTA8</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100425844899840\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(993,232,'_oembed_time_c9e036da40af41501c14ff35bb3adb6d','1434363605'),(994,232,'_oembed_f80592a1ad4ac1454d45d0f8190ee3a1','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> fishing in ciliwung <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/fishing?src=hash\">#fishing</a> <a href=\"http://t.co/t6mIjdUiyP\">pic.twitter.com/t6mIjdUiyP</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441100051314520065\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(995,232,'_oembed_time_f80592a1ad4ac1454d45d0f8190ee3a1','1434363605'),(996,232,'_oembed_76b11bf89c3b1bcd27836f80be85c443','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> domestic trashbag..throw into the river <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/domestic?src=hash\">#domestic</a> trashbag <a href=\"http://t.co/BfAN4XpUWl\">pic.twitter.com/BfAN4XpUWl</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441099804995629056\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(997,232,'_oembed_time_76b11bf89c3b1bcd27836f80be85c443','1434363605'),(998,232,'_oembed_7ce3798c484e1739e77e00e8f0503d17','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> plastic trash again? <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/plastic?src=hash\">#plastic</a> <a href=\"http://t.co/CAlnVo7bYS\">pic.twitter.com/CAlnVo7bYS</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441099524539305984\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(999,232,'_oembed_time_7ce3798c484e1739e77e00e8f0503d17','1434363606'),(1000,232,'_oembed_fdca9abc5d5f560215c056eb18b8e98f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> tofu domestic factory <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/tofu?src=hash\">#tofu</a> <a href=\"http://t.co/XSCeoEZvS1\">pic.twitter.com/XSCeoEZvS1</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441099138067750912\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1001,232,'_oembed_time_fdca9abc5d5f560215c056eb18b8e98f','1434363606'),(1002,232,'_oembed_1dc50097a19ef264bd8a059d2231501f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/9QpOmGZrVm\">pic.twitter.com/9QpOmGZrVm</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441098920911847424\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1003,232,'_oembed_time_1dc50097a19ef264bd8a059d2231501f','1434363606'),(1004,232,'_oembed_af8974819d3750802e40d2ca71155e6a','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> trash tree..<a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/trash?src=hash\">#trash</a> <a href=\"https://twitter.com/hashtag/plastic?src=hash\">#plastic</a> <a href=\"http://t.co/PhkB3FrafP\">pic.twitter.com/PhkB3FrafP</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441098717458747392\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1005,232,'_oembed_time_af8974819d3750802e40d2ca71155e6a','1434363606'),(1006,232,'_oembed_028bca599b04ceed7b5ca48c9254a2ff','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"und\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"https://twitter.com/hashtag/dietplastik?src=hash\">#dietplastik</a> <a href=\"http://t.co/Lls0UpbbG7\">pic.twitter.com/Lls0UpbbG7</a></p>— Rita Padawangi (@ritapd) <a href=\"https://twitter.com/ritapd/status/441098442253672448\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1007,232,'_oembed_time_028bca599b04ceed7b5ca48c9254a2ff','1434363607'),(1008,232,'_oembed_65e70ffbff43948a9f86a53e530c6dfc','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"tl\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Ciliwung River community mapping starting point - fillet ikan sapu-sapu <a href=\"http://t.co/YaamYbGutL\">pic.twitter.com/YaamYbGutL</a></p>— Rita Padawangi (@ritapd) <a href=\"https://twitter.com/ritapd/status/441090453908103169\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1009,232,'_oembed_time_65e70ffbff43948a9f86a53e530c6dfc','1434363607'),(1010,232,'_oembed_d00dcbd4bef4248bb4116eb9c5d3502f','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> Ciliwung mapping starting point tanjung barat- wadas stones <a href=\"http://t.co/MGDjIo5RDE\">pic.twitter.com/MGDjIo5RDE</a></p>— Rita Padawangi (@ritapd) <a href=\"https://twitter.com/ritapd/status/441090065591062528\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1011,232,'_oembed_time_d00dcbd4bef4248bb4116eb9c5d3502f','1434363607'),(1012,232,'_oembed_1b107a91c7cfa74fc7b94c492244d84b','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> on the way!!! <a href=\"http://t.co/IT1xSZ34J4\">pic.twitter.com/IT1xSZ34J4</a></p>— Ariel adele glenesk (@ArielGlenesk) <a href=\"https://twitter.com/ArielGlenesk/status/441080670601748481\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1013,232,'_oembed_time_1b107a91c7cfa74fc7b94c492244d84b','1434363607'),(1014,232,'_oembed_9ae749b5194dfb562a38b8dd456d2879','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"http://t.co/7wk8ucgMMi\">http://t.co/7wk8ucgMMi</a> & Ciliwung Institute prepare for <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> damage survey <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/EfWAJDJzLZ\">pic.twitter.com/EfWAJDJzLZ</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441062967237296129\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1015,232,'_oembed_time_9ae749b5194dfb562a38b8dd456d2879','1434363608'),(1016,232,'_oembed_c9237ef1f53fd476b06f31ae9e859f34','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Ciliwung Workshop on Biodiversity and Resilience with Ciliwung Institute on now <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/UYCCRtAeMC\">pic.twitter.com/UYCCRtAeMC</a></p>— PetaJakarta.org (@petajkt) <a href=\"https://twitter.com/petajkt/status/441053880978112512\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1017,232,'_oembed_time_c9237ef1f53fd476b06f31ae9e859f34','1434363608'),(1018,232,'_oembed_1e227128535354949f5f0ac68f594216','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"in\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> at saung ciliwung condet <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/OrwFVlGazD\">pic.twitter.com/OrwFVlGazD</a></p>— Akbarecht (@Akbarecht) <a href=\"https://twitter.com/Akbarecht/status/441044735243722752\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1019,232,'_oembed_time_1e227128535354949f5f0ac68f594216','1434363608'),(1020,232,'_oembed_85cb4485da4b79a43976f9a3d63be2d4','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> great day for biodiversity workshop! <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/QgqSbICyk7\">pic.twitter.com/QgqSbICyk7</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441038728794865664\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1021,232,'_oembed_time_85cb4485da4b79a43976f9a3d63be2d4','1434363608'),(1022,232,'_oembed_a15d73b251fc367bc739f9b35a70a2d8','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Biodiversity and Resilience Workshop starting with Ciliwung Institute <a href=\"https://twitter.com/hashtag/grasp?src=hash\">#grasp</a> <a href=\"http://t.co/9lGWLwIsrq\">pic.twitter.com/9lGWLwIsrq</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/441036192327290880\">March 5, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1023,232,'_oembed_time_a15d73b251fc367bc739f9b35a70a2d8','1434363609'),(1024,232,'_oembed_9429f9ff958fb6d779687782c85d3091','<div class=\"embed-twitter\"><blockquote class=\"twitter-tweet\" width=\"500\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/petajkt\">@petajkt</a> Thanks to Bukit Duri for inspiring discussion on mutual aid as what matters most in flood response <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"http://t.co/io8tGqX9D0\">pic.twitter.com/io8tGqX9D0</a></p>— etienne turpin (@turpin_etienne) <a href=\"https://twitter.com/turpin_etienne/status/434326454814253056\">February 14, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script></div>'),(1025,232,'_oembed_time_9429f9ff958fb6d779687782c85d3091','1434363609'),(1026,1,'_wp_trash_meta_status','publish'),(1027,1,'_wp_trash_meta_time','1436154294'),(1028,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(1029,160,'_oembed_2ddd3f15c5ef1176a34a79d9797af484','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"in\" dir=\"ltr\">Bantu kami memetakan banjir. Jika daerahnya kena banjir bisa lapor via twitter ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> dgn tanda <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cc: <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a></p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/558461110752268289\">January 23, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1030,160,'_oembed_time_2ddd3f15c5ef1176a34a79d9797af484','1436154303'),(1031,18,'_oembed_941977ba97ada523e74370f0838a8b99','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"in\" dir=\"ltr\">Pak @jokowi_do2, kena banjir Jakarta? Bantu tweet ke <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> cek <a href=\"http://t.co/M6RltBYkDL\">http://t.co/M6RltBYkDL</a> & follow <a href=\"https://twitter.com/BPBDJakarta\">@BPBDJakarta</a> utk info lebih lanjut</p>— Ahok Basuki TPurnama (@basuki_btp) <a href=\"https://twitter.com/basuki_btp/status/539703116992503808\">December 2, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1032,18,'_oembed_time_941977ba97ada523e74370f0838a8b99','1436307615'),(1033,18,'_oembed_a18bb5ee116d2515a1cf60bb037f00e7','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1034,18,'_oembed_time_a18bb5ee116d2515a1cf60bb037f00e7','1436307615'),(1036,160,'_edit_lock','1436307610:1'),(1037,160,'_edit_last','1'),(1040,152,'_edit_last','1'),(1043,152,'_edit_lock','1436307370:1'),(1044,18,'_edit_last','1'),(1047,18,'_edit_lock','1436307473:1'),(1062,207,'_edit_lock','1436160298:1'),(1063,207,'_oembed_11c6acdee5db6c3c9babb2a2cb02c7d0','{{unknown}}'),(1064,238,'_menu_item_type','custom'),(1065,238,'_menu_item_menu_item_parent','0'),(1066,238,'_menu_item_object_id','238'),(1067,238,'_menu_item_object','custom'),(1068,238,'_menu_item_target',''),(1069,238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1070,238,'_menu_item_xfn',''),(1071,238,'_menu_item_url','http://sriumiyati.com/'),(1073,75,'_oembed_a18bb5ee116d2515a1cf60bb037f00e7','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">How Twitter data helps <a href=\"https://twitter.com/petajkt\">@petajkt</a> track flooding in real time around Jakarta to save lives: <a href=\"https://t.co/HlYH0jUEsa\">https://t.co/HlYH0jUEsa</a> <a href=\"https://twitter.com/TwitterData\">@TwitterData</a></p>— Twitter (@twitter) <a href=\"https://twitter.com/twitter/status/540208387024113665\">December 3, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1074,75,'_oembed_time_a18bb5ee116d2515a1cf60bb037f00e7','1436160740'),(1075,221,'_edit_lock','1436165541:1'),(1076,221,'_oembed_02d7297bec085306693126cc9574c74d','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Hmmm...looks like we're going to need a bigger scale on that there tweet-flood map <a href=\"https://twitter.com/hashtag/banjir?src=hash\">#banjir</a> <a href=\"https://twitter.com/hashtag/offthechart?src=hash\">#offthechart</a> <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"http://t.co/poqtuSuJtm\">pic.twitter.com/poqtuSuJtm</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/564618563525152769\">February 9, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1077,221,'_oembed_time_02d7297bec085306693126cc9574c74d','1436165674'),(1078,221,'_oembed_f1917b7ff65fbf795e7fc0f6d2f65e2d','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">…and now I'm sending my 1000th tweet from <a href=\"https://twitter.com/twitter\">@Twitter</a>. To celebrate here's a map of flood tweets in Jakarta. <a href=\"https://twitter.com/hashtag/datagrant?src=hash\">#datagrant</a> <a href=\"http://t.co/M2anY94pVJ\">pic.twitter.com/M2anY94pVJ</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/514499701639757827\">September 23, 2014</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1079,221,'_oembed_time_f1917b7ff65fbf795e7fc0f6d2f65e2d','1436165674'),(1080,221,'_oembed_11b4b332bd558c14c5bf1fe54458d674','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\"><a href=\"http://t.co/Nah3uSaSrP\">http://t.co/Nah3uSaSrP</a> tops 1million twitter impressions over 4 days of flooding in Jakarta <a href=\"https://twitter.com/petajkt\">@petajkt</a> <a href=\"https://twitter.com/SMART_facility\">@SMART_facility</a> <a href=\"http://t.co/dpUJAwZz1z\">pic.twitter.com/dpUJAwZz1z</a></p>— Tomas Holderness (@iHolderness) <a href=\"https://twitter.com/iHolderness/status/565669513623248897\">February 12, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1081,221,'_oembed_time_11b4b332bd558c14c5bf1fe54458d674','1436165674'),(1082,239,'_wp_attached_file','2015/07/cropped-petajakarta_border_top2.png'),(1083,239,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:252;s:6:\"height\";i:48;s:4:\"file\";s:43:\"2015/07/cropped-petajakarta_border_top2.png\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1084,239,'_edit_lock','1436188022:1'),(1085,239,'_wp_attachment_custom_header_last_used_sparkling','1436188051'),(1086,239,'_wp_attachment_is_custom_header','sparkling'),(1089,194,'_edit_lock','1436252119:1'),(1090,194,'_edit_last','1'),(1091,241,'_edit_last','1'),(1092,241,'_edit_lock','1436307266:1'),(1095,241,'_oembed_273a94fb65cfb4e047688b90f902aad5','<iframe width=\"648\" height=\"365\" src=\"https://www.youtube.com/embed/hnXI-LJPzYM?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1096,241,'_oembed_time_273a94fb65cfb4e047688b90f902aad5','1436257306'),(1104,246,'_wp_attached_file','2015/02/15765103814_649cc6bb09_k1.jpg'),(1105,246,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:37:\"2015/02/15765103814_649cc6bb09_k1.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1108,248,'_wp_attached_file','2015/02/15765103814_649cc6bb09_k2.jpg'),(1109,248,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:2048;s:6:\"height\";i:587;s:4:\"file\";s:37:\"2015/02/15765103814_649cc6bb09_k2.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1110,160,'_thumbnail_id','248'),(1113,249,'_wp_attached_file','2015/02/15861856331_4428056ec6_k1.jpg'),(1114,249,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:2048;s:6:\"height\";i:587;s:4:\"file\";s:37:\"2015/02/15861856331_4428056ec6_k1.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1115,152,'_thumbnail_id','249'),(1116,250,'_wp_attached_file','2014/12/31541-1420488025799.jpg'),(1117,250,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1500;s:6:\"height\";i:430;s:4:\"file\";s:31:\"2014/12/31541-1420488025799.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1118,18,'_thumbnail_id','250'),(1121,251,'_edit_last','1'),(1122,251,'_edit_lock','1436684182:1'),(1125,251,'_oembed_0942dfc996dfbad9019c1f4e5e9a93b3','<iframe width=\"648\" height=\"365\" src=\"https://www.youtube.com/embed/M5N0NMpKp3A?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1126,251,'_oembed_time_0942dfc996dfbad9019c1f4e5e9a93b3','1436684304'),(1127,251,'_oembed_3da4279d601831ef77b59cc935549889','<iframe width=\"648\" height=\"365\" src=\"https://www.youtube.com/embed/TG-KBgWFI0k?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1128,251,'_oembed_time_3da4279d601831ef77b59cc935549889','1436684304'),(1129,251,'_oembed_6a192188620209ace049da43e95d3c24','<iframe width=\"648\" height=\"365\" src=\"https://www.youtube.com/embed/qD9FBO5YKTI?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1130,251,'_oembed_time_6a192188620209ace049da43e95d3c24','1436684304'),(1131,253,'_edit_last','1'),(1132,253,'_edit_lock','1436684311:1'),(1135,253,'_oembed_1f3e116462d47c87727122caa5321c3d','<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">Discover innovative solutions to flood awareness with <a href=\"https://twitter.com/petajkt\">@petajkt</a> at <a href=\"https://twitter.com/hashtag/ncs2015?src=hash\">#ncs2015</a> ><a href=\"http://t.co/PoYbAddZdy\">http://t.co/PoYbAddZdy</a> <a href=\"https://twitter.com/hashtag/whatworksincities?src=hash\">#whatworksincities</a> <a href=\"http://t.co/j1lSEsuElX\">pic.twitter.com/j1lSEsuElX</a></p>— NewCitiesFoundation (@newcitiesfound) <a href=\"https://twitter.com/newcitiesfound/status/599506830256001024\">May 16, 2015</a></blockquote><script async src=\"//platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(1136,253,'_oembed_time_1f3e116462d47c87727122caa5321c3d','1436684392'),(1137,255,'_edit_last','1'),(1138,255,'_edit_lock','1436684439:1'),(1141,257,'_edit_last','1'),(1142,257,'_edit_lock','1436684938:1'),(1143,258,'_wp_attached_file','2015/07/intern2.jpg'),(1144,258,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1196;s:6:\"height\";i:985;s:4:\"file\";s:19:\"2015/07/intern2.jpg\";s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1157,263,'_edit_last','1'),(1158,263,'_edit_lock','1436686266:1'),(1159,263,'_oembed_ce0c82691d6f66fc7ccd81c8e918c9a2','<iframe width=\"648\" height=\"365\" src=\"https://www.youtube.com/embed/6v7BO8_rhWI?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(1160,263,'_oembed_time_ce0c82691d6f66fc7ccd81c8e918c9a2','1436685510');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=266 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2015-07-06 02:00:47','2015-07-06 02:00:47','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','trash','open','open','','hello-world','','','2015-07-06 03:44:54','2015-07-06 03:44:54','',0,'http://sriumiyati.com/?p=1',0,'post','',1),(2,1,'2015-07-06 02:00:47','2015-07-06 02:00:47','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://sriumiyati.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2015-07-06 02:00:47','2015-07-06 02:00:47','',0,'http://sriumiyati.com/?page_id=2',0,'page','',0),(3,1,'2015-07-06 02:01:31','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-06 02:01:31','0000-00-00 00:00:00','',0,'http://sriumiyati.com/?p=3',0,'post','',0),(6,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<strong>Investigator</strong>, PetaJakarta\n\n<strong>Manager</strong>, Collaboration Laboratory (Co-Lab), SMART Infrastructure Facility\n\nUniversity of Wollongong, NSW, Australia\n\n<a href=\"mailto:rodney_clarke@uow.edu.au\">rodney_clarke@uow.edu.au</a>\n\n<strong>Rodney Clarke</strong> is the Manager of the Collaboration Laboratory (Co-Lab) at the SMART Infrastructure Facility, a lab that enables the application of commerce-based reference disciplines, including management, marketing, and systems analysis, to a range of infrastructure analysis, design, and usage problems. The Co-Lab is currently developing new methods and techniques for use in hard and soft infrastructure analysis and design. Major projects include: the development of new technologies to rapidly create three dimensional representations of existing infrastructure and the application of communication techniques and spatial analysis to analyze user engagement with transport systems and its associated infrastructure. This works assists policy and decision makers in determining current uses of existing infrastructure as well as planning future infrastructure.\n\nRodney is also Associate Professor at the UOW’s School of Management and Marketing and is an honorary Associate Professor in Information Systems at Karlstad University, Sweden. His research uses multimedia to capture and analyze business processes and services.\n\n \n\n<img src=\"https://petajakartablog.files.wordpress.com/2015/01/fd2dc-1414430975738.jpg\" alt=\"\" />\n\nTweets by Rodney Clarke\n\n[twitter-timeline id=601663456115232768 username=clarke_rj]','Clarke Biography','','publish','open','open','','clarke-biography','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/clarke-biography/',0,'page','',0),(7,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<strong>Principal Investigator</strong>, PetaJakarta\n\n<strong>Geomatics Research Fellow</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences\n\nUniversity of Wollongong, NSW, Australia\n\n<a href=\"mailto:tomas@uow.edu.au\">tomas@uow.edu.au</a>\n<a href=\"https://twitter.com/iHolderness\">@iHolderness</a>\n\n<strong>Dr. Tomas Holderness</strong> is a Geomatics Research Fellow at the SMART Infrastructure Facility, University of Wollongong, where his research focuses on the use of geospatial analysis, Earth observation, and network modeling techniques applied to urban infrastructure resilience and Earth systems engineering. In collaboration with colleagues from Newcastle University (UK), Dr. Holderness developed a pioneering spatio-topological database schema for encoding, modelling, and analyzing spatial infrastructure networks, and their inter-dependencies. He has successfully applied this framework to model sanitation networks in rapidly-urbanizing developing regions of Africa using crowd-sourced data and volunteer geographic information. This work provided novel insight into the infrastructure challenges faced by developing nations, and allows the calculation of long-term operating costs of different improved sanitation network options.\n\nBefore joining the SMART Infrastructure Facility, Dr. Holderness worked as a spatial modeller for the Geospatial Engineering Research Group at Newcastle and was responsible for the development of an open-source integrated modelling environment for urban systems research. He developed a prototype framework that allowed the integration of models to create processing flow-lines and statistical ensembles for land-use change modelling. Prior to this research, Dr. Holderness’ PhD thesis analyzed long time series thermal Earth observation data to quantify intra-urban spatio-temporal temperature dynamics in Greater London, UK.\n\n<a href=\"https://petajakartablog.files.wordpress.com/2015/01/holderness.jpg\"><img class=\"alignnone wp-image-241 size-large\" src=\"https://petajakartablog.files.wordpress.com/2015/01/holderness.jpg?w=545\" alt=\"holderness\" width=\"545\" height=\"363\" /></a>\n\nTweets by Tomas Holderness\n\n[twitter-timeline id=601661467411132416 username=iHolderness]','Holderness Biography','','publish','open','open','','holderness','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/holderness/',0,'page','',0),(8,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<h2><strong>PROJECT OVERVIEW</strong></h2>\n<a href=\"http://petajakarta.org/banjir/en\" target=\"_blank\">PetaJakarta.org</a> (Map Jakarta) is a crowd-sourcing urban data collection project co-ordinated by the SMART Infrastructure Facility of the University of Wollongong, the Jakarta Emergency Management Agency (BPBD DKI Jakarta), and Twitter, Inc. The project is also supported by the SMART GeoSocial Intelligence Research Group and the <a href=\"http://smart.uow.edu.au/osgeo/index.html\" target=\"_blank\">SMART OSGeo Lab</a>, with the goal of extending our knowledge of urban livability and resilience. Our aim is to understand and promote the resilience of cities to both extreme weather events and to long-term infrastructure transformation as a process of climate adaptation.\n\nThe <a href=\"http://petajakarta.org/banjir/en/\" target=\"_blank\">PetaJakarta.org</a> platform harnesses the power of social media to gather, sort, and display information about flooding for Jakarta residents and governmental agencies in real time. It runs on the open source software <a href=\"http://cognicity.info/cognicity/\" target=\"_blank\">CogniCity</a>—an Applied <a href=\"https://dl.dropboxusercontent.com/u/12960388/Holderness_IEEE_STM_2013.pdf\" target=\"_blank\">GeoSocial Intelligence</a> Framework developed by the SMART Infrastructure Facility—which allows situational information to be collected and disseminated by community members through their location-enabled mobile devices, and optimizes infrastructure surveys and asset management for governmental actors. Equipped with scalable mapping technology for mobile devices and a critical alert service, this free and open source software enables the communication of two-way, time-critical information to and from individuals and government agencies.\n\nAs the pilot study for our long-term research on urban resilience and adaptation to climate change in Asian megacities, PetaJakarta.org enables real-time data collection and feedback for flood monitoring in one of Southeast Asia\'s most precarious delta cities. <a href=\"http://cognicity.info/cognicity/\" target=\"_blank\">CogniCity</a>—our highly transferable, free, and open source software—can be deployed in other megacities, in alternate languages, and for other urgent urban problems, including those resulting from climate change.\n\nFor more background on <a href=\"http://petajakarta.org/banjir/in/\" target=\"_blank\">PetaJakarta.org</a>, please read <a href=\"https://blog.twitter.com/2014/helping-jakarta-track-flooding-in-real-time-to-save-more-lives\" target=\"_blank\">this article</a> by Mark Gillis, Director of Academic Collaborations at Twitter Inc., which describes our applied research. For additional details regarding our teaching, research, and exhibition activities, as well as a list of our publications, please visit the <a href=\"http://info.petajakarta.org/#publications\">Research</a> and <a href=\"/news\">News</a> sections of this site. For the live flood map, visit <a href=\"http://petajakarta.org/banjir/en/\" target=\"_blank\">PetaJakarta.org</a> and follow <a href=\"https://twitter.com/petajkt\" target=\"_blank\">@petajkt</a> for updates.\n\n \n\n[youtube=http://www.youtube.com/watch?v=fDlaGHjFtAY&w=854&h=480]\n\n[youtube=http://www.youtube.com/watch?v=ZWYhT8ndww0&w=854&h=480]\n\n ','About','','publish','open','open','','about','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'https://petajakartablog.wordpress.com/?page_id=7',0,'page','',0),(9,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<h3 style=\"margin-left:40px;\">Recent Publications</h3>\n<p style=\"margin-left:40px;\"><strong><em>Art in the Anthropocene: Encounters Among Aesthetics, Politics, Environments, and Epistemologies</em></strong> (Open Humanities Press, forthcoming 2014), edited by Heather Davis and Etienne Turpin <a href=\"http://anexact.org/Art-in-the-Anthropocene\" target=\"_blank\">[book]</a></p>\n<p style=\"margin-left:40px;\">\"<strong>Jakarta as Urban Twittering Machine</strong>,\" by Etienne Turpin, Tomas Holderness, and Sara Dean (forthcoming in <em>Social Media and Identity in Southeast Asia</em>, edited by Catherine Gomes)</p>\n<p style=\"margin-left:40px;\">\"<strong>Designing Platforms for Civic Co-Management</strong>,\" by Etienne Turpin, Tomas Holderness, and Sara Dean (forthcoming in <em>Participatory Urbanisms</em>, edited by UC Berkeley Global Urban Humanities Initiative)</p>\n<p style=\"margin-left:40px;\">\"<strong>An Evaluation of Spatial Network Modelling to Aid Sanitation Planning in Informal Settlements Using Crowd-Sourced Data</strong>,\" by Tomas Holderness, Ruth Kennedy-Walker, David Alderson, and Barbara Evans <a href=\"http://ro.uow.edu.au/cgi/viewcontent.cgi?article=1023&context=isngi2013\" target=\"_blank\">[article]</a></p>\n<p style=\"margin-left:40px;\">\"<strong>Combining \'Big\' and \'Small\' Data to Build Urban Resilience in Jakarta</strong>,\" with Etienne Turpin and Tomas Holderness <a href=\"http://www.unglobalpulse.org/urban-resilience-petajakarta\" target=\"_blank\">[interview]</a></p>\n<p style=\"margin-left:40px;\">\"<strong>What Do Cities Tell Us About Their Inhabitants\' Desires?</strong>\" with Etienne Turpin <a href=\"http://tourette-encounters.tumblr.com/\" target=\"_blank\">[interview]</a></p>\n<p style=\"margin-left:40px;\"><strong><em>Architecture in the Anthropocene: Encounters Among Deep Time, Design, Science, and Philosophy </em></strong>(Open Humanities Press, 2013), edited by Etienne Turpin<strong><em> </em></strong><a href=\"http://openhumanitiespress.org/architecture-in-the-anthropocene.html\" target=\"_blank\">[book]</a></p>\n<p style=\"margin-left:40px;\">\"<strong>GeoSocial Intelligence,</strong>\" by Tomas Holderness <a href=\"https://dl.dropboxusercontent.com/u/12960388/Holderness_IEEE_STM_2013.pdf\" target=\"_blank\">[article]</a> Also available in Bahasa Indonesia [<a href=\"http://info.petajakarta.org/geosocial-intelligence/\" target=\"_blank\">article</a>]</p>\n<p style=\"margin-left:40px;\"><strong><em>Jakarta: Architecture + Adaptation </em></strong>(Depok: Universitas Indonesia Press),<strong><em> </em></strong>edited by Etienne Turpin, Adam Bobbette, and Meredith Miller<strong><em> </em></strong><a href=\"/news/2014/10/27/jakarta-architecture-adaptation\" target=\"_blank\">[book]</a></p>\n<p style=\"margin-left:40px;\">\"<strong>Network Modelling for Road-Based Faecal Sludge Management,</strong>\" by Ruth Kennedy-Walker, Tomas Holderness, David Alderson, Barbara Evans, and Stuart Barr <a href=\"http://www.icevirtuallibrary.com/content/article/10.1680/muen.13.00021\" target=\"_blank\">[article]</a></p>\n<p style=\"margin-left:40px;\">\"<strong>An Evaluation of Thermal Earth Observation for Characterizing Urban Heatwave Event Dynamics Using the Urban Heat Island Intensity Metric,</strong>\" by Tomas Holderness <a href=\"http://www.tandfonline.com/doi/abs/10.1080/01431161.2012.714505#.VEliv4vF9C4\" target=\"_blank\">[article]</a></p>\n<a id=\"top\" class=\"anchor\" name=\"conferences\"></a>\n<h3 style=\"margin-left:40px;\">Lectures & Conferences</h3>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>You Can\'t Build a Seawall in Bogor: Crowdsourcing Flood Data To Survive Climate Change,</strong>\" invited keynote lecture to the Urban Studies Programme, Universitas Indonesia. Jakarta, Indonesia. November 2014.</p>\n<p style=\"margin-left:40px;\">Tomas Holderness and Etienne Turpin, \"<strong>A GeoSocial Intelligence Framework for Studying and Promoting Resilience to Seasonal Flooding in Jakarta, Indonesia</strong>,\" a presentation to the <em>2nd</em> <em>International Symposium of Next Generation Infrastructure</em>, International Institute for Applied Systems Analysis. Vienna, Australia. October 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Design for Civic Co-management: A GeoSocial Intelligence Framework for Crowd Sourcing Urban Data at the ‘Sensing Practices</strong>,\" invited lecture for the \'Citizen Sense\' Seminar Series, Goldsmiths College, University of London. London, UK. October 2014. <a href=\"/news/2014/10/26/a-geosocial-intelligence-approach-to-crowdsourcing-urban-data\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, “<strong>Reengineering GeoSocial Intelligence: Hacking Urban Data to Crowd Source Equitable Climate Co-adaptation</strong>,” invited lecture at the Lancaster Environment Centre. Lancaster, UK. October 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Contested Territories: Design and Spatial Politics</strong>,\" workshop The Bartlett School of Architecture, University College of London. London, UK. October 2014. <a href=\"http://www.bartlett.ucl.ac.uk/architecture/events/contested-territories\" target=\"_blank\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>In Defense of Urban Poverty: Design, Data, and Mutual Aid</strong>,\" iInvited lecture at the Faculty of Architecture and the Built Environment, University of Westminster. London, UK. October 2014. <a href=\"/news/2014/10/26/s0cna28urasmbpwie59vt2xq32i3g2\">[more]</a></p>\n<p style=\"margin-left:40px;\">Tomas Holderness and Etienne Turpin,\"PetaJakarta.org,\" invited presentation about CogniCity to the Open Data Institute. London, UK. October 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"PetaJakarta.org,\" invited presentation invited lecture about #DataGrant to Twitter Inc., San Francisco, USA. September 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Hacking Big Data to Survive Climate Change,</strong>\" invited lecture to the Pacific Territories graduate research group, UC Berkeley, College of Environmental Design. Berkeley, USA. September 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>Hacking Social Media to Survive Climate Change,</strong>\" invited lecture to the MIT Urban Risk Lab. Cambridge, USA. September 2014.</p>\n<p style=\"margin-left:40px;\">Tomas Holderness and Etienne Turpin, \"<strong>Map Jakarta: Enabling Civic Co-management through GeoSocial Intelligence,</strong>\" a presentation to the <em>Free and Open Source Software For Geospatial Research Conference</em>. Portland, USA. September 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>Postnatural Urbanism in Jakarta: GeoSocial Intelligence and the Future of Urban Resilience</strong>,\" a presentation to <em>Unnatural Futures</em> Conference, University of Tasmania. Hobart, Australia. July 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>Understanding Urban Resilience to Enable Climate Adaptation: A GeoSocial Intelligence Framework for Flood Response, System Analysis, and Rapid </strong><strong>Assessment</strong>,\" a presentation to <em>Ecosystem-based disaster risk reduction and climate change adaptation Conference</em>, United Nations University. Jakarta, Indonesia. June 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>PetaJakarta: Infrastructure and Resilience in the Anthropocene</strong>,\" a lecture at [proto:type] 2014—Open Culture and Critical Making Conference. Yogyakarta, Indonesia. June 2014.</p>\n<p style=\"margin-left:40px;\">Tomas Holderness, \"<strong>PetaJakarta.org.</strong>,\" invited lecture at the National Center for Atmospheric Research. Colorado, USA. June 2014.</p>\n<p style=\"margin-left:40px;\">Tomas Holderness, \"<strong>Changing the World with Social Media</strong>,\" invited panelist at the Big Boulder Conference. Colorado, USA. June 2014.</p>\n<p style=\"margin-left:40px;\">Tomas Holderness, Katina Michael, Etienne Turpin, \"<strong>Infrastructure planning through GeoSocial Intelligence: using Twitter as a platform for rapid assessment and civic co-management during flooding in Jakarta</strong><strong>,</strong>\" a presentation to the <em>Defining the Sensor Society Conference</em>, University of Queensland. Brisbane, Australia. May 2014.</p>\n<p style=\"margin-left:40px;\">Tomas Holderness, \"<strong>Creating web maps for mobile devices</strong>,\" a lecture at Surveying and Spatial Sciences Institute, Emerging Technologies Forum. Melbourne, Australia. May 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin Tomas Holderness, \"<strong>PetaJakarta.org</strong>,\" a presentation to the Twitter Australia Office on the recently awarded Twitter Data Grant project. Sydney, Australia. May 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>Smart Data Collection: Developing a GeoSocial Intelligence Framework for Studying Resilience in Complex Urban Systems,</strong> \" an advanced research seminar organized by the GeoSocial Intelligence Research Group, Sydney Business School, University of Wollongong. Sydney, Australia. May 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>Open Source City Project: PetaJakarta.org Pilot Study</strong>,\" a presentation for Innovation and its Contestants, <em>5th Annual Emerging Scholars Conference</em>, Department of Art History and Communication Studies, McGill University. Montreal, Canada. April 2014. <a href=\"/news/2014/10/26/wgnv60k0oxus199awbt99e387q42fs\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>From Noise to Knowledge: Crowd-Sourcing GeoSocial Intelligence to Resist Political Violence in Jakarta’s Urban Villages<em>,</em></strong>\" a presentation to the American Association of Geographers Meeting. Tampa, USA. April 2014. <a href=\"/news/2014/10/26/cgkn3tlh3rh9buyz5qbtikqiyyiozp\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>The Intelligence of Excess</strong>,\" invited lecture for the Energy, Environment, and Design Lab, Graduate School of Design, Harvard University. Cambridge, USA. April 2014. <a href=\"/news/2014/10/26/the-intelligence-of-excess\" target=\"_blank\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Reimagining Collection,</strong>\" a presentation at the <em>Collecting Geographies Conference</em>, Stedelijk Museum. Amsterdam, Netherlands. March 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong>Navigating Postnatural Urbanism: Jakarta as the City of the Anthropocene</strong>,\" a presentation to the Association of Asian Studies Annual Conference. Philadelphia, USA. March 2014. <a href=\"/news/2014/10/26/3pamkacf73eg1u75o9wgdfdalvngwz\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Architecture in the Anthropocene,</strong>\" invited lecture for launch of <em>Architecture in the Anthropocene.</em> The Centre for Research Architecture, Goldsmiths College. London UK. December 2013.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Architecture in the Anthropocene,</strong>\" invited lecture for launch of <em>Architecture in the Anthropocene. </em>The School of Architecture and Landscape Architecture, University of Edinburgh. Edinburgh, UK. December 2013. <a href=\"/news/2014/10/26/design-research-in-the-anthropocene-a-launch-event-for-architecture-in-the-anthropocene\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Architecture in the Anthropocene</strong>,\" invited lecture for launch of <em>Architecture in the Anthropocene. </em>The Barber Shop Artspace. Lisbon, Portugal. December 2013.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Planetary Urbanization</strong><em>,</em>\" panel Discussant at the Shanghai Study Center of Hong Kong University. Shanghai, China. November 2013.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Data and Discovery</strong>,\" invited keynote lecture at the Asia Art Archive. Hong Kong, China. November 2013.</p>\n<p style=\"margin-left:40px;\">AbdouMaliq Simone and Etienne Turpin, \"<strong>Just the City: Re-imagining the Image of Urban Poverty,</strong>\" a lecture by Simone and discussion with Turpin for the launch of <em>Jakarta: Architecture + Adaptation</em>, SMART Lecture Series, Faculty of Engineering & Information Sciences, University of Wollongong. Wollongong, Australia. November 2013. <a href=\"/news/2014/10/26/rb60zimqd82xtk5bdek8dzv1d5wwi5\">[more]</a></p>\n<p style=\"margin-left:40px;\">Tomas Holderness, \"<strong>Geospatial Social Media</strong>,\"<strong> </strong>presented at the Humanities and Technology Camp State, Library of NSW + Intersect. Sydney, Australia. October 2013.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Design for Hypercomplexity: Megacities and Adaptation in the Anthropocene</strong>,\" a presentation to the International Symposium on Next Generation Infrastructure, SMART Infrastructure Facility, Faculty of Engineering & Information Sciences, University of Wollongong. Wollongong, Australia. September 2013. <a href=\"http://smart.uow.edu.au/content/groups/public/@web/@smart/documents/doc/uow159018.pdf\" target=\"_blank\">[Event Program]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Navigating Postnatural Landscapes: Jakarta as the City of the Anthropocene</strong>,\" a presentation to the Natural Landscapes in Transition session of the European Council of Landscape Architecture Schools Annual Conference, HafenCity University. Hamburg, Germany. September 2013.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin, \"<strong>Political Violence & Postnatural Urbanism: Design Research in the Anthropocene</strong>,\" a lecture for the Institute for Social Transformation Research, University of Wollongong. Wollongong, Australia. October 2013. <a href=\"/news/2014/10/26/political-violence-postnatural-urbanism-a-seminar-on-design-research-in-the-anthropocene\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Meredith Miller, \"<strong>Inundation Jakarta: Designing for Hypercomplexity</strong>,\" a presentation at the 49th International Federation of Landscape Architecture World Congress—Landscapes in Transition. Cape Town, South Africa. September 2012.</p>\n<a id=\"top\" class=\"anchor\" name=\"workshops\"></a>\n<h3 style=\"margin-left:40px;\">Workshops & Studios</h3>\n<p style=\"margin-left:40px;\">Etienne Turpin and Sara Dean, <strong>Studio One 2014–15, </strong>\"<strong><em>The Data Made Me Do It</em></strong><em>,</em>\" Department of Architecture, College of Environmental Design, University of California, Berkeley. Berkeley, USA. <a href=\"http://ced.berkeley.edu/academics/architecture/programs/studio-one-2014/\" target=\"_blank\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, Sara Dean, and Tomas Holderness, \"<strong><em>Prototypes for Designed Engagement: A Workshop on Big Data and Design Strategies</em></strong>,\"<strong><em> </em></strong>College of Arts, Media and Design, Northeastern University. Boston, USA. September 2014.<a href=\"http://www.northeastern.edu/visualization/crisis-mapping-workshop-with-petajakarta/\" target=\"_blank\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin, Tomas Holderness, and Sara Dean, \"<strong><em>Big</em> <em>Data for Design Thinking: A Workshop on GeoSocial Intelligence in Complex Urban Systems</em></strong>,\" Harvard University Graduate School of Design. Cambridge, USA. September 2014.</p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Melissa Cate Christ, \"<strong><em>Open Source Cities: Next Generation Community Mapping & Open Data Infrastructure</em></strong>,\" an advanced research seminar organized by the GeoSocial Intelligence Research Group, Asia Art Archive’s Open Platform, Art Basel. Hong Kong. May 2014. <a href=\"https://petajakarta.squarespace.com/news/2014/10/26/0bw2ccsx6akuw76c5td6ucwyeuiygw\">[more]</a></p>\n<p style=\"margin-left:40px;\">Etienne Turpin and Tomas Holderness, \"<strong><em>SMART Data Collection Workshop</em></strong>,\"<em> </em>with Twitter, CSIRO, and Ushahidi, on the use of social media and crowd-sourced data for situational management and response. University of Wollongong Sydney Business School. Sydney, Australia. May 2014.</p>\n<p style=\"margin-left:40px;\"><em>Etienne Turpin, Tomas Holderness, and Ariel Shepherd,</em><strong><em> </em></strong>\"<strong><em>Ciliwung Perspectives on Biodiversity, Infrastructure, and Resilience</em></strong>,\" a seven-day workshop with PetaJakarta.org, Open Street Map, Ciliwung Merdeka, and Universitas Indonesia to share strategies for mapping urban biodiversity along the Ciliwung River. Jakarta, Indonesia. March 2014. <a href=\"https://petajakarta.squarespace.com/news/2014/10/26/ciliwung-perspectives\">[more]</a></p>\n<p style=\"margin-left:40px;\">Scott Sørli with Etienne Turpin, Tomas Holderness, and Sara Dean,\n\"<strong><em>Inundation 3 Studio</em></strong>,\"<strong><em> </em></strong>an advanced urban research graduate studio for the Department of Architectural Science, Ryerson University, in collaboration with SMART Infrastructure Facility and Ciliwung Merdeka. Jakarta, Indonesia. May–June 2014. <a href=\"https://petajakarta.squarespace.com/news/2014/10/26/cjia08iatx96vzl2hqwaes6b2nd2o1\">[more]</a></p>\n<a id=\"top\" class=\"anchor\" name=\"exhibitions\"></a>\n<h3 style=\"margin-left:40px;\">Exhibitions & Other Events</h3>\n<p style=\"margin-left:40px;\"><strong>Inundation: Jakarta</strong> November 2014\nan exhibition by Scott Sørli, Etienne Turpin, Sara Dean, and Tomas Holderness at the Paul H. Cocker Gallery, Department of Architectural Science, Ryerson University. Toronto, Canada.</p>\n<p style=\"margin-left:40px;\"><strong>#Inundation 3: Jakarta</strong> 4 July – 10 Aug 2014\nan exhibition by Etienne Turpin, Sara Dean, Scott Sørli, and Tomas Holderness, for the <em>Unnatural Futures</em> Conference, University of Tasmania. Hobart, Australia.</p>\n<p style=\"margin-left:40px;\"><strong>Jakarta: Architecture + Adaptation</strong> 24 May 2014\nbook launch at ruangrupa artlab with Rudolf Mrazek, Hilmar Farid, and Etienne Turpin; moderated by Mirwan Andan. Jakarta, Indonesia. <a href=\"http://www.info.petajakarta.org/news/2014/10/26/jakarta-architecture-adaptation-book-launch\">[more]</a></p>\n<p style=\"margin-left:40px;\"><strong>Jakarta Vertical Kampung</strong> 7 July – 14 Aug 2013\n“What Matters Most: Urban Assemblage Analysis,” by Adam Bobbette, Ms. Herlily, Etienne Turpin, Joko Adianto, and Meredith Miller; curated by SHAU for Erasmushuis. Jakarta, Indonesia.</p>\n<p style=\"margin-left:40px;\"><strong>Smart City: The Next Generation</strong> 18 May – 4 July 2013\n“Design for Hypecomplexity: Jakarta,” by Etienne Turpin, Meredith Miller, and Farid Rakun; organized by Aedes East, and curated by Ulla Giesler for the International Forum for Contemporary Architecture. Berlin, Germany.</p>\n<p style=\"margin-left:40px;\"><strong>Futures of Hypercomplexity</strong> 24 Jan – 28 Feb 2013\ncurated by Etienne Turpin and Meredith Miller as part of the Architecture + Adaptation Research Platform. A. Alfred Taubman Gallery, Taubman College of Architecture and Urban Planning, University of Michigan. Ann Arbor, USA. <a href=\"http://www.info.petajakarta.org/news/2014/10/27/futures-of-hypercomplexity\">[more]</a></p>\n<p style=\"margin-left:40px;\"><strong>Bangkok + Jakarta: Cities of Hypercomplexity</strong> 14 Sept – 15 Oct 2012\ncurated by Etienne Turpin and Meredith Miller as part of the Architecture + Adaptation Research Platform. A. Alfred Taubman Gallery, Taubman College of Architecture and Urban Planning, University of Michigan. Ann Arbor, USA. <a href=\"http://anexact.org/ARCHITECTURE-ADAPTATION\" target=\"_blank\">[more]</a></p>\n<p style=\"margin-left:40px;\"></p>','Research','','publish','open','open','','research-overview','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'https://petajakartablog.wordpress.com/?page_id=8',0,'page','',0),(10,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<strong>Investigator</strong>, PetaJakarta\n<strong>Director of Research & Partnerships, </strong>Stamen<strong>\n</strong><strong>Design Advisor</strong>, anexact office\n\n<a href=\"mailto:sara@anexact.org\">sara@anexact.org</a>\n<a href=\"https://twitter.com/_saraedean\">@_saraedean</a>\n\n<strong>Sara Dean</strong> is a designer based in California. She is the Director of Research and Partnerships at Stamen in San Francisco. Her activist-oriented design research considers the implications of emerging digital methodologies on public engagement, environmental justice organizing, and related political practices. She is committed to open-access distribution and crowd-source platforms to promote knowledge and skill sharing, and media democratization.\n\nHer work advocates for public engagement and empowerment through design. She was previously the principal designer for the Association of Community Organization for Reform Now (ACORN)—then the largest community organization of low- and moderate-income families in the United States. Her recent work has been exhibited in Asia, Europe, and throughout the US. Sara has a Master of Architecture and a Master of Science in Design Research, both from the University of Michigan. She is currently a Senior Lecturer at the California College of the Arts, and has taught previously at UC Berkeley, University of Michigan, and the College for Creative Studies.\n\n<img src=\"https://petajakartablog.files.wordpress.com/2015/01/cd83f-img_1069_bw.jpeg\" alt=\"\" />\n\nTweets by Sara Dean\n\n[twitter-timeline id=562188068749201408 username=_saraedean]','Dean Biography','','publish','open','open','','dean','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/dean/',0,'page','',0),(11,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<strong>Investigator</strong>, PetaJakarta\n\n<strong>IT Architect</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences\n\nUniversity of Wollongong, NSW, Australia\n\n<a href=\"mailto:mberryma@uow.edu.au\">mberryma@uow.edu.au</a>\n\n<strong>Dr. Matthew Berryman</strong> completed his Ph.D. in Complex Systems Modelling and Analysis at the University of Adelaide in 2007. He worked for the Australian Defence Science and Technology Organisation, before joining the University of South Australia in 2009. Dr. Berryman has extensive experience in systems engineering and agent-based modelling of complex systems. At the SMART Infrastructure Facility, he applies these skills to model Australia’s future infrastructure needs and to make existing infrastructure smarter though the use of technology. He is currently an IT Architect, using his computer and network engineering skills to support SMART’s broader research into infrastructure and the social systems that infrastructure supports.\n\n<img src=\"https://petajakartablog.files.wordpress.com/2015/01/f6ee2-1414346406409.png\" alt=\"\" />\n\nTweets by Matthew Berryman\n\n[twitter-timeline id=601661165773524992 username=shenmaxiu]','Berryman Biography','','publish','open','closed','','berryman-biography','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/berryman-biography/',0,'page','',0),(12,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<p><strong>Investigator</strong>, PetaJakarta</p><p><strong>GIS Research Fellow</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences</p><p>University of Wollongong, NSW, Australia</p><p><a href=\"mailto:rohan@uow.edu.au\">rohan@uow.edu.au</a></p><p><strong>Dr. Rohan Wickramasuriya</strong><span> is a Research Fellow in Geomatics Engineering at the SMART Infrastructure Facility, University of Wollongong. His research focuses on applying geo-simulation, spatio-temporal analytics, geo-visualization, and remote sensing techniques to understand the complex dynamics of urban and regional systems. He has over eight years of experience in applied geospatial research. At SMART, he leads the Advanced Geomatics for Urban and Regional Planning Research Group, and serves as the principal developer of the SMART Infrastructure Dashboard. </span></p><p><span>Prior to joining SMART, Dr. Wickramasuriya worked as a Geospatial Specialist at several leading international research institutes, including the Research Institute for Knowledge Systems in the Netherlands and the International Water Management Institute in Sri Lanka.</span></p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2015/01/13bff-1414346639208.jpg\" alt=\"\" />','Wickramasuriya Biography','','publish','open','open','','wickramasuriya-biography','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/wickramasuriya-biography/',0,'page','',0),(13,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<strong>Co-Principal Investigator</strong>, PetaJakarta.org\n\n<strong>Vice-Chancellor\'s Postdoctoral Research Fellow</strong>,\nSMART Infrastructure Facility,\nFaculty of Engineering &\nInformation Sciences\n\n<strong>Associate Research Fellow</strong>,<strong> </strong>\nAustralian Centre for Cultural Environmental Research,\nFaculty of Social Sciences\n\nUniversity of Wollongong,\nNSW, Australia\n<a href=\"mailto:eturpin@uow.edu.au\">eturpin@uow.edu.au</a>\n\n<strong>Principal Director</strong>,\nanexact office\nJakarta, Indonesia\n<a href=\"mailto:etienne@anexact.org\">etienne@anexact.org</a>\n<a href=\"https://twitter.com/turpin_etienne\">@turpin_etienne</a>\n\n<strong>Etienne Turpin</strong> is Vice-Chancellor’s Postdoctoral Research Fellow at the SMART Infrastructure Facility, Faculty of Engineering & Information Sciences, and Associate Research Fellow at the Australian Centre for Cultural Environmental Research, Faculty of Social Sciences, both at the University of Wollongong, Australia. Etienne is also the founder and director of <a href=\"http://anexact.org/\" target=\"_blank\">anexact office</a>, a design research practice committed to multidisciplinary interventive urbanism, artistic and curatorial experimentation, and applied philosophical inquiry, based in Jakarta, Indonesia.\n\nHe is the editor of <em><a href=\"http://openhumanitiespress.org/architecture-in-the-anthropocene.html\" target=\"_blank\">Architecture in the Anthropocene</a> </em>(Open Humanities Press, 2013); and, co-editor of <a href=\"http://anexact.org/Art-in-the-Anthropocene\" target=\"_blank\"><em>Art in the Anthropocene</em></a> (Open Humanities Press, forthcoming 2014) and <a href=\"https://dl.dropboxusercontent.com/u/12960388/JAKARTA%20A%2BA_PROOF_FINAL.pdf\" target=\"_blank\"><em>Jakarta: Architecture + Adaptation</em></a> (Universitas Indonesia Press, 2013). He is currently writing his first monograph, <a href=\"http://anexact.org/Terrible-is-the-Earth-1\" target=\"_blank\"><em>Terrible is the Earth</em></a>, which examines episodes of intense interactivity among philosophical, infrastructural, and ethical registers pressurized by perceived and intended tellurian hostilities.\n\nThis academic year, he is also a visiting professor of architecture at the College of Environmental Design, University of California, Berkeley, where he is co-teaching advanced data-driven design for Studio One with Sara Dean, and co-curating the symposium <em><a href=\"http://anexact.org/Data-Made-Me-Do-It\" target=\"_blank\">Data Made Me Do It</a>, </em>which examines the consequences of data politics on ideas of agency in contemporary design.\n\nBefore his work in Australia and Indonesia, Etienne taught advanced design research and architecture at the Taubman College of Architecture and Urban Planning, University of Michigan, where he was also a Research Fellow at the Center for Southeast Asian Studies. He has also taught in the architecture and landscape architecture graduate programs for the Daniels Faculty of Architecture, Landscape, and Design, University of Toronto, and the art history and visual culture undergraduate programs for the Department of Visual Studies, University of Toronto-Mississauga. Etienne completed his PhD (Philosophy) in the Department of Theory and Policy Studies at the Ontario Institute for Studies in Education of the University of Toronto.\n\nEtienne is currently living and working in Jakarta, where he co-directs <a href=\"http://petajakarta.org\" target=\"_blank\">PetaJakarta.org</a> and studies the social consequences of infrastructure transformation necessitated by rapid urban development and climate change. Through community strategy, institutional ethnography, and novel approaches to social media platforms, data gathering, and designed engagement, Etienne\'s research develops new tools, techniques, and methods to help democratize processes of urban transformation by meaningfully engaging the concerns and capacities of the urban poor.\n\n<img src=\"https://petajakartablog.files.wordpress.com/2015/01/b5a85-1420712271195.jpg\" alt=\"\" />\n\nTweets by Etienne Turpin\n\n[twitter-timeline id=562169426158448640 username=turpin_etienne]','Turpin Biography','','publish','open','open','','turpin','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/turpin/',0,'page','',0),(14,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<strong>Investigator</strong>, PetaJakarta\n\n<strong>Associate Research Fellow</strong>, Department of Geography and Sustainable Communities, Faculty of Social Sciences\n\nUniversity of Wollongong, NSW, Australia\n\n<a href=\"mailto:odun@uow.edu.au\">odun@uow.edu.au</a>\n\n<strong>Olivia Dun</strong> is a human geographer with a background in migration studies and environmental science. She studies social aspects of environmental issues, particularly at the household scale. Her interests lie in the linkages between environmental change, natural hazards, and human migration/displacement. She is an experienced researcher in Southeast Asia; her PhD focused on environmental/agricultural change and human migration in coastal areas of the Mekong Delta, Vietnam, where broad-scale landscape change to shrimp aquaculture is resulting in increasing salinity intrusion, pollution, and diverse livelihood outcomes. Through her work at UOW’s Australian Centre for Cultural Environmental Research (AUSCCER), she has expanded her research to Australia, with projects examining bushfire risk and amenity values of residents living at the rural-urban interface and culturally diverse perspectives on Australian environments and environmentalism.\n\n<img src=\"https://petajakartablog.files.wordpress.com/2015/01/5b880-1414509713341.jpg\" alt=\"\" />\n\nTweets by Olivia Dun\n\n[twitter-timeline id=601664105036926976 username=LivDun]','Dun Biography','','publish','open','open','','dun-biography','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/dun-biography/',0,'page','',0),(15,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<h2><strong>Co-Directors</strong></h2>\n<a id=\"top\" class=\"anchor\" name=\"eturpin\"></a>\n<h3>Etienne Turpin, PhD</h3>\n<strong>Etienne Turpin</strong> is Vice-Chancellor’s Postdoctoral Research Fellow at the SMART Infrastructure Facility, Faculty of Engineering & Information Sciences, and Associate Research Fellow at the Australian Centre for Cultural Environmental Research, Faculty of Social Sciences, both at the University of Wollongong, Australia. Etienne is also the founder and director of <a href=\"http://anexact.org/\" target=\"_blank\">anexact office</a>, a design research practice committed to multidisciplinary interventive urbanism, artistic and curatorial experimentation, and applied philosophical inquiry, based in Jakarta, Indonesia.\n\nHe is the editor of <em><a href=\"http://openhumanitiespress.org/architecture-in-the-anthropocene.html\" target=\"_blank\">Architecture in the Anthropocene</a> </em>(Open Humanities Press, 2013); and, co-editor of <a href=\"http://anexact.org/Art-in-the-Anthropocene\" target=\"_blank\"><em>Art in the Anthropocene</em></a> (Open Humanities Press, forthcoming 2014) and <a href=\"https://dl.dropboxusercontent.com/u/12960388/JAKARTA%20A%2BA_PROOF_FINAL.pdf\" target=\"_blank\"><em>Jakarta: Architecture + Adaptation</em></a> (Universitas Indonesia Press, 2013). He is currently writing his first monograph, <a href=\"#\"><em>Terrible is the Earth</em></a>, which examines episodes of intense interactivity among philosophical, infrastructural, and ethical registers pressurized by perceived and intended tellurian hostilities.\n\nThis academic year, he is also a visiting professor of architecture at the College of Environmental Design, University of California, Berkeley, where he is co-teaching advanced data-driven design with Sara Dean, and curating the symposium <em><a href=\"http://ced.berkeley.edu/academics/architecture/programs/studio-one-2014/\" target=\"_blank\">Data Made Me Do It</a>, </em>which examines the consequences of data politics on ideas of agency in contemporary design.\n\nBefore his work in Australia and Indonesia, Etienne taught advanced design research and architecture at the Taubman College of Architecture and Urban Planning, University of Michigan, where he was also a Research Fellow at the Center for Southeast Asian Studies. He has also taught in the architecture and landscape architecture graduate programs for the Daniels Faculty of Architecture, Landscape, and Design, University of Toronto, and the art history and visual culture undergraduate programs for the Department of Visual Studies, University of Toronto-Mississauga. Etienne completed his PhD (Philosophy) in the Department of Theory and Policy Studies at the Ontario Institute for Studies in Education of the University of Toronto in 2010.\n\n<!--EndFragment-->Etienne is currently living and working in Jakarta, where he co-directs <a href=\"http://petajakarta.org\" target=\"_blank\">PetaJakarta.org</a> and studies the social consequences of infrastructure transformation necessitated by rapid urban development and climate change. Through community-led strategy, institutional ethnography, and novel approaches to social media platforms, data gathering, and designed engagement, Etienne\'s research develops new tools, techniques, and methods to help democratize processes of urban transformation by meaningfully engaging the concerns and capacities of the urban poor.\n\n<strong>Vice-Chancellor\'s Postdoctoral Research Fellow</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences, University of Wollongong. Australia.\n\n<strong>Associate Research Fellow</strong>,<strong> </strong>Australian Centre for Cultural Environmental Research, Faculty of Social Sciences, University of Wollongong. Australia.\n\n<strong>Director</strong>, anexact office. Jakarta, Indonesia.\n\n<a href=\"mailto:etienne@anexact.org\">etienne@anexact.org</a>\n<a href=\"https://twitter.com/turpin_etienne\">@turpin_etienne</a>\n\n<a id=\"top\" class=\"anchor\" name=\"tholderness\"></a>\n<h3><strong>Tomas Holderness, PhD</strong></h3>\n<strong>Tomas Holderness</strong> is a Geomatics Research Fellow at the SMART Infrastructure Facility, University of Wollongong, where his research focuses on the use of geospatial analysis, Earth observation, and network modeling techniques applied to urban infrastructure resilience and Earth systems engineering. In collaboration with colleagues from Newcastle University (UK), Dr. Holderness developed a pioneering spatio-topological database schema for encoding, modelling, and analyzing spatial infrastructure networks, and their inter-dependencies. He has successfully applied this framework to model sanitation networks in rapidly-urbanizing developing regions of Africa using crowd-sourced data and volunteer geographic information. This work provided novel insight into the infrastructure challenges faced by developing nations, and allows the calculation of long-term operating costs of different improved sanitation network options.\n\nBefore joining the SMART Infrastructure Facility, Dr. Holderness worked as a spatial modeller for the Geospatial Engineering Research Group at Newcastle and was responsible for the development of an open-source integrated modelling environment for urban systems research. He developed a prototype framework that allowed the integration of models to create processing flow-lines and statistical ensembles for land-use change modelling. Prior to this research, Dr. Holderness’ PhD thesis analyzed long time series thermal Earth observation data to quantify intra-urban spatio-temporal temperature dynamics in Greater London, UK.\n\n<strong>Geomatics Research Fellow</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences, University of Wollongong. Australia.\n\n<a href=\"mailto:tomas@uow.edu.au\">tomas@uow.edu.au</a>\n<a href=\"https://twitter.com/iHolderness\">@iHolderness</a>\n<h2></h2>\n<h2><strong>Co-Investigators</strong></h2>\n<a id=\"top\" class=\"anchor\" name=\"mberryman\"></a>\n<h3>Matthew Berryman, PhD</h3>\n<strong>Dr Matthew Berryman</strong><span style=\"font-size:16px;\"> </span>completed his Ph.D. in Complex Systems Modelling and Analysis at the University of Adelaide in 2007. He worked for the Australian Defence Science and Technology Organisation, before joining the University of South Australia in 2009. Dr. Berryman has extensive experience in systems engineering and agent-based modelling of complex systems. At the SMART Infrastructure Facility, he applies these skills to model Australia’s future infrastructure needs and to make existing infrastructure smarter though the use of technology. He is currently an IT Architect, using his computer and network engineering skills to support SMART’s broader research into infrastructure and the social systems that infrastructure supports.\n\n<strong>IT Architect</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences, University of Wollongong. Australia.\n\n<a href=\"mailto:mberryma@uow.edu.au\">mberryma@uow.edu.au</a>\n<span style=\"font-size:15.555556297302px;\"><a href=\"https://twitter.com/mjberryman\" target=\"_blank\">@</a></span><a href=\"https://twitter.com/mjberryman\" target=\"_blank\">mjberryman</a>\n\n<a id=\"top\" class=\"anchor\" name=\"rclarke\"></a>\n<h3><strong>Rodney Clarke, PhD</strong></h3>\n<strong>Dr Rodney Clarke</strong> is the Manager of the Collaboration Laboratory (Co-Lab) at the SMART Infrastructure Facility, a lab that enables the application of commerce-based reference disciplines, including management, marketing, and systems analysis, to a range of infrastructure analysis, design, and usage problems. The Co-Lab is currently developing new methods and techniques for use in hard and soft infrastructure analysis and design. Major projects include: the development of new technologies to rapidly create three dimensional representations of existing infrastructure and the application of communication techniques and spatial analysis to analyze user engagement with transport systems and its associated infrastructure. This works assists policy and decision makers in determining current uses of existing infrastructure as well as planning future infrastructure.\n\nRodney is also Associate Professor at the UOW’s School of Management and Marketing and is an honorary Associate Professor in Information Systems at Karlstad University, Sweden. His research uses multimedia to capture and analyze business processes and services.\n\n<strong>Manager</strong>, Collaboration Laboratory (Co-Lab), SMART Infrastructure Facility, University of Wollongong. Australia.\n\n<a href=\"mailto:rodney_clarke@uow.edu.au\">rodney_clarke@uow.edu.au</a>\n<a href=\"http://twitter.com/clarke_rj\" target=\"_blank\">@clarke_rj</a>\n\n<a id=\"top\" class=\"anchor\" name=\"sdean\"></a>\n<h3><strong>Sara Dean, MArch, MScDesign</strong></h3>\n<strong>Sara Dean</strong> is a designer based in Berkeley, California. She is the Design Director of anexact office and a practicing architect. Her activist-oriented design research considers the implications of emerging digital methodologies on public engagement, environmental justice organizing, and related political practices. She is committed to both open-access distribution and crowd-source platforms to promote both knowledge and skill sharing, and media democratization.\n\nPrior to her architectural practice, she was the principal designer for the Association of Community Organization for Reform Now (ACORN)—the largest community organization of low- and moderate-income families in the United States that time—based in New Orleans, Louisiana. Her recent work has been exhibited in Asia, Europe, and throughout the US, and she has been named on a P/A award and two R&D awards by Architect Magazine. Sara has a Master of Architecture and a Master of Science in Design Research (MSc.Design), both from the University of Michigan. She is currently a Senior Lecturer at the California College of Art, and has taught previously at UC Berkeley, University of Michigan, and the College for Creative Studies.\n\n<strong>Design Director</strong>, anexact office. Berkeley, USA.\n\n<a href=\"mailto:sara@anexact.org\">sara@anexact.org</a>\n<a href=\"https://twitter.com/_saraedean\">@_saraedean</a>\n\n<a id=\"top\" class=\"anchor\" name=\"odun\"></a>\n<h3><strong>Olivia Dun, PhD</strong></h3>\n<strong>Olivia Dun</strong><span style=\"font-size:16px;\"> </span>is a human geographer with a background in migration studies and environmental science. She studies social aspects of environmental issues, particularly at the household scale. Her interests lie in the linkages between environmental change, natural hazards, and human migration/displacement. She is an experienced researcher in Southeast Asia; her PhD focused on environmental/agricultural change and human migration in coastal areas of the Mekong Delta, Vietnam, where broad-scale landscape change to shrimp aquaculture is resulting in increasing salinity intrusion, pollution, and diverse livelihood outcomes. Through her work at UOW’s Australian Centre for Cultural Environmental Research (AUSCCER), she has expanded her research to Australia, with projects examining bushfire risk and amenity values of residents living at the rural-urban interface and culturally diverse perspectives on Australian environments and environmentalism.\n\n<strong>Associate Research Fellow</strong>, Department of Geography and Sustainable Communities, Faculty of Social Sciences, University of Wollongong. Australia.\n\n<a href=\"mailto:odun@uow.edu.au\">odun@uow.edu.au</a>\n<a href=\"https://twitter.com/LivDun\" target=\"_blank\">@livdun</a>\n\n<a id=\"top\" class=\"anchor\" name=\"pperez\"></a>\n<h3><strong>Pascal Perez, PhD</strong></h3>\n<strong>Dr Pascal Perez</strong><span style=\"font-size:16px;\"> </span>is a world leader in participatory modelling of complex systems. He is the co-editor of <em>Complex Science for a Complex World – Exploring Human Ecosystems with Agents </em>(ANU-E-Press). Before joining the University of Wollongong, he was a Team Leader at the Commonwealth Scientific and Industrial Research Organisation (CSIRO) and an Associate Professor at the Australian National University. Professor Perez has 20 years of experience working in Southeast Asia, Western Africa, Pacific Island Countries, and Australia. He is responsible for the management and delivery of all aspects of infrastructure modelling and simulation at the SMART Infrastructure Facility. As Research Director, he is responsible for SMART’s academic governance and for establishing strategic scientific partnerships in Australia and beyond.\n\n<strong>Research Director</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences, University of Wollongong. Australia.\n\n<a href=\"mailto:pascal_perez@uow.edu.au\">pascal_perez@uow.edu.au</a>\n\n<a id=\"top\" class=\"anchor\" name=\"rwickramasuriya\"></a>\n<h3><strong>Rohan Wickramasuriya, PhD</strong></h3>\n<strong>Dr Rohan Wickramasuriya</strong> is a Research Fellow in Geomatics Engineering at the SMART Infrastructure Facility, University of Wollongong. His research focuses on applying geo-simulation, spatio-temporal analytics, geo-visualization, and remote sensing techniques to understand the complex dynamics of urban and regional systems. He has over eight years of experience in applied geospatial research. At SMART, he leads the Advanced Geomatics for Urban and Regional Planning Research Group, and serves as the principal developer of the SMART Infrastructure Dashboard.\n\nPrior to joining SMART, Dr. Wickramasuriya worked as a Geospatial Specialist at several leading international research institutes, including the Research Institute for Knowledge Systems in the Netherlands and the International Water Management Institute in Sri Lanka.\n\n<strong>GIS Research Fellow</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences, University of Wollongong. Australia.\n\n<a href=\"mailto:rohan@uow.edu.au\">rohan@uow.edu.au</a>\n<a href=\"http://twitter.com/rwickramasuriya\" target=\"_blank\">@rwickramasuriya</a>\n\n<a id=\"top\" class=\"anchor\" name=\"researchteam\"></a>\n<h2><strong>Research Team</strong></h2>\n<strong>Yantri Dewi</strong>,<strong> </strong>Office Manager & Senior Research Coordinator\n\n<strong>Nathan Brown</strong>,<strong> </strong>Senior Research Assistant\n\n<strong>Selera Labs</strong>,<strong> </strong>Software Developer\n\n<strong>Robert Ogie</strong>,<strong> </strong>Database Coordinator\n\n<strong>Fitria Sudirman</strong>,<strong> </strong>Social Media Coordinator\n\n<strong>Ariel Shepherd</strong>,<strong> </strong>Community Liaison\n\n<strong>Vjosana Shkurti</strong>,<strong> </strong>Video Artist\n\n<strong>Lucas Freeman</strong>,<strong> </strong>Senior Project Editor\n\n<strong>Asslam Ali</strong>,<strong> </strong>Senior Researcher [Ph.D. Thesis]\n\n<strong>Andrew Lim</strong>,<strong> </strong>Senior Researcher [Ph.D. Thesis]\n\n<strong>Frank Sedlar</strong>,<strong> </strong>Visiting Researcher, Univ. of Michigan\n\n<strong>Albert Yang</strong>, Data Analyst [M.Sc. Thesis]\n\n<strong>William Ashford</strong>,<strong> </strong>Hydraulic Network Analyst [B.Sc. Thesis]\n\n<strong>Tatyana Kusumo</strong>,<strong> </strong>Research Associate\n\n<strong>Widya Ramadhani</strong>,<strong> </strong>Research Associate\n\n<strong>Muhammad Kamil</strong>,<strong> </strong>Research Associate\n<h2></h2>\n<h2><strong>Partner Organizations</strong></h2>\n<a href=\"http://smart.uow.edu.au/\" target=\"_blank\"><strong>SMART Infrastructure Facility</strong></a>, University of Wollongong\n\n<strong><a href=\"http://www.jakarta.go.id/english/\" target=\"_blank\">Provinsi</a> </strong><strong><a href=\"http://www.jakarta.go.id/english/\" target=\"_blank\">DKI Jakarta</a></strong>\n\n<a href=\"http://bpbd.jakarta.go.id/\" target=\"_blank\"><strong>BPBD DKI Jakarta</strong></a>\n\n<strong><a href=\"https://twitter.com/\" target=\"_blank\">Twitter, Inc.</a> </strong>\n<h3></h3>\n<h3><strong>Funding Support </strong></h3>\n<strong><a href=\"http://www.ands.org.au/\" target=\"_blank\">Australian National Data Service </a></strong>\n\n<strong><a href=\"http://globalchallenges.uow.edu.au/index.html\"><strong>University of Wollongong </strong>Global Challenges Program</a></strong><span style=\"font-size:15.555556297302px;\"> </span>','Team Overview','','publish','open','open','','team-overview','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'https://petajakartablog.wordpress.com/?page_id=14',0,'page','',0),(16,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<p><a target=\"_blank\" href=\"http://vjosana.com\">vjosana.com</a></p><p><a href=\"https://twitter.com/turpin_etienne\">@viosanne</a></p><p><strong>Vjosana Shkurti </strong>is a video artist and designer based in Canada. She has a background in Architectural Design and Visual Arts from the University of Toronto and is currently studying Film Production at Concordia University in Montreal.</p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2015/01/e173e-1418707546217.jpg\" alt=\"\" />','Shkurti Biography','','publish','open','open','','vjosana-biography','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/vjosana-biography/',0,'page','',0),(17,1,'2015-01-11 09:40:48','2015-01-11 02:40:48','<p><strong>Investigator</strong>, PetaJakarta</p><p><strong>Research Director</strong>, SMART Infrastructure Facility, Faculty of Engineering and Information Sciences</p><p>University of Wollongong, NSW, Australia</p><p><a href=\"mailto:pascal_perez@uow.edu.au\">pascal_perez@uow.edu.au</a></p><p><strong>Dr. Pascal Perez</strong> is a world leader in participatory modelling of complex systems. He is the co-editor of <em>Complex Science for a Complex World – Exploring Human Ecosystems with Agents</em> (ANU-E-Press). Before joining the University of Wollongong, he was a Team Leader at the Commonwealth Scientific and Industrial Research Organisation (CSIRO) and an Associate Professor at the Australian National University. Professor Perez has 20 years of experience working in South East Asia, Western Africa, Pacific Island Countries, and Australia. He is responsible for the management and delivery of all aspects of infrastructure modelling and simulation at the SMART Infrastructure Facility. As Research Director, he is responsible for SMART’s academic governance and for establishing strategic scientific partnerships in Australia and beyond. <a target=\"_blank\" href=\"http://smart.uow.edu.au/staff/UOW114981.html\">[Pascal\'s SMART profile]</a></p><p> </p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2015/01/bef21-1414430460423.png\" alt=\"\" />','Perez Biography','','publish','open','closed','','perez-biography','','','2015-01-11 09:40:48','2015-01-11 02:40:48','',0,'http://sriumiyati.com/index.php/perez-biography/',0,'page','',0),(18,1,'2014-12-14 10:06:43','2014-12-14 10:06:43','<img src=\"https://petajakartablog.files.wordpress.com/2014/12/31541-1420488025799.jpg\" alt=\"\" />\r\n\r\nThe SMART Infrastructure Facility from the University of Wollongong, along with Twitter Inc., and BPBD DKI Jakarta, have launched PetaJakarta.org, a cutting-edge research project that leverages community crowdsourcing to map flood-related Tweets and provide live updates to BPBD for faster response times during flooding emergencies. This is a first-in-the-world collaboration between Twitter, a university and a disaster management agency to use social data to both build a working model and provide real-time response to a natural disaster.\r\n\r\nUsing what the project co-directors Dr Etienne Turpin and Dr Tomas Holderness call “geosocial intelligence engineering,” the university’s free and open source platform will turn geo-tagged Tweets into valuable data that can be used by Indonesian citizens and government agencies to identify, navigate, and respond more quickly to seasonal flooding across Jakarta with unprecedented detail. More information can be found at <a href=\"http://petajakarta.org/\" target=\"_blank\">PetaJakarta.org</a>.\r\n\r\nMillions of Twitter users in Jakarta can participate in this public safety initiative in three easy steps on their mobile device:\r\n\r\n1. Turn on “location services” or add a geo-tag by clicking on the pin icon when composing\r\na Tweet on your iOS/Android mobile device.\r\n\r\n2. Take or add a photo by clicking on the camera icon when composing a Tweet on your\r\niOS/Android mobile device.\r\n\r\n3. Send the Tweet to @petajkt with the #banjir hashtag and a short description of the\r\nflooding situation.\r\n\r\nhttps://twitter.com/basuki_btp/status/539703116992503808\r\n\r\nhttps://twitter.com/twitter/status/540208387024113665\r\n\r\n<a href=\"https://dl.dropboxusercontent.com/u/12960388/PetaJakarta_PressRelease_20141203.pdf\" target=\"_blank\">Download Press Release</a>','Project Officially Launched in Jakarta, Indonesia','','publish','open','open','','20141214peta-jakarta-launches-in-jakarta','','','2015-07-07 22:20:10','2015-07-07 22:20:10','',0,'http://sriumiyati.com/index.php/2014/12/14/20141214peta-jakarta-launches-in-jakarta/',0,'post','',0),(19,1,'2014-11-27 16:28:25','2014-11-27 16:28:25','<p><a target=\"_blank\" href=\"http://repurposing-research.org/\">Dr. Alessandra Renzi</a>, Assistant Professor in Emergent Media at Northeastern University (Boston, USA), will join the PetaJakarta.org team to study the design and community aspects of the project and to develop a larger research-creation grant on the socio-technical function of big data in Petajakarta.org\'s grassroots advocacy and crisis mapping. She received a College of Arts, Media and Design <em>Faculty Research and Creative Activity Incentive Grant</em> (FRCAIG) for the research project, titled \"Visibility, Eligibility and Legibility: Studying Crisis Mapping in Jakarta, Indonesia,\" that will fund her first trip to Jakarta.</p><p>Dr. Renzi received her Ph.D. from the University of Toronto and her M.A. from the Freie Universitaet Berlin. Dr. Renzi’s interdisciplinary work explores the linkages between media, art, and activism through ethnographic studies and media art projects. Her research interests have led her to study pirate television networks in Italy and the surveillance of social movements in Canada. Her first book <em>Infrastructure Critical</em>, co-authored with Greg Elmer, was published in 2012. As part of her past research on surveillance, she co-produced the collaborative documentary film <em>Preempting Dissent: Policing the Crisis</em>. Her current research focuses on the design and socio-cultural impact of participatory networks and social media platforms for collaboration. Dr. Renzi’s community media art interventions interrogate and build upon the habits and practices that emerge at the intersection of face-to-face and interface. Her work has been featured internationally in venues like the Transmediale Festival in Berlin, the Hemispheric Institute’s Encuentro in Sao Paulo, Brazil and the Queens Museum of Art in New York.</p>','Northeastern University Professor Alessandra Renzi Wins Award to Study UOW\'s PetaJakarta.org Project in Indonesia','','publish','open','open','','20141128northeastern-university-boston-usa-professor-alessandra-renzi-wins-award-to-study-uows-petajakartaorg-project-in-indonesia','','','2014-11-27 16:28:25','2014-11-27 16:28:25','',0,'https://petajakartablog.wordpress.com/2014/11/27/20141128northeastern-university-boston-usa-professor-alessandra-renzi-wins-award-to-study-uows-petajakartaorg-project-in-indonesia',0,'post','',0),(20,1,'2014-10-14 17:06:00','2014-10-14 17:06:00','<p>a lecture by Etienne Turpin<br /><em>Sensing Practices</em>, Citizen Sense Seminar Series <br />Department of Sociology, Goldsmiths College, UCL </p><p>In the data-rich environments of contemporary megacities, free and open source software (FOSS) platforms can help make legible trends, transformations, and opportunities regarding community resilience. Critical for the development of such platforms are questions about how citizens are mobilized through designed engagement, how their participation is validated, and how the insights revealed are integrated into new governance models that enable and encourage political transparency, participatory budgeting, and civic co-management. The lecture will present recent and ongoing #bigdata research from the GeoSocial Intelligence Research Group (GSI) at the SMART Infrastructure Facility, University of Wollongong, and the \"Data Made Me Do It\" research initiative at the UC Berkeley College of Environmental Design. Supported by the FOSS platform CogniCity, developed by the SMART OSGeo Lab, GSI is coordinating infrastructure research through the social media platform Twitter as part of the PetaJakarta.org Joint Pilot Study with the Jakarta Emergency Management Agency and the United Nations Pulse Lab Jakarta. At the College of Environmental Design, faculty and students are experimenting with CogniCity as a new tool for urban research in the domains of environmental design and urban planning. In both projects, the aim is to accelerate the transition from social media data mining to a GeoSocial Intelligence framework and thereby promote the democratic co-management of complex urban environments through the integration of small and big data sources and methods.</p>','Design for Civic Co-management','','publish','open','open','','20141026a-geosocial-intelligence-approach-to-crowdsourcing-urban-data','','','2014-10-14 17:06:00','2014-10-14 17:06:00','',0,'https://petajakartablog.wordpress.com/2014/10/14/20141026a-geosocial-intelligence-approach-to-crowdsourcing-urban-data',0,'post','',0),(21,1,'2014-10-08 17:15:00','2014-10-08 17:15:00','<p>a lecture by Etienne Turpin<br />Faculty of Architecture & the Built Environment<br />University of Westminster <br />October 2014</p><p>The presentation examines several forms of political violence as revealed by the current DKI Jakarta government’s plan for widespread “normalization.” This normalization plan—whereby Jakarta’s urban poor are first blamed for congestion, overcrowding, and recurrent flooding, and then violently displaced, only to be replaced by more affluent and ecologically imperiling settlements—is read as an aesthetic strategy for “urban renewal” characteristic of neoliberal capitalism in the Anthropocene. This strategy is, fundamentally, an attempt to decisively and coercively separate “urbanism” from “poverty.” Rather than posing a critique of such coercive processes of dispossession, I attempt in the lecture to show how a data-driven design research practice can create modes of interference among these processes. Further, I suggest how design, as a practice of social emancipation, can meaningfully confront political violence by advancing strategic forms of solidarity, mutual aid, and community mobilization.</p>','In Defense of Urban Poverty: Data, Design, and Mutual Aid','','publish','open','open','','20141026s0cna28urasmbpwie59vt2xq32i3g2','','','2014-10-08 17:15:00','2014-10-08 17:15:00','',0,'https://petajakartablog.wordpress.com/2014/10/08/20141026s0cna28urasmbpwie59vt2xq32i3g2',0,'post','',0),(22,1,'2014-06-16 18:37:00','2014-06-16 18:37:00','<p>a workshop organized by Melissa Cate Christ<br />& Etienne Turpin<br /><span style=\"font-size:15.555556297302px;\">Art Basel Hong Kong </span><br />Asia Art Archive Open Platform<br />Hong Kong Convention & Exhibition Centre<br /><br />Community-led mapping practices have become an integral part of architecture and design, geography and urban studies, and artistic, curatorial, and social scientific research. In order to study the transformation of urban systems, researchers can no longer rely on inherited, proprietary maps; the next generation of urban scholars are learning to map the city with new tools and, together with residents, develop public, open source, and open access resources for civic co-management and participatory democracy.</p><p>Essential for this work is developing a better understanding of how new open source software (OSS) and open data management tools can respond to community-led activities. Such a dialogue must happen in both directions to allow the technical advancement to keep pace with community action and to allow community organizers to benefit from new OSS tools. During the Open Source Cities session at Open Platform, we will examine new methods of OSS development as means for community transformation, preservation, and resistance in an era of relentless urban “renewal” and development.<br /><br />We welcome community organizers and planners in need of better mapping tools; technical experts working on open soft software development; and, funding bodies and government agencies who want to support the development of these emerging tools.<br /><br />Presenters include:<br /><strong>Dr. Tomas Holderness</strong>, 2014 Twitter #DataGrant Recipient & Geomatics Research Fellow, <br />SMART Infrastructure Facility<br /><strong>Mart van de Ven</strong>, Co-founder & Director, and Darcy Christ, Journalism and Policy Analyst, <br />Open Data Hong Kong<br /><strong>Paul Zimmerman</strong>, Founder & CEO, Designing Hong Kong<br /><strong>Gabrielle Kirstein</strong>, Executive Director, Feeding HK<br /><strong>Benjamin Sin</strong>, Team Leader, Caritas Community Development Project<br /><br />More event information <a target=\"_blank\" href=\"http://www.aaa.org.hk/OpenPlatform\">here</a></p>','Open Source Cities: Next Generation Community Mapping & Open Data Infrastructure','','publish','open','open','','201410260bw2ccsx6akuw76c5td6ucwyeuiygw','','','2014-06-16 18:37:00','2014-06-16 18:37:00','',0,'https://petajakartablog.wordpress.com/2014/06/16/201410260bw2ccsx6akuw76c5td6ucwyeuiygw',0,'post','',0),(23,1,'2014-06-06 18:39:00','2014-06-06 18:39:00','<p>a workshop organized by Tomas Holderness & Etienne Turpin <br />SMART Infrastructure Facility<br />Faculty of Engineering & Information Sciences<br />University of Wollongong <br />Sydney Business School, Sydney, NSW, Australia </p><p><br />Cutting edge research on complex urban systems now hinges on the critical connection among several strategic areas for analysis: big data, social media, and crowd sourcing. While big data has been a recurrent buzz word for academic researchers, the integration of complex data sets for predictive analytics requires more than mere volume. Similarly, the explosive growth in social media usage, which has given researchers access to an unprecedented volume of data, continues to demand better tools for predictive analysis. Meanwhile, although crowd-sourcing methods of data collection have met with some success, the full potential for integrated feedback networks among crowd-sourcing tools remains to be fully explored. This workshop brings together leaders from government, industry, and international and community-led organizations to discuss the next generation of smart data collection through a GeoSocial Intelligence Framework.</p><p>At the SMART Infrastructure Facility, researchers working in multidisciplinary project teams are advancing a robust GeoSocial Intelligence Framework to move the study of complex urban systems from the noise of social media to the knowledge of predictive analytics by integrating the use of big data analysis and community-led crowd sourcing for the study and improvement of civic infrastructure. The PetaJakarta.org project, initiated by Dr. Etienne Turpin and Dr. Tomas Holderness, has hastened the construction of an open source software platform, called CogniCity, to help optimize data collection regarding critical flood information and develop new forms of feedback for the civic co-management of flood infrastructure in Jakarta, Indonesia. Dr. Turpin and Dr. Holderness are honored to host an esteemed group of leading researchers to share the insights, strategies, and software needed for the next generation of research on complex urban systems.<br /><br />During this one-day workshop, participants will hear presentations from leading scientists, organizers, and project coordinators and discuss the applicability, transferability, and adaptability of emerging methods for the integration of social media data, big data predictive analysis, and crowd-sourcing strategies. While the overall aim of SMART is to use these complementary fields of research to better understand the resilience of both infrastructure and communities to extreme weather events and climate transformation, the value of developing integrated open source software platforms for geo-referencing big data and social media extends well beyond civil and environmental engineering. SMART invites researchers from all backgrounds concerned with developing new tools for studying emergent urban phenomenon to join us in this workshop to discuss the potential of an integrated GeoSocial Intelligence Framework. <br /><br />Download the event flyer <a target=\"_blank\" href=\"https://dl.dropboxusercontent.com/u/12960388/SMART_Data_Collection_Workshop_FINAL.pdf\">here</a> </p>','SMART Data Collection: Developing a GeoSocial Intelligence Framework for Studying Resilience in Complex Urban Systems','','publish','open','open','','20141026djarshhw8w2v2wyx9i4jbpeucsc18b','','','2014-06-06 18:39:00','2014-06-06 18:39:00','',0,'https://petajakartablog.wordpress.com/2014/06/06/20141026djarshhw8w2v2wyx9i4jbpeucsc18b',0,'post','',0),(24,1,'2014-05-23 18:21:00','2014-05-23 18:21:00','<p><em>Jakarta: Architecture + Adaptation</em><strong> </strong>@ ruangrupa<br />with Rudolf Mrazek, Hilmar Farid, and Etienne Turpin <br />moderated by Mirwan Andan<br />Ruangrupa Jalan Tebet Timur Dalam No.6 <br />12820 Jakarta Indonesia</p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2014/05/da28d-1414257788562.png\" alt=\"\" />\n \n\n<p><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />A discussion at ruangrupa about the social and political history of Jakarta which brings together historians, academics, and activists. In addition to the discussion, this occasion will be the Indonesian launch of <em>Jakarta: Architecture + Adaptation</em>, co-edited by Etienne Turpin, Adam Bobbette, and Meredith Miller (Depok: Universitas Indonesia Press, 2013).<br /><br />Speakers in the discussion:<br /><strong>Rudolf Mrazek</strong>, historian, professor of history at the University of Michigan, author of <em>A Certain Age: Colonial Jakarta Through the Memories of Its Intellectuals</em>.<br /><strong>Hilmar Farid</strong>, historian at the Indonesian Institute of Social History, Cultural Studies Program at FIB-Universitas Indonesia, and the author of Story of Three Statue.<br /><strong>Etienne Turpin</strong>, researcher and co-editor of <em>Jakarta: Architecture + Adaptation</em>.</p>','Jakarta: Architecture + Adaptation Book Launch','','publish','open','open','','20141026jakarta-architecture-adaptation-book-launch','','','2014-05-23 18:21:00','2014-05-23 18:21:00','',0,'http://sriumiyati.com/index.php/2014/05/23/20141026jakarta-architecture-adaptation-book-launch/',0,'post','',0),(25,1,'2014-05-22 18:32:00','2014-05-22 18:32:00','<p>Open Architecture for Resilient Urban Development<strong> </strong> </p><p>A research studio with Scott Sørli, Department of Architectural Science, Ryerson University (Toronto, Canada) and Etienne Turpin, Vice-Chancellor’s Postdoctoral Research Fellow, University of Wollongong, in collaboration with Sara Dean of anexact office, Dr Tomas Holderness of the SMART Infrastructure Facility, Ciliwung Merdeka, and the Ciliwung Institute.</p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2014/05/0af06-inundation233studio.png\" alt=\"\" />\n \n\n<p id=\"yui_3_17_2_3_1415648861537_26346\">To kick off the #Inundation3 studio, students, faculty, and research coordinators ventured to East Java to visit the Ijen stratovolcano complex, the Kawah Ijen crater, and to share stories with PWS, UPC & LOCOA leaders preparing for the Southeast Asian community organizers\' meeting in Surabaya. </p>','#Inundation3 Research Studio','','publish','open','open','','20141026cjia08iatx96vzl2hqwaes6b2nd2o1','','','2014-05-22 18:32:00','2014-05-22 18:32:00','',0,'http://sriumiyati.com/index.php/2014/05/22/20141026cjia08iatx96vzl2hqwaes6b2nd2o1/',0,'post','',0),(26,1,'2014-04-19 23:23:00','2014-04-19 23:23:00','<p>a lecture by Etienne Turpin <br /><em>What is energy and how (else) might we think about it?</em> <br />coordinated by Sanford Kwinter & Kiel Moe<br />Harvard University Graduate School of Design <br />Cambridge USA</p><p>The lecture addresses the contribution of Georges Bataille to a theory of urbanism by way of the concept of expenditure. Bataille\'s articulation of a theory of general economy and his premonitory vision of the Anthropocene helps us to examine questions of desire, energetics, and waste within contemporary complex urban systems. Such questions will be addressed theoretically, but also, more importantly, as they play out in the context of Jakarta, Indonesia, where Etienne currently co-directs the PetaJakarta.org project for urban resilience and climate adaptation. As the Fifth Assessment of the IPCC confirms that the sixth great planetary extinction is now well underway, the question of how to collaborate with excess is no longer an aesthetic paradigm but an art of survival on a planet afflicted by a suspicious, violent abundance. </p>','The Intelligence of Excess','','publish','open','open','','20141026the-intelligence-of-excess','','','2014-04-19 23:23:00','2014-04-19 23:23:00','',0,'https://petajakartablog.wordpress.com/2014/04/19/20141026the-intelligence-of-excess',0,'post','',0),(27,1,'2014-04-17 22:49:00','2014-04-17 22:49:00','<p>PetaJakarta.org was awarded a Strategic Funding Support from the University of Wollongong Global Challenges \"Support Coastal and Marine Zones\" Program. PetaJakarta.org brings together researchers in Australia and Jakarta with backgrounds in modelling, engineering, design, and GeoSocial Intelligence. Principal Investigator Dr. Etienne Turpin is a Vice-Chancellor’s Post Doctoral Research Fellow in the SMART Infrastructure Facility, where he is also the leader of the GeoSocial Intelligence Research Group. Co-Principal Investigator Dr. Tomas Holderness is director of the SMART OSGeo Lab and a Geomatics Research Fellow in the SMART Infrastructure Facility. Investigator Dr. Rohan Wickramasuriya is an expert in spatial simulation modelling at the SMART Infrastructure Facility. Investigator Professor Ian Buchanan is the Director of the Institute of Social Transformational Research in the Faculty of Law, Humanities and the Arts. Investigator Associate Professor Rodney Clarke is the Manager of the Collaboration Laboratory (Co-Lab) at the SMART Infrastructure Facility and is based in the Faculty of Business. Investigator Associate Professor Katina Michael is based in the Faculty of Engineering and Information Science.</p><p>Lean more about the Global Challenges Programme <a target=\"_blank\" href=\"http://globalchallenges.uow.edu.au/index.html\">here</a>.</p>','PetaJakarta Receives UOW Global Challenges Strategic Funding','','publish','open','open','','20141026petajakarta-receives-uow-global-challenges-strategic-funding','','','2014-04-17 22:49:00','2014-04-17 22:49:00','',0,'https://petajakartablog.wordpress.com/2014/04/17/20141026petajakarta-receives-uow-global-challenges-strategic-funding',0,'post','',0),(28,1,'2014-04-17 22:46:00','2014-04-17 22:46:00','<p>PetaJakarta Receives Twitter #DataGrant for Proposal:<br />\"Using GeoSocial Intelligence to Model Urban Flooding in Jakarta, Indonesia\" </p>\n<p>From Twitter Engineering Blog:</p><p>\"In February, we introduced the Twitter #DataGrants pilot program, with the goal of giving a handful of research institutions access to Twitter’s public and historical data. We are thrilled with the response from the research community — we received more than 1,300 proposals from more than 60 different countries, with more than half of the proposals coming from outside the U.S. After reviewing all of the proposals, we’ve selected six institutions, spanning four continents, to receive free datasets in order to move forward with their research.\"<br /><br />Read more from the Twitter Engineering Blog <a target=\"_blank\" href=\"https://blog.twitter.com/2014/twitter-datagrants-selections\">here</a></p>','PetaJakarta.org Receives Twitter #DataGrant','','publish','open','open','','20141026e8auxxd0a6hhb5ul13ebzp9jga1zto','','','2014-04-17 22:46:00','2014-04-17 22:46:00','',0,'https://petajakartablog.wordpress.com/2014/04/17/20141026e8auxxd0a6hhb5ul13ebzp9jga1zto',0,'post','',0),(29,1,'2014-04-17 18:44:00','2014-04-17 18:44:00','a presentation by Etienne Turpin & Tomas Holderness\n\"Innovation and its Contestants\" <span style=\"font-size:12pt;\">—</span> 5th Annual Emerging Scholars Conference\nDepartment of Art History and Communication Studies\nMcGill University, Montreal, Quebec\n\nAs cities evolve to become increasingly complex systems of people and interconnected infrastructure, the impacts of both extreme and long-term environmental change are significantly heightened. Understanding the resilience of urban systems and communities in an integrated manner is key to ensure the sustainability of cities, which face considerable climatic, economic, and socio-demographic challenges in the 21st century. As Southeast Asia’s most populous and most dense metropolitan conurbation, and the second largest urban footprint in the world, Jakarta’s residents are exposed to rapid transformations of urban structures and systems. Recent trends in weather intensification, sea level rise, extreme pollution, severe land subsidence, and river and coastal inundation make Jakarta a key site for researching and responding to the 21st century challenges of urban resilience. Moreover, the combination of Jakarta’s progressive municipal government, active civil society organizations, and increasing foreign capital investment all suggest a unique potential for both transforming and improving the social life of residents through a technologically-sophisticated, scientifically-innovative, and publicly accessible networked GeoSocial Intelligence Framework.\n\nIn this presentation, we argue that although the proliferation of social media might first appear as so much noise for civil and information system engineers, with the proper open source software innovations for gathering, sorting, and analyzing data, this noise can be transformed into critical information for both understanding and promoting urban resilience and democratic practices. By connecting network models of urban infrastructure to crowd-sourced and social media-based data collection, and then making this information and analysis available through a public, web-based platform, our project links innovative areas of information science research and multiplies the potential of each by producing an innovative, open source framework for citizen-participation in the co-monitoring and co-management of urban systems.','Open Source City: Innovation & Urban Resilience from a GeoSocial Intelligence Perspective','','publish','open','open','','20141026wgnv60k0oxus199awbt99e387q42fs','','','2014-04-17 18:44:00','2014-04-17 18:44:00','',0,'https://petajakartablog.wordpress.com/2014/04/17/20141026wgnv60k0oxus199awbt99e387q42fs',0,'post','',0),(30,1,'2014-04-10 18:48:00','2014-04-10 18:48:00','<p>a paper by Etienne Turpin and Tomas Holderness</p><p>Association of American Geographers Annual Conference, Tampa USA<br />organized by Jayajit Chakraborty and Sara Grineski,<br />chaired by Bruce C Mitchell</p><p>In this paper, we consider several forms of political violence and postnatural urbanism as revealed by the current DKI Jakarta government’s plan for widespread “normalization.” This normalization plan—whereby Jakarta’s urban poor are first blamed for congestion, overcrowding, and recurrent flooding, and then violently displaced, only to be replaced by more affluent and ecologically imperiling settlements—is presented as a an aesthetic strategy for “urban renewal” characteristic of the auto-hypnosis of development under neoliberal capitalism. This strategy is, fundamentally, an attempt to decisively and coercively separate “urbanism” from “poverty.” Rather than posing a critique of such coercive processes of dispossession, we attempt in this paper to show how a design research practice can create modes of interference among these processes. We will suggest how platforms for crowd-sourcing \"GeoSocial Intelligence\" can be used to promote social emancipation and develop civic co-management strategies for infrastructure and resources that meaningfully alleviate political violence by advancing strategic forms of urban solidarity and community mobilization.<br /><br />This paper was presented on our behalf by Ellen van Holstein (<a target=\"_blank\" href=\"https://twitter.com/ellenvan_h\">@ellenvan_h</a>), a PhD Candidate in the Global Challenges Program, Australian Centre for Cultural Environmental Research, University of Wollongong.</p>','From Noise to Knowledge: Crowd-sourcing GeoSocial Intelligence in Jakarta\'s Urban Villages','','publish','open','open','','20141026cgkn3tlh3rh9buyz5qbtikqiyyiozp','','','2014-04-10 18:48:00','2014-04-10 18:48:00','',0,'https://petajakartablog.wordpress.com/2014/04/10/20141026cgkn3tlh3rh9buyz5qbtikqiyyiozp',0,'post','',0),(31,1,'2014-03-28 17:53:00','2014-03-28 17:53:00','<p>a paper by Etienne Turpin & Tomas Holderness</p><p>Association of Asian Studies Annual Conference<br />Philadelphia, USA, March 2014 </p><p>As Southeast Asia’s most populous and most dense metropolitan conurbation, and the second largest urban footprint in the world, Jakarta, Indonesia, is a city of remarkable complexity. However, recent trends in weather intensification, sea level rise, extreme river pollution, river flooding, and coastal inundation have helped create, through multiplicative effects, one of the key sites for researching the combined effects of ecological and urban transformation as they influence 21st century Southeast Asian metropolitan existence. Our work examines the intersections of extreme environmental circumstances, especially the problem of inundation, and creative engineering and architectural production. Focusing on highly-dense urban locations that face the regular and damaging occurrence of inundation, our project harnesses the power of social media to understand pressures on infrastructure in the city. This paper explains our current research in Jakarta and develops the themes of the postnatural and hypercomplexity in relation to Asian Studies today.</p>','Navigating Postnatural Spatial Politics: Jakarta as the City of the Anthropocene','','publish','open','open','','201410263pamkacf73eg1u75o9wgdfdalvngwz','','','2014-03-28 17:53:00','2014-03-28 17:53:00','',0,'https://petajakartablog.wordpress.com/2014/03/28/201410263pamkacf73eg1u75o9wgdfdalvngwz',0,'post','',0),(32,1,'2015-01-11 09:40:49','2015-01-11 02:40:49','','cd83f-img_1069_bw','','inherit','open','open','','cd83f-img_1069_bw','','','2015-01-11 09:40:49','2015-01-11 02:40:49','',10,'http://sriumiyati.com/wp-content/uploads/2015/01/cd83f-img_1069_bw.jpeg',0,'attachment','image/jpeg',0),(33,1,'2015-01-11 09:40:49','2015-01-11 02:40:49','','fd2dc-1414430975738','','inherit','open','open','','fd2dc-1414430975738','','','2015-01-11 09:40:49','2015-01-11 02:40:49','',6,'http://sriumiyati.com/wp-content/uploads/2015/01/fd2dc-1414430975738.jpg',0,'attachment','image/jpeg',0),(34,1,'2014-03-07 21:56:00','2014-03-07 21:56:00','<p>a workshop with PetaJakarta.org, Open Street Map, Ciliwung Merdeka, and Universitas Indonesia</p>\n \n [caption id=\"\" align=\"alignnone\" width=\"670.0\"]<img src=\"https://petajakartablog.files.wordpress.com/2014/03/7c9d4-1414274127143.png\" alt=\"Urbanization of Jakarta: 1976 (6 million), 1989 (9 million), and 2004 (13 million). In 2014, the population of metropolitan Jakarta was estimated at 28 million. Images from Landsat MSS & ASTER; courtesy of NASA.\" /> Urbanization of Jakarta: 1976 (6 million), 1989 (9 million), and 2004 (13 million). In 2014, the population of metropolitan Jakarta was estimated at 28 million. Images from Landsat MSS & ASTER; courtesy of NASA.[/caption] \n \n\n<p>Mapping practices have become an integral part of architecture and design, geography and urban studies, and social scientific research. In order to study the transformation of urban systems, researchers can no longer rely on inherited, proprietary maps; the next generation of urban scholars are learning to map the city with new tools and, together with residents, develop public, open source, and open access resources for civic co-management and participatory democracy. Essential for this work is developing a better understanding of the interaction between natural systems, such as watersheds and water catchment areas, and the urban systems that transform them. In Jakarta, the watershed of the Ciliwung River is a critical ecology that requires more comprehensive study and analysis; during the Ciliwung Perspectives workshop, we will examine the role of the Ciliwung as a site of biodiversity and conservation efforts, an area for urban renewal and stewardship, and a critical aspect of the disaster planning and mitigation projects related to flooding and flood response. </p>','Ciliwung Perspectives on Biodiversity, Infrastructure & Resilience','','publish','open','open','','20141026ciliwung-perspectives','','','2014-03-07 21:56:00','2014-03-07 21:56:00','',0,'http://sriumiyati.com/index.php/2014/03/07/20141026ciliwung-perspectives/',0,'post','',0),(35,1,'2013-12-05 20:20:00','2013-12-05 20:20:00','<p>a launch event for <em><strong>Architecture in the Anthropocene: Encounters Among Design, Deep Time,<br />Science and Philosophy</strong></em>, edited by Etienne Turpin (Ann Arbor: Open Humanities Press, 2013)</p><p>organized by Nabil Ahmed, moderated by Susan Schuppli <br />with presentations by Etienne Turpin, Seth Denizen, Eyal Weizman, Adam Bobbette, Paulo Tavares,<br />John Palmesino, and Ann-Sofi Rönnskog <br />Centre for Research Architecture, Goldsmiths, University of London<br />London, UK</p>','Who Does the Earth Think It Is, Now?','','publish','open','open','','20141027uyvzlcb18b0n9zntc0h2td544fv3is','','','2013-12-05 20:20:00','2013-12-05 20:20:00','',0,'https://petajakartablog.wordpress.com/2013/12/05/20141027uyvzlcb18b0n9zntc0h2td544fv3is',0,'post','',0),(37,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','','b5a85-1420712271195','','inherit','open','open','','b5a85-1420712271195','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',13,'http://sriumiyati.com/wp-content/uploads/2015/01/b5a85-1420712271195.jpg',0,'attachment','image/jpeg',0),(38,1,'2013-11-29 16:58:00','2013-11-29 16:58:00','<p><strong><em>Architecture in the Anthropocene: <br />Encounters Among Design, Deep Time,<br />Science and Philosophy</em></strong><br />edited by Etienne Turpin<br />(Ann Arbor: Open Humanities Press, 2013)<br /><br />Research regarding the significance and consequence of anthropogenic transformations of the earth’s land, oceans, biosphere and climate have demonstrated that, from a wide variety of perspectives, it is almost certain that humans have initiated a new geological epoch, their own. First labeled the Anthropocene by the chemist Paul Crutzen, the consideration of the merits of the Anthropocene thesis by the International Commission on Stratigraphy and the International Union of Geological Sciences has also garnered the attention of philosophers, historians, and legal scholars, as well as an increasing number of researchers from a range of scientific backgrounds. <em>Architecture in the Anthropocene: Encounters Among Design, Deep Time, Science and Philosophy</em> intensifies the potential of this multidisciplinary discourse by bringing together essays, conversations, and design proposals that respond to the “geological imperative” for contemporary architecture scholarship and practice.<br /> </p><p>_ Table of Contents<br /><br />Who Does the Earth Think It Is, Now?<br />introduction by Etienne Turpin<br /><br />AnthroPark<br />design project by Michael C.C. Lin<br /><br />Matters of Observation:<br />On Architecture in the Anthropocene<br />John Palmesino and Ann-Sofi Rönnskog in Conversation with Etienne Turpin<br /><br />Radical Meteorology<br />design project by Nabil Ahmed<br /><br />Three Holes: In the Geological Present<br />essay by Seth Denizen<br /><br />Episodes from a History of Scalelessness:<br />William Jerome Harrison and Geological Photography<br />essay by Adam Bobbette<br /><br />Inquiries and Interpretations Concerning the Observations<br />and Findings from Atmosphere-Investigating, Landscape-<br />Exploring, Universe-Tracking Instruments, their Experiments, Studies, Etc.<br />design project by Emily Cheng<br /><br />Matters of Calculation: <br />The Evidence of the Anthropocene<br />Eyal Weizman in Conversation with Heather Davis and Etienne Turpin<br /><br />Landscapes of San Francisco Bay: Plates from Bay Lexicon<br />design project by Jane Wolff<br /><br />Architecture’s Lapidarium:<br />On the Lives of Geological Specimens<br />essay by Amy Catania Kulper<br /><br />Erratic Imaginaries: Thinking Landscape as Evidence<br />essay by Jane Hutton<br /><br />Swimming in It<br />design project by Chester Rennie<br /><br />Time Matters: On Temporality in the Anthropocene<br />Elizabeth Grosz in Conversation with Heather Davis<br />and Etienne Turpin<br /><br />Fortune Head Geologies<br />photo essay by Lisa Hirmer<br /><br />Utopia on Ice: The Climate as Commodity Form<br />essay by Mark Dorrian<br /><br />The Mineralogy of Being<br />essay by Eleanor Kaufman<br /><br />Amplitude Modulation<br />design project by Meghan Archer<br /><br />Matters of Cosmopolitics: On the Provocations of Gaïa<br />Isabelle Stengers in Conversation with Heather Davis and<br />Etienne Turpin<br /><br />In the Furnace of Disorientation:<br />Tragic Drama and the Liturgical Force of Metal<br />essay by Guy Zimmerman<br /><br />Tar Creek Supergrid<br />design project by Amy Norris and Clinton Langevin<br /><br />Matters of Fabulation:<br />On the Construction of Realities in the Anthropocene<br />François Roche in Conversation with Etienne Turpin<br /><br />The Geological Imperative:<br />On the Political Ecology of the Amazonia’s Deep History<br />essay by Paulo Tavares</p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2013/11/fc10b-1414256074883.jpg\" alt=\"\" />\n \n\n<p><em>Although architecture has a sense of its place within broader socio-political and cultural systems, it has not, until very recently, acknowledged itself as part of the earth’s geology, despite the fact that it is a forceful geological agent, digging up, mobilizing, transforming and transporting earth materials, water, air and energy in unparalleled ways. With the Anthropocene thesis, architecture is called to think itself as a geological actor capable of radically transforming the earth’s atmosphere, surface morphology, and future stratigraphy. This extraordinary and provocative collection of essays, design projects, and conversations plots out what the planetary condition of the Anthropocene might mean for architecture, architectural theory, and design practice.<br /><span style=\"font-size:12px;\">— Lindsay Bremner, Director of Architectural Research, University of Westminster</span><br /><br />The ground on which we stand—physically, conceptually, even ontologically—is becoming increasingly unstable. The same goes for our political, scientific, and planetary atmospheres. The histories of “civilisation” and “nature” are crossing paths. But how to live up to the transformation called the Anthropocene? Vectors of critical thought that align planetary politics with questions of the planning, organisation, the design of physical space and the making of environments have become urgent. This volume brings leading and emerging scholars and design practitioners together, allowing the most exciting edges of new research to speak to each other. It is a major contribution to an emerging field of study and will shape the direction of the expanded field in architectural and spatial research.</em><br /><span style=\"font-size:12px;\">— Anselm Franke, Head of Visual Arts and Film Department, Haus der Kulturen der Welt</span></p>','Architecture in the Anthropocene','','publish','open','open','','20141026architecture-in-the-anthropocene','','','2013-11-29 16:58:00','2013-11-29 16:58:00','',0,'http://sriumiyati.com/index.php/2013/11/29/20141026architecture-in-the-anthropocene/',0,'post','',0),(39,1,'2014-12-14 10:06:43','2014-12-14 10:06:43','img-548d5e68e4b02bdc07d42984','attachment-548d5e68e4b02bdc07d42984','exc-548d5e68e4b02bdc07d42984','inherit','open','open','','548d5e68e4b02bdc07d42984','','','2014-12-14 10:06:43','2014-12-14 10:06:43','',0,'http://sriumiyati.com/wp-content/uploads/2014/12/img.jpg',0,'attachment','image/jpeg',0),(40,1,'2013-11-03 22:05:00','2013-11-03 22:05:00','<p>a lecture and discussion with AbdouMaliq Simone <br />moderated by Etienne Turpin for the launch of <em>Jakarta: Architecture + Adaptation</em>, <br />edited by Etienne Turpin, Adam Bobbette, and Meredith Miller<br />[English and Bahasa Indonesian bilingual edition] <br />(Depok: Universitas Indonesia Press, 2013)<br />SMART Infrastructure Facility, University of Wollongong<br /><br />As Southeast Asia’s most populous and most dense metropolitan conurbation, and the second largest urban footprint in the world, Jakarta, Indonesia, is already a city of postnatural hypercomplexity. However, recent trends in weather intensification, sea level rise, extreme river pollution, river flooding, and coastal inundation have made the city one of the key sites of research for urban theorists seeking to understand the pressures and politics of megacity transformation in the 21st century. Among the theorists engaged in such forms of inquiry, Professor AbdouMaliq Simone of the Hawke Research Institute, University of South Australia, has developed one of the most robust and influential theories of “cityness” through his recent publications, especially in his monograph <em>City Life from Jakarta to Dakar: Movements at a Crossroads</em> (New York and London: Routledge, 2011). In his lecture, <em>Just the City: Rethinking the Image of Urban Poverty</em>, Professor Simone will present research from his ongoing projects in Jakarta, Southeast Asia, and Africa, where his work is committed to rethinking the image of urban poverty, the politics of informality, and the struggles for social emancipation within megacities of the global south. <br /><br />This event coincides with the release of <em>Jakarta: Architecture + Adaptation</em>, edited by Etienne Turpin, Adam Bobbette, and Meredith Miller (Depok: Universitas Indonesia Press, 2013). Given Professor AbdouMaliq Simone’s central role in the theoretical approach guiding the book, not to mention his formative interview which appears in the book, it is especially fitting that he would give this lecture and participate in a discussion on the politics and paradoxes of urban poverty for to coincide with the release of the publication in Australia. <br /><br />As architects, planners, and engineers all struggle to find ways to exercise their disciplinary agency through socially and environmentally responsible practices, and as the design disciplines attempt to reorganize their commitments in the face of explosive trends of urban growth, the discussion among Professor Simone, SMART Vice-Chancellor\'s Postdoctoral Research Fellow Etienne Turpin, and the UOW audience will consider how collaborative, engaged, situated research can advance more equitable urban development within the assemblage of the contemporary megacity.</p>','Just the City: Rethinking the Image of Urban Poverty','','publish','open','open','','20141026rb60zimqd82xtk5bdek8dzv1d5wwi5','','','2013-11-03 22:05:00','2013-11-03 22:05:00','',0,'https://petajakartablog.wordpress.com/2013/11/03/20141026rb60zimqd82xtk5bdek8dzv1d5wwi5',0,'post','',0),(42,1,'2013-08-31 16:17:00','2013-08-31 16:17:00','<p><em>Jakarta: Architecture + Adaptation</em>, edited by Etienne Turpin, Adam Bobbette, and Meredith Miller<br />(Depok: Universitas Indonesia Press, 2013)</p><p>From 2011 to 2013, Architecture + Adaptation was a collaborative, multidisciplinary platform investigating the intersections among extreme environmental circumstances, urban poverty, and contemporary architecture and urban design. Relying heavily on situated research, community engagement, and field observation, Architecture + Adaptation conducted intensive site-based research studios to produce both the visual documentation and analysis of environmental pressure and the tools for urban poverty advocacy that promote practices of mutual aid and community resilience. Before joining the SMART Infrastructure Facility\'s Urban Livability, Sustainability, and Resilience Research Group at the University of Wollongong, Dr. Turpin was a coordinator of this international research platform, bringing together students from the University of Michigan (USA), the University of Hong Kong (China), Rangsit University (Thailand), and Universitas Indonesia (Indonesia). This publication brings together the research conducted in Jakarta, Indonesia, additional analysis, and a series of texts from contributors including AbdouMaliq Simone, Abidin Kusno, Rudolf Mrazek, Ms. Herlily, Dodo, Wardah Hafiz, Edi Saidi, and Gradma Della of the Urban Poor Consortium. Through this collection of scholarly and activist voices, the book invites readers to consider the possibilities that are opened up to architecture, design, and planning practices when they make a commitment to working for more equitable forms of urban development. By emphasizing the co-dependency of social and environmental justice, Jakarta: Architecture + Adaptation argues that our contemporary urban systems, whether in Jakarta or elsewhere, require new attitudes and approaches to both poverty and pollution in the era of climate change.</p><hr /><p>Jakarta: Architecture + Adaptation<em> is a brilliant work of interdisciplinary, international collaboration at its finest. The contributors bear witness to the fragile, tumultuous lives of water within a globalized hypercity afflicted by radical inequalities in access to vital resources and exposure to life-threatening risk. Above all, this book reminds us that detailed research and intellectual innovation are compatible with the ideals of advocacy, here advocacy for communities that must scramble to survive neoliberal onslaughts against their rightful resources. The book is essential reading for students and activists of the urban impacts of climate change, privatization, urban eco-design, sustainability, resilience and the environmentalisms of rich and poor, all mapped out in thoughtful detail on the body of a major global city</em>. </p><p>— Rob Nixon, Rachel Carson Professor, University of Wisconsin-Madison <br />& author of <em>Slow Violence and the Environmentalism of the Poor</em><br /><br />Jakarta: Architecture + Adaptation<em> is a call to arms seeking to instrumentally deploy design for climate change and environmental justice, issues the future of our planet must address. Jakarta’s relationship to water provides a prescient case study with far reaching applications. The authors are invested in the role research can play as a speculative and projective act; providing agency and on-the-ground impact for those architecture most often ignores yet are most at risk for the effects of climate change</em>.<br />— Lori A. Brown, Associate Professor, School of Architecture, Syracuse University <br />& editor of <em>Feminist Practices: Interdisciplinary Approaches to Women in Architecture</em></p><p>Download the book <a target=\"_blank\" href=\"https://dl.dropboxusercontent.com/u/12960388/JAKARTA%20A%2BA_PROOF_FINAL.pdf\">here</a></p>\n \n <img src=\"https://petajakartablog.files.wordpress.com/2013/08/e2126-1414336360887.png\" alt=\"[Bilingual edition in English and Bahasa Indonesian] edited by Etienne Turpin, Adam Bobbette, and Meredith Miller Depok: Universitas Indonesia Press, October 2013\" />\n \n\n<p id=\"yui_3_17_2_5_1415648861537_11090\">_ Table of Contents<br><br>Introduction: Who Does Jakarta Think It Is?<br><br>Urban Water Politics in Jakarta<br>AbdouMaliq Simone in conversation with Architecture + Adaptation<br><br>Site 1 | Ancol<br><br>Site 2 | Glodok<br><br>Cosmopolitan Temporalities<br>Abidin Kusno in conversation with Architecture + Adaptation<br><br>Site 3 | Waduk Pluit<br><br>Site 4 | Warakas<br><br>On the Urban Poor Consortium <br>Urban Poor Consortium in conversation with Ms. Herlily<br><br>Site 5 | Tanjung Priok<br><br>Site 6 | Menteng<br><br>Water and the Colonial Urban Imaginary<br>Rudolf Mrázek in conversation with Architecture + Adaptation</p> ','Jakarta: Architecture + Adaptation','','publish','open','open','','20141027jakarta-architecture-adaptation','','','2013-08-31 16:17:00','2013-08-31 16:17:00','',0,'http://sriumiyati.com/index.php/2013/08/31/20141027jakarta-architecture-adaptation/',0,'post','',0),(43,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','','e173e-1418707546217','','inherit','open','open','','e173e-1418707546217','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',16,'http://sriumiyati.com/wp-content/uploads/2015/01/e173e-1418707546217.jpg',0,'attachment','image/jpeg',0),(44,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','<strong>Visiting Researcher</strong>,\nDepartment of Civil &\nEnvironmental Engineering\nUniversity of Michigan\n\n<a href=\"mailto:fsedlar@gmail.com\" target=\"_blank\">fsedlar@gmail.com</a>\n<a href=\"http://twitter.com/f_sedlar\" target=\"_blank\">@f_sedlar</a>\n<a href=\"http://www.frank-sedlar.com/\" target=\"_blank\">www.frank-sedlar.com</a>\n\n<strong>Frank Sedlar</strong> is a graduate student in hydraulic engineering at the University of Michigan. His work is motivated by the convergence of the world’s urban population with the effects of climate change, particularly flooding in megacities around the world. This has involved developing a number of novel methods from mapping trash in flood canals with cameras and computer vision algorithms, to designing adaptive emergency flood shelters. Most recently, Frank has been investigating approaches to crowd sourcing drone imagery to assist with flood management.\n\n<a href=\"http://youtu.be/qD9FBO5YKTI\" target=\"_blank\">Urban Drone Research</a>\n\n<a href=\"http://youtu.be/TG-KBgWFI0k\" target=\"_blank\">Trash Mapping</a>\n\n<a href=\"http://youtu.be/VYoC2OBPrTU\" target=\"_blank\">City from the Sky @CitiSense14</a>\nslides for the lecture are available for download <a href=\"http://youtu.be/VYoC2OBPrTU\" target=\"_blank\">here</a><span style=\"font-size:15.555556297302px;\">.</span>\n\n<img src=\"https://petajakartablog.files.wordpress.com/2015/01/55e29-sedlar_bio_002_edit.jpg\" alt=\"\" />\n\nTweets by Frank Sedlar\n\n[twitter-timeline id=562188068749201408 username=f_sedlar]','Sedlar Biography','','publish','open','open','','sedlar','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',0,'http://sriumiyati.com/index.php/sedlar/',0,'page','',0),(45,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','OLYMPUS DIGITAL CAMERA','???????????????????????????????','','inherit','open','open','','45','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',14,'http://sriumiyati.com/wp-content/uploads/2015/01/5b880-1414509713341.jpg',0,'attachment','image/jpeg',0),(46,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','','13bff-1414346639208','','inherit','open','open','','13bff-1414346639208','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',12,'http://sriumiyati.com/wp-content/uploads/2015/01/13bff-1414346639208.jpg',0,'attachment','image/jpeg',0),(47,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','','31541-1420488025799','','inherit','open','open','','31541-1420488025799','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',18,'http://sriumiyati.com/wp-content/uploads/2015/01/31541-1420488025799.jpg',0,'attachment','image/jpeg',0),(52,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','','a2b4b-1419994204415','','inherit','open','open','','a2b4b-1419994204415','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',7,'http://sriumiyati.com/wp-content/uploads/2015/01/a2b4b-1419994204415.png',0,'attachment','image/png',0),(54,1,'2015-01-11 09:40:50','2015-01-11 02:40:50','','f6ee2-1414346406409','','inherit','open','open','','f6ee2-1414346406409','','','2015-01-11 09:40:50','2015-01-11 02:40:50','',11,'http://sriumiyati.com/wp-content/uploads/2015/01/f6ee2-1414346406409.png',0,'attachment','image/png',0),(56,1,'2015-01-11 09:40:51','2015-01-11 02:40:51','','bef21-1414430460423','','inherit','open','open','','bef21-1414430460423','','','2015-01-11 09:40:51','2015-01-11 02:40:51','',17,'http://sriumiyati.com/wp-content/uploads/2015/01/bef21-1414430460423.png',0,'attachment','image/png',0),(58,1,'2015-01-11 09:40:51','2015-01-11 02:40:51','','55e29-sedlar_bio_002_edit','','inherit','open','open','','55e29-sedlar_bio_002_edit','','','2015-01-11 09:40:51','2015-01-11 02:40:51','',44,'http://sriumiyati.com/wp-content/uploads/2015/01/55e29-sedlar_bio_002_edit.jpg',0,'attachment','image/jpeg',0),(60,1,'2015-01-11 09:40:51','2015-01-11 02:40:51','','fc10b-1414256074883','','inherit','open','open','','fc10b-1414256074883','','','2015-01-11 09:40:51','2015-01-11 02:40:51','',38,'http://sriumiyati.com/wp-content/uploads/2015/01/fc10b-1414256074883.jpg',0,'attachment','image/jpeg',0),(62,1,'2015-01-11 09:40:51','2015-01-11 02:40:51','','da28d-1414257788562','','inherit','open','open','','da28d-1414257788562','','','2015-01-11 09:40:51','2015-01-11 02:40:51','',24,'http://sriumiyati.com/wp-content/uploads/2015/01/da28d-1414257788562.png',0,'attachment','image/png',0),(64,1,'2015-01-11 09:40:51','2015-01-11 02:40:51','','0af06-inundation233studio','','inherit','open','open','','0af06-inundation233studio','','','2015-01-11 09:40:51','2015-01-11 02:40:51','',25,'http://sriumiyati.com/wp-content/uploads/2015/01/0af06-inundation233studio.png',0,'attachment','image/png',0),(66,1,'2015-01-11 09:40:52','2015-01-11 02:40:52','','7c9d4-1414274127143','','inherit','open','open','','7c9d4-1414274127143','','','2015-01-11 09:40:52','2015-01-11 02:40:52','',34,'http://sriumiyati.com/wp-content/uploads/2015/01/7c9d4-1414274127143.png',0,'attachment','image/png',0),(68,1,'2015-01-11 09:40:53','2015-01-11 02:40:53','','e2126-1414336360887','','inherit','open','open','','e2126-1414336360887','','','2015-01-11 09:40:53','2015-01-11 02:40:53','',42,'http://sriumiyati.com/wp-content/uploads/2015/01/e2126-1414336360887.png',0,'attachment','image/png',0),(73,1,'2015-01-11 16:16:29','2015-01-11 09:16:29','<h2><strong>PROJECT TEAM</strong></h2>\n<h3>Co-Directors</h3>\n<a href=\"/turpin\">Etienne Turpin</a> PhD\n<a href=\"/holderness\">Tomas Holderness</a> PhD\n<h3>Co-Investigators</h3>\n<a href=\"https://petajakartablog.wordpress.com/berryman-biography\">Matthew Berryman</a> PhD\n<a href=\"https://petajakartablog.wordpress.com/clarke-biography/\">Rodney Clarke</a> PhD\n<a href=\"https://petajakartablog.wordpress.com/dean/\">Sara Dean</a> MArch, MScDesign\n<a href=\"https://petajakartablog.wordpress.com/dun-biography/\">Olivia Dun</a> PhD\n<a href=\"https://petajakartablog.wordpress.com/perez-biography/\">Pascal Perez</a> PhD\n<a href=\"https://petajakartablog.wordpress.com/wickramasuriya-biography/\">Rohan Wickramasuriya</a> PhD\n<h3>Research Team</h3>\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Yantri Dewi</a> Office Manager & Senior Research Coordinator\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Nathan Brown</a> Senior Research Assistant\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Selera Labs</a> Web Developer\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Robert Ogie</a> Database Coordinator\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Fitria Sudirman</a> Social Media Coordinator\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Ariel Shepherd</a> Community Liaison\n<a href=\"https://petajakartablog.wordpress.com/vjosana-biography/\">Vjosana Shkurti</a> Video Artist\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Lucas Freeman</a> Senior Project Editor\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Assalam Ali</a> Senior Researcher [Ph.D. Thesis]\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Andrew Lim</a> Senior Researcher [Ph.D. Thesis]\n<a href=\"https://petajakartablog.wordpress.com/sedlar/\">Frank Sedlar</a> Visiting Researcher, Univ. of Michigan\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Albert Yang</a> Data Analyst [M.Sc. Thesis]\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">William Ashford</a> Hydraulic Network Analyst [B.Sc. Thesis]\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Tatyana Kusumo</a> Research Associate\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Widya Ramadhani</a> Research Associate\n<a title=\"Team Overview\" href=\"https://petajakartablog.wordpress.com/team-overview/\">Muhammad Kamil</a> Research Associate\n<h3>Partner Organizations</h3>\n<a href=\"http://smart.uow.edu.au/\" target=\"_blank\">SMART Infrastructure Facility</a> University of Wollongong\n<a href=\"http://www.jakarta.go.id/english/\" target=\"_blank\">Provinsi</a> <a href=\"http://www.jakarta.go.id/english/\" target=\"_blank\">DKI Jakarta</a>\n<a href=\"http://bpbd.jakarta.go.id/\" target=\"_blank\">BPBD DKI Jakarta</a>\n<a href=\"https://twitter.com/\" target=\"_blank\">Twitter, Inc.</a>\n<h3>Funding Support</h3>\n<a href=\"http://www.ands.org.au/\" target=\"_blank\">Australian National Data Service </a>\n<a href=\"http://globalchallenges.uow.edu.au/index.html\">University of Wollongong Global Challenges Program</a>\n<a href=\"http://www.aifdr.org\" target=\"_blank\">Australia—Indonesia Facility for Disaster Reduction (AIFDR)</a>','Team','','publish','open','closed','','project-team','','','2015-01-11 16:16:29','2015-01-11 09:16:29','',0,'https://petajakartablog.wordpress.com/?page_id=73',0,'page','',0),(75,1,'2015-01-12 10:49:20','2015-01-12 03:49:20','Thank you for your interest in PetaJakarta.org, the innovative crowd-sourcing data collection project helping to bring real-time flood management capabilities to Jakarta and beyond. Please download our Year 1 Research Highlights for further project details. Any questions relating to the project and our associated research are welcome at the address below. Visit our <a href=\"https://petajakartablog.wordpress.com\">Blog</a> section for recent coverage and updates.\n\n<a href=\"https://petajakartablog.files.wordpress.com/2015/01/petajakarta_year1_final_webv2-0_opt.pdf\" target=\"_blank\">> Download Year 1 Research Highlights</a>\n<a href=\"mailto:info@petajakarta.org\">> Contact info@petajakarta.org</a>\n<h2>PETA JAKARTA IN THE NEWS</h2>\n<h3>2015</h3>\n02/15 <strong>Metro TV</strong> <a href=\"http://video.metrotvnews.com/play/2015/02/15/358432/exclusive-interview-with-dr-etienne-turpin\" target=\"_blank\">Indonesia Now: Exclusive Interview with Etienne Turpin</a>\n\n[wpvideo ic6NlgE5]\n\n \n\n02/15 <strong>Kompas</strong> <a href=\"http://tekno.kompas.com/read/2015/02/15/17094807/Mengeroyok.Banjir.Jakarta\" target=\"_blank\">Mengeroyok Banjir Jakarta</a>\n<blockquote>Karena kami memiliki akun Twitter, kami terlibat dalam percakapan warga, termasuk siapa yang butuh pertolongan dan siapa yang bisa menolong,\" tutur Principal Investigator Petajakarta.org Etienne Turpin.</blockquote>\n02/13 <strong>Wall Street Journal</strong> <a href=\"http://blogs.wsj.com/indonesiarealtime/2015/02/13/where-to-go-for-flood-updates-this-rainy-season/\" target=\"_blank\">Where To Go For Flood Updates This Rainy Season</a>\n<blockquote>This website pulls in conversations <a href=\"https://twitter.com/petajkt\" target=\"_blank\">on Twitter</a> and maps them to show where flood-related conversations are happening – thus indicating where there is high water, traffic and flooding emergencies.</blockquote>\n02/12 <strong>Wall Street Journal</strong> <a href=\"http://blogs.wsj.com/indonesiarealtime/2015/02/12/jakartans-pull-on-the-power-of-twitter-for-flood-response/\" target=\"_blank\">Jakartans Pull on the Power of Twitter For Flood Response</a>\n<blockquote>PetaJakarta.org, <a href=\"http://blogs.wsj.com/indonesiarealtime/2014/12/03/in-jakarta-a-new-way-to-warn-about-a-flood/\" target=\"_blank\">a site that uses community crowdsourcing</a> to pull in flood-related tweets and map where they’re coming from, recorded around 800 tweets per hour during major flooding Feb. 9, with more than 12,000 users on the webpage that day.</blockquote>\n02/09 <strong>CNN Indonesia</strong> <a href=\"http://www.cnnindonesia.com/teknologi/20150209115740-185-30628/berbagi-informasi-lokasi-banjir-lewat-akun--petajkt/\">Berbagi Informasi Lokasi Banjir Lewat Akun @petajkt</a>\n<blockquote>Hujan deras berkepanjangan hari ini telah menimbulkan banjir dan genangan air di mana-mana di Jakarta. Informasi soal titik banjir dan genangan air kini bisa saling dibagi oleh sesama pengguna Internet atau netizen melalui layanan sosial media Twitter di @petajkt.</blockquote>\n02/09 <strong>BBC Indonesia</strong> <a href=\"http://www.bbc.co.uk/indonesia/berita_indonesia/2015/02/150209_trensosial_banjir\">#TrenSosial: \"Jakarta banjir,\" keluh kesah warga ibu kota</a>\n<blockquote>Dalam 24 jam terakhir hingga pukul 14.00 WIB, Senin (09/02), total laporan hampir lebih dari 4.000 tweet, terdiri dari yang terkonfirmasi dan tidak terkonfirmasi.</blockquote>\n02/09 <strong>Antara News</strong> I<a href=\"http://www.antaranews.com/berita/479026/ini-peta-banjir-di-jakarta-berdasarkan-aduan-masyarakat\">ni peta banjir di Jakarta berdasarkan aduan masyarakat</a>\n<blockquote>Salah satu sistem pengaduan banjir yang kerap digunakan masyarakat saat Jakarta dilanda banjir, Senin, adalah Twitter dengan menuliskan tagar #Banjir dan akun @petajkt.</blockquote>\n02/04<strong> Jakarta Post</strong> <a href=\"http://www.thejakartapost.com/news/2015/02/04/peta-jakarta-gets-netizens-report-floods.html\">Peta Jakarta Gets Netizens to Report Floods</a>\n<blockquote>Two months after its launch, flood-monitoring platform Petajakarta.org has drawn thousands of netizens to report floods across the capital city during rainy days</blockquote>\n01/26 <strong>Jakarta Globe</strong> <a href=\"http://thejakartaglobe.beritasatu.com/news/jakarta/tweeting-solution-jakarta-flooding/\" target=\"_blank\">A Tweeting Solution to Jakarta Flooding</a>\n<blockquote>With this in mind, Turpin and his team of researchers see hope in the potential for ordinary Jakartans to participate in flood detection and share their knowledge through geosocial intelligence.</blockquote>\n01/25 <strong>Illawarra Mercury</strong> <a href=\"http://www.illawarramercury.com.au/story/2839044/twitter-used-to-help-track-monsoon-flooding/\" target=\"_blank\">University of Wollongong project uses Twitter to help track monsoon flooding</a>\n<blockquote>Dr Tomas Holderness is a man with a flood of information to reflect on. During the monsoon season in Jakarta the global potential of an idea he began working on at the SMART Infrastructure Facility 18 months ago is presently being put to the test. And it is already saving lives.</blockquote>\n01/09 <strong>Majalah Suara Pemred</strong> Gotong Royong Goes Digital lewat PetaJakarta.org\n\n<a href=\"https://petajakartablog.files.wordpress.com/2015/01/img021.jpg\"><img class=\"alignnone wp-image-136 size-large\" src=\"https://petajakartablog.files.wordpress.com/2015/01/img021.jpg?w=545\" alt=\"Gotong Royong Goes Digital lewat PetaJakarta.org\" width=\"545\" height=\"385\" /></a>\n\n01/08 <strong>National Geographic Indonesia</strong> <a href=\"http://nationalgeographic.co.id/berita/2015/01/warga-jakarta-ingin-ikut-berperan-dalam-pemetaan-banjir#\">Warga Jakarta, Ingin Ikut Berperan dalam Pemetaan Banjir?</a>\n<blockquote>Ayo informasikan banjir via Twitter! - <em>PetaJakarta.org</em> merupakan sebuah situs pemetaan titik-titik banjir yang berbasis informasi dari masyarakat melalui media sosial. Upaya ini diinisiasi untuk pembenahan penanggulangan banjir Jakarta yang lebih baik.</blockquote>\n01/08 <strong>National Geographic Indonesia </strong><a href=\"http://nationalgeographic.co.id/video/2015/01/banjir-jakarta-dari-udara\">Banjir Jakarta dari Udara</a>\n<blockquote>Selintas pandang tentang bagaimana Frank Sedlar, seorang dari lulusan University of Michigan, menggunakan pesawat nirawak (<em>drone</em>) penelitiannya terhadap banjir dan perkotaan di wilayah Jakarta, Indonesia.</blockquote>\n01/04 <strong>Illawara Mercury </strong><a href=\"http://www.illawarramercury.com.au/story/2796654/tweet-data-used-for-mapping-flood-effect/?cs=300\">Tweet data used for mapping flood effect</a>\n<blockquote>An innovative project, headed by a team from the University of Wollongong\'s SMART Infrastructure facility, is using Twitter to help address flooding in Jakarta.</blockquote>\n<h3>2014</h3>\n12/08 <strong>NET TV</strong> <a href=\"https://www.youtube.com/watch?v=R3Oxgp6yoP8\">Agenda Khas NET5 - Media Sosial, Jurus Jitu Baru Atasi Banjir di Jakarta</a>\n\n[wpvideo 6pY1JEfD]\n\n \n\n12/08 <strong>NET TV </strong><a href=\"https://www.youtube.com/watch?v=G6FTs7-Ofw4\">Agenda Khas NET5 - Pemetaan Banjir Via Media Sosial</a>\n\n[wpvideo hL2KYngP]\n\n \n\n12/03 <strong>Wall Street Journal</strong> <a href=\"http://www.wsj.com/articles/BL-SEAB-5379\">In Jakarta, a New Way to Warn About a #Flood</a>\n<blockquote>A new project will draw on the power of tweets by residents in this flood-prone metropolis to help improve flood detection, monitoring and response.</blockquote>\n12/03 <strong>Wall Street Journal </strong><a href=\"http://blogs.wsj.com/indonesiarealtime/2014/12/03/qa-designing-a-tool-to-track-floods-that-everyone-will-love/\">Q&A: Designing a Tool to Track Floods That Everyone Will Love</a>\n<blockquote>It was designed with the idea that everyone would fall in love with it. And that it would be an easy way to work together without feeling a moral obligation to help people.</blockquote>\n12/03 <strong>The Straits Time</strong> <a href=\"http://www.straitstimes.com/the-big-story/asia-report/indonesia/story/jakarta-turns-twitter-help-tackle-floods-20141203\">Jakarta turns to Twitter to help tackle floods</a>\n<blockquote>MONSOON season is here, and so are the floods. To help mitigate the effects, the Jakarta government has launched a crowd-sourcing website to gather updates on floods in real time and map out flood- prone areas this rainy season.</blockquote>\n12/03 <strong>National Geographic Indonesia</strong> <a href=\"http://nationalgeographic.co.id/berita/2014/12/kini-masyarakat-jakarta-bisa-mengetahui-lokasi-banjir#\">Kini Masyarakat Jakarta Bisa Mengetahui Lokasi Banjir</a>\n<blockquote>Fasilitas Infrastuktur SMART dan Universitas Wollongong Australia, yang bekerja sama dengan Twitter, dan BPBD DKI Jakarta meluncurkan PetaJakarta.org di Balai Kota DKI Jakarta (2/12).</blockquote>\n12/03 <strong>CNN Indonesia</strong> <a href=\"http://www.cnnindonesia.com/teknologi/20141202180741-185-15349/banjir-jakarta-bisa-dipantau-dari-petajakartaorg/\">Banjir Jakarta Bisa Dipantau dari PetaJakarta.org</a>\n<blockquote>Pemerintah DKI Jakarta telah menyiapkan langkah pemantauan banjir yang mungkin akan terjadi di Jakarta, salah satunya dengan meluncurkan layanan PetaJakarta.org, Selasa (2/12).</blockquote>\n12/03 <strong>Jakarta Post</strong> <a href=\"http://www.thejakartapost.com/news/2014/12/03/flood-monitoring-website-launched.html\">Flood-monitoring Website Launched</a>\n<blockquote>In cooperation with an Australian university and Twitter, the city administration launched petajakarta.org at City Hall in Central Jakarta on Tuesday.</blockquote>\n12/02 <strong>Twitter Blog</strong> <a href=\"https://blog.twitter.com/2014/helping-jakarta-track-flooding-in-real-time-to-save-more-lives\">Helping Jakarta track flooding in real time to save more lives</a>\n<blockquote>The city of Jakarta, Indonesia suffers from widespread annual flooding during the monsoon season. According to BPBD DKI Jakarta, the emergency management agency of Jakarta, more than one million people in the city were affected by the Great Flood in January 2013.</blockquote>\nhttps://twitter.com/twitter/status/540208387024113665\n\nAlso available in Bahasa Indonesia [<a href=\"http://wp.me/P5A3Yp-3g\" target=\"_blank\">article</a>]\n\n12/02 <strong>Kompas</strong> <a href=\"http://megapolitan.kompas.com/read/2014/12/02/19014071/Ahok.Akan.Bayar.Ketua.RT.yang.Men-.Tweet.Banjir?utm_source=WP&utm_medium=box&utm_campaign=Kknwp\">Ahok Akan Bayar Ketua RT yang Men-\"tweet\" #Banjir</a>\n<blockquote>Gubernur DKI Jakarta Basuki Tjahaja Purnama mengatakan akan memberikan bayaran kepada ketua RT yang memberikan laporan banjir melalui jejaring sosial Twitter. Hal ini untuk memudahkan dia mendapatkan laporan soal banjir hingga ke tingkat RT.</blockquote>\n12/02 <strong>Tempo</strong> <a href=\"http://www.tempo.co/read/news/2014/12/02/083625952/Cuitan%C2%ADAhok%C2%ADuntuk%C2%ADPeluncuran%C2%ADAplikasi%C2%ADPetaJakarta\">Cuitan Ahok untuk Peluncuran Aplikasi PetaJakarta</a>\n<blockquote>Gubernur DKI Jakarta Basuki Tjahaja Purnama memiliki kesempatan pertama untuk bercuit dalam akun Twitter-nya dalam peluncuran aplikasi Petajakarta.org di Balai Kota, Jalan Medan Merdeka Selatan, Selasa, 2 Desember 2014.</blockquote>','Press','','publish','open','open','','press','','','2015-01-12 10:49:20','2015-01-12 03:49:20','',0,'https://petajakartablog.wordpress.com/?page_id=75',0,'page','',0),(83,1,'2015-01-12 10:53:29','2015-01-12 03:53:29','Inquiries via email <a href=\"mailto:media@petajakarta.org\">media@petajakarta.org </a>\nFollow us on Twitter <a href=\"https://twitter.com/petajkt\" target=\"_blank\"><strong>@</strong>petajkt</a>','Contact','','publish','open','open','','contact','','','2015-01-12 10:53:29','2015-01-12 03:53:29','',0,'https://petajakartablog.wordpress.com/?page_id=83',0,'page','',0),(85,1,'2015-07-06 03:14:37','2015-07-06 03:14:37',' ','','','publish','open','open','','85','','','2015-07-06 05:31:33','2015-07-06 05:31:33','',0,'http://sriumiyati.com/index.php/2015/07/06/85/',2,'nav_menu_item','',0),(86,1,'2015-07-06 03:14:37','2015-07-06 03:14:37',' ','','','publish','open','open','','86','','','2015-07-06 05:31:33','2015-07-06 05:31:33','',0,'http://sriumiyati.com/index.php/2015/07/06/86/',6,'nav_menu_item','',0),(87,1,'2015-07-06 03:14:37','2015-07-06 03:14:37',' ','','','publish','open','open','','87','','','2015-07-06 05:31:33','2015-07-06 05:31:33','',0,'http://sriumiyati.com/index.php/2015/07/06/87/',3,'nav_menu_item','',0),(88,1,'2015-07-06 03:14:37','2015-07-06 03:14:37',' ','','','publish','open','open','','88','','','2015-07-06 05:31:33','2015-07-06 05:31:33','',0,'http://sriumiyati.com/index.php/2015/07/06/88/',5,'nav_menu_item','',0),(89,1,'2015-07-06 03:14:37','2015-07-06 03:14:37',' ','','','publish','open','open','','89','','','2015-07-06 05:31:33','2015-07-06 05:31:33','',0,'http://sriumiyati.com/index.php/2015/07/06/89/',4,'nav_menu_item','',0),(109,1,'2015-01-12 14:01:16','2015-01-12 07:01:16','','_+PetaJakarta_Year1_FINAL_WebV2.0_OPT','','inherit','open','open','','_petajakarta_year1_final_webv2-0_opt','','','2015-01-12 14:01:16','2015-01-12 07:01:16','',75,'http://sriumiyati.com/wp-content/uploads/2015/01/petajakarta_year1_final_webv2-0_opt.pdf',0,'attachment','application/pdf',0),(136,1,'2015-01-13 14:49:25','2015-01-13 07:49:25','','','','inherit','open','open','','img021','','','2015-01-13 14:49:25','2015-01-13 07:49:25','',75,'http://sriumiyati.com/wp-content/uploads/2015/01/img021.jpg',0,'attachment','image/jpeg',0),(152,1,'2015-02-02 11:53:22','2015-02-02 11:53:22','A team of ten students – <i>Student Flood Research Team Group A</i> – arrived in Jakarta prior to the official launch of PetaJakarta.org in December 2015 to commence mapping of the flood-stricken areas of the city. PetaJakarta.org is an applied research project led by the SMART Infrastructure Facility at the University of Wollongong.\r\n\r\n[caption id=\"attachment_154\" align=\"aligncenter\" width=\"2048\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/15861856331_4428056ec6_k.jpg\"><img class=\"wp-image-154 size-full\" src=\"https://petajakartablog.files.wordpress.com/2015/02/15861856331_4428056ec6_k.jpg\" alt=\"Students Flood Team Group A ready to help mapping flood in Jakarta\" width=\"2048\" height=\"1365\" /></a> <em>Student Flood Research Team Group A</em> arrive in Jakarta, ready to start mapping flooding in the city. <em>Photo Credit:</em> Etienne Turpin.[/caption]\r\n\r\n[caption id=\"attachment_153\" align=\"aligncenter\" width=\"5184\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/15946552566_dda9a88a25_o.jpg\"><img class=\"wp-image-153 size-full\" src=\"https://petajakartablog.files.wordpress.com/2015/02/15946552566_dda9a88a25_o.jpg\" alt=\"\" width=\"5184\" height=\"3456\" /></a> Students took to the water in boats to inspect the Ciliwung River with BPBD Jakarta. <em>Photo Credit: Etienne Turpin.</em>[/caption]','Student Flood Research Team Group A','','publish','open','open','','student-flood-team-group-a','','','2015-07-06 05:18:23','2015-07-06 05:18:23','',0,'http://info.petajakarta.org/?p=152',0,'post','',0),(153,1,'2015-02-02 11:46:46','2015-02-02 04:46:46','','15946552566_dda9a88a25_o','','inherit','open','open','','15946552566_dda9a88a25_o','','','2015-02-02 11:46:46','2015-02-02 04:46:46','',152,'http://sriumiyati.com/wp-content/uploads/2015/02/15946552566_dda9a88a25_o.jpg',0,'attachment','image/jpeg',0),(154,1,'2015-02-02 11:46:59','2015-02-02 04:46:59','','15861856331_4428056ec6_k','Students Flood Team Group A ready to help mapping flood in Jakarta','inherit','open','open','','15861856331_4428056ec6_k','','','2015-02-02 11:46:59','2015-02-02 04:46:59','',152,'http://sriumiyati.com/wp-content/uploads/2015/02/15861856331_4428056ec6_k.jpg',0,'attachment','image/jpeg',0),(160,1,'2015-02-02 12:17:10','2015-02-02 12:17:10','<i>Student Flood Research Team Group B</i> arrived in Jakarta in January 2015 to continue the flood mapping being undertaken by the PetaJakarta.org project. This trip was supported by the Australian Government through the <i>New Colombo Plan</i>.\r\n\r\n[caption id=\"attachment_161\" align=\"aligncenter\" width=\"545\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/15765103814_649cc6bb09_k.jpg\"><img class=\"wp-image-161 size-large\" src=\"https://petajakartablog.files.wordpress.com/2015/02/15765103814_649cc6bb09_k.jpg?w=545\" alt=\"Student Flood Team Group B at the emergency evacuation shelter at Bukit Duri with BPBD Jakarta and BNPB Indonesia\" width=\"545\" height=\"363\" /></a> <em>Student Flood Research Team Group B</em> at the emergency evacuation shelter at Bukit Duri with BPBD Jakarta and BNPB Indonesia.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"aligncenter\" width=\"545\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/16200036060_3db224152e_k.jpg\"><img class=\"wp-image-162 size-large\" src=\"https://petajakartablog.files.wordpress.com/2015/02/16200036060_3db224152e_k.jpg?w=545\" alt=\"Students experiencing flood during their visit to Bukit Duri on January 23rd\" width=\"545\" height=\"409\" /></a> Students experience the extent of the impact of flooding on the day-to-day activities of Jakarta residents during their visit to Bukit Duri on January 23rd.[/caption]\r\n\r\nhttps://twitter.com/basuki_btp/status/558461110752268289\r\n\r\nGovernor Ahok encouraged Jakarta citizens to report flood conditions around them via Twitter to @petajkt using #banjir.','Student Flood Research Team Group B','','publish','open','open','','student-flood-research-team-group-b','','','2015-07-06 05:14:40','2015-07-06 05:14:40','',0,'http://info.petajakarta.org/?p=160',0,'post','',0),(161,1,'2015-02-02 12:07:41','2015-02-02 05:07:41','','15765103814_649cc6bb09_k','Student Flood Team Group B at the emergency evacuation shelter at Bukit Duri with BPBD Jakarta and BNPB Indonesia','inherit','open','open','','15765103814_649cc6bb09_k','','','2015-02-02 12:07:41','2015-02-02 05:07:41','',160,'http://sriumiyati.com/wp-content/uploads/2015/02/15765103814_649cc6bb09_k.jpg',0,'attachment','image/jpeg',0),(162,1,'2015-02-02 12:08:02','2015-02-02 05:08:02','','16200036060_3db224152e_k','Students experiencing flood during their visit to Bukit Duri on January 23rd','inherit','open','open','','16200036060_3db224152e_k','','','2015-02-02 12:08:02','2015-02-02 05:08:02','',160,'http://sriumiyati.com/wp-content/uploads/2015/02/16200036060_3db224152e_k.jpg',0,'attachment','image/jpeg',0),(182,1,'2015-02-02 15:49:13','2015-02-02 08:49:13','http://petajakartablog.files.wordpress.com/2015/01/cropped-peta-jakarta-logo2.png','cropped-peta-jakarta-logo2.png','','inherit','open','open','','cropped-peta-jakarta-logo2-png','','','2015-02-02 15:49:13','2015-02-02 08:49:13','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/cropped-peta-jakarta-logo2.png',0,'attachment','image/png',0),(189,1,'2015-02-04 17:07:54','2015-02-04 10:07:54','http://petajakartablog.files.wordpress.com/2015/01/cropped-cropped-cropped-peta-jakarta-logo2.png','cropped-cropped-cropped-peta-jakarta-logo2.png','','inherit','open','open','','cropped-cropped-cropped-peta-jakarta-logo2-png','','','2015-02-04 17:07:54','2015-02-04 10:07:54','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/cropped-cropped-cropped-peta-jakarta-logo2.png',0,'attachment','image/png',0),(190,1,'2015-02-04 17:27:04','2015-02-04 10:27:04','','ands-logo','','inherit','open','open','','ands-logo','','','2015-02-04 17:27:04','2015-02-04 10:27:04','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/ands-logo.jpg',0,'attachment','image/jpeg',0),(191,1,'2015-02-04 17:27:05','2015-02-04 10:27:05','','BPBD_web','','inherit','open','open','','bpbd_web','','','2015-02-04 17:27:05','2015-02-04 10:27:05','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/bpbd_web.png',0,'attachment','image/png',0),(192,1,'2015-02-04 17:27:06','2015-02-04 10:27:06','','DKI_web','','inherit','open','open','','dki_web','','','2015-02-04 17:27:06','2015-02-04 10:27:06','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/dki_web.png',0,'attachment','image/png',0),(193,1,'2015-02-04 17:27:07','2015-02-04 10:27:07','','Global_ChallengesCOL','','inherit','open','open','','global_challengescol','','','2015-02-04 17:27:07','2015-02-04 10:27:07','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/global_challengescol.pdf',0,'attachment','application/pdf',0),(194,1,'2015-02-04 17:27:09','2015-02-04 10:27:09','','SmartStackedHybridPmsInt (1)','','inherit','open','open','','smartstackedhybridpmsint-1','','','2015-07-07 06:40:40','2015-07-07 06:40:40','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/smartstackedhybridpmsint-1.jpg',0,'attachment','image/jpeg',0),(195,1,'2015-02-04 17:27:10','2015-02-04 10:27:10','','Twitter_logo_blue','','inherit','open','open','','twitter_logo_blue','','','2015-02-04 17:27:10','2015-02-04 10:27:10','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/twitter_logo_blue.png',0,'attachment','image/png',0),(196,1,'2015-02-04 17:27:11','2015-02-04 10:27:11','','UOW_SMART_web','','inherit','open','open','','uow_smart_web','','','2015-02-04 17:27:11','2015-02-04 10:27:11','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/uow_smart_web.png',0,'attachment','image/png',0),(202,1,'2015-02-11 17:03:55','2015-02-11 10:03:55','Setiap tahun, kota Jakarta terkena banjir selama musim hujan. Menurut Badan Penanggulangan Bencana Daerah atau <a href=\"https://twitter.com/BPBDJakarta\">BPBD Jakarta</a>, lebih dari satu juta orang menjadi korban banjir besar pada bulan Januari 2013. Akibat perubahan musim yang kini lebih sulit diprediksi, banjir menjadi masalah serius yang mengancam kehidupan 28 juta orang penduduk Jabodetabek, area metropolitan terbesar kedua di dunia. PetaJakarta.org (<a href=\"https://twitter.com/intent/user?screen_name=petajkt\">@petajkt</a>) memanfaatkan jaringan terkini Twitter dan menggunakan data sosial untuk meningkatkan taraf hidup jutaan orang.\n\nKetika infrastuktur dan fasilitas umum tidak dapat digunakan selama banjir, penduduk Jakarta terkena dampak negatifnya. Jika suatu sungai meluap, jalanan akan tergenang dan sistem transportasi akan lumpuh. Kehidupan di kota dapat terhenti hanya setelah hujan beberapa saat. Komunikasi terkini tentang apa yang tengah terjadi selama bencana sangat diperlukan oleh warga dan pemerintah Jakarta.\n\nhttps://twitter.com/jang_ebod/status/538551849297526784\n\nhttps://twitter.com/gombury/status/503798709771964416\n\nSMART Infrastructure Facility dari <a href=\"http://www.uow.edu.au/index.html\" target=\"_blank\">University of Wollongong</a> dan BPBD Jakarta telah meluncurkan <a href=\"http://www.petajakarta.org/\" target=\"_blank\">PetaJakarta.org</a>, sebuah proyek penelitian yang memanfaatkan partisipasi komunitas untuk melaporkan banjir lewat tweet untuk memberikan info terkini sehingga aktivitas tanggap darurat dapat dilaksanakan dengan cepat. Program ini merupakan kolaborasi pertama di dunia antara badan penganggulangan bencana miliki pemerintah, universitas, dan Twitter yang menggunakan data sosial untuk membangun model kerja dan menghasilkan respon terkini terhadap bencana alam.\n\n[youtube https://www.youtube.com/watch?v=IzjDqjFcYzc&w=560&h=315]\n\nJutaan pengguna Twitter di Jakarta dapat berpartisipasi dalam inisiatif keamanan publik ini melalui tiga langkah sederhana:\n<ol>\n <li>Meyalakan “location services” atau geo-tag dengan mengklik ikon pin ketika menulis tweet di perangkat iOS/Android Anda</li>\n <li>Ambil atau tambahkan foto dengan mengklik ikon kamera ketika menulis tweet di perangkat iOS/Android Anda</li>\n <li>Kirim tweet ke <a href=\"https://twitter.com/intent/user?screen_name=petajkt\" target=\"_blank\">@petajkt</a> dengan tagar <a href=\"https://twitter.com/hashtag/banjir\" target=\"_blank\">#banjir</a> dan deskripsi singkat mengenai situasi banjir.</li>\n</ol>\nhttps://twitter.com/TMCPoldaMetro/status/537547610936987648\n\nhttps://twitter.com/tattooman/status/537500690034069504\n\nTweet mengenai banjir ini kemudian akan dipetakan ke dalam <em>platform</em> PetaJakarta.org sehingga warga dapat memantau situasi terkini dan tetap aman. Tweet yang sama juga akan menjadi alat tanggap bencana yang digunakan di ruang kontrol BPBD Jakarta.\n\n[embed]https://g.twimg.com/blog/blog/image/PetaJakartaMap.png[/embed]\n\n<em>PetaJakarta.org menunjukkan tingkat banjir di masing-masing kawasan. Foto: PetaJakarta.org.</em>\n\n[embed]https://g.twimg.com/blog/blog/image/PetaJakarta_Tweets.png[/embed]\n\n<em>PetaJakarta.org menunjukkan tingkat banjir di masing-masing kawasan. Foto: PetaJakarta.org.</em>\n\n[embed]https://g.twimg.com/blog/blog/image/BPBDIncidentRoom.png[/embed]\n\n<em>Tweet mengenai banjir menjadi alat tanggap bencana terkini di ruang kontrol BPBD Jakarta. Foto: Thomas Holderness.</em>\n\n<em>Platform</em> PetaJakarta merupakan bagian dari <a href=\"https://blog.twitter.com/2014/twitterdatagrantsselections\" target=\"_blank\">penerima perdana</a> program <a href=\"https://blog.twitter.com/2014/introducingtwitterdatagrants\" target=\"_blank\">Data Grants</a> yang diluncurkan Twitter pada awal tahun ini sebagai penghubung bagi peneliti yang menggunakan data Twitter untuk aplikasi dalam penelitian akademis dan penemuan lainnya. Jakarta yang memiliki salah satu konsentrasi pengguna Twitter di dunia dapat menjadi pemberi informasi terkini yang berkualitas kepada sistem kebencanaan BPBD. Dengan menganalisis lebih dari 8 juta tweet terkait banjir di Jakarta selama dua musim hujan terakhir, tim UOW/SMART telah berhasil membangun model tanggap bencana yang lebih cepat dalam situasi di dunia nyata.\n\n<img class=\"alignnone\" src=\"https://g.twimg.com/blog/blog/image/TwitterDataGrantMap.png\" alt=\"\" width=\"437\" height=\"309\" />\n\n<em>Twitter #DataGrant (https://twitter.com/hashtag/DataGrant) memetakan tweet terkait banjir di Jakarta selama November 2013-Februari 2014. Foto oleh PetaJakarta.org.</em>\n\nKami ingin berterima kasih kepada UOW/SMART dan BPBD Jakarta atas dukungan, kerja sama, dan visinya untuk membuat PetaJakarta.org menjadi kenyataan. Terima kasih juga kepada warga Jakarta atas partisipasinya.\n\n<img class=\"alignnone\" src=\"https://g.twimg.com/blog/blog/image/PetaJakartaLaunchwithGovernor_2Dec2014.JPG\" alt=\"\" width=\"700\" height=\"376\" /><em>Gubernur Jakarta, UOW/SMART, BPBD Jakarta, dan eksekutif Twitter pada acara peluncuran. Foto oleh Twitter.</em>\n\nGubernur Jakarta meluncurkan program PetaJakarta.org di Indonesia hari ini. Ia juga meminta agar pemerintah lokal mendukung program ini dan mengajak lebih banyak lagi warga untuk mengirimkan tweet selama banjir.\n\nhttps://twitter.com/basuki_btp/status/539703116992503808\n\nPetaJakarta.org menunjukkan bagaimana data Twitter dapat menghasilkan perubahan sosial yang positif dan bagaimana Twitter memberdayakan warga untuk berperan aktif dalam memperbaiki respon terhadap bencana dan meningkatkan keamanan publik saat darurat.\n\n<em>Diterjemahkan dari <a href=\"https://blog.twitter.com/2014/helping-jakarta-track-flooding-in-real-time-to-save-more-lives\">artikel Mark Gillis (MJGillis) di Blog Twitter</a></em>','Membantu Jakarta Mengawasi Banjir untuk Menyelamatkan Lebih Banyak Nyawa','','publish','open','open','','membantu-jakarta-mengawasi-banjir-untuk-menyelamatkan-lebih-banyak-nyawa','','','2015-02-11 17:03:55','2015-02-11 10:03:55','',0,'http://info.petajakarta.org/?page_id=202',0,'page','',0),(207,1,'2015-02-11 17:08:55','2015-02-11 10:08:55','http://petajakartablog.files.wordpress.com/2015/01/cropped-cropped-cropped-cropped-peta-jakarta-logo2.png','cropped-cropped-cropped-cropped-peta-jakarta-logo2.png','','inherit','open','open','','cropped-cropped-cropped-cropped-peta-jakarta-logo2-png','','','2015-02-11 17:08:55','2015-02-11 10:08:55','',0,'http://sriumiyati.com/wp-content/uploads/2015/02/cropped-cropped-cropped-cropped-peta-jakarta-logo2.png',0,'attachment','image/png',0),(216,1,'2015-02-17 12:18:43','2015-02-17 05:18:43','<strong>Flood reports</strong>\n\nhttps://twitter.com/papoiibear/status/566908261530476544\n\nhttps://twitter.com/SuryaGuang/status/565658642465443841\n\nhttps://twitter.com/dikylung/status/565404936624963584\n\nhttps://twitter.com/OpickNiy/status/565393262413119488\n\nhttps://twitter.com/garuda17845/status/565370148136435712\n\nhttps://twitter.com/pmdalimartha/status/565311081892306944\n\nhttps://twitter.com/anoe_freelance/status/565312075090911232\n\nhttps://twitter.com/ismedsunarto/status/565127348920414209\n\nhttps://twitter.com/ayinz_07/status/565136434957254656\n\nhttps://twitter.com/marvell_putra/status/565084098738536448\n\nhttps://twitter.com/randytzar/status/565074017871495168\n\nhttps://twitter.com/delish8989/status/565055580675403776\n\nhttps://twitter.com/NBatawie/status/565048397564878849\n\nhttps://twitter.com/Jay_Pujay/status/565048564468834305\n\nhttps://twitter.com/cahayadunia55/status/565046357212135424\n\nhttps://twitter.com/darylcom2380/status/565010944707665921\n\nhttps://twitter.com/Mulyadi_oGe/status/565002498617131008\n\nhttps://twitter.com/benzsheregar/status/564993819003727872\n\nhttps://twitter.com/BonetFyan/status/564984774750527488\n\nhttps://twitter.com/ferrychow90/status/564959847020371968\n\nhttps://twitter.com/Mulyadi_oGe/status/564956269933387776\n\nhttps://twitter.com/Ndai_aza/status/564947147355729920\n\nhttps://twitter.com/darylcom2380/status/564946181151670272\n\nhttps://twitter.com/ms_ayu/status/564933578513854465\n\nhttps://twitter.com/OWLca/status/564765398067716096\n\nhttps://twitter.com/21Seagate/status/564679579835449344\n\nhttps://twitter.com/ratno_sanjoyo/status/564678784406675456\n\nhttps://twitter.com/andyfarand/status/564677724652843009\n\nhttps://twitter.com/msoleh518/status/564644425813336064\n\nhttps://twitter.com/mang_sel/status/564624792049827841\n\nhttps://twitter.com/galaxy_sakti/status/564607533071859713\n\nhttps://twitter.com/efaustina/status/564946953079750657\n\nhttps://twitter.com/BudiBislovers/status/564745911528460288\n\nhttps://twitter.com/andrieseru/status/564704157995515904\n\nhttps://twitter.com/turpin_etienne/status/564687467777765376\n\nhttps://twitter.com/Callvin_Cheung/status/564679290139066368\n\nhttps://twitter.com/ApLy_09/status/564661421141524482\n\nhttps://twitter.com/adimuliapradana/status/564641787461906432\n\nhttps://twitter.com/papoiibear/status/564630319048167425\n\nhttps://twitter.com/elvirapc/status/564628606924492802\n\nhttps://twitter.com/storania/status/564626804900503553\n\nhttps://twitter.com/IsiTaruna/status/564626600772120576\n\nhttps://twitter.com/pipigembrot/status/564625939989299201\n\nhttps://twitter.com/JrPlaceRwmangun/status/564604217285812224\n\nhttps://twitter.com/h_satya/status/564594003178311682\n\nhttps://twitter.com/nafisannie/status/562470708572217344\n\nhttps://twitter.com/tonnynduut/status/558521408930578434\n\nhttps://twitter.com/vierlieocktavia/status/558465856305262592\n\nhttps://twitter.com/dickyoskandar/status/558416759468728320\n\nhttps://twitter.com/amaryadi46/status/558415908826128385\n\nhttps://twitter.com/Lutfia_Fiaaa2/status/558413926006657026\n\nhttps://twitter.com/iqballsalasa/status/558389999385579520\n\nhttps://twitter.com/BISMAMedia/status/558377260005076992\n\nhttps://twitter.com/solichin_92663/status/558231069774733312\n\nhttps://twitter.com/ardiduker/status/558136861835534336\n\nhttps://twitter.com/papoiibear/status/548767265311563776\n\nhttps://twitter.com/10_laela/status/548740483241889792\n\nhttps://twitter.com/mziadz/status/548659262671450112\n\nhttps://twitter.com/solichin_92663/status/548643629829332993\n\nhttps://twitter.com/Helmi_jkt/status/545950637620355072\n\n<strong>Help and Evacuation</strong>\n\nhttps://twitter.com/tlenna/status/565666804748787712\n\nhttps://twitter.com/iwan_rahmat/status/565102500064133121\n\nhttps://twitter.com/urbanpoor/status/564981247340855297\n\nhttps://twitter.com/saya_masbro/status/564641566086541312\n\nhttps://twitter.com/SuryaGuang/status/565795875562074113\n\nhttps://twitter.com/ArgiaHijabella/status/565367645894373377\n\nhttps://twitter.com/monictika/status/565051338992533504\n\nhttps://twitter.com/gugunmuhammad1/status/558462196783382529\n\nhttps://twitter.com/inforelawan/status/565149039914516483\n\n<strong>Testimonial</strong>\n\nhttps://twitter.com/DubesAustralia/status/566544885231005697\n\nhttps://twitter.com/satyawinnie/status/564952296333656067\n\nhttps://twitter.com/kristories/status/564745536972926976\n\nhttps://twitter.com/GreenMapJakarta/status/564692926173675520\n\nhttps://twitter.com/yansen_li/status/564689439914356738\n\nhttps://twitter.com/rickmulia/status/564659355748810753\n\nhttps://twitter.com/rinni_w/status/564589091136606208\n\nhttps://twitter.com/rifti/status/564587089795104768\n\nhttps://twitter.com/yan_hr/status/564546679802560512\n\n<strong>Reports outside Jakarta</strong>\n\nhttps://twitter.com/AzizahKurniawa2/status/564706983970734081\n\nhttps://twitter.com/bayuhartono289/status/564691346720448512','Embed Tweets','','publish','open','open','','tweets','','','2015-02-17 12:18:43','2015-02-17 05:18:43','',0,'http://info.petajakarta.org/?page_id=216',0,'page','',0),(221,1,'2015-02-18 11:56:59','2015-02-18 04:56:59','<h5 class=\"Normal1\" style=\"text-align:left;\">by Dr. Tomas Holderness,</h5>\n<h5 class=\"Normal1\" style=\"text-align:left;\">Co-Principal Investigator, PetaJakarta.org</h5>\n<h5 class=\"Normal1\" style=\"text-align:left;\">Director, SMART OSGeo Lab</h5>\n<h5 class=\"Normal1\" style=\"text-align:left;\">& Geomatics Research Fellow, SMART Infrastructure Facility,</h5>\n<h5 class=\"Normal1\" style=\"text-align:left;\">University of Wollongong</h5>\n<h5 class=\"Normal1\" style=\"text-align:left;\">tomas@uow.edu.au</h5>\n<h5 class=\"Normal1\" style=\"text-align:left;\">@iHolderness</h5>\nOriginal article <a href=\"https://dl.dropboxusercontent.com/u/12960388/Holderness_IEEE_STM_2013.pdf\" target=\"_blank\">here</a>.\n<p style=\"text-align:left;\">Media sosial, didorong oleh penyerapan komputasi <em>mobile</em> besar-besaran, telah menyebabkan pergeseran sistematik dalam struktur komunikasi personal dalam skala global [1], [2]. Masyarakat di seluruh dunia sekarang dapat menyuarakan pendapat, melaporkan peristiwa, dan menghubungi orang lain dengan sangat mudah di era pra-Internet. Mulai dari peristiwa <em>Arab Spring </em>hingga <em>Occupy Movement</em> terlihat jelas bahwa media sosial mulai menjadi sistem yang terintegrasi dari infrastruktur kita. Secara kritis, banyak informasi ini didukung oleh konten geografis seperti perangkat seluler koordinat GPS, yang memungkinkan pengguna untuk menghubungkan media mereka ke lokasi tertentu di permukaan bumi.</p>\n<p style=\"text-align:left;\">Penyampaian pesan media sosial yang cepat menyebabkan media sosial sering digunakan selama bencana dimana informasi tentang lokasi sangat dibutuhkan [3], [4]. Pada saat penulisan ini, pasukan penggemar <em>online</em>, tenaga profesional, dan relawan sedang susah payah menciptakan peta Filipina yang terperinci sebagai upaya bantuan darurat setelah topan Haiyan [5]. Komunitas-komunitas virtual <em>online</em> ini, yang berpusat pada proyek-proyek seperti OpenStreetMap, secara efektif memanfaatkan Internet untuk produksi peta berbasis <em>crowdsourcing</em>. Walaupun biasanya jenis informasi ini telah didefinisikan sebagai \"informasi geografis sukarela\" atau <em>“volunteer geographic information” </em>(VGI) [6], meningkatnya minat dalam menggunakan media sosial sebagai media untuk data situasional <em>real-time</em> berbasis <em>crowdsourcing</em> selama krisis mengaburkan definisi tersebut. Sejumlah podium perangkat lunak yang berperan sebagai penghubung penyampaian informasi via jaringan media sosial selama keadaan darurat telah dikembangkan terkait konsep ini. Sistem seperti ini sangat lazim di negara-negara berkembang dimana komunikasi formal tradisional dan jaringan media dapat dibatasi. Ushahidi adalah suatu podium semacam itu yang memungkinkan pembuatan laporan otomatis dengan memonitor kata kunci pada jaringan media sosial untuk membuat antar muka yang <em>online, real-time,</em> dan <em>spatio-temporal</em> untuk kepedulian selama keadaan darurat [4].</p>\nhttps://twitter.com/iHolderness/status/514499701639757827\n<p style=\"text-align:left;\">Berbeda dengan VGI dan data berbasis <em>crowdsourcing</em>, hubungan orang dan tempat yang terekam dalam media sosial sehari-hari membentuk sumber informasi geografis yang <em>\"ambient\"</em> atau berkaitan dengan lingkungan sekitarnya [7]. Media \"geososial\" ini semakin sering diselidiki oleh para peneliti sebagai data sumber baru untuk analisis [1], [7], [8]. Sebagai contoh, Crooks et al. [1] menunjukkan kemampuan media untuk memetakan penyebaran gempa bumi di Amerika Serikat dengan menggunakan 21.362 <em>tweet</em> bergeolokasi. Hasil penelitian menunjukkan bahwa <em>tweet</em> pertama muncul 54 detik setelah gempa, diikuti oleh <em>tweet</em> selanjutnya yang sesuai pada lokasi dan waktu dengan jarak dari pusat gempa [1].</p>\n<p style=\"text-align:left;\">Dalam paradigma baru ini, media sosial secara efektif membentuk jaringan sensor bertenaga manusia, yang dapat digunakan untuk melengkapi sumber data geografis formal yang sudah ada untuk kepedulian situasional [1], [7] - [9]. Tantangan penelitian saat ini adalah untuk memanfaatkan potensi jaringan global sensor cerdas baru ini di luar bidang penanggulangan bencana.</p>\n<p style=\"text-align:left;\">Salah satu prospek paling menarik untuk media geososial adalah kehadirannya di seluruh dunia, termasuk pengadopsiannya secara luas oleh masyarakat miskin perkotaan di banyak negara-negara berkembang [2]. Selain itu, apabila kita memperluas definisi kita untuk memasukkan informasi dari VGI dan proyek-proyek seperti Ushahidi yang telah disebutkan sebelumnya, data yang dihasilkan sangat menakjubkan; media geososial menyediakan, untuk pertama kalinya, pandangan yang tidak terbatas ke dalam kehidupan jutaan rakyat termiskin di planet ini.</p>\n<p style=\"text-align:left;\">Seiring dengan migrasi masyarakat miskin pedesaan ke kota untuk mencari pekerjaan sebagai dampak globalisasi, [2], [10], urbanisasi telah menjadi identik dengan pertumbuhan daerah kumuh [11]. Daerah kumuh muncul di negara-negara berkembang sebagai pusat infrastruktur informal dan tidak terencana [11]. Karena keadaan infrastruktur yang buruk (misalnya, perumahan, air, sanitasi) dan sumber daya yang terbatas, populasi pemukiman ini akan menanggung beban tantangan iklim, ekonomi, dan sosial di abad ke-21[2], [12]. Situasi tersebut dipersulit dengan kurangnya informasi terkait masyarakat dan infrastruktur di daerah kumuh karena sifat informal mereka. Namun, apabila kita ingin memperbaiki kondisi di 200.000 daerah kumuh di seluruh dunia [10], dan mengurangi dampak dari perubahan yang signifikan, kita perlu lebih memahami sistem perkotaan yang informal ini. Penelitian seperti ini, secara krusial, perlu melibatkan anggota dari setiap masyarakat secara terbuka, untuk memahami kompleksitas interaksi antara penduduk, sumber daya, dan struktur perkotaan [13].</p>\nhttps://twitter.com/iHolderness/status/564618563525152769\n<p style=\"text-align:left;\">Hipotesis kami adalah bahwa media geososial mempunyai potensi untuk berperan sebagai sumber data untuk model sistem perkotaan. Model tersebut dapat digunakan baik untuk menyelidiki cara-cara untuk memperbaiki situasi saat ini atau mengukur bagaimana respon sistem terhadap perubahan. Landasan untuk penelitian ini adalah bahwa banyak masyarakat di daerah kumuh telah menggunakan VGI dan media sosial untuk mengambil informasi geografis tentang infrastruktur dan populasi di pemukiman mereka, serta secara terbuka berbagi data ini di internet. Pada hakikatnya, penelitian kami saat ini fokus dalam mengembangkan metodologi yang diperlukan untuk memanfaatkan data ini dan menggunakannya untuk analisis sistem perkotaan. Penelitian ini menggunakan data dari dua kota: Nairobi, Kenya dan Jakarta, Indonesia. Di Nairobi, penduduk Kibera membuat proyek <em>Map Kibera</em> untuk menciptakan peta daerah kumuh pertama yang menyediakan data baru dan tak ternilai terkait lokasi dan penyebaran infrastruktur di pemukiman tersebut [14]. Oleh karena itu, dengan hanya menggunakan data yang disediakan oleh <em>Map Kibera</em> dan <em>Open Street Map</em> kami berhasil membangun sebuah model <em>spatio-topological</em> jaringan jalan Kibera dan sekitar Nairobi. Teknik-teknik analisis jaringan GIS kemudian digunakan untuk mengoptimalkan jaringan sanitasi berbasis jalan untuk toilet umum di Kibera [15]. Hal baru dari proyek ini adalah kemampuannya untuk menerapkan teknik GIS, yang umumnya digunakan di negara-negara maju yang kaya data ke dalam konteks negara-negara berkembang untuk membantu memecahkan masalah teknis.</p>\n<p style=\"text-align:left;\">Tahapan selanjutnya dari penelitian ini adalah untuk menjalin laporan situasional terkait infrastruktur dari media sosial bersama dengan model jaringan perkotaan. Studi kasus untuk hal ini adalah Jakarta, di mana masyarkat di daerah-daerah kumuh perkotaan di sepanjang tepi sungai menggunakan media sosial dan teks SMS untuk memperingatkan tetangga tentang naiknya banjir dan gagalnya pertahanan banjir. Kami sedang mengembangkan seperangkat alat untuk mengambil dan menginterpretasi data ini, dengan menggunakan paradigma jaringan sensor untuk memperluas dan mengembangkan model-model jaringan sungai yang sudah ada selama banjir.</p>\n<p style=\"text-align:left;\">Sebagai kesimpulan, meskipun masih terdapat tantangan-tantangan penelitian yang signifikan dalam bidang yang sedang berkembang ini, media geososial mempunyai potensi untuk menyediakan sumber data baru untuk memahami sistem perkotaan yang kompleks dalam pemukiman informal. Pemahaman seperti ini merupakan kunci bagi para peneliti sehingga para peneliti dapat memberikan strategi-strategi adaptasi nyata kepada mereka yang berada di garis depan perubahan global.</p>\nhttps://twitter.com/iHolderness/status/565669513623248897\n<p style=\"text-align:left;\"><strong>Referensi</strong></p>\n<p style=\"text-align:left;\">[1] A. Crooks et al., “#Earthquake: Twitter as a distributed sensor system,” <em>Transactions in GIS</em>, 2012.</p>\n<p style=\"text-align:left;\">[2] P. Mason, <em>Why It’s Still Kicking Off Everywhere: The New Global Revolutions</em>. London, U.K.: Verso, 2013.</p>\n<p style=\"text-align:left;\">[3] S. Intagorn, A. Plangprasopchok, dan K. Lerman, “Harvesting geospatial knowledge from social metadata,” dalam <em>Proc. 7th ISCRAM</em> <em>Conf.</em>, 2010.</p>\n<p style=\"text-align:left;\">[4] M. Zook et al., “Volunteered geographic information and crowdsourcing disaster relief: A case study of the Haitian earthquake,” <em>World Medical & Health Policy</em>, vol. 2, no. 2, pp. 7–33, 2010.</p>\n<p style=\"text-align:left;\">[5] A. Hern, “Online volunteers map Philippines after typhoon Haiyan,” <em>The Guardian</em>, Nov. 15, 2013; http://www.theguardian.com/technology/2013/nov/15/online- volunteers- map- philippines-aftertyphoon-haiyan.</p>\n<p style=\"text-align:left;\">[6] M. Haklay, “How good is volunteered geographical information? A comparative study of OpenStreetMap and Ordnance Survey datasets,” <em>Environment and planning. B, Planning & Design</em>, vol. 37, no. 4, p. 682, 2010.</p>\n<p style=\"text-align:left;\">[7] A. Stefanidis, A. Crooks, dan J. Radzikowski, “Harvesting ambient geospatial information from social media feeds,” <em>GeoJournal</em>, pp. 1–20, 2012.</p>\n<p style=\"text-align:left;\">[8] Z. Cheng et al., “Exploring millions of footprints in location sharing services.,” <em>ICWSM</em>, vol. 2011, pp. 81–88, 2011.</p>\n<p style=\"text-align:left;\">[9] D. Sui dan M. Goodchild, “The convergence of GIS and social media: challenges for GIScience,” <em>International J. Geographical</em> <em>Information Science</em>, vol. 25, no. 11, pp. 1737–1748, 2011.</p>\n<p style=\"text-align:left;\">[10] M. Davis, <em>Planet of Slums</em>. London, U.K.: Verso, 2006.</p>\n<p style=\"text-align:left;\">[11] J. B. Isunju et al., “Socio-economic aspects of improved sanitation in slums: A Review,” <em>Public Health</em>, vol. 125, no. 6, pp. 368–376, 2011.</p>\n<p style=\"text-align:left;\">[12] I. Douglas et al., “Unjust waters: Climate change, flooding, and the urban poor in Africa,” <em>Environment and Urbanization</em>, vol. 20, no. 1, pp. 187–205, 2008.</p>\n<p style=\"text-align:left;\">[13] E. Turpin, A. Bobbette, dan M. Miller, Eds., <em>Jakarta: Architecture + Adaptation</em>. Depok, Indonesia: Universitas Indonesia Press, 2013.</p>\n<p style=\"text-align:left;\">[14] E. Hagen, “Putting Nairobi’s slums on the map,” <em>Development Outreach</em>, vol. 12, pp. 41–43, 2010.</p>\n<p style=\"text-align:left;\">[15] T. Holderness et al., “An evaluation of spatial network modeling to aid sanitation planning in informal settlements using crowd-sourced data,” dalam <em>Proc. Int. Symp. for Next Generation Infrastructure, </em>2013.</p>','Geosocial Intelligence','','publish','open','open','','geosocial-intelligence','','','2015-02-18 11:56:59','2015-02-18 04:56:59','',0,'http://info.petajakarta.org/?page_id=221',0,'page','',0),(232,1,'2015-02-23 12:14:37','2015-02-23 05:14:37','https://twitter.com/turpin_etienne/status/441113668051140608\n\nhttps://twitter.com/Akbarecht/status/441113669443665921\n\nhttps://twitter.com/Akbarecht/status/441112629038157824\n\nhttps://twitter.com/Akbarecht/status/441112377170223104\n\nhttps://twitter.com/petajkt/status/441111944989126656\n\nhttps://twitter.com/petajkt/status/441111384785309696\n\nhttps://twitter.com/Akbarecht/status/441110389342732288\n\nhttps://twitter.com/Akbarecht/status/441109511500083200\n\nhttps://twitter.com/petajkt/status/441108171512242176\n\nhttps://twitter.com/Akbarecht/status/441106664947585024\n\nhttps://twitter.com/ArielGlenesk/status/441106064251965440\n\nhttps://twitter.com/Akbarecht/status/441105619429244928\n\nhttps://twitter.com/Akbarecht/status/441105597304287232\n\nhttps://twitter.com/Akbarecht/status/441105581290422272\n\nhttps://twitter.com/ArielGlenesk/status/441105152351547392\n\nhttps://twitter.com/Akbarecht/status/441104883362435073\n\nhttps://twitter.com/turpin_etienne/status/441104030178111488\n\nhttps://twitter.com/Akbarecht/status/441103837445632001\n\nhttps://twitter.com/Akbarecht/status/441103477280751617\n\nhttps://twitter.com/Akbarecht/status/441103142705307648\n\nhttps://twitter.com/Akbarecht/status/441102663715782656\n\nhttps://twitter.com/Akbarecht/status/441102473806114816\n\nhttps://twitter.com/Akbarecht/status/441102205118988288\n\nhttps://twitter.com/Akbarecht/status/441101545212366848\n\nhttps://twitter.com/turpin_etienne/status/441101413641248768\n\nhttps://twitter.com/Akbarecht/status/441101293084360705\n\nhttps://twitter.com/Akbarecht/status/441100913076236288\n\nhttps://twitter.com/turpin_etienne/status/441100627972616192\n\nhttps://twitter.com/Akbarecht/status/441100579503235072\n\nhttps://twitter.com/Akbarecht/status/441100425844899840\n\nhttps://twitter.com/Akbarecht/status/441100051314520065\n\nhttps://twitter.com/Akbarecht/status/441099804995629056\n\nhttps://twitter.com/Akbarecht/status/441099524539305984\n\nhttps://twitter.com/Akbarecht/status/441099138067750912\n\nhttps://twitter.com/Akbarecht/status/441098920911847424\n\nhttps://twitter.com/Akbarecht/status/441098717458747392\n\nhttps://twitter.com/ritapd/status/441098442253672448\n\nhttps://twitter.com/ritapd/status/441090453908103169\n\nhttps://twitter.com/ritapd/status/441090065591062528\n\nhttps://twitter.com/ArielGlenesk/status/441080670601748481\n\nhttps://twitter.com/turpin_etienne/status/441062967237296129\n\nhttps://twitter.com/petajkt/status/441053880978112512\n\nhttps://twitter.com/Akbarecht/status/441044735243722752\n\nhttps://twitter.com/turpin_etienne/status/441038728794865664\n\nhttps://twitter.com/turpin_etienne/status/441036192327290880\n\nhttps://twitter.com/turpin_etienne/status/441036192327290880\n\nhttps://twitter.com/turpin_etienne/status/434326454814253056','Grasp-Biodiversity','','publish','open','open','','grasp-biodiversity','','','2015-02-23 12:14:37','2015-02-23 05:14:37','',0,'http://info.petajakarta.org/?page_id=232',0,'page','',0),(233,1,'2015-07-06 03:44:54','2015-07-06 03:44:54','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','open','open','','1-revision-v1','','','2015-07-06 03:44:54','2015-07-06 03:44:54','',1,'http://sriumiyati.com/index.php/2015/07/06/1-revision-v1/',0,'revision','',0),(234,1,'2015-07-06 05:08:23','2015-07-06 05:08:23','<i>Student Flood Research Team Group B</i> arrived in Jakarta in January 2015 to continue the flood mapping being undertaken by the PetaJakarta.org project. This trip was supported by the Australian Government through the <i>New Colombo Plan</i>.\n\n[caption id=\"attachment_161\" align=\"aligncenter\" width=\"545\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/15765103814_649cc6bb09_k.jpg\"><img class=\"wp-image-161 size-large\" src=\"https://petajakartablog.files.wordpress.com/2015/02/15765103814_649cc6bb09_k.jpg?w=545\" alt=\"Student Flood Team Group B at the emergency evacuation shelter at Bukit Duri with BPBD Jakarta and BNPB Indonesia\" width=\"545\" height=\"363\" /></a> <em>Student Flood Research Team Group B</em> at the emergency evacuation shelter at Bukit Duri with BPBD Jakarta and BNPB Indonesia.[/caption]\n\n[caption id=\"attachment_162\" align=\"aligncenter\" width=\"545\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/16200036060_3db224152e_k.jpg\"><img class=\"wp-image-162 size-large\" src=\"https://petajakartablog.files.wordpress.com/2015/02/16200036060_3db224152e_k.jpg?w=545\" alt=\"Students experiencing flood during their visit to Bukit Duri on January 23rd\" width=\"545\" height=\"409\" /></a> Students experience the extent of the impact of flooding on the day-to-day activities of Jakarta residents during their visit to Bukit Duri on January 23rd.[/caption]\n\nhttps://twitter.com/basuki_btp/status/558461110752268289\n\nGovernor Ahok encouraged Jakarta citizens to report flood conditions around them via Twitter to @petajkt using #banjir.','Student Flood Research Team Group B','','inherit','open','open','','160-revision-v1','','','2015-07-06 05:08:23','2015-07-06 05:08:23','',160,'http://sriumiyati.com/index.php/2015/07/06/160-revision-v1/',0,'revision','',0),(235,1,'2015-07-06 05:08:30','2015-07-06 05:08:30','A team of ten students – <i>Student Flood Research Team Group A</i> – arrived in Jakarta prior to the official launch of PetaJakarta.org in December 2015 to commence mapping of the flood-stricken areas of the city. PetaJakarta.org is an applied research project led by the SMART Infrastructure Facility at the University of Wollongong.\n\n[caption id=\"attachment_154\" align=\"aligncenter\" width=\"2048\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/15861856331_4428056ec6_k.jpg\"><img class=\"wp-image-154 size-full\" src=\"https://petajakartablog.files.wordpress.com/2015/02/15861856331_4428056ec6_k.jpg\" alt=\"Students Flood Team Group A ready to help mapping flood in Jakarta\" width=\"2048\" height=\"1365\" /></a> <em>Student Flood Research Team Group A</em> arrive in Jakarta, ready to start mapping flooding in the city. <em>Photo Credit:</em> Etienne Turpin.[/caption]\n\n[caption id=\"attachment_153\" align=\"aligncenter\" width=\"5184\"]<a href=\"https://petajakartablog.files.wordpress.com/2015/02/15946552566_dda9a88a25_o.jpg\"><img class=\"wp-image-153 size-full\" src=\"https://petajakartablog.files.wordpress.com/2015/02/15946552566_dda9a88a25_o.jpg\" alt=\"\" width=\"5184\" height=\"3456\" /></a> Students took to the water in boats to inspect the Ciliwung River with BPBD Jakarta. <em>Photo Credit: Etienne Turpin.</em>[/caption]','Student Flood Research Team Group A','','inherit','open','open','','152-revision-v1','','','2015-07-06 05:08:30','2015-07-06 05:08:30','',152,'http://sriumiyati.com/index.php/2015/07/06/152-revision-v1/',0,'revision','',0),(236,1,'2015-07-06 05:11:03','2015-07-06 05:11:03','<img src=\"https://petajakartablog.files.wordpress.com/2014/12/31541-1420488025799.jpg\" alt=\"\" />\n \n\n<p>The SMART Infrastructure Facility from the University of Wollongong, along with Twitter Inc., and BPBD DKI Jakarta, have launched PetaJakarta.org, a cutting-edge research project that leverages community crowdsourcing to map flood-related Tweets and provide live updates to BPBD for faster response times during flooding emergencies. This is a first-in-the-world collaboration between Twitter, a university and a disaster management agency to use social data to both build a working model and provide real-time response to a natural disaster. </p><p>Using what the project co-directors Dr Etienne Turpin and Dr Tomas Holderness call “geosocial intelligence engineering,” the university’s free and open source platform will turn geo-tagged Tweets into valuable data that can be used by Indonesian citizens and government agencies to identify, navigate, and respond more quickly to seasonal flooding across Jakarta with unprecedented detail. More information can be found at <a target=\"_blank\" href=\"http://petajakarta.org/\">PetaJakarta.org</a>. </p><p>Millions of Twitter users in Jakarta can participate in this public safety initiative in three easy steps on their mobile device:</p><p>1. Turn on “location services” or add a geo-tag by clicking on the pin icon when composing<br />a Tweet on your iOS/Android mobile device.</p><p>2. Take or add a photo by clicking on the camera icon when composing a Tweet on your<br />iOS/Android mobile device.</p><p>3. Send the Tweet to @petajkt with the #banjir hashtag and a short description of the<br />flooding situation.</p>\n\nhttps://twitter.com/basuki_btp/status/539703116992503808\n\nhttps://twitter.com/twitter/status/540208387024113665\n\n<p><a target=\"_blank\" href=\"https://dl.dropboxusercontent.com/u/12960388/PetaJakarta_PressRelease_20141203.pdf\">Download Press Release</a></p>','Project Officially Launched in Jakarta, Indonesia','','inherit','open','open','','18-revision-v1','','','2015-07-06 05:11:03','2015-07-06 05:11:03','',18,'http://sriumiyati.com/index.php/2015/07/06/18-revision-v1/',0,'revision','',0),(237,1,'2015-07-06 05:20:04','2015-07-06 05:20:04','<img src=\"https://petajakartablog.files.wordpress.com/2014/12/31541-1420488025799.jpg\" alt=\"\" />\r\n\r\nThe SMART Infrastructure Facility from the University of Wollongong, along with Twitter Inc., and BPBD DKI Jakarta, have launched PetaJakarta.org, a cutting-edge research project that leverages community crowdsourcing to map flood-related Tweets and provide live updates to BPBD for faster response times during flooding emergencies. This is a first-in-the-world collaboration between Twitter, a university and a disaster management agency to use social data to both build a working model and provide real-time response to a natural disaster.\r\n\r\nUsing what the project co-directors Dr Etienne Turpin and Dr Tomas Holderness call “geosocial intelligence engineering,” the university’s free and open source platform will turn geo-tagged Tweets into valuable data that can be used by Indonesian citizens and government agencies to identify, navigate, and respond more quickly to seasonal flooding across Jakarta with unprecedented detail. More information can be found at <a href=\"http://petajakarta.org/\" target=\"_blank\">PetaJakarta.org</a>.\r\n\r\nMillions of Twitter users in Jakarta can participate in this public safety initiative in three easy steps on their mobile device:\r\n\r\n1. Turn on “location services” or add a geo-tag by clicking on the pin icon when composing\r\na Tweet on your iOS/Android mobile device.\r\n\r\n2. Take or add a photo by clicking on the camera icon when composing a Tweet on your\r\niOS/Android mobile device.\r\n\r\n3. Send the Tweet to @petajkt with the #banjir hashtag and a short description of the\r\nflooding situation.\r\n\r\nhttps://twitter.com/basuki_btp/status/539703116992503808\r\n\r\nhttps://twitter.com/twitter/status/540208387024113665\r\n\r\n<a href=\"https://dl.dropboxusercontent.com/u/12960388/PetaJakarta_PressRelease_20141203.pdf\" target=\"_blank\">Download Press Release</a>','Project Officially Launched in Jakarta, Indonesia','','inherit','open','open','','18-revision-v1','','','2015-07-06 05:20:04','2015-07-06 05:20:04','',18,'http://sriumiyati.com/index.php/2015/07/06/18-revision-v1/',0,'revision','',0),(238,1,'2015-07-06 05:31:33','2015-07-06 05:31:33','','Blog','','publish','open','open','','blog-2','','','2015-07-06 05:31:33','2015-07-06 05:31:33','',0,'http://sriumiyati.com/?p=238',1,'nav_menu_item','',0),(239,1,'2015-07-06 13:06:12','2015-07-06 13:06:12','','cropped-petajakarta_border_top2','','inherit','open','open','','cropped-petajakarta_border_top2','','','2015-07-06 13:06:12','2015-07-06 13:06:12','',0,'http://sriumiyati.com/wp-content/uploads/2015/07/cropped-petajakarta_border_top2.png',0,'attachment','image/png',0),(241,1,'2015-07-07 08:14:31','2015-07-07 08:14:31','Visiting researcher Frank Sedlar (@f_sedlar) of University of Michigan explains how he is using cameras and computer algorithms to measure the garbage in the rivers of Jakarta, Indonesia.\r\n\r\nhttp://www.youtube.com/watch?v=hnXI-LJPzYM\r\n\r\nEnglish version of the video is available <a href=\"https://www.youtube.com/watch?v=TG-KBgWFI0k\">here</a>\r\n\r\n \r\n','Trash Mapping by Frank Sedlar','','publish','open','open','','trash-mapping-by-frank-sedlar','','','2015-07-07 22:14:25','2015-07-07 22:14:25','',0,'http://sriumiyati.com/?p=241',0,'post','',0),(242,1,'2015-07-07 08:14:31','2015-07-07 08:14:31','Visiting researcher Frank Sedlar (@f_sedlar) of University of Michigan explains how he is using cameras and computer algorithms to measure the garbage in the rivers of Jakarta, Indonesia.\r\n\r\n[youtube https://www.youtube.com/watch?v=hnXI-LJPzYM&w=560&h=315]\r\n\r\nEnglish version of the video is available <a href=\"https://www.youtube.com/watch?v=TG-KBgWFI0k\">here</a>','Trash Mapping by Frank Sedlar','','inherit','open','open','','241-revision-v1','','','2015-07-07 08:14:31','2015-07-07 08:14:31','',241,'http://sriumiyati.com/index.php/2015/07/07/241-revision-v1/',0,'revision','',0),(243,1,'2015-07-07 08:22:08','2015-07-07 08:22:08','Visiting researcher Frank Sedlar (@f_sedlar) of University of Michigan explains how he is using cameras and computer algorithms to measure the garbage in the rivers of Jakarta, Indonesia.\n\n[youtube https://www.youtube.com/watch?v=hnXI-LJPzYM&w=560&h=315]\n\nEnglish version of the video is available <a href=\"https://www.youtube.com/watch?v=TG-KBgWFI0k\">here</a>\n\n \n\n ','Trash Mapping by Frank Sedlar','','inherit','open','open','','241-autosave-v1','','','2015-07-07 08:22:08','2015-07-07 08:22:08','',241,'http://sriumiyati.com/index.php/2015/07/07/241-autosave-v1/',0,'revision','',0),(244,1,'2015-07-07 08:22:42','2015-07-07 08:22:42','Visiting researcher Frank Sedlar (@f_sedlar) of University of Michigan explains how he is using cameras and computer algorithms to measure the garbage in the rivers of Jakarta, Indonesia.\r\n\r\nhttp://www.youtube.com/watch?v=hnXI-LJPzYM\r\n\r\nEnglish version of the video is available <a href=\"https://www.youtube.com/watch?v=TG-KBgWFI0k\">here</a>\r\n\r\n \r\n','Trash Mapping by Frank Sedlar','','inherit','open','open','','241-revision-v1','','','2015-07-07 08:22:42','2015-07-07 08:22:42','',241,'http://sriumiyati.com/index.php/2015/07/07/241-revision-v1/',0,'revision','',0),(246,1,'2015-07-07 08:54:52','2015-07-07 08:54:52','','15765103814_649cc6bb09_k','','inherit','open','open','','15765103814_649cc6bb09_k-3','','','2015-07-07 08:54:52','2015-07-07 08:54:52','',160,'http://sriumiyati.com/wp-content/uploads/2015/02/15765103814_649cc6bb09_k1.jpg',0,'attachment','image/jpeg',0),(248,1,'2015-07-07 22:13:46','2015-07-07 22:13:46','','15765103814_649cc6bb09_k','','inherit','open','open','','15765103814_649cc6bb09_k-2','','','2015-07-07 22:13:46','2015-07-07 22:13:46','',160,'http://sriumiyati.com/wp-content/uploads/2015/02/15765103814_649cc6bb09_k2.jpg',0,'attachment','image/jpeg',0),(249,1,'2015-07-07 22:18:21','2015-07-07 22:18:21','','15861856331_4428056ec6_k','','inherit','open','open','','15861856331_4428056ec6_k-2','','','2015-07-07 22:18:21','2015-07-07 22:18:21','',152,'http://sriumiyati.com/wp-content/uploads/2015/02/15861856331_4428056ec6_k1.jpg',0,'attachment','image/jpeg',0),(250,1,'2015-07-07 22:20:01','2015-07-07 22:20:01','','31541-1420488025799','','inherit','open','open','','31541-1420488025799-2','','','2015-07-07 22:20:01','2015-07-07 22:20:01','',18,'http://sriumiyati.com/wp-content/uploads/2014/12/31541-1420488025799.jpg',0,'attachment','image/jpeg',0),(251,1,'2015-07-12 06:58:19','2015-07-12 06:58:19','Frank Sedlar, a visiting researcher with PetaJakarta.org from the University of Michigan has been awarded a Fulbright Fellowship to Indonesia in Engineering, the United States Department of State and the J. William Fulbright Foreign Scholarship Board announced recently. He is one of over 1,900 U.S. citizens who will travel abroad for the 2015-2016 academic year through the Fulbright U.S. Student Program.\r\n\r\nMr. Sedlar will use his Fulbright Fellowship to continue working with PetaJakarta.org and the DKI Jakarta government to better understand and mitigate Jakarta’s severe flooding. In collaboration with Badan Penanggulangan Bencana Daerah (BPBD) DKI Jakarta Mr. Sedlar will build and install a number of sensors around pump houses and flood gates throughout Central Jakarta to measure flooding parameters and optimize the operation of these critical points of flood control. Taking to the sky Mr. Sedlar will then work with the Office of the Mayor of East Jakarta to coordinate an Urban Drone Research Program. Dr. Komara Djaja, of the Urban Studies Department at the University of Indonesia will serve as his research mentor during his Fulbright Fellowship.\r\n\r\nOver the previous two years as a visiting researcher with PetaJakarta.org Mr. Sedlar has worked to develop new technologies to address Jakarta’s flooding. Working with students from the University of Indonesia to BPBD DKI Jakarta, to residents of a number of kampungs throughout Jakarta, Mr. Sedlar has researched how to measure the garbage choking flood canals, mapped informal settlements with drones, and worked to incorporate drones into flood management strategies. His work can be found at frank-sedlar.com\r\n\r\nhttps://www.youtube.com/watch?v=M5N0NMpKp3A\r\n\r\n\r\n\r\nhttps://www.youtube.com/watch?v=TG-KBgWFI0k\r\n\r\nVideo dalam Bahasa Indonesia dapat dilihat di sini\r\n\r\nhttps://www.youtube.com/watch?v=qD9FBO5YKTI\r\n\r\nVideo dalam Bahasa Indonesia dapat dilihat di sini\r\n\r\nThe Fulbright Program is the flagship international educational exchange program sponsored by the U.S. government and is designed to increase mutual understanding between the people of the United States and the people of other countries. The primary source of funding for the Fulbright Program is an annual appropriation made by the U.S. Congress to the U.S. Department of State, Bureau of Educational and Cultural Affairs. Recipients of Fulbright grants are selected on the basis of academic or professional achievement, as well as demonstrated leadership potential in their fields. The Program operates in over 160 countries worldwide.\r\n\r\nPeneliti Tamu Frank Sedlar Mendapat Beasiswa Fulbright untuk Melanjutkan Penelitian Drone di Jakarta\r\n\r\nFrank Sedlar, peneliti tamu untuk PetaJakarta.org dari Universitas Michigan, telah dianugerahi Beasiswa Fulbright ke Indonesia dalam bidang Teknik oleh Departemen Luar Negeri Amerika Serikat dan Dewan Beasiswa Luar Negeri (Foreign Scholarship Board) J. William Fulbright yang baru-baru ini diumumkan. Dia adalah salah satu dari lebih dari 1.900 warga AS yang akan berangkat ke luar negeri untuk tahun akademik 2015-2016 melalui Fulbright U.S. Student Program.\r\n\r\nDengan Beasiswa Fulbright yang didapatkannya, Sedlar akan lanjut bekerja dengan PetaJakarta.org dan Pemerintah DKI Jakarta untuk lebih memahami dan mengurangi dampak banjir di Jakarta. Bekerja sama dengan Badan Penanggulangan Bencana Daerah (BPBD) DKI Jakarta, Sedlar akan membangun dan memasang sejumlah sensor di sekitar rumah pompa dan pintu air di seluruh wilayah Jakarta Pusat untuk mengukur parameter banjir dan mengoptimalkan pengoperasian titik-titik kritis pengendalian banjir ini. Lebih jauh lagi, Sedlar kemudian akan bekerja sama dengan Kantor Walikota Jakarta Timur untuk mengkoordinasikan Program Penelitian Perkotaan dengan Menggunakan Drone. Dr. Komara Djaja, dari Departemen Studi Perkotaan Universitas Indonesia akan menjadi mentor penelitian Sedlar selama masa Beasiswa Fulbright-nya.\r\n\r\nSelama dua tahun sebelumnya menjadi peneliti tamu untuk PetaJakarta.org, Sedlar telah bekerja untuk mengembangkan teknologi-teknologi baru untuk mengatasi banjir di Jakarta. Bekerja sama dengan mahasiswa dari Universitas Indonesia, BPBD DKI Jakarta, hingga warga dari sejumlah kampung di seluruh Jakarta, Sedlar telah meneliti bagaimana mengukur kanal banjir yang dipenuhi sampah, memetakan pemukiman informal dengan menggunakan drone, dan bekerja untuk menggabungkan drone dalam strategi manajemen banjir. Karyanya dapat dilihat di frank-sedlar.com\r\n\r\nProgram Fulbright adalah program pertukaran pendidikan internasional unggulan yang disponsori oleh pemerintah AS dan dirancang untuk meningkatkan saling pemahaman antara masyarakat Amerika Serikat dan orang-orang dari negara-negara lain. Sumber utama pendanaan untuk Program Fulbright adalah alokasi tahunan yang dibuat oleh Kongres AS untuk Departemen Luar Negeri AS, Biro Urusan Pendidikan dan Kebudayaan. Penerima hibah Fulbright dipilih atas dasar prestasi akademis atau profesional, serta potensi kepemimpinan yang ditunjukkan dalam bidangnya. Program ini beroperasi di lebih dari 160 negara di seluruh dunia.','Visiting Researcher Frank Sedlar Wins Fulbright Fellowship to Continue Drone Research in Jakarta','','publish','open','open','','visiting-researcher-frank-sedlar-wins-fulbright-fellowship-to-continue-drone-research-in-jakarta','','','2015-07-12 06:58:19','2015-07-12 06:58:19','',0,'http://sriumiyati.com/?p=251',0,'post','',0),(252,1,'2015-07-12 06:58:19','2015-07-12 06:58:19','Frank Sedlar, a visiting researcher with PetaJakarta.org from the University of Michigan has been awarded a Fulbright Fellowship to Indonesia in Engineering, the United States Department of State and the J. William Fulbright Foreign Scholarship Board announced recently. He is one of over 1,900 U.S. citizens who will travel abroad for the 2015-2016 academic year through the Fulbright U.S. Student Program.\r\n\r\nMr. Sedlar will use his Fulbright Fellowship to continue working with PetaJakarta.org and the DKI Jakarta government to better understand and mitigate Jakarta’s severe flooding. In collaboration with Badan Penanggulangan Bencana Daerah (BPBD) DKI Jakarta Mr. Sedlar will build and install a number of sensors around pump houses and flood gates throughout Central Jakarta to measure flooding parameters and optimize the operation of these critical points of flood control. Taking to the sky Mr. Sedlar will then work with the Office of the Mayor of East Jakarta to coordinate an Urban Drone Research Program. Dr. Komara Djaja, of the Urban Studies Department at the University of Indonesia will serve as his research mentor during his Fulbright Fellowship.\r\n\r\nOver the previous two years as a visiting researcher with PetaJakarta.org Mr. Sedlar has worked to develop new technologies to address Jakarta’s flooding. Working with students from the University of Indonesia to BPBD DKI Jakarta, to residents of a number of kampungs throughout Jakarta, Mr. Sedlar has researched how to measure the garbage choking flood canals, mapped informal settlements with drones, and worked to incorporate drones into flood management strategies. His work can be found at frank-sedlar.com\r\n\r\nhttps://www.youtube.com/watch?v=M5N0NMpKp3A\r\n\r\n\r\n\r\nhttps://www.youtube.com/watch?v=TG-KBgWFI0k\r\n\r\nVideo dalam Bahasa Indonesia dapat dilihat di sini\r\n\r\nhttps://www.youtube.com/watch?v=qD9FBO5YKTI\r\n\r\nVideo dalam Bahasa Indonesia dapat dilihat di sini\r\n\r\nThe Fulbright Program is the flagship international educational exchange program sponsored by the U.S. government and is designed to increase mutual understanding between the people of the United States and the people of other countries. The primary source of funding for the Fulbright Program is an annual appropriation made by the U.S. Congress to the U.S. Department of State, Bureau of Educational and Cultural Affairs. Recipients of Fulbright grants are selected on the basis of academic or professional achievement, as well as demonstrated leadership potential in their fields. The Program operates in over 160 countries worldwide.\r\n\r\nPeneliti Tamu Frank Sedlar Mendapat Beasiswa Fulbright untuk Melanjutkan Penelitian Drone di Jakarta\r\n\r\nFrank Sedlar, peneliti tamu untuk PetaJakarta.org dari Universitas Michigan, telah dianugerahi Beasiswa Fulbright ke Indonesia dalam bidang Teknik oleh Departemen Luar Negeri Amerika Serikat dan Dewan Beasiswa Luar Negeri (Foreign Scholarship Board) J. William Fulbright yang baru-baru ini diumumkan. Dia adalah salah satu dari lebih dari 1.900 warga AS yang akan berangkat ke luar negeri untuk tahun akademik 2015-2016 melalui Fulbright U.S. Student Program.\r\n\r\nDengan Beasiswa Fulbright yang didapatkannya, Sedlar akan lanjut bekerja dengan PetaJakarta.org dan Pemerintah DKI Jakarta untuk lebih memahami dan mengurangi dampak banjir di Jakarta. Bekerja sama dengan Badan Penanggulangan Bencana Daerah (BPBD) DKI Jakarta, Sedlar akan membangun dan memasang sejumlah sensor di sekitar rumah pompa dan pintu air di seluruh wilayah Jakarta Pusat untuk mengukur parameter banjir dan mengoptimalkan pengoperasian titik-titik kritis pengendalian banjir ini. Lebih jauh lagi, Sedlar kemudian akan bekerja sama dengan Kantor Walikota Jakarta Timur untuk mengkoordinasikan Program Penelitian Perkotaan dengan Menggunakan Drone. Dr. Komara Djaja, dari Departemen Studi Perkotaan Universitas Indonesia akan menjadi mentor penelitian Sedlar selama masa Beasiswa Fulbright-nya.\r\n\r\nSelama dua tahun sebelumnya menjadi peneliti tamu untuk PetaJakarta.org, Sedlar telah bekerja untuk mengembangkan teknologi-teknologi baru untuk mengatasi banjir di Jakarta. Bekerja sama dengan mahasiswa dari Universitas Indonesia, BPBD DKI Jakarta, hingga warga dari sejumlah kampung di seluruh Jakarta, Sedlar telah meneliti bagaimana mengukur kanal banjir yang dipenuhi sampah, memetakan pemukiman informal dengan menggunakan drone, dan bekerja untuk menggabungkan drone dalam strategi manajemen banjir. Karyanya dapat dilihat di frank-sedlar.com\r\n\r\nProgram Fulbright adalah program pertukaran pendidikan internasional unggulan yang disponsori oleh pemerintah AS dan dirancang untuk meningkatkan saling pemahaman antara masyarakat Amerika Serikat dan orang-orang dari negara-negara lain. Sumber utama pendanaan untuk Program Fulbright adalah alokasi tahunan yang dibuat oleh Kongres AS untuk Departemen Luar Negeri AS, Biro Urusan Pendidikan dan Kebudayaan. Penerima hibah Fulbright dipilih atas dasar prestasi akademis atau profesional, serta potensi kepemimpinan yang ditunjukkan dalam bidangnya. Program ini beroperasi di lebih dari 160 negara di seluruh dunia.','Visiting Researcher Frank Sedlar Wins Fulbright Fellowship to Continue Drone Research in Jakarta','','inherit','open','open','','251-revision-v1','','','2015-07-12 06:58:19','2015-07-12 06:58:19','',251,'http://sriumiyati.com/index.php/2015/07/12/251-revision-v1/',0,'revision','',0),(253,1,'2015-07-12 06:59:45','2015-07-12 06:59:45','Dr Etienne Turpin, Co-Principal Investigator of PetaJakarta.org, is scheduled to speak at New Cities Summit Jakarta 2015 on June 10 at 2.00-2.45 PM for WhatWorks session. Dr Turpin along with four other speakers will talk about some practical solutions to face urban problems in cities.\r\n\r\n[embed]https://twitter.com/newcitiesfound/status/599506830256001024[/embed]\r\n\r\nFind out more about the event here.\r\n\r\nDr Etienne Turpin, Co-Principal Investigator PetaJakarta.org, akan menjadi pembicara dalam New Cities Summit Jakarta 2015 pada tanggal 10 Juni pukul 2.00-2.45 siang untuk sesi WhatWorks. Dr Turpin bersama dengan empat pembicara lainnya akan berbicara tentang solusi-solusi praktis dalam menghadapi masalah-masalah perkotaan.','Dr Etienne Turpin to Speak at New Cities Summit Jakarta 2015','','publish','open','open','','dr-etienne-turpin-to-speak-at-new-cities-summit-jakarta-2015','','','2015-07-12 06:59:45','2015-07-12 06:59:45','',0,'http://sriumiyati.com/?p=253',0,'post','',0),(254,1,'2015-07-12 06:59:45','2015-07-12 06:59:45','Dr Etienne Turpin, Co-Principal Investigator of PetaJakarta.org, is scheduled to speak at New Cities Summit Jakarta 2015 on June 10 at 2.00-2.45 PM for WhatWorks session. Dr Turpin along with four other speakers will talk about some practical solutions to face urban problems in cities.\r\n\r\n[embed]https://twitter.com/newcitiesfound/status/599506830256001024[/embed]\r\n\r\nFind out more about the event here.\r\n\r\nDr Etienne Turpin, Co-Principal Investigator PetaJakarta.org, akan menjadi pembicara dalam New Cities Summit Jakarta 2015 pada tanggal 10 Juni pukul 2.00-2.45 siang untuk sesi WhatWorks. Dr Turpin bersama dengan empat pembicara lainnya akan berbicara tentang solusi-solusi praktis dalam menghadapi masalah-masalah perkotaan.','Dr Etienne Turpin to Speak at New Cities Summit Jakarta 2015','','inherit','open','open','','253-revision-v1','','','2015-07-12 06:59:45','2015-07-12 06:59:45','',253,'http://sriumiyati.com/index.php/2015/07/12/253-revision-v1/',0,'revision','',0),(255,1,'2015-07-12 07:02:23','2015-07-12 07:02:23','Dr Tomas Holderness, Co-Principal Investigator of PetaJakarta.org, received an award from Institute of Civil Engineers (ICE) for his paper entitled Network Modelling for Road-Based Faecal Sludge Management. \r\n\r\nAbstract\r\nImprovements in the collection and treatment of sewage are critical to reduce health and environmental hazards in rapidly urbanising informal settlements. Where sewerage infrastructure is not available, road-based faecal sludge management options are often the only alternative. However, the costs of faecal sludge transportation are often a barrier to its implementation and operation and thus it is desirable to optimise travel time from source to treatment to reduce costs. This paper presents a novel technique, employing spatial network analysis, to optimise the spatio-topological configuration of a road-based faecal sludge transportation network on the basis of travel time. Using crowd-sourced spatial data for the Kibera settlement and the surrounding city, Nairobi, a proof-of-concept network model was created simulating the transport of waste from the 158 public toilets within Kibera. The toilets are serviced by vacuum pump trucks which move faecal sludge to a transfer station, and from there a tanker transports waste to a treatment plant. The model was used to evaluate the efficiency of different network configurations, based on transportation time. The results show that the location of the transfer station is a critical factor in network optimisation, demonstrating the utility of network analysis as part of the sanitation planning process.\r\n\r\nThe paper was categorized under Municipal Engineer and is co-written by Ruth Kennedy-Walker, David Alderson, Stuart Barr of Newcastle University, and Barbara Evans of Leeds University.','Dr Tomas Holderness Wins Award from Institute of Civil Engineers for Best Research Paper in Journal','','publish','open','open','','dr-tomas-holderness-wins-award-from-institute-of-civil-engineers-for-best-research-paper-in-journal','','','2015-07-12 07:02:23','2015-07-12 07:02:23','',0,'http://sriumiyati.com/?p=255',0,'post','',0),(256,1,'2015-07-12 07:02:23','2015-07-12 07:02:23','Dr Tomas Holderness, Co-Principal Investigator of PetaJakarta.org, received an award from Institute of Civil Engineers (ICE) for his paper entitled Network Modelling for Road-Based Faecal Sludge Management. \r\n\r\nAbstract\r\nImprovements in the collection and treatment of sewage are critical to reduce health and environmental hazards in rapidly urbanising informal settlements. Where sewerage infrastructure is not available, road-based faecal sludge management options are often the only alternative. However, the costs of faecal sludge transportation are often a barrier to its implementation and operation and thus it is desirable to optimise travel time from source to treatment to reduce costs. This paper presents a novel technique, employing spatial network analysis, to optimise the spatio-topological configuration of a road-based faecal sludge transportation network on the basis of travel time. Using crowd-sourced spatial data for the Kibera settlement and the surrounding city, Nairobi, a proof-of-concept network model was created simulating the transport of waste from the 158 public toilets within Kibera. The toilets are serviced by vacuum pump trucks which move faecal sludge to a transfer station, and from there a tanker transports waste to a treatment plant. The model was used to evaluate the efficiency of different network configurations, based on transportation time. The results show that the location of the transfer station is a critical factor in network optimisation, demonstrating the utility of network analysis as part of the sanitation planning process.\r\n\r\nThe paper was categorized under Municipal Engineer and is co-written by Ruth Kennedy-Walker, David Alderson, Stuart Barr of Newcastle University, and Barbara Evans of Leeds University.','Dr Tomas Holderness Wins Award from Institute of Civil Engineers for Best Research Paper in Journal','','inherit','open','open','','255-revision-v1','','','2015-07-12 07:02:23','2015-07-12 07:02:23','',255,'http://sriumiyati.com/index.php/2015/07/12/255-revision-v1/',0,'revision','',0),(257,1,'2015-07-12 07:06:21','2015-07-12 07:06:21','Interested in interning for PetaJakarta.org? Now it is your time to apply. At the moment, we are looking for three geographers to join our crew here at PetaJakarta HQ for August 2015.\r\n\r\nPetaJakarta.org is an applied research project led by the SMART Infrastructure Facility, in collaboration with BPBD DKI Jakarta and Twitter Inc. PetaJakarta.org harnesses the power of social media to gather, sort, and display information about flooding for Jakarta residents in real time.\r\n\r\nThe interns will work closely with our co-directors and be given specific tasks and responsibilities to improve their capabilities and enhance their experience. We will give a letter of recommendation following their work, and a modest honorarium.\r\n\r\nPlease send in your CV and Cover Letter explanining your motivation, main skills, and interests by July 27th, 2015 to media@petajakarta.org. Only short-listed candidates will be contacted for an interview.\r\n\r\nShould you have any questions, don\'t hesitate to contact us via media@petajakarta.org and check out our Twitter @petajkt for updates. We look forward to your applications!\r\n\r\n<a href=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\"><img class=\"alignnone size-full wp-image-258\" src=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\" alt=\"intern2\" width=\"1196\" height=\"985\" /></a>\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nPetaJakarta.org adalah sebuah proyek penelitian terapan yang dipimpin oleh Fasilitas Infrastruktur SMART, bekerjasama dengan BPBD DKI Jakarta dan Twitter Inc. <a href=\"http://petajakarta.org/banjir/in/petajakarta.org\">PetaJakarta.org</a> memanfaatkan kekuatan media sosial dengan mengumpulkan, memilah, dan menyajikan informasi terkait banjir untuk warga Jakarta secara <i>real time</i>.\r\n\r\nPegawai magang akan langsung bekerja di bawah arahan <em>co-directors</em> PetaJakarta.org dan akan diberikan tugas dan tanggung jawab spesifik untuk mengembangkan kapabilitas dan pengalaman mereka. Kami akan memberikan surat rekomendasi setelah masa magang dan honorarium yang sesuai.\r\n\r\nSilakan kirim CV dan Cover Letter yang menjelaskan motivasi untuk bergabung, keahlian, dan ketertarikan kamu sebelum 27 Juli 2015 ke media@petajakarta.org. Hanya kandidat terpilih yang akan dihubungi untuk wawancara.\r\n\r\nApabila ada pertanyaan, silakan menghubungi media@petajakarta.org dan cek Twitter kami <a href=\"https://twitter.com/petajkt\" target=\"_blank\">@petajkt</a> untuk kabar terbaru. Kami tunggu aplikasinya!\r\n ','Call for Interns','','publish','open','open','','call-for-interns','','','2015-07-12 07:10:29','2015-07-12 07:10:29','',0,'http://sriumiyati.com/?p=257',0,'post','',0),(258,1,'2015-07-12 07:04:44','2015-07-12 07:04:44','','intern2','','inherit','open','open','','intern2','','','2015-07-12 07:04:44','2015-07-12 07:04:44','',257,'http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg',0,'attachment','image/jpeg',0),(259,1,'2015-07-12 07:06:21','2015-07-12 07:06:21','Interested in interning for PetaJakarta.org? Now it is your time to apply. At the moment, we are looking for three geographers to join our crew here at PetaJakarta HQ for August 2015.\r\n\r\nPetaJakarta.org is an applied research project led by the SMART Infrastructure Facility, in collaboration with BPBD DKI Jakarta and Twitter Inc. PetaJakarta.org harnesses the power of social media to gather, sort, and display information about flooding for Jakarta residents in real time.\r\n\r\nThe interns will work closely with our co-directors and be given specific tasks and responsibilities to improve their capabilities and enhance their experience. We will give a letter of recommendation following their work, and a modest honorarium.\r\n\r\nPlease send in your CV and Cover Letter explanining your motivation, main skills, and interests by July 27th, 2015 to media@petajakarta.org. Only short-listed candidates will be contacted for an interview.\r\n\r\nShould you have any questions, don\'t hesitate to contact us via media@petajakarta.org and check out our Twitter @petajkt for updates. We look forward to your applications!\r\n\r\n<a href=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\"><img class=\"alignnone size-full wp-image-258\" src=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\" alt=\"intern2\" width=\"1196\" height=\"985\" /></a>\r\n\r\n \r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nPetaJakarta.org adalah sebuah proyek penelitian terapan yang dipimpin oleh Fasilitas Infrastruktur SMART, bekerjasama dengan BPBD DKI Jakarta dan Twitter Inc. <a href=\"http://petajakarta.org/banjir/in/petajakarta.org\">PetaJakarta.org</a> memanfaatkan kekuatan media sosial dengan mengumpulkan, memilah, dan menyajikan informasi terkait banjir untuk warga Jakarta secara <i>real time</i>.\r\n\r\nPegawai magang akan langsung bekerja di bawah arahan <em>co-directors</em> PetaJakarta.org dan akan diberikan tugas dan tanggung jawab spesifik untuk mengembangkan kapabilitas dan pengalaman mereka. Kami akan memberikan surat rekomendasi setelah masa magang dan honorarium yang sesuai.\r\n\r\nSilakan kirim CV dan Cover Letter yang menjelaskan motivasi untuk bergabung, keahlian, dan ketertarikan kamu sebelum 27 Juli 2015 ke media@petajakarta.org. Hanya kandidat terpilih yang akan dihubungi untuk wawancara.\r\n\r\nApabila ada pertanyaan, silakan menghubungi media@petajakarta.org dan cek Twitter kami <a href=\"https://twitter.com/petajkt\" target=\"_blank\">@petajkt</a> untuk kabar terbaru. Kami tunggu aplikasinya!\r\n\r\n \r\n\r\n ','Call for Interns','','inherit','open','open','','257-revision-v1','','','2015-07-12 07:06:21','2015-07-12 07:06:21','',257,'http://sriumiyati.com/index.php/2015/07/12/257-revision-v1/',0,'revision','',0),(260,1,'2015-07-12 07:07:22','2015-07-12 07:07:22','Interested in interning for PetaJakarta.org? Now it is your time to apply. At the moment, we are looking for three geographers to join our crew here at PetaJakarta HQ for August 2015.\r\n\r\nPetaJakarta.org is an applied research project led by the SMART Infrastructure Facility, in collaboration with BPBD DKI Jakarta and Twitter Inc. PetaJakarta.org harnesses the power of social media to gather, sort, and display information about flooding for Jakarta residents in real time.\r\n\r\nThe interns will work closely with our co-directors and be given specific tasks and responsibilities to improve their capabilities and enhance their experience. We will give a letter of recommendation following their work, and a modest honorarium.\r\n\r\nPlease send in your CV and Cover Letter explanining your motivation, main skills, and interests by July 27th, 2015 to media@petajakarta.org. Only short-listed candidates will be contacted for an interview.\r\n\r\nShould you have any questions, don\'t hesitate to contact us via media@petajakarta.org and check out our Twitter @petajkt for updates. We look forward to your applications!\r\n\r\n<a href=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\"><img class=\"alignnone size-full wp-image-258\" src=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\" alt=\"intern2\" width=\"1196\" height=\"985\" /></a>\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nPetaJakarta.org adalah sebuah proyek penelitian terapan yang dipimpin oleh Fasilitas Infrastruktur SMART, bekerjasama dengan BPBD DKI Jakarta dan Twitter Inc. <a href=\"http://petajakarta.org/banjir/in/petajakarta.org\">PetaJakarta.org</a> memanfaatkan kekuatan media sosial dengan mengumpulkan, memilah, dan menyajikan informasi terkait banjir untuk warga Jakarta secara <i>real time</i>.\r\n\r\nPegawai magang akan langsung bekerja di bawah arahan <em>co-directors</em> PetaJakarta.org dan akan diberikan tugas dan tanggung jawab spesifik untuk mengembangkan kapabilitas dan pengalaman mereka. Kami akan memberikan surat rekomendasi setelah masa magang dan honorarium yang sesuai.\r\n\r\nSilakan kirim CV dan Cover Letter yang menjelaskan motivasi untuk bergabung, keahlian, dan ketertarikan kamu sebelum 27 Juli 2015 ke media@petajakarta.org. Hanya kandidat terpilih yang akan dihubungi untuk wawancara.\r\n\r\nApabila ada pertanyaan, silakan menghubungi media@petajakarta.org dan cek Twitter kami <a href=\"https://twitter.com/petajkt\" target=\"_blank\">@petajkt</a> untuk kabar terbaru. Kami tunggu aplikasinya!\r\n\r\n \r\n\r\n ','Call for Interns','','inherit','open','open','','257-revision-v1','','','2015-07-12 07:07:22','2015-07-12 07:07:22','',257,'http://sriumiyati.com/index.php/2015/07/12/257-revision-v1/',0,'revision','',0),(261,1,'2015-07-12 07:08:33','2015-07-12 07:08:33','Interested in interning for PetaJakarta.org? Now it is your time to apply. At the moment, we are looking for three geographers to join our crew here at PetaJakarta HQ for August 2015.\r\n\r\nPetaJakarta.org is an applied research project led by the SMART Infrastructure Facility, in collaboration with BPBD DKI Jakarta and Twitter Inc. PetaJakarta.org harnesses the power of social media to gather, sort, and display information about flooding for Jakarta residents in real time.\r\n\r\nThe interns will work closely with our co-directors and be given specific tasks and responsibilities to improve their capabilities and enhance their experience. We will give a letter of recommendation following their work, and a modest honorarium.\r\n\r\nPlease send in your CV and Cover Letter explanining your motivation, main skills, and interests by July 27th, 2015 to media@petajakarta.org. Only short-listed candidates will be contacted for an interview.\r\n\r\nShould you have any questions, don\'t hesitate to contact us via media@petajakarta.org and check out our Twitter @petajkt for updates. We look forward to your applications!\r\n\r\n<a href=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\"><img class=\"alignnone size-full wp-image-258\" src=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\" alt=\"intern2\" width=\"1196\" height=\"985\" /></a>\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nPetaJakarta.org adalah sebuah proyek penelitian terapan yang dipimpin oleh Fasilitas Infrastruktur SMART, bekerjasama dengan BPBD DKI Jakarta dan Twitter Inc. <a href=\"http://petajakarta.org/banjir/in/petajakarta.org\">PetaJakarta.org</a> memanfaatkan kekuatan media sosial dengan mengumpulkan, memilah, dan menyajikan informasi terkait banjir untuk warga Jakarta secara <i>real time</i>.\r\n\r\nPegawai magang akan langsung bekerja di bawah arahan <em>co-directors</em> PetaJakarta.org dan akan diberikan tugas dan tanggung jawab spesifik untuk mengembangkan kapabilitas dan pengalaman mereka. Kami akan memberikan surat rekomendasi setelah masa magang dan honorarium yang sesuai.\r\n\r\nSilakan kirim CV dan Cover Letter yang menjelaskan motivasi untuk bergabung, keahlian, dan ketertarikan kamu sebelum 27 Juli 2015 ke media@petajakarta.org. Hanya kandidat terpilih yang akan dihubungi untuk wawancara.\r\n\r\nApabila ada pertanyaan, silakan menghubungi media@petajakarta.org dan cek Twitter kami <a href=\"https://twitter.com/petajkt\" target=\"_blank\">@petajkt</a> untuk kabar terbaru. Kami tunggu aplikasinya!\r\n \r\n\r\n ','Call for Interns','','inherit','open','open','','257-revision-v1','','','2015-07-12 07:08:33','2015-07-12 07:08:33','',257,'http://sriumiyati.com/index.php/2015/07/12/257-revision-v1/',0,'revision','',0),(262,1,'2015-07-12 07:10:29','2015-07-12 07:10:29','Interested in interning for PetaJakarta.org? Now it is your time to apply. At the moment, we are looking for three geographers to join our crew here at PetaJakarta HQ for August 2015.\r\n\r\nPetaJakarta.org is an applied research project led by the SMART Infrastructure Facility, in collaboration with BPBD DKI Jakarta and Twitter Inc. PetaJakarta.org harnesses the power of social media to gather, sort, and display information about flooding for Jakarta residents in real time.\r\n\r\nThe interns will work closely with our co-directors and be given specific tasks and responsibilities to improve their capabilities and enhance their experience. We will give a letter of recommendation following their work, and a modest honorarium.\r\n\r\nPlease send in your CV and Cover Letter explanining your motivation, main skills, and interests by July 27th, 2015 to media@petajakarta.org. Only short-listed candidates will be contacted for an interview.\r\n\r\nShould you have any questions, don\'t hesitate to contact us via media@petajakarta.org and check out our Twitter @petajkt for updates. We look forward to your applications!\r\n\r\n<a href=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\"><img class=\"alignnone size-full wp-image-258\" src=\"http://sriumiyati.com/wp-content/uploads/2015/07/intern2.jpg\" alt=\"intern2\" width=\"1196\" height=\"985\" /></a>\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nTertarik untuk magang di PetaJakarta.org? Inilah saatnya. Kami sedang mencari tiga <em>geographers</em> untuk bergabung bersama tim kami di PetaJakarta HQ selama bulan Agustus 2015.\r\n\r\nPetaJakarta.org adalah sebuah proyek penelitian terapan yang dipimpin oleh Fasilitas Infrastruktur SMART, bekerjasama dengan BPBD DKI Jakarta dan Twitter Inc. <a href=\"http://petajakarta.org/banjir/in/petajakarta.org\">PetaJakarta.org</a> memanfaatkan kekuatan media sosial dengan mengumpulkan, memilah, dan menyajikan informasi terkait banjir untuk warga Jakarta secara <i>real time</i>.\r\n\r\nPegawai magang akan langsung bekerja di bawah arahan <em>co-directors</em> PetaJakarta.org dan akan diberikan tugas dan tanggung jawab spesifik untuk mengembangkan kapabilitas dan pengalaman mereka. Kami akan memberikan surat rekomendasi setelah masa magang dan honorarium yang sesuai.\r\n\r\nSilakan kirim CV dan Cover Letter yang menjelaskan motivasi untuk bergabung, keahlian, dan ketertarikan kamu sebelum 27 Juli 2015 ke media@petajakarta.org. Hanya kandidat terpilih yang akan dihubungi untuk wawancara.\r\n\r\nApabila ada pertanyaan, silakan menghubungi media@petajakarta.org dan cek Twitter kami <a href=\"https://twitter.com/petajkt\" target=\"_blank\">@petajkt</a> untuk kabar terbaru. Kami tunggu aplikasinya!\r\n ','Call for Interns','','inherit','open','open','','257-revision-v1','','','2015-07-12 07:10:29','2015-07-12 07:10:29','',257,'http://sriumiyati.com/index.php/2015/07/12/257-revision-v1/',0,'revision','',0),(263,1,'2015-07-12 07:18:39','2015-07-12 07:18:39','PetaJakarta.org represented University of Wollongong Global Challenges and SMART Facility at the #AUOpenData event in Canberra on 19 June 2015. This event was held by Australian National Data Service (ANDS) that has been supporting PetaJakarta.org with hydrological infrastructure data and spatio-temporal measures of activity on the social media network Twitter. More than 40 Australian research institutions were there as well to showcase their research.\r\n\r\nBelow is an interview by the ANDS team with one of our co-directors, Dr Tomas Holderness about our PetaJakarta Collaborative Data Sharing Project. To learn more about it, kindly read it <a href=\"https://projects.ands.org.au/id/MODC15\" target=\"_blank\">here</a>.\r\n\r\nhttps://youtu.be/6v7BO8_rhWI\r\n\r\n<hr />\r\n\r\nPetaJakarta.org mewakili University of Wollongong Global Challenges dan SMART Facility di acara #AUOpenData pada tanggal 19 Juni 2015 lalu di Canberra. Acara tersebut diadakan oleh Australian National Data Service (ANDS) yang telah mendukung PetaJakarta.org dengan data infrastruktur hidrologis dan pengukuran aktivitas spasial-temporal di jaringan media sosial Twitter. Lebih dari 40 institusi riset Australia juga berpartisipasi dalam acara tersebut dan memperlihatkan riset mereka.\r\n\r\nBerikut adalah wawancara oleh tim ANDS dengan salah satu co-director kami, Dr Tomas Holderness tentang PetaJakarta <em>Collaborative Data Sharing Project.</em> Untuk info lebih lanjut, silakan kunjungi tautan <a href=\"https://projects.ands.org.au/id/MODC15\" target=\"_blank\">ini</a>.','PetaJakarta.org Represent UOW at the ANDS Australia\'s Open Research Data Collections','','publish','open','open','','263','','','2015-07-12 07:18:52','2015-07-12 07:18:52','',0,'http://sriumiyati.com/?p=263',0,'post','',0),(264,1,'2015-07-12 07:18:39','2015-07-12 07:18:39','PetaJakarta.org represented University of Wollongong Global Challenges and SMART Facility at the #AUOpenData event in Canberra on 19 June 2015. This event was held by Australian National Data Service (ANDS) that has been supporting PetaJakarta.org with hydrological infrastructure data and spatio-temporal measures of activity on the social media network Twitter. More than 40 Australian research institutions were there as well to showcase their research.\r\n\r\nBelow is an interview by the ANDS team with one of our co-directors, Dr Tomas Holderness about our PetaJakarta Collaborative Data Sharing Project. To learn more about it, kindly read it <a href=\"https://projects.ands.org.au/id/MODC15\" target=\"_blank\">here</a>.\r\n\r\nhttps://youtu.be/6v7BO8_rhWI\r\n\r\n<hr />\r\n\r\nPetaJakarta.org mewakili University of Wollongong Global Challenges dan SMART Facility di acara #AUOpenData pada tanggal 19 Juni 2015 lalu di Canberra. Acara tersebut diadakan oleh Australian National Data Service (ANDS) yang telah mendukung PetaJakarta.org dengan data infrastruktur hidrologis dan pengukuran aktivitas spasial-temporal di jaringan media sosial Twitter. Lebih dari 40 institusi riset Australia juga berpartisipasi dalam acara tersebut dan memperlihatkan riset mereka.\r\n\r\nBerikut adalah wawancara oleh tim ANDS dengan salah satu co-director kami, Dr Tomas Holderness tentang PetaJakarta <em>Collaborative Data Sharing Project.</em> Untuk info lebih lanjut, silakan kunjungi tautan <a href=\"https://projects.ands.org.au/id/MODC15\" target=\"_blank\">ini</a>.','','','inherit','open','open','','263-revision-v1','','','2015-07-12 07:18:39','2015-07-12 07:18:39','',263,'http://sriumiyati.com/index.php/2015/07/12/263-revision-v1/',0,'revision','',0),(265,1,'2015-07-12 07:18:52','2015-07-12 07:18:52','PetaJakarta.org represented University of Wollongong Global Challenges and SMART Facility at the #AUOpenData event in Canberra on 19 June 2015. This event was held by Australian National Data Service (ANDS) that has been supporting PetaJakarta.org with hydrological infrastructure data and spatio-temporal measures of activity on the social media network Twitter. More than 40 Australian research institutions were there as well to showcase their research.\r\n\r\nBelow is an interview by the ANDS team with one of our co-directors, Dr Tomas Holderness about our PetaJakarta Collaborative Data Sharing Project. To learn more about it, kindly read it <a href=\"https://projects.ands.org.au/id/MODC15\" target=\"_blank\">here</a>.\r\n\r\nhttps://youtu.be/6v7BO8_rhWI\r\n\r\n<hr />\r\n\r\nPetaJakarta.org mewakili University of Wollongong Global Challenges dan SMART Facility di acara #AUOpenData pada tanggal 19 Juni 2015 lalu di Canberra. Acara tersebut diadakan oleh Australian National Data Service (ANDS) yang telah mendukung PetaJakarta.org dengan data infrastruktur hidrologis dan pengukuran aktivitas spasial-temporal di jaringan media sosial Twitter. Lebih dari 40 institusi riset Australia juga berpartisipasi dalam acara tersebut dan memperlihatkan riset mereka.\r\n\r\nBerikut adalah wawancara oleh tim ANDS dengan salah satu co-director kami, Dr Tomas Holderness tentang PetaJakarta <em>Collaborative Data Sharing Project.</em> Untuk info lebih lanjut, silakan kunjungi tautan <a href=\"https://projects.ands.org.au/id/MODC15\" target=\"_blank\">ini</a>.','PetaJakarta.org Represent UOW at the ANDS Australia\'s Open Research Data Collections','','inherit','open','open','','263-revision-v1','','','2015-07-12 07:18:52','2015-07-12 07:18:52','',263,'http://sriumiyati.com/index.php/2015/07/12/263-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0),(18,10,0),(19,3,0),(20,3,0),(21,3,0),(22,3,0),(23,3,0),(24,3,0),(25,3,0),(26,3,0),(27,3,0),(28,3,0),(29,3,0),(30,3,0),(31,3,0),(34,3,0),(35,3,0),(38,3,0),(40,3,0),(42,3,0),(85,9,0),(86,9,0),(87,9,0),(88,9,0),(89,9,0),(152,10,0),(160,10,0),(238,9,0),(241,1,0),(251,1,0),(253,1,0),(255,1,0),(257,1,0),(263,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,6),(2,2,'category','',0,0),(3,3,'category','',0,18),(4,4,'post_tag','',0,0),(5,5,'post_tag','',0,0),(6,6,'post_tag','',0,0),(7,7,'post_tag','',0,0),(8,8,'post_tag','',0,0),(9,9,'nav_menu','',0,6),(10,10,'category','',0,3);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'Non-Profit - null','non-profit-null',0),(3,'Tak Berkategori','tak-berkategori',0),(4,'award','award',0),(5,'engineering','engineering',0),(6,'Frank Sedlar','frank-sedlar',0),(7,'Fulbright Fellowship','fulbright-fellowship',0),(8,'research','research',0),(9,'Menu 2','menu-2',0),(10,'News','news',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','admin_baru'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw,custom_admin_pointers10_2_new_items'),(13,1,'show_welcome_panel','1'),(14,1,'session_tokens','a:3:{s:64:\"4d670c3bd1822600636d65739de4ff6ce899337c522d9349354cea0ee9e61d3f\";a:4:{s:10:\"expiration\";i:1437449094;s:2:\"ip\";s:11:\"101.50.1.16\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36\";s:5:\"login\";i:1436239494;}s:64:\"2ba89f8f2452a9eccec155ba093939a2037a4230a07d44da886ade45c65b3686\";a:4:{s:10:\"expiration\";i:1436892890;s:2:\"ip\";s:11:\"101.50.1.16\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.132 Safari/537.36\";s:5:\"login\";i:1436720090;}s:64:\"9d6997375d0b31c0f4ab9ab7336b401f34ad3c4365a654c62cb8e8bb30234979\";a:4:{s:10:\"expiration\";i:1436925350;s:2:\"ip\";s:11:\"101.50.1.16\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.132 Safari/537.36\";s:5:\"login\";i:1436752550;}}'),(15,1,'wp_dashboard_quick_press_last_post_id','3'),(16,1,'nav_menu_recently_edited','9'),(17,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(18,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(19,1,'wp_user-settings','libraryContent=browse&editor=tinymce&post_dfw=off'),(20,1,'wp_user-settings-time','1436685026'),(21,1,'closedpostboxes_post','a:0:{}'),(22,1,'metaboxhidden_post','a:8:{i:0;s:12:\"revisionsdiv\";i:1;s:11:\"postexcerpt\";i:2;s:13:\"trackbacksdiv\";i:3;s:10:\"postcustom\";i:4;s:16:\"commentstatusdiv\";i:5;s:11:\"commentsdiv\";i:6;s:7:\"slugdiv\";i:7;s:9:\"authordiv\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'admin_baru','$P$BqPWmW8M8ImhwQcV9St9TQjyWFGTan0','admin_baru','admin@sriumiyati.com','','2015-07-06 02:00:47','',0,'admin_baru');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping events for database 'sriumiya_wp276'
--
--
-- Dumping routines for database 'sriumiya_wp276'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2015-07-13 9:31:02