-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwitter_automa.log
More file actions
991 lines (890 loc) · 41.2 KB
/
twitter_automa.log
File metadata and controls
991 lines (890 loc) · 41.2 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
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 2.9.7420 64-bit) (preloaded format=pdflatex 2020.5.15) 12 JUN 2020 11:49
entering extended mode
**./twitter_automa.tex
(twitter_automa.tex
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-05-11>
("C:\Program Files\MiKTeX 2.9\tex/latex/base\article.cls"
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex/latex/base\size12.clo"
File: size12.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\c@part=\count167
\c@section=\count168
\c@subsection=\count169
\c@subsubsection=\count170
\c@paragraph=\count171
\c@subparagraph=\count172
\c@figure=\count173
\c@table=\count174
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
("C:\Program Files\MiKTeX 2.9\tex/latex/geometry\geometry.sty"
Package: geometry 2020/01/02 v5.9 Page Geometry
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks15
)
("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifvtex.sty"
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\iftex.sty"
Package: iftex 2020/03/06 v1.0d TeX engine tests
))
\Gm@cnth=\count175
\Gm@cntv=\count176
\c@Gm@tempcnt=\count177
\Gm@bindingoffset=\dimen135
\Gm@wd@mp=\dimen136
\Gm@odd@mp=\dimen137
\Gm@even@mp=\dimen138
\Gm@layoutwidth=\dimen139
\Gm@layoutheight=\dimen140
\Gm@layouthoffset=\dimen141
\Gm@layoutvoffset=\dimen142
\Gm@dimlist=\toks16
("C:\Program Files\MiKTeX 2.9\tex/latex/geometry\geometry.cfg"))
("C:\Program Files\MiKTeX 2.9\tex/latex/base\inputenc.sty"
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks17
\inpenc@posthook=\toks18
)
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\mathpazo.sty"
Package: mathpazo 2020/03/25 PSNFSS-v9.3 Palatino w/ Pazo Math (D.Puga, WaS)
\symupright=\mathgroup4
)
("C:\Program Files\MiKTeX 2.9\tex/latex/base\fontenc.sty"
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+ppl on input line 11
2.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\t1ppl.fd"
File: t1ppl.fd 2001/06/04 font definitions for T1/ppl.
))
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\microtype.sty"
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
\MT@toks=\toks19
\MT@count=\count178
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen143
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count179
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\microtype-pdftex.def"
File: microtype-pdftex.def 2019/11/18 v2.7d Definitions specific to pdftex (RS)
LaTeX Info: Redefining \lsstyle on input line 914.
LaTeX Info: Redefining \lslig on input line 914.
\MT@outer@space=\skip49
)
Package microtype Info: Loading configuration file microtype.cfg.
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\microtype.cfg"
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
))
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphicx.sty"
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphics.sty"
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\trig.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-cfg\graphics.cfg"
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 105.
("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-def\pdftex.def"
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
))
\Gin@req@height=\dimen144
\Gin@req@width=\dimen145
)
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hyperref.sty"
Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX
("C:\Program Files\MiKTeX 2.9\tex/generic/ltxcmds\ltxcmds.sty"
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/latex/pdftexcmds\pdftexcmds.sty"
Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO
)
("C:\Program Files\MiKTeX 2.9\tex/generic/infwarerr\infwarerr.sty"
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
("C:\Program Files\MiKTeX 2.9\tex/generic/kvsetkeys\kvsetkeys.sty"
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/generic/kvdefinekeys\kvdefinekeys.sty"
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/generic/pdfescape\pdfescape.sty"
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/latex/hycolor\hycolor.sty"
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/latex/letltxmacro\letltxmacro.sty"
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/latex/auxhook\auxhook.sty"
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/latex/kvoptions\kvoptions.sty"
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
)
\@linkdim=\dimen146
\Hy@linkcounter=\count180
\Hy@pagecounter=\count181
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\pd1enc.def"
File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
("C:\Program Files\MiKTeX 2.9\tex/generic/intcalc\intcalc.sty"
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/generic/etexcmds\etexcmds.sty"
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count182
Package hyperref Info: Hyper figures OFF on input line 4547.
Package hyperref Info: Link nesting OFF on input line 4552.
Package hyperref Info: Hyper index ON on input line 4555.
Package hyperref Info: Plain pages OFF on input line 4562.
Package hyperref Info: Backreferencing OFF on input line 4567.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4800.
\c@Hy@tempcnt=\count183
("C:\Program Files\MiKTeX 2.9\tex/latex/url\url.sty"
\Urlmuskip=\muskip16
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5159.
\XeTeXLinkMargin=\dimen147
("C:\Program Files\MiKTeX 2.9\tex/generic/bitset\bitset.sty"
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
("C:\Program Files\MiKTeX 2.9\tex/generic/bigintcalc\bigintcalc.sty"
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count184
\Field@Width=\dimen148
\Fld@charsize=\dimen149
Package hyperref Info: Hyper figures OFF on input line 6430.
Package hyperref Info: Link nesting OFF on input line 6435.
Package hyperref Info: Hyper index ON on input line 6438.
Package hyperref Info: backreferencing OFF on input line 6445.
Package hyperref Info: Link coloring OFF on input line 6450.
Package hyperref Info: Link coloring with OCG OFF on input line 6455.
Package hyperref Info: PDF/A mode OFF on input line 6460.
LaTeX Info: Redefining \ref on input line 6500.
LaTeX Info: Redefining \pageref on input line 6504.
("C:\Program Files\MiKTeX 2.9\tex/generic/atbegshi\atbegshi.sty"
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count185
\c@Item=\count186
\c@Hfootnote=\count187
)
Package hyperref Info: Driver (autodetected): hpdftex.
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hpdftex.def"
File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX
("C:\Program Files\MiKTeX 2.9\tex/latex/atveryend\atveryend.sty"
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
)
\Fld@listcount=\count188
\c@bookmark@seq@number=\count189
("C:\Program Files\MiKTeX 2.9\tex/latex/rerunfilecheck\rerunfilecheck.sty"
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
("C:\Program Files\MiKTeX 2.9\tex/generic/uniquecounter\uniquecounter.sty"
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip50
)
("C:\Program Files\MiKTeX 2.9\tex/latex/float\float.sty"
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count190
\float@exts=\toks20
\float@box=\box45
\@float@everytoks=\toks21
\@floatcapt=\box46
)
("C:\Program Files\MiKTeX 2.9\tex/latex/wrapfig\wrapfig.sty"
\wrapoverhang=\dimen150
\WF@size=\dimen151
\c@WF@wrappedlines=\count191
\WF@box=\box47
\WF@everypar=\toks22
Package: wrapfig 2003/01/31 v 3.6
)
("C:\Program Files\MiKTeX 2.9\tex/latex/lipsum\lipsum.sty"
("C:\Program Files\MiKTeX 2.9\tex/latex/l3kernel\expl3.sty"
Package: expl3 2020-05-11 L3 programming layer (loader)
("C:\Program Files\MiKTeX 2.9\tex/latex/l3backend\l3backend-pdfmode.def"
File: l3backend-pdfmode.def 2020-05-05 L3 backend support: PDF mode
\l__kernel_color_stack_int=\count192
\l__pdf_internal_box=\box48
))
("C:\Program Files\MiKTeX 2.9\tex/latex/l3packages/xparse\xparse.sty"
Package: xparse 2020-03-06 L3 Experimental document command parser
\l__xparse_current_arg_int=\count193
\g__xparse_grabber_int=\count194
\l__xparse_m_args_int=\count195
\l__xparse_v_nesting_int=\count196
)
Package: lipsum 2019/01/02 v2.2 150 paragraphs of Lorem Ipsum dummy text
("C:\Program Files\MiKTeX 2.9\tex/latex/lipsum\lipsum.ltd.tex"
File: lipsum.ltd.tex 2019/01/02 v2.2 The Lorem ipsum dummy text
))
(twitter_automa.aux)
\openout1 = `twitter_automa.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 51.
LaTeX Font Info: ... okay on input line 51.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(89.62709pt, 418.25368pt, 89.6271pt)
* v-part:(T,H,B)=(101.40665pt, 591.5302pt, 152.11pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=418.25368pt
* \textheight=591.5302pt
* \oddsidemargin=17.3571pt
* \evensidemargin=17.3571pt
* \topmargin=-7.86334pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=12.0pt
* \footskip=30.0pt
* \marginparwidth=44.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.8pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
\big@size=\dimen152
LaTeX Info: Redefining \microtypecontext on input line 51.
Package microtype Info: Generating PDF output.
Package microtype Info: Character protrusion enabled (level 2).
Package microtype Info: Using default protrusion set `alltext'.
Package microtype Info: Automatic font expansion enabled (level 2),
(microtype) stretch: 20, shrink: 20, step: 1, non-selected.
Package microtype Info: Using default expansion set `basictext'.
LaTeX Info: Redefining \showhyphens on input line 51.
Package microtype Info: No adjustment of tracking.
Package microtype Info: No adjustment of interword spacing.
Package microtype Info: No adjustment of character kerning.
("C:\Program Files\MiKTeX 2.9\tex/latex/microtype\mt-ppl.cfg"
File: mt-ppl.cfg 2005/11/16 v1.6 microtype config. file: Palatino (RS)
)
("C:\Program Files\MiKTeX 2.9\tex/context/base/mkii\supp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count197
\scratchdimen=\dimen153
\scratchbox=\box49
\nofMPsegments=\count198
\nofMParguments=\count199
\everyMPshowfont=\toks23
\MPscratchCnt=\count266
\MPscratchDim=\dimen154
\MPnumerator=\count267
\makeMPintoPDFobject=\count268
\everyMPtoPDFconversion=\toks24
) ("C:\Program Files\MiKTeX 2.9\tex/latex/epstopdf-pkg\epstopdf-base.sty"
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
)
\AtBeginShipoutBox=\box50
Package hyperref Info: Link coloring OFF on input line 51.
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\nameref.sty"
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
("C:\Program Files\MiKTeX 2.9\tex/latex/refcount\refcount.sty"
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
("C:\Program Files\MiKTeX 2.9\tex/generic/gettitlestring\gettitlestring.sty"
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count269
)
LaTeX Info: Redefining \ref on input line 51.
LaTeX Info: Redefining \pageref on input line 51.
LaTeX Info: Redefining \nameref on input line 51.
(twitter_automa.out) (twitter_automa.out)
\@outlinefile=\write3
\openout3 = `twitter_automa.out'.
LaTeX Font Info: Trying to load font information for T1+cmtt on input line 7
8.
("C:\Program Files\MiKTeX 2.9\tex/latex/base\t1cmtt.fd"
File: t1cmtt.fd 2019/12/16 v2.5j Standard LaTeX font definitions
)
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `cmtt' (encoding: T1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
LaTeX Font Info: Trying to load font information for OT1+ppl on input line 7
8.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\ot1ppl.fd"
File: ot1ppl.fd 2001/06/04 font definitions for OT1/ppl.
)
LaTeX Font Info: Trying to load font information for OML+zplm on input line
78.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\omlzplm.fd"
File: omlzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OML/zplm.
)
LaTeX Font Info: Trying to load font information for OMS+zplm on input line
78.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\omszplm.fd"
File: omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm.
)
LaTeX Font Info: Trying to load font information for OMX+zplm on input line
78.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\omxzplm.fd"
File: omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm.
)
LaTeX Font Info: Trying to load font information for OT1+zplm on input line
78.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\ot1zplm.fd"
File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm.
)
Package microtype Info: Loading generic protrusion settings for font family
(microtype) `zplm' (encoding: OT1).
(microtype) For optimal results, create family-specific settings.
(microtype) See the microtype manual for details.
[1
{C:/Users/Jolsty/AppData/Local/MiKTeX/2.9/pdftex/config/pdftex.map}] (twitter_a
utoma.toc)
\tf@toc=\write4
\openout4 = `twitter_automa.toc'.
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
<to be read again>
\relax
l.95 \newpage
% Begins the essay on a new page instead of on the same page a...
[1] [2]
<images/getTweetsTime.png, id=135, 503.63156pt x 161.85469pt>
File: images/getTweetsTime.png Graphic file (type png)
<use images/getTweetsTime.png>
Package pdftex.def Info: images/getTweetsTime.png used on input line 172.
(pdftex.def) Requested size: 418.25368pt x 134.4159pt.
[3]
<images/getStatusesTimeline.png, id=141, 941.76843pt x 521.69907pt>
File: images/getStatusesTimeline.png Graphic file (type png)
<use images/getStatusesTimeline.png>
Package pdftex.def Info: images/getStatusesTimeline.png used on input line 183
.
(pdftex.def) Requested size: 418.25368pt x 231.69762pt.
[4pdfTeX warning (ext4): destination with the same identifier (name{figure.1})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.190
pdfTeX warning (ext4): destination with the same identifier (name{figure.
2}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.190
<./images/getTweetsTime.png> <./images/getStatusesTimeline.png>]
<images/informationSelection.png, id=150, 699.36281pt x 343.2825pt>
File: images/informationSelection.png Graphic file (type png)
<use images/informationSelection.png>
Package pdftex.def Info: images/informationSelection.png used on input line 19
2.
(pdftex.def) Requested size: 418.25368pt x 205.3006pt.
<images/statisticsDiv.png, id=151, 462.97969pt x 18.0675pt>
File: images/statisticsDiv.png Graphic file (type png)
<use images/statisticsDiv.png>
Package pdftex.def Info: images/statisticsDiv.png used on input line 207.
(pdftex.def) Requested size: 418.25368pt x 16.32234pt.
[5pdfTeX warning (ext4): destination with the same identifier (name{figure.3})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.214
pdfTeX warning (ext4): destination with the same identifier (name{figure.
4}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.214
<./images/informationSelection.png> <./images/statisticsDiv.png>]
<images/interpretingTweetStatistics.png, id=160, 859.71187pt x 426.84468pt>
File: images/interpretingTweetStatistics.png Graphic file (type png)
<use images/interpretingTweetStatistics.png>
Package pdftex.def Info: images/interpretingTweetStatistics.png used on input
line 216.
(pdftex.def) Requested size: 418.25368pt x 207.66422pt.
<images/getStatsHTMLTime.png, id=161, 714.41907pt x 154.32657pt>
File: images/getStatsHTMLTime.png Graphic file (type png)
<use images/getStatsHTMLTime.png>
Package pdftex.def Info: images/getStatsHTMLTime.png used on input line 225.
(pdftex.def) Requested size: 418.25368pt x 90.35013pt.
[6pdfTeX warning (ext4): destination with the same identifier (name{figure.5})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.254
pdfTeX warning (ext4): destination with the same identifier (name{figure.
6}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.254
<./images/interpretingTweetStatistics.png> <./images/getStatsHTMLTime.pn
g>]
<images/EJS.png, id=171, 761.09344pt x 341.77687pt>
File: images/EJS.png Graphic file (type png)
<use images/EJS.png>
Package pdftex.def Info: images/EJS.png used on input line 256.
(pdftex.def) Requested size: 418.25368pt x 187.82661pt.
[7]
<images/hashtagButton.png, id=176, 537.50812pt x 260.47313pt>
File: images/hashtagButton.png Graphic file (type png)
<use images/hashtagButton.png>
Package pdftex.def Info: images/hashtagButton.png used on input line 264.
(pdftex.def) Requested size: 418.25368pt x 202.68333pt.
[8pdfTeX warning (ext4): destination with the same identifier (name{figure.7})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.268
<./images/EJS.png>]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 273.
<images/htmlAPI.png, id=184, 761.84625pt x 362.10281pt>
File: images/htmlAPI.png Graphic file (type png)
<use images/htmlAPI.png>
Package pdftex.def Info: images/htmlAPI.png used on input line 276.
(pdftex.def) Requested size: 418.25368pt x 198.79248pt.
[9pdfTeX warning (ext4): destination with the same identifier (name{figure.8})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.280
<./images/hashtagButton.png>]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 281.
<images/embeddedCSS.png, id=193, 777.65532pt x 76.78688pt>
File: images/embeddedCSS.png Graphic file (type png)
<use images/embeddedCSS.png>
Package pdftex.def Info: images/embeddedCSS.png used on input line 287.
(pdftex.def) Requested size: 418.25368pt x 41.30025pt.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 292.
[10pdfTeX warning (ext4): destination with the same identifier (name{figure.9})
has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.301
pdfTeX warning (ext4): destination with the same identifier (name{figure.
10}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.301
<./images/htmlAPI.png> <./images/embeddedCSS.png>]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 302.
<images/AJAX.png, id=208, 638.385pt x 606.76688pt>
File: images/AJAX.png Graphic file (type png)
<use images/AJAX.png>
Package pdftex.def Info: images/AJAX.png used on input line 307.
(pdftex.def) Requested size: 418.25368pt x 397.54169pt.
[11]
<images/AJAXserver.png, id=215, 536.75531pt x 346.29375pt>
File: images/AJAXserver.png Graphic file (type png)
<use images/AJAXserver.png>
Package pdftex.def Info: images/AJAXserver.png used on input line 315.
(pdftex.def) Requested size: 418.25368pt x 269.83855pt.
[12pdfTeX warning (ext4): destination with the same identifier (name{figure.11
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.319
<./images/AJAX.png>]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 320.
<images/NodeJS.png, id=224, 350.05782pt x 165.61874pt>
File: images/NodeJS.png Graphic file (type png)
<use images/NodeJS.png>
Package pdftex.def Info: images/NodeJS.png used on input line 324.
(pdftex.def) Requested size: 418.25368pt x 197.89742pt.
[13pdfTeX warning (ext4): destination with the same identifier (name{figure.12}
) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.328
<./images/AJAXserver.png>]
<images/express.png, id=232, 489.32813pt x 268.00125pt>
File: images/express.png Graphic file (type png)
<use images/express.png>
Package pdftex.def Info: images/express.png used on input line 340.
(pdftex.def) Requested size: 418.25368pt x 229.078pt.
[14pdfTeX warning (ext4): destination with the same identifier (name{figure.13
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.344
<./images/NodeJS.png>]
<images/expresslisten.png, id=240, 1106.63437pt x 321.45094pt>
File: images/expresslisten.png Graphic file (type png)
<use images/expresslisten.png>
Package pdftex.def Info: images/expresslisten.png used on input line 349.
(pdftex.def) Requested size: 418.25368pt x 121.49045pt.
[15pdfTeX warning (ext4): destination with the same identifier (name{figure.14
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.357
pdfTeX warning (ext4): destination with the same identifier (name{figure.
15}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.357
<./images/express.png> <./images/expresslisten.png>]
<images/bodyparser.png, id=251, 998.22937pt x 153.57375pt>
File: images/bodyparser.png Graphic file (type png)
<use images/bodyparser.png>
Package pdftex.def Info: images/bodyparser.png used on input line 359.
(pdftex.def) Requested size: 418.25368pt x 64.34587pt.
Overfull \hbox (39.96246pt too wide) in paragraph at lines 364--367
\T1/ppl/m/n/12 (-20) this piece of code will re-sult in C:/Users/Jolsty/Desktop
/twitter_project_heroku/public.
[]
<images/pathStatic.png, id=253, 627.09282pt x 40.65187pt>
File: images/pathStatic.png Graphic file (type png)
<use images/pathStatic.png>
Package pdftex.def Info: images/pathStatic.png used on input line 369.
(pdftex.def) Requested size: 418.25368pt x 27.1144pt.
<images/twitter.png, id=256, 726.46407pt x 503.63156pt>
File: images/twitter.png Graphic file (type png)
<use images/twitter.png>
Package pdftex.def Info: images/twitter.png used on input line 380.
(pdftex.def) Requested size: 418.25368pt x 289.97014pt.
[16pdfTeX warning (ext4): destination with the same identifier (name{figure.16}
) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.384
pdfTeX warning (ext4): destination with the same identifier (name{figure.
17}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.384
<./images/bodyparser.png> <./images/pathStatic.png>]
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 385.
Package hyperref Warning: Token not allowed in a PDF string (PDFDocEncoding):
(hyperref) removing `\@ifnextchar' on input line 391.
[17pdfTeX warning (ext4): destination with the same identifier (name{figure.18}
) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.395
<./images/twitter.png>]
<images/trendsAPIv2.png, id=278, 746.03719pt x 475.7775pt>
File: images/trendsAPIv2.png Graphic file (type png)
<use images/trendsAPIv2.png>
Package pdftex.def Info: images/trendsAPIv2.png used on input line 401.
(pdftex.def) Requested size: 418.25368pt x 266.73122pt.
[18pdfTeX warning (ext4): destination with the same identifier (name{figure.19
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.408
<./images/trendsAPIv2.png>]
<images/trendsInterval.png, id=289, 755.07094pt x 266.49562pt>
File: images/trendsInterval.png Graphic file (type png)
<use images/trendsInterval.png>
Package pdftex.def Info: images/trendsInterval.png used on input line 410.
(pdftex.def) Requested size: 418.25368pt x 147.6181pt.
<images/trendsAPI.png, id=290, 600.74437pt x 325.215pt>
File: images/trendsAPI.png Graphic file (type png)
<use images/trendsAPI.png>
Package pdftex.def Info: images/trendsAPI.png used on input line 416.
(pdftex.def) Requested size: 418.25368pt x 226.42819pt.
[19pdfTeX warning (ext4): destination with the same identifier (name{figure.20
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.423 T
his endpoint updates the authenticating user’s current status, al...
pdfTeX warning (ext4): destination with the same identifier (name{figure.21}) h
as been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.423 T
his endpoint updates the authenticating user’s current status, al...
<./images/trendsInterval.png> <./images/trendsAPI.png>]
<images/tweetEndpoint.png, id=299, 928.97063pt x 356.83313pt>
File: images/tweetEndpoint.png Graphic file (type png)
<use images/tweetEndpoint.png>
Package pdftex.def Info: images/tweetEndpoint.png used on input line 428.
(pdftex.def) Requested size: 418.25368pt x 160.66054pt.
<images/tweetOut.png, id=300, 824.32968pt x 329.73187pt>
File: images/tweetOut.png Graphic file (type png)
<use images/tweetOut.png>
Package pdftex.def Info: images/tweetOut.png used on input line 436.
(pdftex.def) Requested size: 418.25368pt x 167.30066pt.
[20pdfTeX warning (ext4): destination with the same identifier (name{figure.22
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.440
<./images/tweetEndpoint.png>]
<images/getTweetEndpoint.png, id=308, 956.07187pt x 560.0925pt>
File: images/getTweetEndpoint.png Graphic file (type png)
<use images/getTweetEndpoint.png>
Package pdftex.def Info: images/getTweetEndpoint.png used on input line 449.
(pdftex.def) Requested size: 418.25368pt x 245.02277pt.
[21pdfTeX warning (ext4): destination with the same identifier (name{figure.23
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.453
<./images/tweetOut.png>]
<images/getTweet.png, id=316, 1068.99374pt x 432.86719pt>
File: images/getTweet.png Graphic file (type png)
<use images/getTweet.png>
Package pdftex.def Info: images/getTweet.png used on input line 460.
(pdftex.def) Requested size: 418.25368pt x 169.36574pt.
[22pdfTeX warning (ext4): destination with the same identifier (name{figure.24
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.464
<./images/getTweetEndpoint.png>]
<images/deprecatedStream.png, id=324, 382.42876pt x 318.43968pt>
File: images/deprecatedStream.png Graphic file (type png)
<use images/deprecatedStream.png>
Package pdftex.def Info: images/deprecatedStream.png used on input line 475.
(pdftex.def) Requested size: 292.77629pt x 243.79991pt.
[23pdfTeX warning (ext4): destination with the same identifier (name{figure.25
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.479
<./images/getTweet.png>]
<images/activityAPIs.png, id=333, 935.74594pt x 514.17094pt>
File: images/activityAPIs.png Graphic file (type png)
<use images/activityAPIs.png>
Package pdftex.def Info: images/activityAPIs.png used on input line 481.
(pdftex.def) Requested size: 418.25368pt x 229.82135pt.
[24pdfTeX warning (ext4): destination with the same identifier (name{figure.26
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.489
pdfTeX warning (ext4): destination with the same identifier (name{figure.
27}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.489
<./images/deprecatedStream.png> <./images/activityAPIs.png>]
<images/accountActivitySteps.png, id=343, 929.72343pt x 561.59813pt>
File: images/accountActivitySteps.png Graphic file (type png)
<use images/accountActivitySteps.png>
Package pdftex.def Info: images/accountActivitySteps.png used on input line 49
1.
(pdftex.def) Requested size: 418.25368pt x 252.6397pt.
<images/webhookPOST.png, id=344, 1138.2525pt x 599.23875pt>
File: images/webhookPOST.png Graphic file (type png)
<use images/webhookPOST.png>
Package pdftex.def Info: images/webhookPOST.png used on input line 499.
(pdftex.def) Requested size: 418.25368pt x 220.19702pt.
[25pdfTeX warning (ext4): destination with the same identifier (name{figure.28
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.503
<./images/accountActivitySteps.png>]
<images/createWebhook.png, id=352, 1068.99374pt x 414.79968pt>
File: images/createWebhook.png Graphic file (type png)
<use images/createWebhook.png>
Package pdftex.def Info: images/createWebhook.png used on input line 509.
(pdftex.def) Requested size: 418.25368pt x 162.29655pt.
[26pdfTeX warning (ext4): destination with the same identifier (name{figure.29
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.514
<./images/webhookPOST.png>]
<images/CRCrequirements.png, id=360, 971.88094pt x 368.87813pt>
File: images/CRCrequirements.png Graphic file (type png)
<use images/CRCrequirements.png>
Package pdftex.def Info: images/CRCrequirements.png used on input line 516.
(pdftex.def) Requested size: 418.25368pt x 158.74396pt.
<images/CRCresponse.png, id=361, 1145.78062pt x 686.565pt>
File: images/CRCresponse.png Graphic file (type png)
<use images/CRCresponse.png>
Package pdftex.def Info: images/CRCresponse.png used on input line 522.
(pdftex.def) Requested size: 418.25368pt x 250.62033pt.
[27pdfTeX warning (ext4): destination with the same identifier (name{figure.30
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.526
pdfTeX warning (ext4): destination with the same identifier (name{figure.
31}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.526
<./images/createWebhook.png> <./images/CRCrequirements.png>]
<images/hashCreation.png, id=370, 1175.14032pt x 547.2947pt>
File: images/hashCreation.png Graphic file (type png)
<use images/hashCreation.png>
Package pdftex.def Info: images/hashCreation.png used on input line 528.
(pdftex.def) Requested size: 418.25368pt x 194.78786pt.
[28pdfTeX warning (ext4): destination with the same identifier (name{figure.32
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.535
pdfTeX warning (ext4): destination with the same identifier (name{figure.
33}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.535
<./images/CRCresponse.png> <./images/hashCreation.png>]
<images/addWebhookSubscription.png, id=379, 1147.28625pt x 279.29344pt>
File: images/addWebhookSubscription.png Graphic file (type png)
<use images/addWebhookSubscription.png>
Package pdftex.def Info: images/addWebhookSubscription.png used on input line
537.
(pdftex.def) Requested size: 418.25368pt x 101.81554pt.
<images/favoriteEventExample.png, id=380, 839.38594pt x 265.74281pt>
File: images/favoriteEventExample.png Graphic file (type png)
<use images/favoriteEventExample.png>
Package pdftex.def Info: images/favoriteEventExample.png used on input line 54
5.
(pdftex.def) Requested size: 418.25368pt x 132.41692pt.
[29pdfTeX warning (ext4): destination with the same identifier (name{figure.34
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.554
pdfTeX warning (ext4): destination with the same identifier (name{figure.
35}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.554
<./images/addWebhookSubscription.png> <./images/favoriteEventExample.png
>]
<images/intervalUpdate.png, id=389, 842.39719pt x 383.18156pt>
File: images/intervalUpdate.png Graphic file (type png)
<use images/intervalUpdate.png>
Package pdftex.def Info: images/intervalUpdate.png used on input line 556.
(pdftex.def) Requested size: 418.25368pt x 190.25137pt.
<images/first_draft.jpg, id=390, 2629.825pt x 4673.46pt>
File: images/first_draft.jpg Graphic file (type jpg)
<use images/first_draft.jpg>
Package pdftex.def Info: images/first_draft.jpg used on input line 573.
(pdftex.def) Requested size: 250.95476pt x 445.90872pt.
[30pdfTeX warning (ext4): destination with the same identifier (name{figure.36
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.577
<./images/intervalUpdate.png>]
<images/API.jpg, id=398, 2629.825pt x 4673.46pt>
File: images/API.jpg Graphic file (type jpg)
<use images/API.jpg>
Package pdftex.def Info: images/API.jpg used on input line 581.
(pdftex.def) Requested size: 292.77629pt x 520.28627pt.
[31pdfTeX warning (ext4): destination with the same identifier (name{figure.37
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.585
<./images/first_draft.jpg>]
<images/MVC.jpg, id=404, 2629.825pt x 4673.46pt>
File: images/MVC.jpg Graphic file (type jpg)
<use images/MVC.jpg>
Package pdftex.def Info: images/MVC.jpg used on input line 589.
(pdftex.def) Requested size: 292.77629pt x 520.28627pt.
[32pdfTeX warning (ext4): destination with the same identifier (name{figure.38
}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.593
<./images/API.jpg>] [33pdfTeX warning (ext4): destination with the same
identifier (name{figure.39}) has been already used, duplicate ignored
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
\fi \fi
l.607
<./images/MVC.jpg>] [34] (twitter_automa.bbl
LaTeX Font Info: Trying to load font information for TS1+ppl on input line 2
5.
("C:\Program Files\MiKTeX 2.9\tex/latex/psnfss\ts1ppl.fd"
File: ts1ppl.fd 2001/06/04 font definitions for TS1/ppl.
)
Underfull \hbox (badness 4981) in paragraph at lines 40--45
\T1/ppl/m/n/12 (+20) case study. May 2018. []$\T1/cmtt/m/n/12 https : / / med
ium . com / @trombino . marco /
[]
Overfull \hbox (33.25066pt too wide) in paragraph at lines 40--45
\T1/cmtt/m/n/12 you-[]might-[]not-[]need-[]jquery-[]a-[]2018-[]performance-[]ca
se-[]study-[]aa6531d0b0c3$[]\T1/ppl/m/n/12 (-20) .
[]
[35]
Underfull \hbox (badness 10000) in paragraph at lines 85--89
\T1/cmtt/m/n/12 en / docs / accounts-[]and-[]users / subscribe-[]account-[]acti
vity / guides /
[]
)
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 620.
[36]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 620.
(twitter_automa.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 620.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 620.
Package rerunfilecheck Info: File `twitter_automa.out' has not changed.
(rerunfilecheck) Checksum: EB37C2E8690432F0127F8450064B87D0;1308.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 620.
)
Here is how much of TeX's memory you used:
8974 strings out of 480777
150249 string characters out of 2904602
606684 words of memory out of 3000000
24488 multiletter control sequences out of 15000+200000
577120 words of font info for 191 fonts, out of 3000000 for 9000
1141 hyphenation exceptions out of 8191
36i,6n,42p,800b,434s stack positions out of 5000i,500n,10000p,200000b,50000s
<C:\Users\Jolsty\AppData\Local\MiKTeX\2.9\fonts/pk/ljfour/jknappen/ec/dpi600
\ectt1200.pk> <C:\Users\Jolsty\AppData\Local\MiKTeX\2.9\fonts/pk/ljfour/jknappe
n/ec/dpi600\ectt1440.pk>{C:/Program Files/MiKTeX 2.9/fonts/enc/dvips/base/8r.en
c}<C:/Program Files/MiKTeX 2.9/fonts/type1/urw/palatino/uplb8a.pfb><C:/Program
Files/MiKTeX 2.9/fonts/type1/urw/palatino/uplr8a.pfb><C:/Program Files/MiKTeX 2
.9/fonts/type1/urw/palatino/uplri8a.pfb>
Output written on twitter_automa.pdf (37 pages, 10771384 bytes).
PDF statistics:
574 PDF objects out of 1000 (max. 8388607)
118 named destinations out of 1000 (max. 500000)
39268 words of extra memory for PDF output out of 42996 (max. 10000000)