-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathallData_example3.json
More file actions
8102 lines (8102 loc) · 424 KB
/
Copy pathallData_example3.json
File metadata and controls
8102 lines (8102 loc) · 424 KB
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"author": "Kevin Smith",
"date": "Tue, 27 Nov 2007 16:42:39 GMT",
"semantria": {
"config_id": "b12a1cc1-77fc-4466-8f62-94c366dc9fca",
"entities": [
{
"confident": true,
"entity_type": "Person",
"evidence": 7,
"is_about": true,
"label": "Person",
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.3073334,
"strength_score": 1.25,
"title": "11 presentation tools"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.40895832,
"strength_score": 0.83928573,
"title": "screen capture program"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.3073334,
"strength_score": 0.8333334,
"title": "outstanding presentations"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.3073334,
"strength_score": 0.8333334,
"title": "already-existing presentations"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.0183334,
"strength_score": 0.7,
"title": "dynamic presentation"
}
],
"title": "Jing",
"type": "named"
},
{
"confident": true,
"entity_type": "Company",
"evidence": 7,
"is_about": false,
"label": "Company",
"sentiment_polarity": "positive",
"sentiment_score": 0.952443,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.57997394,
"strength_score": 1.5,
"title": "great web applications"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.57997394,
"strength_score": 1.0,
"title": "hosting site"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.57997394,
"strength_score": 1.0,
"title": "social networks"
}
],
"title": "LinkedIn",
"type": "named"
},
{
"confident": true,
"entity_type": "Company",
"evidence": 7,
"is_about": false,
"label": "Company",
"sentiment_polarity": "positive",
"sentiment_score": 0.952443,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.57997394,
"strength_score": 1.5,
"title": "great web applications"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.57997394,
"strength_score": 1.0,
"title": "hosting site"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.57997394,
"strength_score": 1.0,
"title": "social networks"
}
],
"title": "Facebook",
"type": "named"
},
{
"confident": true,
"entity_type": "Company",
"evidence": 7,
"is_about": false,
"label": "Company",
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"strength_score": 1.0,
"title": "n\u2019t true"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"strength_score": 1.0,
"title": "basic tour"
}
],
"title": "Google",
"type": "named"
},
{
"confident": true,
"entity_type": "Company",
"evidence": 4,
"is_about": false,
"label": "Company",
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.6,
"strength_score": 1.0,
"title": "hosting services"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.6,
"strength_score": 1.0,
"title": "video type"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 0.6,
"strength_score": 1.0,
"title": "different options"
}
],
"title": "YouTube",
"type": "named"
}
],
"id": "62336247da1011e289c3406c8f137d85",
"language": "English",
"language_score": 126.59,
"phrases": [
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 1.29,
"title": "terrific",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 0.8125668,
"title": "well known",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 0.7644,
"title": "easily",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 0.75,
"title": "outstanding",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 0.6517,
"title": "interesting",
"type": "detected"
},
{
"sentiment_polarity": "neutral",
"title": "soft sales",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "just repurposing already-existing presentations",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "follow-on post",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "n\u2019t true",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "then share",
"type": "possible"
}
],
"sentiment_polarity": "positive",
"sentiment_score": 0.44467837,
"status": "PROCESSED",
"summary": "By hosting them online, we can repurpose them as marketing and soft sales pieces... Aside from repurposing existing presentations by loading them online, what if you want to create new presentations from scratch that do more \u2014 that contain a mix of slides, browser screen shots, product images, and even short video clips?... Jing and some of the tools below make it possible to create a more dynamic presentation, complete with audio, animation, and video that you can position on the Web for customers to review at their convenience... ",
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.2699342,
"strength_score": 2.25,
"title": "11 presentation tools"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.2699342,
"strength_score": 1.5,
"title": "outstanding presentations"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.2699342,
"strength_score": 1.5,
"title": "already-existing presentations"
},
{
"evidence": 7,
"is_about": true,
"sentiment_polarity": "positive",
"sentiment_score": 0.9809342,
"strength_score": 1.3333334,
"title": "dynamic presentation"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.3325009,
"strength_score": 1.25,
"title": "hosting site"
}
],
"topics": [
{
"hitcount": 0,
"sentiment_polarity": "neutral",
"sentiment_score": 0.1459001,
"strength_score": 0.6635317,
"title": "Software and Internet",
"type": "concept"
},
{
"hitcount": 0,
"sentiment_polarity": "positive",
"sentiment_score": 0.502443,
"strength_score": 0.645409,
"title": "Social Media",
"type": "concept"
},
{
"hitcount": 0,
"sentiment_polarity": "positive",
"sentiment_score": 0.675,
"strength_score": 0.5544496,
"title": "Advertising",
"type": "concept"
},
{
"hitcount": 0,
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"strength_score": 0.548591,
"title": "Hardware",
"type": "concept"
},
{
"hitcount": 0,
"sentiment_polarity": "neutral",
"sentiment_score": 0.42047918,
"strength_score": 0.5251955,
"title": "Technology",
"type": "concept"
},
{
"hitcount": 1,
"sentiment_polarity": "positive",
"sentiment_score": 0.952443,
"strength_score": 0.0,
"title": "Technology",
"type": "query"
}
]
},
"text": "\u00bb Guy Kawasaki is blogging from Randy Holloway Unfiltered 2.0\n Guy Kawasaki: As a venture capitalist, I have to listen to hundreds of entrepreneurs pitch their companies. Most of these pitches are crap: sixty slides about a \u201cpatent pending,\u201d \u201cfirst mover advantage,\u201d \u201call we have to do is get 1% of... [Read More]\n \u00bb Guy Kawasaki blogging from evilzenscientist :: thoughts\n Guy Kawasaki (author of such titles as Selling the Dream - another must read book) has a new blog. One of his first posts really rings true - about the use (and abuse) of PowerPoint. I am trying to evangelize the 10/20/30 Rule of Powe... [Read More]\n \u00bb Guy Kawasaki on PowerPoint from Kam VedBrat\n Guy Kawasaki makes some interesting comments on PowerPoint presentations he sees on a regular basis.... [Read More]\n \u00bb The 10/20/30 Rule of PowerPoint from AlfredTwo\n So it appears that Guy Kawasaki(please don't tell me you don't know who he is or Ishall be... [Read More]\n \u00bb The rules of PowerPoint from Tripp Parks's WebLog\n Guy Kawasaki has some excellent pointers on how to use PowerPoint effectively. [Read More]\n \u00bb Guy Kawasaki: La regla 10/20/30 from Ondas, cables, luces, cacharritos y cachivaches\n Guy Kawasaki no es alguien que \u2018suene\u2019 mucho a la gente, sobre todo una vez despejado el hecho de que no tiene nada que ver con motos japonesas. Guy es uno de los primeros empleados de Apple, uno de los primeros \u201cevangelistas\u201d de la industria i... [Read More]\n \u00bb The Art of the Start from Net\n I recently finnished reading Guy Kawasaki's \"The Art of the Start\", a book full of good advices for any entrepreneur. I especially liked the chapter called \"The Art of Being a Mensch\". Too seldom I encounter any referrences to being [Read More]\n \u00bb The Art of the Start from Net\n I recently finished reading Guy Kawasaki's \"The Art of the Start\", a book full of good advices for any entrepreneur. I especially liked the chapter called \"The Art of Being a Mensch\". Too seldom I encounter any references to being [Read More]\n \u00bb Guy Kawasaki bloggt from Die Stimme der freien Welt\n Guy Kawasaki, DER Gro\u00dfmeister des Marketings bloggt. And you better listen. Insbesondere seine [Read More]\n \u00bb Guy Kawasaki on the10/20/30 Rule of Powerpoint from Get Real\n I found that Kawasaki's brand new blog is already helpful, in a backhanded way. I have been working with a number of startups in the past decade, and I continuously struggle with founders about their powerpoint addictions: too many bullets,... [Read More]\n \u00bb The 10/20/30 Rule of PowerPoint from vowe dot net\n I am trying to evangelize the 10/20/30 Rule of PowerPoint. It\u2019s quite simple: a PowerPoint presentation should have ten slides, last no more than twenty minutes, and contain no font smaller than thirty points. As a special service to Lotus Marketing: I... [Read More]\n \u00bb Guy Kawasaki on the10/20/30 Rule of Powerpoint from Get Real\n I found that Kawasaki's brand new blog is already helpful, in a backhanded way. I have been working with a number of startups in the past decade, and I continuously struggle with founders about their powerpoint addictions: too many bullets,... [Read More]\n \u00bb The 10/20/30 Rule of PowerPoint from Stefan Tilkov's Random Stuff\n From The 10/20/30 Rule of PowerPoint: Its quite simple: a PowerPoint presentation should have ten slides, last no more than twenty minutes, and contain no font smaller than thirty points. [] Sure, you have an hour time slot, but you\u2019... [Read More]\n \u00bb Power Point and Rocket Science and the dangers of compelling stories from keeping simple\n Edward Tufte dislikes PowerPoint and explains why in an article about the contribution of PowerPoint to the Columbia disaster. My other models for NASA are Feynmans lectures on physics, and the A3 page (or 11 by 17 in) folded in half. You can... [Read More]\n \u00bb The 10/20/30 PowerPoint Rule from TomorrowConnecting.biz\n Guy Kawasaki has posted some great guidelines for delivering effective PowerPoint presentations at his blog (see it here). He calls his theory the 10/20/30 Rule. It goes something like this: No presentation should be bigger than 10 slides, last lon... [Read More]\n \u00bb The 10/20/30 Rule of Powerpoint from Oliver Thylmann - Thoughts\n My fellow Corante Web Hub member Stowe Boyd posted about the 10/20/30 rules of Powerpoint, which originally comes from Guy Kawasaki. Stowe actually extends Guys idea with a 1/10/20/30 notion, meaning that each slide should make one part of your [Read More]\n \u00bb The 10/20/30 Rule of PowerPoint from lifehack.org\n Presentation Guru Guy Kawasaki introduces a rule called 10/20/30 PowerPoint rule in one of his recent blog posts. What is it? He describes, a PowerPoint presentation should have ten slides, last no more than twenty minutes, and contain no font ... [Read More]\n \u00bb 10/20/30 Rule of Presentations from Jeremy Smith's blog\n The 10/20/30 Rule of Presentations... [Read More]\n \u00bb The 10/20/30 Rule of PowerPoint from Otto R. Radke\n [Read More]\n \u00bb The 10/20/30 Rule of presentations from Blunt ID Blog - Pithy Commentary\n Guy Kawasaki has a post on his blog about the 10/20/30 (10 slides/20 minutes/30 words) rule of good PowerPoint presentations. (Not the first time hes done this particular pitch but then again, Martin Luther King Jr. did a whole bunch of... [Read More]\n \u00bb links for 2006-01-04 from Hermes\n Resume of the guy who watched Tsunami (tags: Dogs Brooklyn Friends) Memorable Quotes from \"Six Feet Under\" (2001) (tags: tv Film) \u201cLet the Good Times Roll\u201d by Guy Kawasaki: The 10/20/30 Rule of PowerPoint (tags: Design gtd leadership Speaking... [Read More]\n \u00bb How to make power point presentations easy and understandable from YALD - Patrick Grote's Notes\n An article making the rounds today discusses effective Power Point presentations for venture capitalists. It talks about a 10/20/30 rule of Power Point. It's an interesting article and one I am sure works with venture capitalists, but I've found some t... [Read More]\n \u00bb 10/20/30 Rule of PowerPoint Presentations from OpsanBlog\n [Read More]\n \u00bb BUNCH OF GREAT ADVICE ON ENTREPREURISM AND STARTING YOUR COMPANY from Junto Boyz\n Sifting through bookmarks again. This time I came across a bunch of great posts on entrepreneurism, hiring, and advice on fundraising. If you're doing a startup now or thinking about building a new business and haven't read some of these posts, check t... [Read More]\n \u00bb La Regla del 10/20/30 del Powerpoint from Alvaro Gregori, e-learning, formaci\u00f3n on-line\n Via OtroBlogMas. Guy Kawasaky es un maestro absoluto de la presentaci\u00f3n. En este post habla de las presentaciones Powerpoint para la captaci\u00f3n de Capital Riesgo, pero me da que es perfectamente aplicable a las presentaciones que se usan en docenci... [Read More]\n \u00bb 10-20-30 PowerPoint Rule: Guy Kawasaki Gets It! from MasterViews Latest News\n Guy Kawasaki, PowerPoint 10-20-30 rule it's all over the blogosphere, and deservedly so, as Guy really nails down some of the long time obstacles and myths about effective presentation design and delivery. What Guy Kawasaki advocates is nothing more th... [Read More]\n \u00bb Guy Kawasaki, powerpoints and the 10/20/30 Rule from Canuckflack\n Guy Kawasaki, who has now launched a blog, has some good advice for anyone considering a powerpoint presentation: ... I am trying to evangelize the 10/20/30 Rule of PowerPoint. It\u2019s quite simple: a PowerPoint presentation should have ten slides, last n... [Read More]\n \u00bb 10/20/30 Blues from AdPulp\n Guy Kawasaki wants you to clean up your Power Point mess. As a venture capitalist, I have to listen to hundreds of entrepreneurs pitch their companies. Most of these pitches are crap: sixty slides about a \u201cpatent pending,\u201d \u201cfirst mover... [Read More]\n \u00bb Weekly Round-Up December 30, updated Jan 2. from Exclusive Concepts' Internet Marketing Blog\n If you're like me, it takes about 3 weeks to comfortably settle into a new year so that I'm not writing 2005 on my checks.... It will soon debut \"Wow House\" a reality series to be broadcast online and that's only the beginning of its original prog... [Read More]\n \u00bb Weekly Round-Up December 30, updated Jan 2. from Exclusive Concepts' Internet Marketing Blog\n If you're like me, it takes about 3 weeks to comfortably settle into a new year so that I'm not writing 2005 on my checks.... It will soon debut \"Wow House\" a reality series to be broadcast online and that's only the beginning of its original prog... [Read More]\n \u00bb The 10/20/30 Rule of Powerpoint from LUX.ET.UMBRA\n I'm an entrepeneur racing after a dream of becoming a VC if I make it into the big leagues. And this was one of the most valuable resources that I ran across since this is exactly what I hate to... [Read More]\n \u00bb 6 Smart Agency Rules for Winning Presentations from Influential Interactive Marketing\n One of the best takeaways from the Ad-Tech conference a few weeks ago for me was a point Guy Kawasaki made in his very entertaining keynote presentation about his 10/20/30 rule for marketing revolutionaries on using powerpoint. 10 slides 20 [Read More]\n \u00bb Saving us all from PowerPoint abuse from PR Works\n Flying text, sound effects, animation and retina-burning colour combinations are included in PowerPoint presentations for one reason: because theyre there. In the interest of looking more professional, polished and creative, we\ufffd... [Read More]\n \u00bb Flagged Articles #5 from Random Thoughts\n Ok, so Im way late with this. Ill blame CES Anyhow, here is my list of some interesting articles for the week ending December 31, 2005: Hugh Macleod works his magic - David Sifry. Good and Bad Procrastinators - Paul... [Read More]\n \u00bb Presentation Hacks: How to improve Powerpoint Work from ff - Work things out!\n Thought\u00b4s about presentation agendas. ... [Read More]\n \u00bb 10/20/30 Rule of Powerpoint from kpont.com\n Guy Kawasaki makes a good case for The 10/20/30 Rule of PowerPoint. I am trying to evangelize the 10/20/30 Rule of PowerPoint. It\u2019s quite simple: a PowerPoint presentation should have ten slides, last no more than twenty minutes, and contain no font ... [Read More]\n \u00bb 10/20/30 Rule of Powerpoint from Ari Paparo Dot Com\n Entrepreneurship guru Guy Kawasaki riffs on the 10/20/30 Rule of PowerPoint. No more than 10 slides No more than 20... [Read More]\n \u00bb PowerPoint - The 10/20/30 Rule from BizImpresario\n Guy Kawasaki's 10/20/30 Rule of Powerpoint presentations [Read More]\n \u00bb \u8c08\u8c08PPT\u7684\u5206\u5bf8 from \u4e00\u80d6\u5230\u5e95\n 550) {this.resized=true; this.width=550;}\" onmouseover=\"if(this.resized) this.style.cursor='hand';\" onclick=\"if(this.resized) window.ope... [Read More]\n \u00bb Usando Powerpoint para saltar el gap experto - autor from Alvaro Gregori, e-learning, formaci\u00f3n on-line\n Cuando iniciamos el desarrollo de un contenido on-line siempre nos enfrentamos al mismo problema, el experto en el tema no suele saber nada de e-learning y nosotros sabemos aun menos sobre el tema del curso: el Gap Experto/Autor. El denostado Powerpoin... [Read More]\n \u00bb Pr from Jean-Luc Raymond\n [Read More]\n \u00bb The 10/20/30 Rule of PowerPoint from Comme si tu veux\n via:Guy Kawasaki A PowerPoint presentation should have ten slides, last no more than twenty minutes, and contain no font smaller than thirty points. 1. Problem 2. Your solution 3. Business model 4. Underlying magic/technology 5. Marketin... [Read More]\n \u00bb Preparing for the SharePoint Community Advancement Initiative from Lawrence Liu's Report from the Inside\n Note to self: Remember to read Guy Kawasaki\u2019s 10/20/30 Rule of PowerPoint before preparing... [Read More]\n \u00bb Let the Good Times Roll by Guy Kawasaki: The 10/20/30 Rule of PowerPoint from The Gavel\n Guy Kawasaki gives good advice in using the 10/20/30 Rule when using PowerPoint in a presentation. [Read More]\n \u00bb How to use PowerPoint More Effectively Using the 10/20/30 Rule from The Gavel\n Guy Kawasaki gives good advice in using the 10/20/30 Rule when using PowerPoint in a presentation. [Read More]\n \u00bb Common icons for PowerPoint slides and presentation tips from Simon Thorneycroft and Jonathan Hodgson\n When preparing a slide desk for a presentation I often look at other Microsoft talks and sometimes borrow... [Read More]\n \u00bb PPT\u6f14\u793a\u768410/20/30\u6cd5\u5219 from \u7f51\u7edc\u730e\u5947\n \u5982\u679c\u6709\u4eba\u8ba9\u4f60\u5728\u51c6\u5907\u6f14\u8bb2\u7684PPT\u7684\u65f6\u5019\u53ea\u80fd\u7528\u4e0d\u5c0f\u4e8e30\u70b9\u7684\u5927\u5b57\u4f53\uff0c\u4f60\u662f\u4e0d\u662f\u89c9\u5f97\u4ed6\u75af\u4e86\uff1f\u4e0d\u8fc7\u8fd9\u6b63\u662f\u98ce\u9669\u6295\u8d44\u5bb6\u76d6\u5ddd\u5d0e\uff08Guy Kawasaki\uff09\u7684\u5efa\u8bae\u3002 Guy Kawasaki\u662f\u4e2a\u6d3b\u8dc3\u7684VC\uff0c\u4e4b\u524d\u66fe\u662fApple\u7684\u5458\u5de5\u5e76\u521b\u7acb\u8fc7\u591a\u5bb6\u516c\u53f8\uff0c\u73b0\u4efb\u98ce\u9669\u6295\u8d44\u516c\u53f8Garage.com\u7684CEO\uff0c\u800c\u4e14\u5199\u8fc7\u591a\u672c\u7545\u9500\u7684\u5546\u4e1a\u4e66\u7c4d\u3002...... [Read More]\n \u00bb Why have I gotten myself into from jgmitchell.com\n I'm starting to believe I chose the most boring degree to persue ever, business management. If it wasn't for Arthur Andersen screwing a bunch of companies up, there wouldn't be much to talk about in class and my textbooks would... [Read More]\n \u00bb What have I gotten myself into from jgmitchell.com\n I'm starting to believe I chose the most boring degree to persue ever, business management. If it wasn't for Arthur Andersen screwing a bunch of companies up, there wouldn't be much to talk about in class and my textbooks would... [Read More]\n \u00bb Improve your PowerPoint-ing from OpsanBlog\n [Read More]",
"title": "The 10/20/30 Rule of PowerPoint",
"type": "article",
"url": "http://blog.guykawasaki.com/2005/12/the_102030_rule.html",
"xpath": "/HTML[1]/BODY[1]/DIV[1]/DIV[1]/DIV[2]/DIV[1]/DIV[1]/DIV[1]/DIV[2]/DIV[2]"
},
{
"author": "Marc Jones says:",
"date": "Sun, 1 Sep 2002 00:00:00 GMT",
"icon": "http://mezzoblue.com/icons/mb-touch-icon.png",
"semantria": {
"config_id": "b12a1cc1-77fc-4466-8f62-94c366dc9fca",
"entities": [
{
"confident": true,
"entity_type": "Person",
"evidence": 7,
"is_about": true,
"label": "http://en.wikipedia.org/wiki/Guy_Kawasaki",
"sentiment_polarity": "positive",
"sentiment_score": 9.258022,
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.4320974,
"strength_score": 1.7774678,
"title": "guys idea"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 3.8913,
"strength_score": 1.3509806,
"title": "good advices"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.0805146,
"title": "continuously struggle"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.0805146,
"title": "powerpoint addictions"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 2.19565,
"strength_score": 0.8421569,
"title": "finnished reading"
}
],
"title": "Guy Kawasaki",
"type": "named"
},
{
"confident": true,
"entity_type": "Job Title",
"evidence": 7,
"is_about": false,
"label": "Job Title",
"sentiment_polarity": "positive",
"sentiment_score": 0.52,
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.46151927,
"strength_score": 2.0,
"title": "venture capitalist"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.23075964,
"strength_score": 1.0,
"title": "mover advantage"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.23075964,
"strength_score": 1.0,
"title": "quite simple"
}
],
"title": "venture capitalist",
"type": "named"
},
{
"confident": true,
"entity_type": "Product",
"evidence": 7,
"is_about": true,
"label": "Product",
"sentiment_polarity": "positive",
"sentiment_score": 2.2506618,
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.4320974,
"strength_score": 1.9134616,
"title": "guys idea"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.8912879,
"title": "continuously struggle"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.8912879,
"title": "powerpoint addictions"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -1.4977666,
"strength_score": 1.3916668,
"title": "quite simple"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -0.5407382,
"strength_score": 1.0920031,
"title": "hour time slot"
}
],
"title": "PowerPoint Presentations",
"type": "named"
},
{
"confident": true,
"entity_type": "Pattern",
"evidence": 7,
"is_about": true,
"label": "Date",
"sentiment_polarity": "positive",
"sentiment_score": 6.500218,
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.4320974,
"strength_score": 1.8275789,
"title": "guys idea"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.4433997,
"title": "continuously struggle"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.4433997,
"title": "powerpoint addictions"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -1.4977666,
"strength_score": 1.0877918,
"title": "quite simple"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -0.5407382,
"strength_score": 0.8275538,
"title": "hour time slot"
}
],
"title": "10/20/30",
"type": "named"
},
{
"confident": true,
"entity_type": "Company",
"evidence": 7,
"is_about": false,
"label": "Company",
"sentiment_polarity": "neutral",
"sentiment_score": 0.026406914,
"themes": [
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 2.0037673,
"strength_score": 1.75,
"title": "good advices"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.805975,
"strength_score": 1.5,
"title": "finnished reading"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 1.805975,
"strength_score": 1.5,
"title": "primeros empleados"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.26116872,
"strength_score": 1.425,
"title": "effective presentation design"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.26116872,
"strength_score": 0.95,
"title": "really nails"
}
],
"title": "Guy",
"type": "named"
}
],
"id": "833ee521da1011e2853f406c8f137d85",
"language": "English",
"language_score": 234.33,
"phrases": [
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 1.11195,
"title": "liked",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "negative",
"sentiment_score": -1.5,
"title": "procrastinators",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 1.0,
"title": "good",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "negative",
"sentiment_score": -1.2,
"title": "bad",
"type": "detected"
},
{
"is_negated": false,
"negating_phrase": "",
"sentiment_polarity": "positive",
"sentiment_score": 0.98,
"title": "improve",
"type": "detected"
},
{
"sentiment_polarity": "neutral",
"title": "new blog",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "first posts",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "regular basis...",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "n't tell",
"type": "possible"
},
{
"sentiment_polarity": "neutral",
"title": "n't know",
"type": "possible"
}
],
"sentiment_polarity": "neutral",
"sentiment_score": 0.12741244,
"status": "PROCESSED",
"summary": "[Read More] \u00bb Guy Kawasaki: La regla 10/20/30 from Ondas, cables, luces, cacharritos y cachivaches Guy Kawasaki no es alguien que \u2018suene\u2019 mucho a la gente, sobre todo una vez despejado el hecho de que no tiene nada que ver con motos japonesas... He calls his theory the 10/20/30 Rule... Stowe actually extends Guys idea with a 1/10/20/30 notion, meaning that each slide should make one part of your [Read More] \u00bb The 10/20/30 Rule of PowerPoint from lifehack.org Presentation Guru Guy Kawasaki introduces a rule called 10/20/30 PowerPoint rule in one of his recent blog posts... ",
"themes": [
{
"evidence": 7,
"is_about": true,
"sentiment_polarity": "positive",
"sentiment_score": 1.4320974,
"strength_score": 1.7533361,
"title": "guys idea"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 4.4563,
"strength_score": 1.3814816,
"title": "good advices"
},
{
"evidence": 7,
"is_about": true,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.0281131,
"title": "continuously struggle"
},
{
"evidence": 7,
"is_about": true,
"sentiment_polarity": "negative",
"sentiment_score": -2.0477877,
"strength_score": 1.0281131,
"title": "powerpoint addictions"
},
{
"evidence": 7,
"is_about": false,
"sentiment_polarity": "positive",
"sentiment_score": 2.19565,
"strength_score": 0.83888894,
"title": "finnished reading"
}
],
"topics": [
{
"hitcount": 0,
"sentiment_polarity": "neutral",
"sentiment_score": -0.322,
"strength_score": 0.5690527,
"title": "Business",
"type": "concept"
},
{
"hitcount": 0,
"sentiment_polarity": "positive",
"sentiment_score": 0.805975,
"strength_score": 0.529719,
"title": "Art",
"type": "concept"
},
{
"hitcount": 0,
"sentiment_polarity": "neutral",
"sentiment_score": 0.42000002,
"strength_score": 0.4588091,
"title": "Technology",
"type": "concept"
},
{
"hitcount": 2,
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"strength_score": 0.0,
"title": "Technology",
"type": "query"
},
{
"hitcount": 1,
"sentiment_polarity": "neutral",
"sentiment_score": -0.322,
"strength_score": 0.0,
"title": "Business",
"type": "query"
}
]
},
"text": "Over the past few years, I\u2019ve been invited to come speak at various events. No big surprise there, as I\u2019ve probably met a bunch of you at them. Since there\u2019s a chance that some are publicly speaking for the first time in Austin this year, I figured I\u2019d share a few things I\u2019ve tried along the way.\nThese tips will probably be more relevant if you\u2019re a nervous talker and you suspect you won\u2019t fill in enough time. (If you\u2019re a rambler, there are other people who can offer you far better advice than I.) It\u2019s timely in a way, because I think I\u2019ve finally crossed a threshold in my own speaking. I started off early 2004 in a bit of a fluster, went into overdrive preparation mode during most of 2005, and now in 2006, I think I\u2019m easing into speaking naturally and comfortably. Finally.\nWhen I first started, I wasn\u2019t sure how to plan for time constraints. Speaking for an hour seemed like a long time to keep going, and there was always a good chance I\u2019d miss important points along the way and end really early.\nSo I approached my preparation as if I were writing an article, which would take approximately an hour to read out loud. I\u2019d hole up in a cafe and breeze through a logical progression of thoughts that ended up being 10 pages or more of printed text, and try to separate that out into smaller bite-sized points for easier scanning when presenting. Then I\u2019d build slides based on that. It was a lot of work.\nNot only was I concerned about the time constraints though, I also got spooked out of allowing myself to ramble at all. I\u2019ve talked through three slides past the one that\u2019s currently on screen, only to madly catch up later. I\u2019ve realized halfway through that I didn\u2019t make a bunch of important points earlier to help support the current slide, so it in turn makes no sense without that context. I\u2019ve even gotten completely stuck from time to time, I think the most notable was on stage at WE04. \u201cUh, I completely forgot where I was going with that\u2026\u201d So to help myself avoid any repeats, I\u2019ve been meticulous in my preparation and made sure to have the entire presentation outlined, with a paper backup on hand, to ensure I could talk my way out of any glitches.\nBut that spiraled out of control, since every time I presented I tried to deliver new material, adapted to the theme of the conference. And thus, new supporting material. Not such a hot idea, I found out, as it\u2019s probably more important to be familiar with your material and comfortable when delivering it, than to be fresh all the time. Not to mention the extra time and effort creating a new set of slides every single time.\nSo recently, I\u2019ve realized a few things that I think are making me a better speaker. I\u2019ve stopped spending ages coming up with finely-detailed outlines of each presentation, and instead I\u2019m leaving more to real-time interaction. I\u2019m still no Veen or Molly, and likely will never be, but at least I\u2019m comfortable in my own methods now, and I think that\u2019s the real key to presenting well.\nKnow your material. But plan to make mistakes anyway. If you talk through a bunch of slides, oh well. Make them available later, and it\u2019s no big deal. If you have to back up and provide extra context that you missed earlier, go right ahead. You can even tell people that\u2019s what you\u2019re doing, although you probably don\u2019t need to. Also, if you\u2019re more of a bullet-point presenter, you can even use your slides as notes to keep you focused throughout. That\u2019s hardly a bad system, though we all know why PowerPoint is evil\u2026\nNervousness goes away. Five minutes into it, you\u2019ll stop being nervous and start having a bit more fun. And after doing a few presentations, you\u2019ll stop getting those butterflies in your stomach before hand, and feel a lot more at home on a stage.\nPause. Get used to taking small pauses here and there, to take a sip of water, to collect your thoughts, to slow yourself down, or whatever else. It\u2019s okay to have a few seconds of silence.\nHave a water bottle with you on stage. You\u2019ll need it for the dry mouth. Some lip balm might not be a bad idea either, if you\u2019re talking more than once.\nIf you get stuck on-stage, it\u2019s not a bad thing. You simply move on to the next topic. The audience might notice, or they might not. A lot of the things you\u2019re thinking internally during that moment will never get picked up by anyone else, so if what you\u2019re saying still makes some form of sense, chances are no one will catch it. (And if it doesn\u2019t make sense, often that\u2019s just glossed over! Not everyone is 100% coherent all the time when speaking, and it rarely matters.)\nBe prepared to allow for spontaneity. You can\u2019t really plan for the asides and diversions that you might make while on stage, but allow them to happen when they do. Often you\u2019ll explore a related idea that ties in with your main points nicely, and it\u2019ll work its way into future presentations. Try to keep yourself always coming back to the topic at hand, or at the very least, make sure to highlight why your diversion is relevant to the discussion. Don\u2019t spend too long on them, however.\nHave a lot of slides. If you\u2019re worried about time, just make sure you\u2019ve got more material than you need. Chances are you won\u2019t get through it all, but that\u2019s not a terrible problem to have. I\u2019d say 40 to 50 slides is probably enough to fill up an entire hour, as that\u2019s just over a minute each. As you get more comfortable, you can start bringing that number down.\nBe prepared, but it\u2019s not worth killing yourself. Don\u2019t go for broke on the slides, go for broke on familiarizing yourself with your topic and your slides. Do three dry runs before you get up on stage. Time yourself, and don\u2019t try to back up and re-try anything during the dry runs. Learn how to talk your way out of a factual error you just caught, speaking flub, or even just simple mispronunciation. Pretend there\u2019s an audience right in front of you and you only have that hour. This will quickly highlight the problem points, and often it\u2019ll cause you to re-arrange your slides.\nIf you don\u2019t fill the entire hour, no big deal. (If you\u2019re only hitting the 30 minute mark, you might need to have more material next time.) Q&A can usually fill up the rest of your time slot, and ever since I\u2019ve started speaking I\u2019ve had more fun answering questions than talking during the actual presentation. Try to make your talk amenable to follow-up questions, and if you\u2019ve got a small enough room (anything over 50 people is pushing it) you can even encourage questions throughout.\nMake sure you\u2019ve got a strong start, and the rest will fall into place. The first few minutes are the most important. The audience doesn\u2019t know what you\u2019re like, you don\u2019t know what they\u2019re like, so you need to get people interested. Plus, the sea of quiet faces is a bit overwhelming, so if you need to script any part of your presentation, this is the best part to script. After you\u2019ve gone through the introduction and started getting into the meat of it, people are likely to be more receptive and you won\u2019t feel so on the spot.\nRe-use material. I don\u2019t think there\u2019s anything wrong with this. If you\u2019re giving repeat presentations, feel free to dip into past talks and pull out points. I lean towards illustrated slides instead of bullet points these days, so I\u2019ve even built up an illustration library which I\u2019ll happily re-use for new talks, even if the subject matter changes.\nOf course SXSW is more oriented toward 15 or 20 minutes of talking, so the time frame is a bit different. But chances are sooner or later you\u2019ll need to talk for an hour or so. Hopefully you\u2019ll be a natural, but if not, maybe these tips will help.",
"title": "mezzoblue \u00a7 Speaking? Tips.",
"type": "article",
"url": "http://mezzoblue.com/archives/2006/02/27/speaking_ti/",
"xpath": "/HTML[1]/BODY[1]/DIV[2]/DIV[1]/DIV[1]/DIV[2]/DIV[1]/DIV[1]/DIV[1]"
},
{
"author": "Roger Anderson",
"date": "Sun, 20 Oct 2030 00:00:00 GMT",
"icon": "http://www.squidoo.com/imgs/ios/icon-57x57.png",
"media": [
{
"link": "http://i1.squidoocdn.com/resize/squidoo_images/250/draft_lens1368888module2451617photo_book_cover_2.jpg",
"primary": "true",
"type": "image"
},
{
"link": "http://i1.squidoocdn.com/resize/squidoo_images/250/draft_lens1368888module2537803photo_alphabet.jpg",
"type": "image"
},
{
"link": "http://i3.squidoocdn.com/resize/squidoo_images/250/draft_lens1368888module2434978photo_Silhouette_of_man_yelling_into_a_bullhorn_uid_2-200x133.jpg",
"type": "image"
},
{
"link": "http://i1.squidoocdn.com/resize/squidoo_images/-1/lens1368888_STEAK_no.jpg",
"type": "image"
},
{
"link": "http://i3.squidoocdn.com/resize/squidoo_images/250/draft_lens1368888module2548299photo_airplane-departing.jpg",
"type": "image"
}
],
"semantria": {
"config_id": "b12a1cc1-77fc-4466-8f62-94c366dc9fca",
"entities": [
{
"confident": true,
"entity_type": "Place",
"evidence": 7,
"is_about": true,
"label": "Place",
"sentiment_polarity": "neutral",
"sentiment_score": 0.2817067,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.22141083,
"strength_score": 1.0,
"title": "big surprise"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.22141083,
"strength_score": 1.0,
"title": "nervous talker"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.22141083,
"strength_score": 1.0,
"title": "enough time"
}
],
"title": "Austin",
"type": "named"
},
{
"confident": true,
"entity_type": "Product",
"evidence": 7,
"is_about": false,
"label": "Product",
"sentiment_polarity": "negative",
"sentiment_score": -1.1348244,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -0.50055915,
"strength_score": 1.5,
"title": "evil... nervousness"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -0.50055915,
"strength_score": 1.0,
"title": "bullet-point presenter"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "negative",
"sentiment_score": -0.50055915,
"strength_score": 1.0,
"title": "bad system"
}
],
"title": "PowerPoint",
"type": "named"
},
{
"confident": true,
"entity_type": "Person",
"evidence": 4,
"is_about": false,
"label": "Person",
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"strength_score": 1.0,
"title": "finely-detailed outlines"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"strength_score": 1.0,
"title": "spending ages"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"strength_score": 1.0,
"title": "real key"
}
],
"title": "Veen",
"type": "named"
},
{
"confident": true,
"entity_type": "Person",
"evidence": 4,
"is_about": false,
"label": "Person",
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"strength_score": 1.0,
"title": "finely-detailed outlines"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"strength_score": 1.0,
"title": "spending ages"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": -0.1,
"strength_score": 1.0,
"title": "real key"
}
],
"title": "Molly",
"type": "named"
},
{
"confident": true,
"entity_type": "Quote",
"evidence": 4,
"is_about": false,
"label": "Quote",
"sentiment_polarity": "neutral",
"sentiment_score": 0.0,
"themes": [
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.0047814995,
"strength_score": 1.0,
"title": "entire presentation"
},
{
"evidence": 4,
"is_about": false,
"sentiment_polarity": "neutral",
"sentiment_score": 0.0047814995,
"strength_score": 1.0,
"title": "paper backup"
}
],