-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlima.jsonl
1030 lines (1030 loc) · 277 KB
/
lima.jsonl
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
{"question_id": "lima_0", "question": "Can brain cells move? By movement I mean long distance migration (preferably within the brain only)."}
{"question_id": "lima_1", "question": "In our computer systems lecture we were introduced to the MIPS processor. It was (re)developed over the course of the term and has in fact been quite easy to understand. It uses a RISC design, that is its elementary commands are regularly encoded and there are only few of them in order to keep the wires simple.\nIt was mentioned that CISC follows a different philosophy. I looked briefly at the x86 instruction set and was shocked. I can not image how anyone would want to build a processor that uses so complex a command set!\nSo I figure there have to be good arguments why large portions of the processor market use CISC architectures. What are they? "}
{"question_id": "lima_2", "question": "View tabular file such as CSV from command line, having horizontal and vertical scrolling would be great."}
{"question_id": "lima_3", "question": "Slater type orbitals (STO) are considered to be more accurate than gaussian type orbitals (GTO) for atomic and molecular QM calculations because - among other reasons - they decay with $e^{-\\alpha r}$ as $r \\to \\infty$. But GTOs are more popular because they are easier to calculate with. GTOs decay with $e^{-\\alpha r^2}$, so its adequate to sometimes add diffuse functions to the GTO basis set to compensate for gaussian decay behaviour.\nAlso, exact hydrogen wavefunctions decay exponentially, so the motivation for STOs.\nI understand that the only boundary requirement for solving the Schr\u00f6dinger equation for atoms and molecules in free space is that the wavefunction goes zero as $r \\to \\infty$, but there are no a priori requirements for the way it decays as it does so.\nMy question is: do we have theoretical (ab initio) and/or experimental reasons to believe that all atomic and molecular wavefunctions decay like $e^{-\\alpha r}$ as $r \\to \\infty$."}
{"question_id": "lima_4", "question": "Explain what \"git reset\" does. I come from a SVN background and Git is a whole new paradigm. I got mercurial easily, but Git is much more technical.\nI think ```git reset``` is close to ```hg revert```, but it seems there are differences. Please include detailed explanations about:\n\n* the options ```--hard```, ```--soft``` and ```--merge```;\n* the strange notation you use with ```HEAD``` such as ```HEAD^``` and ```HEAD~1```;\n* concrete use cases and work flows;\n* consequences on the working copy, the ```HEAD``` and your global stress level."}
{"question_id": "lima_5", "question": "I am looking to use Java to get the MD5 checksum of a file.\nHow is it done?"}
{"question_id": "lima_6", "question": "What are the primary objections Democrats have to a border wall?"}
{"question_id": "lima_7", "question": "I'm converting a video to GIF file with ```ffmpeg```:\n```ffmpeg \\\n -i input.flv \\\n -ss 00:00:00.000 \\\n -pix_fmt rgb24 \\\n -r 10 \\\n -s 320x240 \\\n -t 00:00:10.000 \\\n output.gif\n```\nIt works great, but output gif file has a very low quality.\nAny ideas how can I improve quality of converted gif?"}
{"question_id": "lima_8", "question": "Tor can only handle TCP connections, but DNS is a UDP protocol. How does Tor route DNS requests over its TCP based network? Why can the same approach not be used to route all UDP traffic over Tor?"}
{"question_id": "lima_9", "question": "Why does this throw ```NullPointerException```\n```public static void main(String[] args) throws Exception {\n Boolean b = true ? returnsNull() : false; // NPE on this line.\n System.out.println(b);\n}\npublic static Boolean returnsNull() {\n return null;\n}\n```\nwhile this doesn't\n```public static void main(String[] args) throws Exception {\n Boolean b = true ? null : false;\n System.out.println(b); // null\n}\n```\n?\nThe solution is by the way to replace ```false``` by ```Boolean.FALSE``` to avoid ```null``` being unboxed to ```boolean``` --which isn't possible. But that isn't the question. The question is why? Are there any references in JLS which confirms this behaviour, especially of the 2nd case?"}
{"question_id": "lima_10", "question": "How do DOS games like DOOM benefit from a PCI graphics card?"}
{"question_id": "lima_11", "question": "I need to be able to open a document using its default application in Windows and Mac OS. Basically, I want to do the same thing that happens when you double-click on the document icon in Explorer or Finder. What is the best way to do this in Python?"}
{"question_id": "lima_12", "question": "Why does PRC devalue its currency on purpose, but Turkey is worried about the devaluation of its currency?"}
{"question_id": "lima_13", "question": "Is it worth patenting an algorithm if I don't have the money to defend against infringements?"}
{"question_id": "lima_14", "question": "\"I have a ```String[]``` with values like so:\n```public static final String[] VALUES = new String[] {\"\"AB\"\",\"\"BC\"\",\"\"CD\"\",\"\"AE\"\"};\n```\nGiven ```String s```, is there a good way of testing whether ```VALUES``` contains ```s```?\" How do I determine whether an array contains a particular value in Java?"}
{"question_id": "lima_15", "question": "Does Java casting introduce overhead? Or the compiler just resolves everything and there is no cost at run time?\nIs this a general things, or there are different cases?"}
{"question_id": "lima_16", "question": "How can I copy a string (e.g \"hello\") to the System Clipboard in C#, so next time I press CTRL+V I'll get \"hello\"?"}
{"question_id": "lima_17", "question": "I want to put a draft watermark using the below script but the problem is that the watermark don't come over the images and I want it to come over it.\n```\\usepackage{draftwatermark}\n\\SetWatermarkText{DRAFT}\n\\SetWatermarkScale{1}\n```"}
{"question_id": "lima_18", "question": "Understanding the Rails Authenticity Token"}
{"question_id": "lima_19", "question": "Why is FIFA against adding instant replay to the game?"}
{"question_id": "lima_20", "question": "If we should encrypt the message rather than the method of transfer, why do we care about wifi security? Is this just security theatre?"}
{"question_id": "lima_21", "question": "Applying filter in scipy.signal: Use lfilter or filtfilt?"}
{"question_id": "lima_22", "question": "What do different people in the department expect from a postdoc?\nBy different people I mean the advisor, graduate students and PhD students.\nI know it mainly depends on the job description but there are few basic things that a postdoc must be expected to do. How aggressive (proactive) must one be? This question is important since a postdoc cannot just wait for the adviser to give him/her inputs. Rather the postdoc must take the project(s) as another PhD research of his own but be completely accountable to the adviser in terms of what he/she is doing and how is he/she doing that.\nThe above are my thoughts. My question is divided into the following sub-parts:\n\n* What would you as a professor expect from your postdoc? \n* What preparation one must do to rise to the expected level? \n* Is the preparation merely restricted to having sound academic record and experience?"}
{"question_id": "lima_23", "question": "Can someone explain to me what the ```contentInset``` property in a ```UIScrollView``` instance is used for? And maybe provide an example?"}
{"question_id": "lima_24", "question": "How is arc defined in TikZ?"}
{"question_id": "lima_25", "question": "How to connect mysql workbench to running mysql inside docker?"}
{"question_id": "lima_26", "question": "Can meat spoil outside the fridge if it's baked into bread as a filling?"}
{"question_id": "lima_27", "question": "I'm wondering how the XML Schema specification handles these cases:\n```\n```\nNo maxOccurs given -> Is this the cardinality [1..1]?\n```\n```\nI suppose this is simply invalid?\n```\n```\nIs this the cardinality [0..2] or [1..2]?\nIs there an \"official\" definition on how the XML Schema spec handles these cases?"}
{"question_id": "lima_28", "question": "Were there any flying dinosaurs?"}
{"question_id": "lima_29", "question": "Say, a table ```car``` has one-to-one relationship to tables ```electric_car```, ```gas_car```, and ```hybrid_car```. If a ```car``` is ```electric_car```, it can no longer appear in ```gas_car``` or a ```hybrid_car```, etc. \nIs it a bad practice to have several mutually exclusive one-to-one relationships in database design?"}
{"question_id": "lima_30", "question": "I see a low use of Mathematica in Kaggle competitions. Why would one use the Wolfram Language versus R, Python, or Julia for machine learning? Besides prettier plots and the Manipulate function, do we have something that is useful for ML that other languages are lacking?"}
{"question_id": "lima_31", "question": "I'm using wp_nav_menu and am trying to create custom output for the sub-level drop downs. I came across the \"items_wrap\" argument but there's really not much information as to what it is, how it works, and what kind of things can be done with it. \nWhat exactly is \"%1$s\" and \"%2$s\"? (Can anyone explain it in layman's terms?)"}
{"question_id": "lima_32", "question": "I've noticed that people on YouTube and even on TV would sometimes say things like \"I used to take lots of coke a few years ago\" or \"I used to smoke weed daily until this and that\" or \"Yea, I smoke weed every once in a while,\" or \"I used to pirate games a lot when I was a bit younger\" or \"I used pirated Windows and Photoshop until I got a job,\" etc., etc..\nBasically they are confessing to a crime, on public record, couldn't anyone come after them? They've already confessed - technically all that would have to be done is a trial.\nHow do people publicly admit to criminal activity and not typically get arrested?"}
{"question_id": "lima_33", "question": "Did two dissenting Supreme Court justices agree that Trump was \"absolutely immune\" to the Manhattan DA's subpoena?"}
{"question_id": "lima_34", "question": "Just curious, given how heavily from Tolkien D&D drew, and the fact that games like Wizardry used Hobbits, is there a good design reason why Gygax and company used Halflings (a term that also appears in Tolkien) vice Hobbits as the term for our little friends?"}
{"question_id": "lima_35", "question": "My USB drive used to be originally 8GB when I bought it.\nI'm trying to reformatted in Windows 7 by right clicking on the drive and selecting ```Format...```. But the capacity only shows 250MB.\nIs there something I can do to get the original size back? Maybe it got partitioned in a weird way? \nThe flash drive is a SanDisk Cruzer Micro 8GB. "}
{"question_id": "lima_36", "question": "I am a Tor developer. I understand that the .onion address is a public key of sorts, but not much more than that (I can vaguely guess, though). When nobody knows the IP of the .onion address, how do requests reach it? Are they bounced between nodes in the P2P network till someone decrypts it with the corresponding private key?"}
{"question_id": "lima_37", "question": "I have been offered a PhD position by an inexperienced professor in a great institution in Europe. Despite the fact that the institution is very strong in my area, since the position was offered by this particular professor, I would have to commit myself to working with him for my thesis. This professor is young, and relatively inexperienced, but I enjoy the things he works on, and we seem to get along well.\nMy question is, would having an inexperienced advisor hurt my growth as a scientist, or my career in general? Will I have the time during my PhD to also work on the side with other, more renowned professors in the department, or is one usually focused in a single research project?"}
{"question_id": "lima_38", "question": "Is there a phrase that means \"too important\" and \"attracting too much attention\"?"}
{"question_id": "lima_39", "question": "This guy claims that Olympic powerlifters working in the 1-6 rep range can increase strength without increasing muscle size. \n\n> Trained Olympic lifters, for example, were shown over a two-year period to have significant strength increases with barely noticeable increases in muscle mass (Hakkinen et al, 1988). I had a similar experience when I used AST's Max-OT principals. My strength went up like crazy, but I gained very little size. Obviously, traditional strength training with low volume and low sets (1-6 reps, 3 or less sets) is not the best approach. Strength training does cause hypertrophy (Hakkinen et al, 1985), but it won't cause maximum hypertrophy.\n\nWhat is the scientific explanation for this? Is the inverse true? That is, can a buff guy (with lots of prominent muscle) actually be weak? "}
{"question_id": "lima_40", "question": "What are the major concerns about planting trees to create carbon offsets?"}
{"question_id": "lima_41", "question": "I am wondering how to generate uniformly distributed points on the surface of the 3-d unit sphere? Also after generating those points, what is the best way to visualize and check whether they are truly uniform on the surface $x^2+y^2+z^2=1$?"}
{"question_id": "lima_42", "question": "In Shutter Island, at the end of the movie Teddy had a chat with Chuck, in that scene Teddy told to Chuck as,\n\n Which would be worse: To live as a monster, or to die as a good man?\n\nWhat's the implicit meaning of this dialogue? Who's the monster as Teddy mentioned?\nAnd, who's a good man?"}
{"question_id": "lima_43", "question": "To set the minimal distance between flexbox items I'm using ```margin: 0 5px``` on ```.item``` and ```margin: 0 -5px``` on container. For me it seems like a hack, but I can't find any better way to do this.\n\n\n```#box {\n display: flex;\n width: 100px;\n margin: 0 -5px;\n}\n.item {\n background: gray;\n width: 50px;\n height: 50px;\n margin: 0 5px;\n}```\n```\n \n \n \n \n```\n\n\n"}
{"question_id": "lima_44", "question": "Is there a Git for data? The key improvement I'd want is to Diff/Merge more intelligently. e.g. in CSV rather than line vs line comparison, it would do cell vs cell.\nAnd ordering is usually not significant, e.g. rows in a CSV, whereas Git does care and presents the user with 'conflicts'."}
{"question_id": "lima_45", "question": "I have been puzzling over where to put the submit button, on the left or the right. In researching, I noticed that many sites put buttons on the bottom right in dialogue boxes, and on the bottom left in forms.\nIt makes sense: in a dialogue box it seems to denote finality, being in the endpoint of the window for left\u2013right readers; in a form, the bottom right could be in a different position relative to the rest of the form if the window is resized.\nIt seems to be a convention, but should the OK/Cancel buttons be aligned right or centered?\nShould the OK/Cancel buttons be aligned right or centered?"}
{"question_id": "lima_46", "question": "Is it at all possible to update object's properties with ```setState```?\nSomething like:\n```this.state = {\n jasper: { name: 'jasper', age: 28 },\n}\n```\nI have tried: \n```this.setState({jasper.name: 'someOtherName'});\n```\nand this:\n```this.setState({jasper: {name: 'someothername'}})\n```\nThe first results in a syntax error and the second just does nothing. Any ideas?"}
{"question_id": "lima_47", "question": "What is the difference between Non-Player Characters (NPCs) and bots in video games?"}
{"question_id": "lima_48", "question": "Is there anything like ```static class``` in java? What is the meaning of such a class. Do all the methods of the static class need to be ```static``` too? Is it required the other way round, that if a class contains all the static methods, shall the class be static too? What are static classes good for?"}
{"question_id": "lima_49", "question": "The Episode IV-VI movies never mention the Emperor's name. In Episodes I-III, we can guess that Darth Sidious will be the emperor, but what about Chancellor Palpatine? If the audience didn't know that he was Sidious, the impact of the reveal would be far different than if they did.\nBut I did. In all the novels and comics that came out after \"Return of the Jedi\", the Emperor's name was stated plainly: Palpatine. \nSo when I saw the prologue movies, for the life of me I couldn't figure out: was I supposed to know that Palpatine was the villain? \nMaybe the filmmakers figured that most of the moviegoing public never got into the Expanded Universe. But they had to know that the hardcore fans would know. Or maybe when you watched the movie, even if you hadn't heard of Palpatine, it was supposed to be obvious?\nWhat was the intent?"}
{"question_id": "lima_50", "question": "So, students in Gryffindor are supposed to represent bravery. How does Neville represent bravery, to the point in being accepted into the house. I've always thought of his strongest traits being things like loyalty, willingness to work hard, etc, and these things would tend to put him in Hufflepuff. "}
{"question_id": "lima_51", "question": "This claim was made popular by being said in the movie The Social Network. It exactly says:\n\n> Did you know there are more people with genius IQs living in China than there are people of any kind living in the United States?\n"}
{"question_id": "lima_52", "question": "I am trying to get my program to print out ```\"banana\"``` from the dictionary. What would be the simplest way to do this?\nThis is my dictionary: \n```prices = {\n \"banana\" : 4,\n \"apple\" : 2,\n \"orange\" : 1.5,\n \"pear\" : 3\n}\n```"}
{"question_id": "lima_53", "question": "Different coffee packets advertise different amounts of 'Robusta' and 'Arabica'? What do these terms refer to, and how does it affect the taste of the coffee?"}
{"question_id": "lima_54", "question": "So whenever we want to shoot our flash before taking a photo. we have to charge it first.\nWhat is the point of the charging our flashes? Aren't their power directly supplied by the battery of our camera?\nPlease answer for the built in flash on the 2000D and the traditional hot shoe Xenon flashes.\nPerhaps these hot shoe xenon flashes have their own batteries charged by the slow hot shoe port. Who knows? "}
{"question_id": "lima_55", "question": "What are some strategies to maintain morale and productivity after massive layoffs? I am not in a managerial role, just a lead role, and am asking for myself and my fellow employees."}
{"question_id": "lima_56", "question": "Could you please clearly explain what is the difference between correlation and convolution that is done by a filter on an image? \nI mean in terms of signal processing definition I know that convolution describes the output of an LTI system, that is if an LTI system produces an output due to convolution with an input system then the output signal can be described as the result of convolution of the input signal and the impulse response of the LTI system. As for the correlation, it describes the similarities between to signals. But how does convolution and correlation effect on a image and how different are they in terms of effects?\nThanks"}
{"question_id": "lima_57", "question": "24601 has developed into being an iconic part of both the Les Miserables book and musical. Was that number special to him, or was it simply a random number he chose (I doubt it)?"}
{"question_id": "lima_58", "question": "Why does Michael Crichton use US Customary measurements in hard sci-fi?"}
{"question_id": "lima_59", "question": "How can horns, most of which have only three buttons, play all their notes?"}
{"question_id": "lima_60", "question": "I am a big fan of worldbuilding. A common sight in science fiction is that aliens pretend to be human (For example in Third Rock from the Sun). Obviously if the aliens are advanced enough to disguise themselves as another species, there are much easier, simpler and less expensive methods to destroy humanity, so why else would an advanced alien civilization waste time, energy and resources to disguise themselves as humans? What possible scientific, cultural or commercial use could such an expensive procedure have?"}
{"question_id": "lima_61", "question": "I've taken a look at the list of surveys taken on scala-lang.org and noticed a curious question: \"Can you name all the uses of \u201c_\u201d?\". Can you? If yes, please do so here. Explanatory examples are appreciated."}
{"question_id": "lima_62", "question": "My university usually asks that we book a flight via a travel agent, but the prices he gives me are about $50 higher than the prices I can get by online booking in the flight company's website. Why would a company want me to book a flight via a travel agent if it is more expensive?"}
{"question_id": "lima_63", "question": "Layman's explanation of encryption backdoors"}
{"question_id": "lima_64", "question": "I have a page where a scroll bar containing table rows with divs in them is dynamically generated from the database. Each table row acts like a link, sort of like you'd see on a YouTube playlist next to the video player.\nWhen a user visits the page, the option they are on is supposed to go to the top of the scrolling div. This functionality is working. The issue is that it goes just a tad too far. Like the option they are on is about 10px too high. So, the page is visited, the url is used to identify which option was selected and then scrolls that option to the top of the scrolling div. Note: This is not the scroll bar for the window, it is a div with a scrollbar.\nI am using this code to make it move the selected option to the top of the div:\n```var pathArray = window.location.pathname.split( '/' );\nvar el = document.getElementById(pathArray[5]);\nel.scrollIntoView(true);\n```\nIt moves it to the top of the div but about 10 pixels too far up.\nhow to fix that?"}
{"question_id": "lima_65", "question": "Suppose I have the geographic coordinates of "Saratoga, California, USA" as\n```Latitude: 37\u00b015.8298\u2032 N\nLongitude: 122\u00b0 1.3806\u2032 W\n```\nI know from here that in the case of latitude ```1\u00b0 \u2248 69 miles``` and that longitude varies:\n```1\u00b0 longitude = cosine (latitude) * length of degree (miles) at Equator.\n```\nHow many miles is 1\u00b0 longitude at ```longitude: 122\u00b01.3806\u2032 W```?"}
{"question_id": "lima_66", "question": "I have read numerous times that some Norse warriors, upon death, would go in F\u00f3lkvangr, while some others would go to Valhalla. How was it decided which warrior would go to which place? Why did the need to have many \"paradises\" (whatever you many call it) exist?\nCiting Wikipedia:\n\n > In Norse mythology, F\u00f3lkvangr (Old Norse \"field of the host\" or \"people-field\" or \"army-field\") is a meadow or field ruled over by the goddess Freyja where half of those that die in combat go upon death, while the other half go to the god Odin in Valhalla."}
{"question_id": "lima_67", "question": "I noticed that there is a binary executable ```/bin/echo``` on my Ubuntu MATE 17.04 system.\nI thought, that's odd, because\n```$ type echo\necho is a shell builtin```\nCursory testing suggests that ```/bin/echo``` does the same sort of thing as the Bash builtin ```echo```:\n```$ /bin/echo foo\nfoo\n$ /bin/echo $USER\nzanna\n```\nSo, why is there another version of ```echo``` separate from the Bash program, and why or when would I want to use it?"}
{"question_id": "lima_68", "question": "what's the difference between JavaScript objects, classes and functions?"}
{"question_id": "lima_69", "question": "In most introductory algorithm classes, notations like $O$ (Big O) and $\\Theta$ are introduced, and a student would typically learn to use one of these to find the time complexity.\nHowever, there are other notations, such as $o$, $\\Omega$ and $\\omega$. Are there any specific scenarios where one notation would be preferable to another?"}
{"question_id": "lima_70", "question": "Why is Gaia operating around Earth orbit? Why not send it to Neptune's orbit?"}
{"question_id": "lima_71", "question": "I have a string representing a unix timestamp (i.e. "1284101485") in Python, and I'd like to convert it to a readable date. When I use ```time.strftime```, I get a ```TypeError```:\n```>>>import time\n>>>print time.strftime("%B %d %Y", "1284101485")\nTraceback (most recent call last):\n File "", line 1, in \nTypeError: argument must be 9-item sequence, not str\n```"}
{"question_id": "lima_72", "question": "In Django, the convention is to put all of your static files (i.e css, js) specific to your app into a folder called static. So the structure would look like this:\n```mysite/\n manage.py\n mysite/ --> (settings.py, etc)\n myapp/ --> (models.py, views.py, etc)\n static/\n```\nIn ```mysite/settings.py``` I have:\n```STATIC_ROOT = 'staticfiles'\n```\nSo when I run the command:\n```python manage.py collectstatic\n```\nIt creates a folder called ```staticfiles``` at the root level (so same directory as ```myapp/```)\nWhat's the point of this? Isn't it just creating a copy of all my static files?"}
{"question_id": "lima_73", "question": "I am used to thinking of finite-differences as a special case of finite-elements, on a very constrained grid. What are criteria to choose between finite-differences and finite-elements"}
{"question_id": "lima_74", "question": "How important is multithreading in the current software industry?"}
{"question_id": "lima_75", "question": "Is it true that the price of diamonds is based on a monopoly? And who actually runs/owns this supposed monopoly? Is this likely to affect diamond prices if I am interested in purchasing?"}
{"question_id": "lima_76", "question": "Normal filesystem images can be easily mounted:\n```mount system.img /mnt\n```\nExamined, and modified. But when I try this with a Raspberry Pi system image (e.g. raspbian), I get:\n```mount: unknown filesystem type '(null)'\n```\nAnd no matter what I try with ```-t```, it won't work. How can I mount this image?"}
{"question_id": "lima_77", "question": "How does immersion passively help with learning a language?"}
{"question_id": "lima_78", "question": "I have a script, that does not exit when I want it to.\nAn example script with the same error is:\n```#!/bin/bash\nfunction bla() {\n return 1\n}\nbla || ( echo '1' ; exit 1 )\necho '2'\n```\nI would assume to see the output:\n```:~$ ./test.sh\n1\n:~$\n```\nBut I actually see:\n```:~$ ./test.sh\n1\n2\n:~$\n```\nDoes the ```()``` command chaining somehow create a scope? What is ```exit``` exiting out of, if not the script?"}
{"question_id": "lima_79", "question": "Adding a new swap file. How to edit fstab to enable swap after reboot?"}
{"question_id": "lima_80", "question": "\nHow do I add a validation to make sure the date string being passed to the method is in the ffg. format:\n```'YYYY-MM-DD'\n```\nif it's not, method should raise some sort of error"}
{"question_id": "lima_81", "question": "When to use UICollectionView instead of UITableView?"}
{"question_id": "lima_82", "question": "On my branch I had some files in .gitignore\nOn a different branch those files are not.\nI want to merge the different branch into mine, and I don't care if those files are no longer ignored or not.\nUnfortunately I get this: \n\n The following untracked working tree files would be overwritten by merge\n\nHow would I modify my pull command to overwrite those files, without me having to find, move or delete those files myself?"}
{"question_id": "lima_83", "question": "Since long time ago I have been thinking in two problems that I have not been able to solve. It seems that one of them was recently solved. I have been thinking a lot about the motivation and its consequences. Mostly because people used to motivate one of them with some very interesting implications. My conclusion however, is that there is a mistake in the motivation of the problem, and that, while being a really interesting result, it does not make any sense in the setting in which is formulated. As my opinion is not relevant compared to one of the experts in the area, I do not say anything. \nMy question is if you can provide me some examples of conjectures that were believed to be interesting in the mathematical community because of a specific reason, but that once having the proof, people realized that the reason to motivate the problem was not truly related to its solution. Or in other words, the solution of the problem gives no clues about the original motivation. "}
{"question_id": "lima_84", "question": "How do GPS receivers communicate with satellites?"}
{"question_id": "lima_85", "question": "Why is iceberg lettuce bad for rabbits?"}
{"question_id": "lima_86", "question": "How do I open the JavaScript console in different browsers?"}
{"question_id": "lima_87", "question": "I have Ubuntu 10 as the guest OS on a Windows 7 machine. I have been trying to setup shares through VirtualBox, but nothing is working. First, I create the share in VirtualBox and point it to a Windows folder. Then I try to mount the drive in Linux, but I keep getting\n```/sbin/mount.vboxsf: mounting failed with the error: Protocol error\n```\nI have read so many solutions to this, but none seem to work. I have tried:\n\n* Using the mount.vboxsf syntax\n* Reinstalling VBox additions\n* Rebooting\n* Enabling and trying as root account\n\nI made a share called "Test" in VBox Shared folders. Then I made a directory in ubuntu named "test2". Then I tried to execute this command:\n```sudo mount -t vboxsf Test /mnt/test2\n```\nAny other ideas?"}
{"question_id": "lima_88", "question": "What does %~dp0 mean, and how does it work?\nI'd also like to know if it is a documented feature, or something prone to be deprecated."}
{"question_id": "lima_89", "question": "Should a tester feel bad about finding too many defects/bugs in the product?"}
{"question_id": "lima_90", "question": "Millions of colors in the visible spectrum can be generated by mixing red, green and blue - the RGB color system. Is there a basic set of smells that, when mixed, can yield all, or nearly all detectable smells ?"}
{"question_id": "lima_91", "question": "Do you bleed to death after your penis is cut off?"}
{"question_id": "lima_92", "question": "In Swift, is there a clever way of using the higher order methods on Array to return the 5 first objects?\nThe obj-c way of doing it was saving an index, and for-loop through the array incrementing index until it was 5 and returning the new array. Is there a way to do this with ```filter```, ```map``` or ```reduce```?"}
{"question_id": "lima_93", "question": "What's the simplest way to get an environment variable from a docker container that has not been declared in the Dockerfile?\nFor instance, an environment variable that has been set through some ```docker exec container /bin/bash``` session?\nI can do ```docker exec container env | grep ENV_VAR```, but I would prefer something that just returns the value.\nI've tried using ```docker exec container echo \"$ENV_VAR\"```, but the substitution seems to happen outside of the container, so I don't get the env var from the container, but rather the env var from my own computer.\nThanks."}
{"question_id": "lima_94", "question": "I am confused about the use cases for both ```InputStream``` and ```OutputStream```.\nPlease include a snippet of code to go along with your explanation."}
{"question_id": "lima_95", "question": "What is the difference between:\n```npm install [package_name]\n```\nand:\n```npm install [package_name] --save\n```\nand:\n```npm install [package_name] --save-dev\n```\nWhat does this mean? And what is really the effect of ```--save``` and ```-dev``` keywords?"}
{"question_id": "lima_96", "question": "pod install -bash: pod: command not found"}
{"question_id": "lima_97", "question": "I read in the Essential C# 3.0 and .NET 3.5 book that:\n\n GetHashCode()\u2019s returns over the life of a particular object should be\n constant (the same value), even if the object\u2019s data changes. In many\n cases, you should cache the method return to enforce this.\n\nIs this a valid guideline?\nI have tried a couple built-in types in .NET and they didn't behave like this."}
{"question_id": "lima_98", "question": "Especially in blitz or bullet games, it is possible that a player makes an illegal move, for example castles through check. \n\n* If the opponent does notice the illegal move, then as far as I know the first player is obliged to make a legal move with the same piece, if one exists. What if there are no legal moves? \n* What if the opponent, being in time pressure, doesn't notice the illegal move and makes a move. What happens after they realize that? Does the person who made the illegal move forfeit? Or is the whole game cancelled?\n\nAre there any standard rules for these kinds of situations?"}
{"question_id": "lima_99", "question": "How to set button click effect in Android?"}
{"question_id": "lima_100", "question": "The following article from CNN describes a Michigan police officer being put on administrative leave for having KKK material at his home: https://www.cnn.com/2019/08/10/us/michigan-officer-placed-on-leave-kkk-document-house/index.html. The materials were discovered while a potential buyer was touring his house. \nAlthough I vehemently condemn the KKK, doesn't this officer have the right to display whatever he wants in his home so long as it doesn't actively and deliberately call for violence? Aren't these articles protected under the first amendment? I realize this is an extreme example, and as a police officer his job requires interacting with all races, but unless it can be shown that he's bigoted and that it negatively affected his job performance, isn't it illegal to fire him? \nEmployers can restrict speech according to company policy while at work, but we all have to go home at some point. Can those restrictions follow us after clocking out? "}
{"question_id": "lima_101", "question": "What does strength refer to in mathematics? Is it a formal idea?"}
{"question_id": "lima_102", "question": "Does vegetarianism affect life expectancy?\nIs an average vegetarian supposed to live longer just because of their diet?"}
{"question_id": "lima_103", "question": "What is the difference between an object and a companion object in a class in kotlin?\nExample:\n```class MyClass {\n object Holder {\n //something\n }\n companion object {\n //something\n }\n}\n```\nI already read that companion object shall be used, if the containing parameters/methods are closely related to its class.\nBut why is there also the possibility of declaring a normal object in the class? Because it behaves exactly like the companion, but it must have a name.\nIs there maybe a difference in its \"static\" (I'm from the java side) lifecycle? "}
{"question_id": "lima_104", "question": "I've rooted my phone. Now what? What do I gain from rooting?"}
{"question_id": "lima_105", "question": "Is there a better way to determine whether a variable in ```Pandas``` and/or ```NumPy``` is ```numeric``` or not ? \nI have a self defined ```dictionary``` with ```dtypes``` as keys and ```numeric``` / ```not``` as values."}
{"question_id": "lima_106", "question": "I've come across the polynomial algorithm that solves 2SAT. I've found it boggling that 2SAT is in P where all (or many others) of the SAT instances are NP-Complete. What makes this problem different? What makes it so easy (NL-Complete - even easier than P)?"}
{"question_id": "lima_107", "question": "Why isn't Sectumsempra an Unforgivable Curse?"}
{"question_id": "lima_108", "question": "How can I add a delay to a program in C#?"}
{"question_id": "lima_109", "question": "I'm trying to write a Bash script that will overwrite an existing directory. I have a directory ```foo/``` and I am trying to overwrite ```bar/``` with it. But when I do this:\n```cp -Rf foo/ bar/\n```\na new ```bar/foo/``` directory is created. I don't want that. There are two files in ```foo/```; ```a``` and ```b```. There are files with same names in ```bar/``` as well. I want the ```foo/a``` and ```foo/b``` to replace ```bar/a``` and ```bar/b```."}
{"question_id": "lima_110", "question": "Is there a particular reason the elves die off so fast? After the first war against Sauron, I recall the elves being decimated, to the point that they're almost useless army-wise in the trilogy. But I'm guessing men suffered equal or greater losses as well.\nAnyways, other races just seem much more capable of repopulating, while is seems like there are incredibly few (if any?) elven children. Considering the fact that elves are immortal, wouldn't their population be the fastest to grow? Also the seem to be perpetually 40 years old, so aren't they eternally fertile as well? Why don't they have more kids and build bigger societies?"}
{"question_id": "lima_111", "question": "Reasons for being vegetarian or vegan other than ethical reasons?"}
{"question_id": "lima_112", "question": "My mom has a green card that expires 2028 but has been out of the US in the UK for over a year due to COVID travel restrictions. Can she enter now?"}
{"question_id": "lima_113", "question": "What is the LXX and why is it so noteworthy that there is a Greek translation of the OT? Wouldn't it be better to directly reference manuscripts in the original languages?"}
{"question_id": "lima_114", "question": "I have to disable inputs at first and then on click of a link to enable them.\nThis is what I have tried so far, but it doesn't work.\nHTML:\n```\n```\njQuery:\n```$(\"#edit\").click(function(event){\n event.preventDefault();\n $('.inputDisabled').removeAttr(\"disabled\")\n});\n```\n\nThis shows me ```true``` and then ```false``` but nothing changes for the inputs:\n```$(\"#edit\").click(function(event){\n alert('');\n event.preventDefault();\n alert($('.inputDisabled').attr('disabled'));\n $('.inputDisabled').removeAttr(\"disabled\");\n alert($('.inputDisabled').attr('disabled'));\n});\n```"}
{"question_id": "lima_115", "question": "I'm no expert in darkroom photography, but it seems a little odd that there is a type of light that doesn't affect film or developing paper etc. So why is a dark-room safelight safe?"}
{"question_id": "lima_116", "question": "With the command:\n```ls -la *\n```\nI can list all my symbolic links. \nHow can I remove all symbolic links which are linked to a special folder?\nFor example:\nIn my directory ```usr/local/bin``` I have the following entries:\n```lrwxrwxrwx 1 root root 50 Apr 22 14:52 allneeded -> /usr/local/texlive/2011/bin/x86_64-linux/allneeded\nlrwxrwxrwx 1 root root 47 Apr 22 14:52 amstex -> /usr/local/texlive/2011/bin/x86_64-linux/amstex\nlrwxrwxrwx 1 root root 24 Apr 23 19:09 arara -> /home/marco/.arara/arara\n```\nNow I want to remove all links with the path ```/usr/local/texlive/```"}
{"question_id": "lima_117", "question": "Did Aztecs know how many continents there are on earth?"}
{"question_id": "lima_118", "question": "What did the Soviet Union and Russia bring to the ISS?"}
{"question_id": "lima_119", "question": "What utility can move my Windows boot partition over to another hard drive?\nMy preference is that it would be really easy. \n\n* Boot into Windows\n* Pick drive to move\n* Pick target drive\n* It copies everything over, and reboots to the correct partition."}
{"question_id": "lima_120", "question": "What's the difference between ASCII and Unicode?"}
{"question_id": "lima_121", "question": "Reasons why healthy people would intentionally want to get infected?"}
{"question_id": "lima_122", "question": "In The Avengers, the Council contacted Nick Fury and supposedly, they want to nuke Manhattan. Nick didn't agree so they contacted a S.H.I.E.L.D. operative to nuke Manhattan.\nWhen they found out that an unauthorized jet was trying to fly, Nick grabbed a rocket launcher and fired it at the jet, which was a decoy and the real jet was able to escape. \nHowever, why would he do that? If that was the real plane carrying a nuke enough to level Manhattan, wouldn't the nuke explode and destroy the base along with them if he fired a rocket launcher at it?"}
{"question_id": "lima_123", "question": "Since I created my repository it appears that the tags I have been\ncreating are not pushed to the repository. When I do ```git tag``` on the\nlocal directory all the tags are present, but when I logon to the\nremote repository and do a ```git tag```, only the first few show up.\nWhat could the problem be?."}
{"question_id": "lima_124", "question": "How do I add Git submodule to a sub-directory?"}
{"question_id": "lima_125", "question": "Given that Kohn-Sham DFT is strictly a ground-state method (at 0 K), how is it sufficient to describe materials in real-life applications?"}
{"question_id": "lima_126", "question": "I don't really get the difference between gain and volume boost.\n\nSo if I understand correctly, gain directly boosts a signal from a line or input while volume handles the output. Volume isn't really for boosting either.\nWould this mean, in most settings, getting 'close to' as much gain as possible without any hiss/background noise is ideal?"}
{"question_id": "lima_127", "question": "I recently had someone claim (on an unrelated SE site I won't link to) that it is the responsibility of a player to correctly identify their hand, that what you "call" your hand determines the winner:\n\nFor example, you have an Ace, King, Queen, Jack, and Ten. You call your hand and say, "I have a Straight!"\nBut that was a bad move on your part because you are a novice player and you did not notice that all of your cards are Spades. You actually had a Straight Flush, but now you have lost because one of the remaining players had a Full House.\nYour hand has not been determined until you call your hand.\n\nIs this true? Clearly you might play your hand differently if you misunderstand what you have, but I always thought that the cards speak for themselves once they are revealed.\nOr would it depend on the specific poker variation/house rules?"}
{"question_id": "lima_128", "question": "How to get the first item from an associative PHP array?"}
{"question_id": "lima_129", "question": "Why do people write #!/usr/bin/env python on the first line of a Python script?"}
{"question_id": "lima_130", "question": "Nowadays each graphic card has some driver in operating system that translates some (typically) standard API such as OpenGL, so that programmers use some standardized API code to tell graphics cards how and what they want to render. (Actually that's already a bit hard-core most programmers really use various game engines that do this for them). In times of old computers - how was this done? Did every programmer of every game implemented all possible various API's that old graphic cards supported? Or did the old game studios from MS-DOS times had their own \"game engines\" that provided some abstraction when it came to these graphic cards? I remember there were many various card vendors and I remember old games asked me which one I have - so I suppose these games contained code / drivers for all these cards?"}
{"question_id": "lima_131", "question": "Why is it \"behead\" and not \"dehead\"?"}
{"question_id": "lima_132", "question": "Why do many vinyl albums of classical music have Sides 1 / 4 on the first record and 2 / 3 on the second? An example of this is the RCA Red Seal recording of Beethoven's 9th Symphony by the Boston Symphony Orchestra."}
{"question_id": "lima_133", "question": "Why isn't the market dropping like a stone with all the bad news?"}
{"question_id": "lima_134", "question": "What are Null Pointer Exceptions (```java.lang.NullPointerException```) and what causes them?\n\nWhat methods/tools can be used to determine the cause so that you stop the exception from causing the program to terminate prematurely?"}
{"question_id": "lima_135", "question": "In Raiders of the Lost Ark, at the Ark opening ceremony the Nazi troops brings the Ark of the Covenant to the top of the mountain as Belloq said something before opening the Ark. Then they took the sand from the Ark and suddenly spirits coming out from the Ark and they're all killed (except Indy and Marion) by the freed-spirits which came from the Ark. Meanwhile, Indy asks Marion to keep her eyes shut. They didn't see the Ark when it was opened, so they're survived. In that scene what I don't understand is how did Indy know not to look into the Ark when it was opened?"}
{"question_id": "lima_136", "question": "What is likely to happen when you plug two ends of a network cable to a single switch/router? Will this create problems on the network, or just be ignored?"}
{"question_id": "lima_137", "question": "What command do I use to find the size of all the files (recursively) in a Linux or Mac OS X directory?"}
{"question_id": "lima_138", "question": "I've been writing C and C++ code for almost twenty years, but there's one aspect of these languages that I've never really understood. I've obviously used regular casts i.e.\n```MyClass *m = (MyClass *)ptr;\n```\nall over the place, but there seem to be two other types of casts, and I don't know the difference. What's the difference between the following lines of code?\n```MyClass *m = (MyClass *)ptr;\nMyClass *m = static_cast(ptr);\nMyClass *m = dynamic_cast(ptr);\n```"}
{"question_id": "lima_139", "question": "Why don't toilets use saltwater?"}
{"question_id": "lima_140", "question": "How do I modify fields inside the new PostgreSQL JSON datatype?"}
{"question_id": "lima_141", "question": "I find that the survivability and general performance of my party increases massively from levels 1 to 2. At times, level 1 feels like a completely different game from level 2. However, I can't fathom how or why. I think that the availability of healing has something to do with it. From a mechanical perspective, is there any deep reason why level 1 and level 2 seem so radically different? Furthermore, why I do find no similar differences between later levels, such as 6 and 7?"}
{"question_id": "lima_142", "question": "In my table view I have to scroll to the top. But I cannot guarantee that the first object is going to be section 0, row 0. May be that my table view will start from section number 5.\nSo I get an exception, when I call:\n```[mainTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];\n```\nIs there another way to scroll to the top of table view?"}
{"question_id": "lima_143", "question": "While in Phd I developed a lot of code that I want to turn into start-up. Can I do this?"}
{"question_id": "lima_144", "question": "I have heard multiple times in photography, the words Bokeh, and Gaussian Blur. To me, it seems that the words are used almost interchangeably, but in some instances, I have heard them contrasted. What's the difference, and what are the definitions of each of them?"}
{"question_id": "lima_145", "question": "In 1969, NASA not only went to the moon, but broadcast the whole thing live on TV.\nHow did they achieve the TV broadcast? What technology did they need to use to send a video and audio signal from the moon to earth? Was there much of a lag?"}
{"question_id": "lima_146", "question": "Why does \"elite\" rhyme with \"beet\" rather than \"bite\"?"}
{"question_id": "lima_147", "question": "A lot of ShaderToy demos share the Ray Marching algorithm to render the scene, but they are often written with a very compact style and i can't find any straightforward examples or explanation.\nSo what is Ray Marching? Some comments suggests that it is a variation of Sphere Tracing. What are the computational advantages of a such approach?"}
{"question_id": "lima_148", "question": "Is martial arts training 'inadequate' for the real world?"}
{"question_id": "lima_149", "question": "Make a single page landscape in Google Documents"}
{"question_id": "lima_150", "question": "PHP is writing this error in the logs: \"Notice: Use of undefined constant\".\nError in logs:\n```PHP Notice: Use of undefined constant department - assumed 'department' (line 5)\nPHP Notice: Use of undefined constant name - assumed 'name' (line 6)\nPHP Notice: Use of undefined constant email - assumed 'email' (line 7)\nPHP Notice: Use of undefined constant message - assumed 'message' (line 8)\n```\nRelevant lines of code:\n```$department = mysql_real_escape_string($_POST[department]);\n$name = mysql_real_escape_string($_POST[name]);\n$email = mysql_real_escape_string($_POST[email]);\n$message = mysql_real_escape_string($_POST[message]);\n```\nWhat does it mean and why am I seeing it?"}
{"question_id": "lima_151", "question": "I'm from a very rural area and love to garden, however, for work I just moved into an apartment in the city. I miss being able to grow vegetables and so I attempted to start some leaf lettuce indoors, however, almost every plant died quickly. I'm just curious, does anyone have experience growing vegetables indoors? What are the best ones for this? What sort of planter do you use? Do they need to be directly next to a window? How often should they be watered? I'm not used to not having Mother Nature help me out with my plants Any tips that can be provided would be much appreciated, thanks!"}
{"question_id": "lima_152", "question": "What are the advantages of studying words by their frequency?"}
{"question_id": "lima_153", "question": "I have heard many people saying, \u201cHah! I beat Stockfish,\u201d and one saying, \u201cI am the best chess player ever! I beat Stockfish.\u201d So I wonder if it is possible, just to know whether I should try to beat it. I tried to play it once; I barely played 25 moves."}
{"question_id": "lima_154", "question": "How to decrypt Jenkins passwords from credentials.xml?"}
{"question_id": "lima_155", "question": "I'm pretty disappointed with my horse. He wasn't cheap -- 1000g -- but he just doesn't seem that fast. To make things worse, he's a bit of a wolf magnet and every time I get attacked I have to tediously dismount, blast the wolf, and then remount.\nIs the speed of a horse actually significantly faster than normal running speed? If so, how much faster?"}
{"question_id": "lima_156", "question": "Other than rust, corrosion, and other reactions with air that would make the use of a metal unfavorable, how do different metals affect the performance?\nLet's give Yagi an example:\nLet's say I use 4 different metals for the directors\n, reflector, and driven element.\nOne antenna made out of copper, one made out of aluminum, and one made out of a higher resistance conductor, let's say graphite (I know it would snap, I'm just talking theoretical), and iron \nOther then the metal variations, the antennas are identical.\nSo, do different metals with different conductivity and permiability affect the performance of an antenna including gain, efficiency, impedance, elevation, or any other characteristic other then mechanical strength, and chemical reliability in open air. "}
{"question_id": "lima_157", "question": "Windows in its earliest days was simply a shell that ran on top of MS-DOS, which means that Windows 3.1 itself was actually just a standard MS-DOS application like any other.\nYet, MS-DOS is not a multitasking operating system, and at the same time, Windows applications were compiled native-code binaries that ran without any form of managed environment. So, how exactly was multitasking of Windows binaries achieved if Windows 3.1 was simply a regular old MS-DOS program itself? Are there any old technical documents still floating around that describe the early Windows architecture internally?"}
{"question_id": "lima_158", "question": "I'm working on 2 different branches: release and development. \nI noticed I still need to integrate some changes that were committed to the release branch back into the development branch. \nThe problem is I don't need all of the commit, only some hunks in certain files, so a simple \n```git cherry-pick bc66559\n```\ndoes not do the trick. \nWhen I do a\n```git show bc66559\n```\nI can see the diff but don't really know a good way of applying that partially to my current working tree. "}
{"question_id": "lima_159", "question": "In Civilization V, you attain a cultural victory by accumulating enough culture to purchase at least 36 social policies, and then building a wonder. The catch is that the more cities you build, the more culture you need to generate before you hit the next \"plateau\" of culture.\nWhat is the ideal number of cities for a cultural victory? Does it change over time? "}
{"question_id": "lima_160", "question": "How to find if a customer is logged in or not in Magento 2.\nIf the customer is logged in then how to get customer data from a session?"}
{"question_id": "lima_161", "question": "I have a 9 year old daughter that has expressed some interest in manga, but I'm having trouble locating series that are appropriate for her age. No one at our local bookstore could offer any advice. Is there a kid-friendly imprint or other resource I could use to help her find something appropriate? My preference is for physical books but I'm willing to explore digital options."}
{"question_id": "lima_162", "question": "I'm looking for a precise piece of information in a database which I have no knowledge about. The database is on a separate machine, but I can log into it, and launch a ```psql``` command line, with administrator rights.\nIt's a third-party product, and they are slow to answer questions. I know the data is inside that database, so I want to do a little bit of reverse-engineering.\nGiven a table name, is it possible to get a list of the names of the columns in that table?\nFor example, in SQL Server, it's possible to dump a table into a reusable ```CREATE``` statement, which textually lists all the columns the table is composed of."}
{"question_id": "lima_163", "question": "I am using Visual Studio Code and have a fairly common project structure:\n```\u251c\u2500\u2500 client/\n\u2502 \u251c\u2500\u2500 tsconfig.json\n\u251c\u2500\u2500 shared/\n\u251c\u2500\u2500 server/\n\u2502 \u251c\u2500\u2500 tsconfig.json\n\u251c\u2500\u2500 project.json\n```\nThe two tsconfig files have different settings (e.g. the one under ```client/``` targets ES5, the one under ```server/``` targets ES6). Note that there is no tsconfig in the root directory.\nThe problem is that I want the shared directory to be included in both projects. I can't do this using tsconfig because the ```exclude``` option won't let me include a folder that is in a higher directory than the tsconfig.json, and using ```files``` I have to constantly keep the list of files up to date as it doesn't support globs.\nNote that I can compile fine by adding the shared folder into tsc, what I want is for the Visual Studio Code IDE to recognise the shared code for intellisense etc.\nIs the only option to wait for filesGlob?"}
{"question_id": "lima_164", "question": "I have the following method to save an Object to a file:\n```// Save an object out to the disk\npublic static void SerializeObject(this T toSerialize, String filename)\n{\n XmlSerializer xmlSerializer = new XmlSerializer(toSerialize.GetType());\n TextWriter textWriter = new StreamWriter(filename);\n xmlSerializer.Serialize(textWriter, toSerialize);\n textWriter.Close();\n}\n```\nI confess I did not write it (I only converted it to a extension method that took a type parameter).\nNow I need it to give the xml back to me as a string (rather than save it to a file). "}
{"question_id": "lima_165", "question": "I have a problem with the embedded bitcode term.\nWhat is embedded bitcode?\nWhen to enable, ```ENABLE_BITCODE``` in new Xcode?\nWhat happens to the binary when enabled, ```ENABLE_BITCODE``` in Xcode 7? "}
{"question_id": "lima_166", "question": "In Dupire's local volatility model, the volatility is is a deterministic function of the underlying price and time, chosen to match observed European option prices.\nTo be more specific, given a smooth surface $(K,T)\\mapsto C(K,T)$ where K is the strike and T is time to maturity. Dupire equation implies that there exits an unique continuous function $\\sigma_{loc}$ defined by\n$$\\sigma_{loc}^{2}(K,T)=\\frac{\\partial_{T}C(K,T)+rK\\partial_{K}C(K,T)}{\\frac{1}{2}K^{2}\\partial_{KK}C(K,T)}$$ for all $(K,T)\\in(0,\\infty)\\times(0,\\infty)$ such that the solution to the stochastic differential equation $dS_{t}/S_{t}=rdt+\\sigma(t,S_{t})dW_{t}$ exactly generates the European call option prices.\nWhat do the dynamics of the local volatility mean? Are dynamics equivalent to the volatility surface? Why the dynamics of local volatility model is highly unrealistic?"}
{"question_id": "lima_167", "question": "Can you explain why we need a large number of trees in random forest when the number of predictors is large? How can we determine the optimal number of trees?"}
{"question_id": "lima_168", "question": "I believe artificial intelligence (AI) term is overused nowadays. For example, people see that something is self-moving and they call it AI, even if it's on autopilot (like cars or planes) or there is some simple algorithm behind it.\nWhat are the minimum general requirements so that we can say something is AI?"}
{"question_id": "lima_169", "question": "I have some questions regarding the usage and significance of the ```synchronized``` keyword. \n\n* What is the significance of the ```synchronized``` keyword?\n* When should methods be ```synchronized```?\n* What does it mean programmatically and logically?"}
{"question_id": "lima_170", "question": "I am using the ```$http``` service of AngularJS to make an Ajax request. \nHow can a spinner GIF (or another type of busy indicator) be shown while the Ajax request is executing?"}
{"question_id": "lima_171", "question": "Let's say that we have a gaseous or liquidus compound (I don't know if elements or compounds make a difference, take this as a thought experiment), and we have a tungsten or steel block that's 5cm (or less, you choose) thick. Is there any physical method for that gas or liquid to pass through that thick heavy metal block (not by drilling etc.)?"}
{"question_id": "lima_172", "question": "Once, I boarded a plane, went to my designated seat and tried to put my bag in the overhead bin. However, it was full, and other adjacent overhead bins were full too. Because I had a seat next to the emergency exit, which I paid for, I had to hand over my bag to someone else in order to take off. \nDo I have any rights over the overhead bin above my seat?\nCould I ask the flight attendant to remove some of the bags to make room for me?\nI cannot imagine that the bins were full because there was not enough space. I think this happened because some people were ignorant enough to bring more bags than is allowed inside the airplane instead of sending them to cargo. If this is the case why doesn't the airline enforce the bag limit inside the airplane?"}
{"question_id": "lima_173", "question": "The Canon EF 40mm f/2.8 has a designation of STM on the lens. What does this mean? What are the advantages of having it and does it replace an older technology?\n"}
{"question_id": "lima_174", "question": "I'm trying to set get id of all elements in an ```HTMLCollectionOf```. I wrote the following code:\n```var list = document.getElementsByClassName(\"events\");\nconsole.log(list[0].id);\nfor (key in list) {\n console.log(key.id);\n}\n```\nBut I got the following output in console:\n```event1\nundefined\n```\nwhich is not what I expected. Why is the second console output ```undefined``` but the first console output is ```event1```?"}
{"question_id": "lima_175", "question": "I am 21 years old and living in a large city in Germany where smalltalk in local markets is not a common thing.\nA new cashier joined my local food shop. She\u2019s always at the checkout and never doing stuff like sorting products or cleaning the floor where I could actually ask her out. I am quite new to relationships, but the signs she gave me are promising.\nMy question is how I can ask for her number, or ask her out for coffee while she is only sitting at the checkout? I mean there are always like 5 people before and after me, and I think it would be awkward if we are changing numbers while customers are waiting behind us. Or even worse if I read the signs wrong and she rejects me? Since the store is just 5 min away from my place I visit regularly and don't want to leave a bad impression there."}
{"question_id": "lima_176", "question": "You start with the number 1536. Your mission is to get to 1 in as few steps as possible. At each step, you may either multiply or divide the number you have, by either 2 or 3; but, only if the result is a whole number whose first digit is 1, 3, 4, or 9. That is all."}
{"question_id": "lima_177", "question": "I want to create a simple bit of JS code that creates an image element in the background and doesn't display anything. The image element will call a tracking URL (such as Omniture) and needs to be simple and robust and work in IE 6 = ```var oImg = document.createElement(\"img\"); oImg.setAttribute('src', 'http://www.testtrackinglink.com'); oImg.setAttribute('alt', 'na'); oImg.setAttribute('height', '1px'); oImg.setAttribute('width', '1px'); document.body.appendChild(oImg); ``` Is this the simplest but most robust (error free) way to do it?"}
{"question_id": "lima_178", "question": "Why is %s better than + for concatenation in python?"}
{"question_id": "lima_179", "question": "I had an interview with an employer working on a software-based vehicle solution.\nBefore going further in the interview process, he gave me a task to find out if a potential customer (automotive OEMs) is interested.\nMy question is, how can I approach a potential customer and arrange some time together to present to them the solution?. I'm intending to use Linkedin, but I'm not sure how to proceed.\n\n* Who to contact (I mean the person position in the company)\n* How to formulate the request?\n"}
{"question_id": "lima_180", "question": "When an expendable booster rocket stage nears the end of its burn, does the guidance computer shut the engine(s) off at a certain velocity/altitude for the mission, or does the stage completely exhaust its propellants?"}
{"question_id": "lima_181", "question": "Is "ima" an informal spelling of "I must"?\n\nMegaCharizardZord Replying to @nytimes about COVID-19 vaccine:\ni just hope when i take it don't die lol. i trust the government in Canada, but if I do get something ima sue the shit out of em lol.\n\n\nSource: Twitter\n"}
{"question_id": "lima_182", "question": "How to prevent \"Delhi Belly\" from eating/drinking locally?"}
{"question_id": "lima_183", "question": "I'm working at my first programming job. My boss is a very smart software engineer, and I feel\nlike I have very little to offer compared to him. Problem is, he is always busy, and needs someone to help him out. I feel like I'm not good enough, but I still want to succeed. I want to be a great programmer.\nWhat can I do to impress him?\nThank you."}
{"question_id": "lima_184", "question": "Can I pass variables to a GNU Makefile as command line arguments? In other words, I want to pass some arguments which will eventually become variables in the Makefile."}
{"question_id": "lima_185", "question": "I have noticed that some games quote the requirement for \"pixel shader 3.0 or better\". \nWhat is a pixel shader and is it some software requirements or hardware requirements?"}
{"question_id": "lima_186", "question": "Red light facing forwards? It was nighttime in Manhattan. Isn't more always better when it comes to being seen?"}
{"question_id": "lima_187", "question": "If water is not a good conductor, why are we advised to avoid water near electricity (no wet hands near circuits etc.)?"}
{"question_id": "lima_188", "question": "What is the difference between cohesion and coupling?\nHow can coupling and cohesion lead to either good or poor software design?\nWhat are some examples that outline the difference between the two, and their impact on overall code quality?"}
{"question_id": "lima_189", "question": "Can Romex (NM-B) cable be run through conduit?"}
{"question_id": "lima_190", "question": "Let's say I have a function which takes an ```std::function```:\n```void callFunction(std::function x)\n{\n x();\n}\n```\nShould I pass ```x``` by const-reference instead?:\n```void callFunction(const std::function& x)\n{\n x();\n}\n```\nDoes the answer to this question change depending on what the function does with it? For example if it is a class member function or constructor which stores or initializes the ```std::function``` into a member variable."}
{"question_id": "lima_191", "question": "I have an Eloquent model which has a related model:\n```public function option() {\n return $this->hasOne('RepairOption', 'repair_item_id');\n}\npublic function setOptionArrayAttribute($values)\n{\n $this->option->update($values);\n}\n```\nWhen I create the model, it does not necessarily have a related model. When I update it, I might add an option, or not.\nSo I need to check if the related model exists, to either update it, or create it, respectively:\n```$model = RepairItem::find($id);\nif (Input::has('option')) {\n if () {\n $option = new RepairOption(Input::get('option'));\n $option->repairItem()->associate($model);\n $option->save();\n $model->fill(Input::except('option');\n } else {\n $model->update(Input::all());\n }\n};\n```\nWhere `````` is the code I am looking for."}
{"question_id": "lima_192", "question": "NASA is hiring a new 'planetary protection officer' to defend Earth from alien matter, and the pay is a six-figure salary: as much as $187,000 a year.\nWhen we are not sure whether aliens exist, why are we still hiring staff for protecting Earth? I do understand we have to take precautions. But when we don't have any proof why spend $187,000 a year?\nSource: Nasa [sic] hiring new 'planetary protection officer' to defend Earth from alien matter - Times of India, Aug 3, 2017"}
{"question_id": "lima_193", "question": "Traditional advice for making megadungeons in older versions of D&D is in addition to any rooms with Monsters, Treasure, Traps, or \"Tricks\", there should also be at least 50 to 60 percent \"Empty\" rooms, which contain nothing overtly threatening or valuable. Now, there's several arguments for including these empty rooms that I buy, so I'm not going to accept any answer which primarily says, \"Don't include empty rooms\". The main issue I run into with empty rooms, however, is that they're boring in the way that I've been including them. They don't do their job of increasing tension, and the set dressing included around them hasn't been sufficiently interesting to my players either. My question is this: How can I make empty rooms interesting, by increasing tension or simply being interesting in and of themselves?"}
{"question_id": "lima_194", "question": "Laravel - Eloquent \"Has\", \"With\", \"WhereHas\" - What do they mean? explain in the context of an example"}
{"question_id": "lima_195", "question": "What are some of the advantages of using one over the other?"}
{"question_id": "lima_196", "question": "What factors determine the maximum altitude for a plane?\nIs it limited by wing design, engine thrust, and so on?\nIs there a formula by which one can calculate the maximum altitude a plane can reach?"}
{"question_id": "lima_197", "question": "Why did the Typescript folks create the ```infer``` keyword?\nAccording to the documents, this is an example of how you would use it:\n```type ReturnType = T extends (...args: any[]) => infer R ? R : any;\n```\nI don't understand why this is needed. Why can't it just be:\n```type ReturnType = T extends (...args: any[]) => R ? R : any;\n```\nWhy doesn't this work? Why is the ```infer``` keyword necessary ?"}
{"question_id": "lima_198", "question": "Which is more widely supported: ```window.onload``` or ```document.onload```?"}
{"question_id": "lima_199", "question": "I was surprised to learn that Puerto Ricans, despite living in a US territory, were not entitled to vote in the presidential elections.\nI was even more surprised to learn that US citizens are allowed to vote for president from anywhere in the world - EXCEPT if they happen to live in Puerto Rico.\nWhat is the legal/political rationale behind this? What is it about Puerto Rico that magically removes one's right to vote? Has anyone ever challenged this?"}
{"question_id": "lima_200", "question": "Suppose I wrote that I will be killed by a UFO falling from space in the year 2315 while I am lifting.\nWill the Note increase my lifespan? In other words, will I still be alive by then? "}
{"question_id": "lima_201", "question": "I have an Affa Protector enchanted with Unhallowed Pact ... My opponent kills my Affa with Dread Slaver ...\nWho will take control of the creature at the end? This is taking into consideration that my aura spell was cast 5 turns ago. Meaning my aura spell is NOT on the stack."}
{"question_id": "lima_202", "question": "I've found that some people call JavaScript a \"dynamically, weakly typed\" language, but some even say \"untyped\"? Which is it really?"}
{"question_id": "lima_203", "question": "I was fixing my laptop, and as you may know, laptops have a lot of small screws to take out when you are fixing it. One of the screws fell into the floor (the floor has carpet on it), and I was unable to follow the screw with my sight. If I don't follow the screw with my sight when it falls, there is a high chance that I will not see that screw again.\nMy question is: what kind of method, tool or hack can I use to find small screws that falls into the floor?\nI have tried using the tool with a magnet on the tip, that mechanics use to grab wrenches that falls in inaccessible areas, but had no luck finding the screw."}
{"question_id": "lima_204", "question": "What is the difference between mutex and critical section? Please explain from Linux, Windows perspectives? \nI am programming in C#, would these two terms make a difference. Please post as much as you can, with examples and such....\nThanks"}
{"question_id": "lima_205", "question": "What is the purpose of the single underscore \"_\" variable in Python? What is the meaning of ```_``` after ```for``` in this code?\n```if tbh.bag:\n n = 0\n for _ in tbh.bag.atom_set():\n n += 1\n```"}
{"question_id": "lima_206", "question": "What is the difference between doing:\n```ptr = malloc (MAXELEMS * sizeof(char *));\n```\nor:\n```ptr = calloc (MAXELEMS, sizeof(char*));\n```\nWhen is it a good idea to use calloc over malloc or vice versa?"}
{"question_id": "lima_207", "question": "Why would I want to use Kotlin's coroutines? It seems that the RxKotlin library is much more versatile. Kotlin's coroutines look significantly less powerful and more cumbersome to use in comparison. I base my opinion on coroutines on this design talk by Andrey Breslav (JetBrains) Slideshow from the talk is accessible here."}
{"question_id": "lima_208", "question": "How do I get a ```PriorityQueue``` to sort on what I want it to sort on?\nAlso, is there a difference between the ```offer``` and ```add``` methods?"}
{"question_id": "lima_209", "question": "I've looked in the Apex developer's guide and a saw the Naming Conventions section which has basically only has this:\n\nWe recommend following Java standards for naming, that is, classes start with a capital letter, methods start with a lowercase verb, and variable names should be meaningful.\n\nI'm looking for something more in depth, such as end all Controllers with Controller and their tests with ControllerTest, etc.\nWhat is a good set of naming conventions to use when developing on the Force.com platofrm? It would be preferable if the answer has something that handles custom objects, classes, visualforce pages, and components and not just Apex classes."}
{"question_id": "lima_210", "question": "When learning some basic French, I was somewhat surprised to learn that phrases of the form \"I have found the cat\" generally translate almost word-for-word from English (J'ai trouv\u00e9 le chat). To me, it's not immediately obvious that possession (\"I have\"/\"J'ai\") has a correspondence with past tense, although if I think about it a little more I suppose I can kind of see how it makes sense.\nThis makes me wonder: Is this a common pattern in other languages? Especially ones not closely related to English."}
{"question_id": "lima_211", "question": "I'm building a simple helper script for work that will copy a couple of template files in our code base to the current directory. I don't, however, have the absolute path to the directory where the templates are stored. I do have a relative path from the script but when I call the script it treats that as a path relative to the current working directory. Is there a way to specify that this relative url is from the location of the script instead?"}
{"question_id": "lima_212", "question": "How to send HTML-formatted email in C#?"}
{"question_id": "lima_213", "question": "I want to sum a list of Integers. It works as follows, but the syntax does not feel right. Could the code be optimized?\n```Map integers;\nintegers.values().stream().mapToInt(i -> i).sum();\n```"}
{"question_id": "lima_214", "question": "I am beginner of LaTeX. From many examples I found, I notice that it's very common to use command ```\\leavevmode```. I can't find any information about this command. Could anyone tell me what's the function of it and how to use it?"}
{"question_id": "lima_215", "question": "In Python specifically, how do variables get shared between threads?\nAlthough I have used ```threading.Thread``` before I never really understood or saw examples of how variables got shared. Are they shared between the main thread and the children or only among the children? When would I need to use thread local storage to avoid this sharing?\nI have seen many warnings about synchronizing access to shared data among threads by using locks but I have yet to see a really good example of the problem. \nThanks in advance!"}
{"question_id": "lima_216", "question": "I grew up in a country where we were not allowed to leave/travel to an other country even when we were able to do so \u2013 we had the resources and dual nationality.\nAfter two decades I still can't figure out why dictators, like Kim Jong-un for example, ban people from leaving their home countries?\nCould it be that a dictator is usually interested in looting the country he rules, and having a smaller population means more natural resources for him and fewer protesters?"}
{"question_id": "lima_217", "question": "Why can't we kill ourselves by holding our breath?"}
{"question_id": "lima_218", "question": "Sometimes while driving in the traffic, I come across a car or two which would be dripping water-like drops from its exhaust steadily in 4-5 second intervals. I tried to ask a couple of people at the local workshops; they say, and I quote, "The car is giving an amazing mileage".\nAnd I am like, what does that water dripping mean even then? Why does the water drip? What is the source of it? And what does it signify?"}
{"question_id": "lima_219", "question": "Why can't MX records point to an IP address?"}
{"question_id": "lima_220", "question": "Why is ```SELECT *``` bad practice? Wouldn't it mean less code to change if you added a new column you wanted?\nI understand that ```SELECT COUNT(*)``` is a performance problem on some DBs, but what if you really wanted every column?"}
{"question_id": "lima_221", "question": "I did my training around the Seattle area, and was told that landing at SeaTac Airport (the region's major International/Commercial airport), while not strictly forbidden, was definitely frowned upon because it can slow down and interfere with the big planes on schedules. To discourage GA aircraft from using the big airport, they have a variety of landing fees, ramp fees, and prior-approval requirements.\nBut later, I moved near MCI, and was told that landing at the big airport was no big deal. That they're actually happy to have little planes there.\nIf you fly small GA planes, do you land at the major airports in your area?\nWhat advanced preparations can you make to minimize your impact on the \"big boys\", and remain a good airspace citizen?"}
{"question_id": "lima_222", "question": "I need a way to compare multiple strings to a test string and return the string that closely resembles it:\n```TEST STRING: THE BROWN FOX JUMPED OVER THE RED COW\nCHOICE A : THE RED COW JUMPED OVER THE GREEN CHICKEN\nCHOICE B : THE RED COW JUMPED OVER THE RED COW\nCHOICE C : THE RED FOX JUMPED OVER THE BROWN COW\n```\n(If I did this correctly) The closest string to the \"TEST STRING\" should be \"CHOICE C\". What is the easiest way to do this?\nI plan on implementing this into multiple languages including VB.net, Lua, and JavaScript. At this point, pseudo code is acceptable. If you can provide an example for a specific language, this is appreciated too!"}
{"question_id": "lima_223", "question": "Given the following code:\n```var arr = [1,2,3,4,5];\nvar results: number[] = await arr.map(async (item): Promise => {\n await callAsynchronousOperation(item);\n return item + 1;\n });\n```\nwhich produces the following error:\n\n TS2322: Type 'Promise[]' is not assignable to type 'number[]'.\n Type 'Promise is not assignable to type 'number'.\n\nHow can I fix it? How can I make ```async await``` and ```Array.map``` work together?"}
{"question_id": "lima_224", "question": "Why don't helicopters use reaction wheels to counter the main rotor?"}
{"question_id": "lima_225", "question": "When configuring cron to run a command every other day using the \"Day of Month\" field, like so: \n```1 22 */2 * * COMMAND\n```\nit runs every time the day of month is odd: 1,3,5,7,9 and so on.\nHow can I configure cron to run on days of month that are even like 2,6,8,10 and so on (without specifying it literally, which is problematic as every month has a different number of days in the month)?"}
{"question_id": "lima_226", "question": "Is there a way to have a private setter for a property in TypeScript?\n```class Test\n{\n private _prop: string;\n public get prop() : string\n {\n return this._prop;\n }\n private set prop(val: string)\n {\n //can put breakpoints here\n this._prop = val;\n }\n}\n```\nCompiler complains that visibility for getter and setter don't match. I know I can just set the backing field, but but then I can't set breakpoints when the value is set.\nI though about using an interface to hide the setter, but interfaces can only define a property, not whether it has a getter on setter.\nAm I missing something here? There doesn't seem to be any reason to not allow private setters, the resulting JS doesn't enforce visibility anyway, and seems better that the current alternatives.\nAm I missing something? If not is there a good reason for no private setters?"}
{"question_id": "lima_227", "question": "When learning vocabulary, especially with the use of SRS (Spaced Repetition System), it is interesting to use flashcards. A commonly encountered problem is how to formulate those for maximum efficiency.\nHow does learning vocabulary through sentences, thus giving context to the used words, compare to learning to recognize words alone? For example, the context may give away the meaning of the problematic vocabulary. Are there studies or expert opinions on one approach being preferable to the other at different stages of language learning? Or is it recommended that they be mixed for best results?"}
{"question_id": "lima_228", "question": "Can I spend the night alone in a tent in a forest outside Stockholm in -20\u00b0C without risking my life?\n\nThe backstory\nFrom the end of January, I'm starting my studies in a suburb of Stockholm. I've decided to, if it turns out plausible, not rent an apartment, but live in a tent. (This is not out of frugality, but out of a will to try something new.)\nI do have friends who I could visit once a week or so to prepare food and wash my clothes, so I think I can solve the practical problems, or at least those that I've come to think of. I'd camp in one of the forests, maybe 1 km from \"civilisation\". I'd have access to showers etc at university every day.\nHowever: I don't want to freeze to death in my sleep! That's very important to me. I've read that the nights can get as cold as -20\u00b0C (-4\u00b0F). With the proper preparations, would this be a plausible way of living, at least for a month or so?\nI do have camping experience, and have been hiking for three weeks, but only in summer."}
{"question_id": "lima_229", "question": "Why is the volt not identical to the full name Volta, unlike the other electrical units ohm, ampere, coulomb, tesla, weber and henry? Is there a historical explanation, was the volt introduced at a different time?"}
{"question_id": "lima_230", "question": "We can define cross products mathematically like if we take two vectors, we can find another vector with certain properties but why do we use it in physics, if we consider a hypothetical physical quantity like force which is equal to cross product of certain vectors?\n\n For example, the force exerted on a charge in motion in an uniform magnetic field.\n\nWhy is it so? Why does that force have to be a cross product of two vectors?\nIs it possible to come up with them when what we do is just observe the nature?"}
{"question_id": "lima_231", "question": "I have a web project in my solution file that is \"unavailable\" when I open the solution. When I right-click on the web project and reload the project, I get the following error:\n```\nThe Web Application Project mycompany.myapp.mywebproject is configured to use IIS. The Web Server 'http://localhost/MyWebApp could not be found.\n```\nI have not manually set up virtual directories for this web application. \nPer colleagues, Visual Studio should prompt me to create virtual directories but I am not getting prompted. \nI installed VS2010 before installing IIS on my dev machine. \nHere is my development machine setup:\n\n* Windows 7 Enterprise\n* Service Pack 1\n* 64 bit OS\n* Visual Studio 2010 Enterprise Service pack 1\n* IIS version 7.5\n"}
{"question_id": "lima_232", "question": "Why is it hard to draw people running in animes?"}
{"question_id": "lima_233", "question": "Malachi 4:5: \n\n I will send you the prophet Elijah. He will come before the day of the Lord arrives. It will be a great and terrifying day\n\nJesus says in Matthew 11:14\n\n \"and if you are willing to believe their message, John is Elijah, whose coming was predicted\"\n\nJesus says in Mathew 17:12\n\n But I tell you, Elijah has already come, and they did not recognize him, but have done to him everything they wished. In the same way the Son of Man is going to suffer at their hands.\u201d\n\nIt's pretty clear from the above verses that John was Elijah reincarnated.\nWouldn't the above verses imply that reincarnation is true? "}
{"question_id": "lima_234", "question": "I see hugely varied performance depending on how many newlines there are in the file I'm visiting.\nHere's an example. I have two JSON files:\n```$ wget https://github.com/Wilfred/ReVo-utilities/blob/a4bdc40dd2656c496defc461fc19c403c8306d9f/revo-export/dictionary.json?raw=true -O one_line.json\n$ python -m json.tool pretty_printed.json\n```\nThese are two JSON files with the same content. ```one_line.json``` is 18MiB of JSON without any newlines. ```pretty_printed.json``` has newlines and whitespace added, making it 41MiB.\nHowever, the bigger file split over many lines is much faster to open in Emacs, both in Javascript mode and Fundamental mode.\nWhy does Emacs have such poor performance with long lines, since it's actually fewer bytes? Is there anything I can do to improve performance without reformatting the data outside of Emacs?"}
{"question_id": "lima_235", "question": "Sooner or later we come across a task in our project, with which we are totally unfamiliar ('we' as in PM, but also possibly the staff assigned to do this particular task). \nHow can we estimate amount of time/work/resources needed to complete such a task? What margins of error should we assume?"}
{"question_id": "lima_236", "question": "Why is Nazi-Germany commonly referred to as \"The Third Reich\" in English? Why is reich not translated when Dritten (\"third\") is?\nAnd what is the English synonym of reich? Realm?\nAustria (Republik \u00d6sterreich), Norway (Kongeriket Norge) and Sweden (Konungariket Sverige) all have reich (or the Norwegian/Swedish corresponding etymology related word) in their name and they all have English translations of their name."}
{"question_id": "lima_237", "question": "If we fold a paper and then apply pressure on the newly formed crease, it seems that the paper's surface gets a permanent deformation but what exactly has happened to the paper at a molecular scale?"}
{"question_id": "lima_238", "question": "In general, there are two types of syntax of defining functions - Something like C, C++, C#, or Java (```int functionName(char arg)```) vs the ML (and others) tradition of defining the return type after the function (and using something like a ```fun``` keyword to define a function - like ```fun functionName(char arg): int```).\nOne of the advantages (for the parser, at least) for a ```fun``` keyword is that it lets the parser be context-free (it doesn't have to guess if ```int``` defines a variable or if it defines a function).\nWhen C was invented, computers had very little memory and speed (so little, that the reason C requires one to define all the variables in the beginning of the function was because it had to be a one-pass parser). Why didn't they choose the simple way out and use function defining keyword?"}
{"question_id": "lima_239", "question": "I am new to TeX, working on it for about 2 months. Have not yet figured out how to script the 'curvy L' for Lagrangian and/or for Laplace Transforms.\nAs of now I am using the 'L' - which is not good! :-( \nAny help?\nUPDATE The 2 best solutions are;\n```\\usepackage{ amssymb }\n\\mathcal{L}\n```\nand\n```\\usepackage{ mathrsfs }\n\\mathscr{L}\n```\nI got my answers at, http://detexify.kirelabs.org/classify.html "}
{"question_id": "lima_240", "question": "My son doesn't want to share anything with other kids, and if some kid even so much as touches his toy, he pushes the kid. He shouts and cries at the same time, and tries to express his anger by pushing and hitting the kid. I feel so embarrassed in front of other parents. \nAnd when he is at home with me and doing something wrong, I try to stop him, he tries to repeat my words and shouts at me. He is copying the behavior of others, whether it's a good act or bad...\nPlease help me how to stop him from being a bully."}
{"question_id": "lima_241", "question": "What are the differences between the Strategy design pattern and the State design pattern? please explain the difference in layman's terms?"}
{"question_id": "lima_242", "question": "Why don't Tour de France riders always ride their TT bikes?"}
{"question_id": "lima_243", "question": "I remember when the Muslim holy book was the Koran when I was in middle school, but now it's the Quran. But it's always been Qatar and Iraq (but still Kuwait.)\nWho decided that 'Q' was going to be represent that sound instead of 'K', and why?"}
{"question_id": "lima_244", "question": "How do you add Boost libraries in CMakeLists.txt?"}
{"question_id": "lima_245", "question": "Quando devo fazer essa grava\u00e7\u00e3o direto no banco? \nQuais as situa\u00e7\u00f5es?\nEu sei que posso gravar no banco o caminho da imagem."}
{"question_id": "lima_246", "question": "I need a regular expression that validates a number, but doesn't require a digit after the decimal. ie. ```123 123. 123.4 ``` would all be valid ```123.. ``` would be invalid"}
{"question_id": "lima_247", "question": "The year is 2109 C.E my friends and I were caught in a space disaster when the spacecraft we're in broke apart during a daring escape from a patrolling spacecraft. We stole an antique cellphone (from 1999, in good working condition) from a space museum but our escape was interrupted and fortunately we managed to get into the escape pod and didn't get caught up in the explosion. The only emergency transponder in the escape pod isn't working probably due to the destruction of the spacecraft. Given the technology of 1999, is it possible for us to sent out a distress signal to alert the leaving patrol spacecraft?\nNote: the cellphone was the most innovative product of 1999 money can buy.\nThe escape pod is not a Faraday cage we're talking about the future and the patrol spacecraft don't necessary be on a lookout for distress signal; please use these clues to your advantage.\nIf there is absolutely no way to transmit any man-made signal out, please state a valid reason why it can't be done."}
{"question_id": "lima_248", "question": "Often I want to just point the camera to an object or a specific area in my scene to get an idea of how it'll look in the render. What's the most painless hassle-free way to do this in blender?\nA quick search on the blender wiki does not lend itself to easy look-up due to all the noise in the search result.\nThis question could probably be broken down into these two main questions:\n\n* How do I point a selected camera to the current 3d-cursor location in the scene?\n* How do I point the selected camera to the currently selected object(s) in the scene?\n"}
{"question_id": "lima_249", "question": "What are the general tactics of Krav Maga as opposed to Systema? \nFor instance, the tactics of Silat are to hurt the other person so badly they can't hurt back. Another example would be that the tactics of boxing would be to knock out the other person first using only punches. So, as far as I know, the goal of Systema and Krav Maga are both to do anything you can to defeat your attacker because they are serious about self defense. Does that mean that Krav Maga and Systema are strategical identical? Does Krav use strategies that Systema doesn't? Does Systema use any strategies that Krav doesn't? Is there a difference or do they generally work the same way?"}
{"question_id": "lima_250", "question": "I understand that unlocking the bootloader will wipe my Android phone, but have been looking around for why. Seems to be by design, but what is the reasoning for that design? Is it some security concern, some obscure technical reason, or just for lulz? I'm looking for something solid to chew on here, something more than because \"that's how it is\"."}
{"question_id": "lima_251", "question": "The original IBM PC and later variants used an Intel 8253 or 8254 as a sound chip. Why did users add sound cards such as the Adlib or Sound Blaster. I remember voice output with programs like telephone answering programs. The sound was wimpy but I attributed most of the quality to speaker size.\nWhat was lacking with the original PC sound chip? "}
{"question_id": "lima_252", "question": "According to the sources I have found, a lambda expression is essentially implemented by the compiler creating a class with overloaded function call operator and the referenced variables as members. This suggests that the size of lambda expressions varies, and given enough references variables that size can be arbitrarily large.\nAn ```std::function``` should have a fixed size, but it must be able to wrap any kind of callables, including any lambdas of the same kind. How is it implemented? If ```std::function``` internally uses a pointer to its target, then what happens, when the ```std::function``` instance is copied or moved? Are there any heap allocations involved?"}
{"question_id": "lima_253", "question": "So, I'm on vacation in Utah, and so I attended an LDS service. In the morning, I heard a reading from one of the Presidents of the church during the \"Quorum of the Elders,\" then went to Sunday School, and finally witnessed the Sacrement of the bread and water. (I guess it makes sense there was no wine, but it did make me go \"Huh!\") After that, there were testimonies from missionaries and some music - but nothing that struck me as a sermon. \nWas I missing something, or was this an atypical service? I guess I was trying to understand what the \"pastor\"s role in the service was supposed to be - or again, is it just that Mormons are even more Baptist than baptists?\nIf someone could explain how instruction and exhortation are primarily conferred in the LDS church Id appreciate it. "}
{"question_id": "lima_254", "question": "A partir de un String, ```\"123-654321\"```, lo que deseo es dividirlo en dos Strings:\n```string1=123\nstring2=654321\n```"}
{"question_id": "lima_255", "question": "What\u2019s the difference between ```\\n``` (newline) and ```\\r``` (carriage return)?\nIn particular, are there any practical differences between ```\\n``` and ```\\r```? Are there places where one should be used instead of the other?"}
{"question_id": "lima_256", "question": "Assume that I am a programmer and I have an NP-complete problem that I need to solve it. What methods are available to deal with NPC problems? Is there a survey or something similar on this topic?"}
{"question_id": "lima_257", "question": "Why are the lights inside commercial airplanes turned off during take off and landing?"}
{"question_id": "lima_258", "question": "The default behaviour of ```LIKE``` and the other comparison operators, ```=``` etc is case-sensitive.\nIs it possible make them case-insensitive?"}
{"question_id": "lima_259", "question": "I have a new SPA with a stateless authentication model using JWT. I am often asked to refer OAuth for authentication flows like asking me to send 'Bearer tokens' for every request instead of a simple token header but I do think that OAuth is a lot more complex than a simple JWT based authentication. What are the main differences, should I make the JWT authentication behave like OAuth?\nI am also using the JWT as my XSRF-TOKEN to prevent XSRF but I am being asked to keep them separate? Should I keep them separate? Any help here will be appreciated and might lead to a set of guidelines for the community."}
{"question_id": "lima_260", "question": "Gostaria de saber se existe alguma forma simples de realizar um upload de arquivos via AJAX + JSON.\nSe houver, qual seria?"}
{"question_id": "lima_261", "question": "Did the ancients or other pre-industrial civilisations engage in unsustainable practices?"}
{"question_id": "lima_262", "question": "When reading my Bible, I've noticed Joesph's name listed in both the Old and New Testaments; is it the same person or is there more than one Joseph in the Bible?"}
{"question_id": "lima_263", "question": "Para que serve o \"with\" no Python?"}
{"question_id": "lima_264", "question": "The question bothers me since February 2022. Why (legally) are Russian combatants in Ukraine considered soldiers (thus POWs when captured) rather than terrorists?\n\n* There is no formal declaration of war.\n* They are members an organization (Russian military) that commits acts of terrors to civilian population in clear violation of international law of war. Moreover, they either directly or indirectly contribute to the mentioned acts of terror.\n* Their state (Russia) explicitly claims that there is no war (thus unilaterally waiving the protection of law of war for Russian forces).\n\nWhy is that particular group of armed people acting in clear violation of Ukrainian law treated as "soldiers in war" rather than state-sponsored criminals?\nNote, that waiving the protection of law of war does not waive the protection of Ukrainian law (right to due process etc.)."}
{"question_id": "lima_265", "question": "What are the major branches of philosophy?"}
{"question_id": "lima_266", "question": "Are there any advantages while backpacking to hike during the night and sleep during the day?"}
{"question_id": "lima_267", "question": "I have been cautioned against blending:\n\n* Traditional fantasy elements\n\nSuch as magic systems and exotic, less plausible creatures (on a scientific level - magic tends to explain away these beasts)\n\n* Traditional sci-fi elements\n\nSuch as advanced technology and civilizations amidst the stars.\nI have taken it upon myself to harmonize the two in my current worldbuilding project. I know I cannot be the first. I love the creativity found in both, and it is going well so far. I have been exploring the potential for humanity with both tools at their disposal. (Magic and science, essentially)\nWhy do people advise to stick to one or the other?"}
{"question_id": "lima_268", "question": "Why are prions in animal diets not destroyed by the digestive system?"}
{"question_id": "lima_269", "question": "How slicing in Python works? Please include references where appropriate."}
{"question_id": "lima_270", "question": "I am writing a story where a species undergoes devolution. Is there any scientific or plausible way to do this? The process can be instantaneous or may take ages, I do not mind which as I need to weigh my options at this stage. \nTo be clear, the devolution I am thinking of is like taking a human being then devolving him/her to the primate stage, so lets say about as far back as Orrorin tugenensis or Paranthropus where they are in the midst of evolving from primates to Homo erectus. Please note I used human beings as an example to give context but the species undergoing devolution may not necessarily be human.\nBased on the answers, \"devolution\" does not exist so had the word in quotes to reflect this. "}
{"question_id": "lima_271", "question": "I've used GEDCOM to transfer data between desktop software and websites, but it all seems a bit old hat. Is there anything better that will mangle* my data less.\n* For example, GEDCOM can lose some data where the two ends of the system understand a concept which GEDCOM does not have a field for."}
{"question_id": "lima_272", "question": "Is it ever possible that ```(a== 1 && a ==2 && a==3)``` could evaluate to true in JavaScript?"}
{"question_id": "lima_273", "question": "Gostaria de saber qual \u00e9 a real diferen\u00e7a entre o ```String``` (s mai\u00fasculo) e o ```string``` (s min\u00fasculo).\nAparentemente os dois t\u00eam os mesmos objetivos, por\u00e9m qual \u00e9 \"melhor\" para ser utilizado?"}
{"question_id": "lima_274", "question": "I'm working on a project solo and have to maintain my own code. Usually code review is done not by the code author, so the reviewer can look at the code with the fresh eyes \u2014 however, I don't have such luxury. What practices can I employ to more effectively review my own code?"}
{"question_id": "lima_275", "question": "Assume an environment with a puppet-managed cluster of different servers - various hardware, software, operating systems, virtual/dedicated, etc.\nWould you choose meaningful hostnames (mysqlmaster01..99, mysqlslave001..999, vpnprimary, vpnbackup, etc.) or would you prefer meaningless hostnames such as characters from a book or movie?\nThe problem I see with meaningful hostnames is that names usually represent a single service and if a server has more than one purpose it gets really messy (especially if server roles change often).\nIsn't mapping a service name to an IP address and maintaining that mapping what DNS is supposed to do?\nWhat are the advantages and drawbacks of both approaches and what actual problems have you had to tackle with the approach you chose?"}
{"question_id": "lima_276", "question": "Best way to start investing, for a young person just starting their career?"}
{"question_id": "lima_277", "question": "Quantum state teleportation is the quantum information protocol where a qubit is transferred between two parties using an initial shared entangled state, Bell measurement, classical communication and local rotation. Apparently, there is also something called quantum gate teleportation.\nWhat is quantum gate teleportation and what is it used for?\nI am particularly interested in possible applications in simulating quantum circuits."}
{"question_id": "lima_278", "question": "What does it mean for an album to be remastered?"}
{"question_id": "lima_279", "question": "What's the best way to iterate over the items in a ```HashMap```?"}
{"question_id": "lima_280", "question": "Why did people start using CO2 (instead of e.g. oxygen) for carbonated drinks?"}
{"question_id": "lima_281", "question": "Say I have a file ```/templates/apple``` and I want to\n\n* put it in two different places and then\n* remove the original.\n\nSo, ```/templates/apple``` will be copied to ```/templates/used``` AND ```/templates/inuse```\nand then after that I\u2019d like to remove the original.\nIs ```cp``` the best way to do this, followed by ```rm```? Or is there a better way?\nI want to do it all in one line so I\u2019m thinking it would look something like:\n```cp /templates/apple /templates/used | cp /templates/apple /templates/inuse | rm /templates/apple\n```\nIs this the correct syntax?"}
{"question_id": "lima_282", "question": "When are Decision Diagrams the right way to model and solve a problem?"}
{"question_id": "lima_283", "question": "Essentially, I have a protagonist who I set up as a 'main' good guy in one of my series. However, in my final series, I intend to make him turn to the dark side and oppose my other protagonists (from my other series). It's clear in his series that the protagonist-turned-antagonist is very devious, and he has had hostile intentions previously towards the protagonists of the other series.\nMy question:\nShould I avoid turning my protagonist into an antagonist? Are there any foreseeable problems with this? Will this be a problem for readers? Any tips or tricks to handle this?"}
{"question_id": "lima_284", "question": "I'd never heard of anycast until a few seconds ago when I read \"What are some cool or useful server/networking tricks?\".\nThe wikipedia \"Anycast\" article on it is quite formal and doesn't really evoke a mental picture of how it would be used.\nCan someone explain in a few informal sentences what \"anycast\" is, how you configure it (just in a general sense), and what its benefits are (what does it make easier)?"}
{"question_id": "lima_285", "question": "$A$ and $B$ are $n \\times n$ matrices and $v$ is a vector with $n$ elements. $Av$ has $\\approx 2n^2$ flops and $A+B$ has $n^2$ flops. Following this logic, $(A+B)v$ should be faster than $Av+Bv$.\nYet, when I run the following code in matlab\n```A = rand(2000,2000);\nB = rand(2000,2000);\nv = rand(2000,1);\ntic\nD=zeros(size(A));\nD = A;\nfor i =1:100\n D = A + B;\n (D)*v;\nend\ntoc\ntic\nfor i =1:100\n (A*v+B*v);\nend\ntoc\n```\nThe opposite is true. Av+Bv is over twice as fast. Any explanations?"}
{"question_id": "lima_286", "question": "I came across a piece of code ```void *p = &&abc;```. What is the significance of ```&&``` here?\nI know about rvalue references but I think ```&&``` used in this context is different. What does ```&&``` indicate in ```void *p = &&abc;``` ?"}
{"question_id": "lima_287", "question": "When I execute \"```python```\" from the terminal with no arguments it brings up the Python interactive shell.\nWhen I execute \"```cat | python```\" from the terminal it doesn't launch the interactive mode. Somehow, without getting any input, it has detected that it is connected to a pipe.\nHow would I do a similar detection in C or C++ or Qt?"}
{"question_id": "lima_288", "question": "\"The video of Pythom Space's first rocket test has raised a few eyebrows\n\nThe video prompted hundreds of replies on Twitter, including some from rather horrified rocket scientists. "We knew better as untrained college students," said Jordan Noone, the co-founder of Relativity Space.\n\nPythom \u201cMicro jump\u201d\nWhat exactly did they get wrong with this test?\nNote: The Pythom Space CEO did eventually respond to the original Ars Technica story linked above. It does offer their own take on some of the issues raised there and elsewhere (including some of the points in the answer below)\""}
{"question_id": "lima_289", "question": "When should I use wp_register_script() with wp_enqueue_script() vs just wp_enqueue_script()?"}
{"question_id": "lima_290", "question": "When encoding a logic into a proof assistant such as Coq or Isabelle, a choice needs to be made between using a shallow and a deep embedding. In a shallow embedding logical formulas are written directly in the logic of the theorem prover, whereas in a deep embedding logical formulas are represented as a datatype. \n\n* What are the advantages and\nlimitations of the various\napproaches?\n* Are there any guidelines available for determining which to use? \n* Is it possible to switch between the two representations in any systematic fashion?\n\nAs motivation, I would like to encode various security related logics into Coq and am wondering what the pros and cons of the different approaches are."}
{"question_id": "lima_291", "question": "Prove that the union of countably many countable sets is countable."}
{"question_id": "lima_292", "question": "Voc\u00ea encontra na internet a afirma\u00e7\u00e3o que Singletons s\u00e3o ruins. Isto \u00e9 verdade? Por qu\u00ea?\nO problema seria generalizado para quaisquer objetos com inst\u00e2ncia \u00fanica? Ou para qualquer coisa que tenha estado global?\nSe \u00e9 t\u00e3o ruim, pra que foi inventado? Ou seja, que problema ele queria resolver?\nQuais os problemas que terei se us\u00e1-lo?\nExiste alternativa vi\u00e1vel?"}
{"question_id": "lima_293", "question": "The construction of Solomon's temple includes a piece of furnishing described in 1 Kings 7:23 (ESV):\n\n Then he made the sea of cast metal. It was round, ten cubits from brim to brim, and five cubits high, and a line of thirty cubits measured its circumference.\n\nSo if the ```diameter = 10``` cubits and the ```circumference = 30``` cubits, then ```\u03c0 = 3``` by the equation ```C = \u03c0 * D```.\nOf course, such an object does not exist since ```\u03c0 = 3.14159...``` yet clearly the sea was constructed at some point. So how do we resolve this contradiction?"}
{"question_id": "lima_294", "question": "With PHP 7.2, ```each``` is deprecated. The documentation says:\n\nWarning This function has been DEPRECATED as of PHP 7.2.0. Relying on this function is highly discouraged.\n\nHow can I update my code to avoid using it? Here are some examples:\n\n* \n```$ar = $o->me;\nreset($ar);\nlist($typ, $val) = each($ar);\n```\n\n* \n```$out = array('me' => array(), 'mytype' => 2, '_php_class' => null);\n$expected = each($out);\n```\n\n* \n```for(reset($broken);$kv = each($broken);) {...}\n```\n\n* \n```list(, $this->result) = each($this->cache_data);\n```\n\n* \n```// iterating to the end of an array or a limit > the length of the array\n$i = 0;\nreset($array);\nwhile( (list($id, $item) = each($array)) || $i < 30 ) {\n // code\n $i++;\n}\n```\n\n\nWhen I execute the code on PHP 7.2 I receive the following error:\n\nDeprecated: The each() function is deprecated. This message will be suppressed on further calls"}
{"question_id": "lima_295", "question": "Can someone please give an explanation of different egg preparations?"}
{"question_id": "lima_296", "question": "I'm running a relatively small one-man business in the software sector. I just started and am trying to create a larger portfolio. For that, I offer some friends free services. \nI found a few reasons to send these clients \u20ac0,- invoices, mostly similar to the reasons to send 100% discount invoices to charity funds that I gave here:\n\n* Clarity about what has to be done and when \n* No transfers (as I would have with a 0% discount bill and returning the money as a gift)\n\nAnd also:\n\n* With an invoice I have more distinguishable clients which makes that I have more chance on getting a better certificate from the state (doesn't matter how it exactly works, this is an advantage)\n\nSuppose that these clients won't have a problem with the \u20ac0,- invoices, could there be any reason for me to not send them?\nI ask this, because I've never seen people sending invoices like this, and I can only see advantages."}
{"question_id": "lima_297", "question": "In regards to Error handling in PHP -- As far I know there are 3 styles:\n\n* ```die()```or ```exit()``` style:\n```$con = mysql_connect(\"localhost\",\"root\",\"password\");\nif (!$con) {\n die('Could not connect: ' . mysql_error());\n}\n```\n* ```throw Exception``` style:\n``` if (!function_exists('curl_init')) {\n throw new Exception('need the CURL PHP extension.\n Recomplie PHP with curl');\n }\n```\n* ```trigger_error()``` style:\n```if(!is_array($config) && isset($config)) {\n trigger_error('Error: config is not an array or is not set', E_USER_ERROR);\n }\n```\n\nNow, in the PHP manual all three methods are used. \n\n* What I want to know is which style should I prefer & why?\n* Are these 3 drop in replacements of each other & therefore can be used interchangeably?\n\nIs it just me or everyone thinks PHP error handling options are just too many to the extent it confuses php developers?"}
{"question_id": "lima_298", "question": "How do I change the author and committer name/email for multiple commits?"}
{"question_id": "lima_299", "question": "This summer I will be taking a rather inherently dangerous multi-day hike by myself. I was considering buying a flare gun since I will be out of cellular range unless there is something more modern and equally reliable. Any suggestions?"}
{"question_id": "lima_300", "question": "\n Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the Government for a redress of grievances.\n\nI don't understand the part marked in bold.\nCongress shall make no law prohibiting the free exercise of religion. So congress should not make a law which prohibits the freedom of religion. I get it.\nBut Congress shall make a law which respects an establishment of religion. Doesn't \"Congress shall make no law respecting an establishment of religion\" mean congress should not make a law that respects religion because there's \"no\" in it?? "}
{"question_id": "lima_301", "question": "Why are people unwilling to share information about their salary?"}
{"question_id": "lima_302", "question": "In D&D, how many attacks can a fighter with two-weapon fighting make at 5th level?"}
{"question_id": "lima_303", "question": "Consider the following code:\n```avgDists = np.array([1, 8, 6, 9, 4])\nids = avgDists.argsort()[:n]\n```\nThis gives me indices of the ```n``` smallest elements. Is it possible to use this same ```argsort``` in descending order to get the indices of ```n``` highest elements?"}
{"question_id": "lima_304", "question": "Can a woman give birth to twins with different fathers?"}
{"question_id": "lima_305", "question": "Relationship between SVD and PCA. How to use SVD to perform PCA?"}
{"question_id": "lima_306", "question": "What is the English term for when someone thinks they are doing something nice for you but it ends up making things worse. EX: Someone buys you an elephant -- nice gesture and cool! But now you have to take care of it, and it becomes a burden on you."}
{"question_id": "lima_307", "question": "Did Hillary Clinton propose to punish flag burners in 2005?"}
{"question_id": "lima_308", "question": "There are several questions here about the definition of depth of field, about focal length, and about subject distance. And of course there's the basic how does aperture affect my photographs. And plenty of how do I get super-shallow d.o.f questions. There's related questions like this one. But there's no be-all-end-all question asking:\nWhat exactly determines depth of field in a photograph? \nIs it just a property of the lens? Can lenses be designed to give more depth of field for the same aperture and focal length? Does it change with camera sensor size? Does it change with print size? How do those last two relate?"}
{"question_id": "lima_309", "question": "Why did the NES not allow rotated sprites?"}
{"question_id": "lima_310", "question": "I want to merge two dictionaries into a new dictionary.\n```\nx = {'a': 1, 'b': 2}\ny = {'b': 3, 'c': 4}\nz = merge(x, y)\n\n>>> z\n{'a': 1, 'b': 3, 'c': 4}\n```"}
{"question_id": "lima_311", "question": "There are many \"standards\" for the JSON content type:\napplication/json\napplication/x-javascript\ntext/javascript\ntext/x-javascript\ntext/x-json\nWhich one do I use, and where? I assume security and browser support issues are a factor."}
{"question_id": "lima_312", "question": "What's the goal of Minecraft and what can users achieve in this world?"}
{"question_id": "lima_313", "question": "If I have sampled a signal using proper sampling methods (Nyquist, filtering, etc) how do I relate the length of my FFT to the resulting frequency resolution I can obtain?\nLike if I have a 2,000 Hz and 1,999 Hz sine wave, how would I determine the length of FFT needed to accurately tell the difference between those two waves?"}
{"question_id": "lima_314", "question": "I wanted to produce a 1 GB random file, so I used following command.\n```dd if=/dev/urandom of=output bs=1G count=1\n```\nBut instead every time I launch this command I get a 32 MB file:\n```$ dd if=/dev/urandom of=output bs=1G count=1\n0+1 records in\n0+1 records out\n33554431 bytes (34 MB, 32 MiB) copied, 0,288321 s, 116 MB/s\n```\nWhat is wrong?"}
{"question_id": "lima_315", "question": "The treads on my road bike's 28C tires are almost completely gone\u2014they only persist along the shoulders of the tire. Do the treads matter? What is a good indicator of when the tire as a whole needs to be replaced?"}
{"question_id": "lima_316", "question": "Is there a way to create an index on a property/column using fluent configuration, instead of using the new ```IndexAttribute``` ?"}
{"question_id": "lima_317", "question": "Both races have the same limits on their strength, and athletics, but it's hard to imagine why. A Goliath could feasibly lift and throw a gnome, yet the Gnome, following rules as written, can pin down a Goliath, fairly easily, if statted correctly. \nIs there an in-universe explanation as to why such dramatically different sized creatures can wrestle on an even playing field?\nHow might a DM explain a scenario in which a gnome beats a goliath in any kind of test of strength?"}
{"question_id": "lima_318", "question": "So I'm pretty far into writing my dystopian novel and I was reading over what I had. Something that helps me when I first start a novel is to get a clear picture of my characters in my head and put a face to a name, so I usually sculpt a personality and find a Google image of someone who I think matches that, and I put all of those into documents for my personal reference. I looked over my main five characters--Analise, Poet, Shove, Star, and Nova--and then suddenly something jumped out at me. Analise is Hispanic, Shove is Japanese, and Poet, Star, and Nova are all black.\nI had forgotten about their races because it wasn't important to me and I had not noticed while I was writing, because the story isn't about their racial backgrounds. But is it, I don't know, somehow alienating or offensive to white readers that the characters aren't white, and that no main characters are white? "}
{"question_id": "lima_319", "question": "When I do ```\\footnote{}``` for a value in a table, the footnote doesn't show up. How do I get it to show up? Also, is it possible to get it to show up at the bottom of the table rather than the bottom of the page?"}
{"question_id": "lima_320", "question": "Why is kVA not the same as kW?"}
{"question_id": "lima_321", "question": "Elon Musk and his partner want to name their child X \u00c6 A-12.\nIs that name allowed in California, US?"}
{"question_id": "lima_322", "question": "In this Creation magazine reprint of a 1994 article titled Exploding stars point to a young universe, Young-Earth Creationist, Jonathan Sarfati argues that the scarcity of Supernova remnants (SNRs) in the sky suggests the Milky Way galaxy is less than billions of years old.\n\nOn average, a galaxy like our own, the Milky Way, should produce one supernova every 25 years.\n[...]\nAs can be readily seen above, a young universe model fits the data of the low number of observed SNRs. If the universe was really billions of years old, there are 7000 missing SNRs in our galaxy.\n\nDoes astronomy predict a Milky Way supernova every 25 years? Are there missing SNRs that undermine these predictions?"}
{"question_id": "lima_323", "question": "Why is there so much technical detail of whaling included in Moby-Dick?"}
{"question_id": "lima_324", "question": "Why are we building larger land-based telescopes instead of launching larger ones into space?"}
{"question_id": "lima_325", "question": "Why can we see the dust particles in a narrow beam of light (and not in an all lighted area)?"}
{"question_id": "lima_326", "question": "I can not initialize a List as in the following code:\n```List supplierNames = new List();\nsupplierNames.add(\"sup1\");\nsupplierNames.add(\"sup2\");\nsupplierNames.add(\"sup3\");\nSystem.out.println(supplierNames.get(1));\n```\nI face the following error: \n\n Cannot instantiate the type ```List```\n\nHow can I instantiate ```List```?"}
{"question_id": "lima_327", "question": "What is the difference between ```warnings.warn()``` and ```logging.warn()``` in terms of what they do and how they should be used?"}
{"question_id": "lima_328", "question": "In Greek mythology, the words \"Titan\" and \"God\" seem to be used interchangeably. For example, Zeus is a God, but Cronus (his father) was a Titan. So what is the difference between a Titan and a God in Greek mythology? "}
{"question_id": "lima_329", "question": "How do weather models work?"}
{"question_id": "lima_330", "question": "I am currently trying to decipher Mazur's Eisenstein ideal paper (not a comment about his clarity, rather about my current abilities). One of the reasons I am doing that is that many people told me that the paper was somehow revolutionary and introduced a new method into number theory. \nCould you explain exactly what subsequent developments did the paper bring, what ideas in the paper were considered more-or-less original (at the time it was published), and exactly what difficulties did these ideas resolve that people failed to resolve before the paper was published (if any)?"}
{"question_id": "lima_331", "question": "Tracing XML request/responses with JAX-WS"}
{"question_id": "lima_332", "question": "In Vim, how do I insert characters at the beginning of each line in a selection?\nFor instance, I want to comment out a block of code by prepending ```//``` at the beginning of each line assuming my language's comment system doesn't allow block commenting like ```/* */```. How would I do this?"}
{"question_id": "lima_333", "question": "Why doesn't the nuclear fusion in a star make it explode?"}
{"question_id": "lima_334", "question": "Does hot water freeze faster than cold water?"}
{"question_id": "lima_335", "question": "O que \u00e9 Reflection. Por que \u00e9 \u00fatil?\n* \u00c9 recomend\u00e1vel usar em projetos?\n* Como usar?\n* Em quais situa\u00e7\u00f5es Reflection pode ser usado?"}
{"question_id": "lima_336", "question": "What is the difference between minimum and infimum?"}
{"question_id": "lima_337", "question": "I had a Nespresso Vertuo Next machine. It stopped working properly and during the troubleshooting video call, the Nespresso support agent said that the machines should not be connected to a GFCI outlet because they can potentially damage the machine. As part of our home inspection when we purchased the house, it was recommended to install such outlets anywhere that water is common, including the kitchen. As such, all the outlets in our kitchen are GFCI outlets.\nThis call with Nespresso was the first time I'd ever seen someone claim that GFCI outlets can potentially damage coffee machines.\nCan they damage Nespresso machines? If so, can they damage other coffee machines (I also have a Baratza grinder and a Bonavita drip machine I usually hook into the same outlet)? They sent us a replacement and now I am questioning where to put it."}
{"question_id": "lima_338", "question": "I have extremely bad posture, what can I do?"}
{"question_id": "lima_339", "question": "How to add margin top to ```class=\"row\"``` elements using twitter bootstrap framework?"}
{"question_id": "lima_340", "question": "In FTL: Faster Than Light, what triggers crew experience increases?"}
{"question_id": "lima_341", "question": "In Adobe Photoshop I am able to select multiple layers at once with Shift+Click.\nHow can I do that in GIMP?"}
{"question_id": "lima_342", "question": "In the python built-in open function, what is the exact difference between the modes ```w```, ```a```, ```w+```, ```a+```, and ```r+```?\nIn particular, the documentation implies that all of these will allow writing to the file, and says that it opens the files for \"appending\", \"writing\", and \"updating\" specifically, but does not define what these terms mean."}
{"question_id": "lima_343", "question": "How can democracy not be the rule of the poor?"}
{"question_id": "lima_344", "question": "How can I write colored text to the Windows console with C++? That is, how can I write different text with different colors?"}
{"question_id": "lima_345", "question": "What's the best way to create a temporary file in Android? \nCan File.createTempFile be used? The documentation is very vague about it.\nIn particular, it's not clear when temporary files created with ```File.createTempFile``` are deleted, if ever."}
{"question_id": "lima_346", "question": "I have javascript function like this:\n```function myFunction(number) {\n var x=number;\n ...\n ... more initializations\n //here need to wait until flag==true\n while(flag==false)\n {}\n ...\n ... do something\n}\n```\nThe problem is that the javascript is stuck in the while and stuck my program. so my question is how can I wait in the middle of the function until flag is true without \"busy-wait\"?"}
{"question_id": "lima_347", "question": "According to this famous blog post, the effective transcript length is:\n$\\tilde{l}_i = l_i - \\mu$\nwhere $l_i$ is the length of transcript and $\\mu$ is the average fragment length. However, typically fragment length is about 300bp. What if when the transcript $l_i$ is smaller than 300? How do you compute the effective length in this case?\nA related question: when computing the FPKM of a gene, how to choose a transcript? Do we choose a \"canonical\" transcript (how?) or combine the signals from all transcripts to a gene-level FPKM?"}
{"question_id": "lima_348", "question": "What is the significance of 1/1/1753 in SQL Server?"}
{"question_id": "lima_349", "question": "I saw this video where someone says that electromagnetic wave is a chain reaction of electric and magnetic fields creating each other so the chain of wave moves forward.\nI wonder where the photon is in this explanation. What is the relation between electromagnetic wave and photon?"}
{"question_id": "lima_350", "question": "In The Light Fantastic, after talking about the dimensions of the Pyramid of Tsort, it says \n\n All in all, it was a lot of effort to go through just to sharpen a razor.\n\nWhat's the joke here?"}
{"question_id": "lima_351", "question": "After a ```git pull origin master```, I get the following message:\n\nwarning: Pulling without specifying how to reconcile divergent branches is\ndiscouraged. You can squelch this message by running one of the following\ncommands sometime before your next pull:\n git config pull.rebase false # merge (the default strategy)\n git config pull.rebase true # rebase\n git config pull.ff only # fast-forward only\nYou can replace "git config" with "git config --global" to set a default\npreference for all repositories. You can also pass --rebase, --no-rebase,\nor --ff-only on the command line to override the configured default per\ninvocation.\nremote: Enumerating objects: 4, done.\nremote: Counting objects: 100% (4/4), done.\nremote: Compressing objects: 100% (4/4), done.\nremote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0\nUnpacking objects: 100% (4/4), 51.49 KiB | 850.00 KiB/s, done.\n\nThe pull seems successful, but I am unsure.\nWhat can I do to fix this?"}
{"question_id": "lima_352", "question": "In India, we eat rice using our fingers. Generally in the West, a fork or spoon is used. I have tried eating rice with spoon but I don't feel satisfied with it.\nWe eat dry rice but we mix curry and vegetables with it and then eat it with our hands.\nIs there a way to eat rice with your hands in front of Westerners such that it doesn't appear to be disgusting to them? By disgusting I mean that they shouldn't feel like vomiting or looking away to avoid me. Even though in India we eat with our fingers, many people eat such that their whole palm is covered with food. That indeed looks disgusting. \nI cannot avoid hurting them by following different etiquette, but I certainly want to maintain a degree of cleanliness."}
{"question_id": "lima_353", "question": "The typical argument goes like this:\n\n Without net neutrality, cable companies could censor websites, favoring their own business partners. \n\nTypically, proponents of legislation point to some perceived injustice, and argue that new laws are needed to address it. But the very use of the subjunctive in the quotation (could censor), suggests that this might be considered by its opponents as a solution in search of a problem. If so, why haven't they used that rhetorical tactic? Conversely, if such incidents have occurred, why don't the neutrality supporters cite them?"}
{"question_id": "lima_354", "question": "Does having a longer Ethernet cable slow your connection?"}
{"question_id": "lima_355", "question": "Border around formatted text in Inkscape"}
{"question_id": "lima_356", "question": "I learned about the equilibrium constant. Now, I've seen that the equilibrium constant of burning is extremely small $(K \\ll 1)$. here, I have a question. you see, $K$ is still NOT 0, which means that the forward reactions happen at least a tiny bit. Then, shouldn't we see some parts of anything burning at least a little bit?"}
{"question_id": "lima_357", "question": "The name \"Bleach\" seems to be having no relevance to the plot unlike most other series. Was it just chosen at Kubo-sensei's whim or does it have some significance? Maybe some cultural significance associated with shinigami, etc. that I am now aware of?"}
{"question_id": "lima_358", "question": "Why don't rally cars have airbags?"}
{"question_id": "lima_359", "question": "Was the Millennium Falcon a one-off or was it mass produced?"}
{"question_id": "lima_360", "question": "Usually when I see lists of things to do to be more energy efficient, they require one to own their own home. What can I do to be more energy efficient in an apartment? \nFor example, I can't install solar panels, I can't upgrade/change my appliances, I can't install better insulation or windows, and I can't install a programmable thermostat. \nPretty much the only thing I can do (and have done) is switch all of my bulbs to CFLs. I also keep all of my electronics on power strips which I turn off when I leave my apartment and when I'm sleeping."}
{"question_id": "lima_361", "question": "Is there any way to exit ```less``` without clearing the screen?"}
{"question_id": "lima_362", "question": "How can I do 'insert if not exists' in MySQL?"}
{"question_id": "lima_363", "question": "What does ```class``` do in Ruby?"}
{"question_id": "lima_364", "question": "\"I have a problem where i'm initialising a variable on the scope in a controller. Then it gets changed in another controller when a user logs in. This variable is used to control things such as the navigation bar and restricts access to parts of the site depending on the type of user, so its important that it holds its value. The problem with it is that the controller that initialises it, gets called again by angular some how and then resets the variable back to its initial value. \nI assume this is not the correct way of declaring and initialising global variables, well its not really global, so my question is what is the correct way and is there any good examples around that work with the current version of angular?\""}
{"question_id": "lima_365", "question": "How do I initialize a TypeScript Object with a JSON-Object?"}
{"question_id": "lima_366", "question": "Why is digital photography so expensive?"}
{"question_id": "lima_367", "question": "If user input is inserted without modification into an SQL query, then the application becomes vulnerable to SQL injection, like in the following example:\n```$unsafe_variable = $_POST['user_input'];\nmysql_query(\"INSERT INTO `table` (`column`) VALUES ('$unsafe_variable')\");\n```\nThat's because the user can input something like ```value'); DROP TABLE table;--```, and the query becomes:\n```INSERT INTO `table` (`column`) VALUES('value'); DROP TABLE table;--')\n```\nWhat can be done to prevent this from happening?"}
{"question_id": "lima_368", "question": "I want to be able to output the current loop iteration to my template.\nAccording to the docs, there is a ```loop.counter``` variable that I am trying to use:\n```\n{% for user in userlist %}\n * \n {{ user }} {{loop.counter}}\n \n {% if loop.counter == 1 %}\n This is the First user\n {% endif %}\n{% endfor %}\n\n```\nBut is being outputed to my template. What is the correct syntax?"}
{"question_id": "lima_369", "question": "Are the players on the same team as the DM?"}
{"question_id": "lima_370", "question": "C++ vs. The Arduino Language?"}
{"question_id": "lima_371", "question": "How can I adapt Ubuntu to a high resolution display?\nI have a display with 3200x1600px on only 11'' and everything looks really tiny."}
{"question_id": "lima_372", "question": "Say I want to make a file:\n```filename = "/foo/bar/baz.txt"\nwith open(filename, "w") as f:\n f.write("FOOBAR")\n```\nThis gives an ```IOError```, since ```/foo/bar``` does not exist.\nWhat is the most pythonic way to generate those directories automatically? Is it necessary for me explicitly call ```os.path.exists``` and ```os.mkdir``` on every single one (i.e., /foo, then /foo/bar)?"}
{"question_id": "lima_373", "question": "Assume that Jane Doe has published a paper in 2010 where she has developed a model or a theorem or a similar result, let\u2019s say, that it relates to growth.\nNow assume that Jane Doe is writing another paper in 2015, where she refers to the model/theorem from her paper in 2010.\nIs it acceptable for Jane to write something like the following?\n\n Doe\u2019s growth model (2010), implies that ...\n Doe\u2019s growth theorem (2010) implies that ...\n The Doe growth model (2010) implies ...\n"}
{"question_id": "lima_374", "question": "I've been with my current employer for about a year now. Due to the way the company is setup, I'm the only one with knowledge on a process that is quite important to the company. The company is going through some restructuring, and has been letting people go. As the newest guy in my department, I'm obviously concerned. \nMy question though, is if I am let go, am I obligated to spend my time teaching someone else this process that only I know about?"}
{"question_id": "lima_375", "question": "Bash test: what does \"=~\" do?"}
{"question_id": "lima_376", "question": "If I have a Bash script like:\n```#!/bin/bash\nf() {\n # echo function name, \"f\" in this case\n}\n```\nIs there any way to do this? This could be used in help messages such as\n```printf \"Usage: %s: blah blah blah \\n\" $(basename $0) >&2;\n```\nOnly in this case what I wanted is not ```$0```, which is the file name of the script."}
{"question_id": "lima_377", "question": "I know that the public practice of any religion other than Wahabbi Islam is strictly forbidden in Saudi Arabia, and there would be no places of worship. I also know that the morality police raided a a hotel several years ago where Mass was being celebrated, and arrested the priest and the acolytes.\nBut I am also told that many expats from countries with large Catholic communities such as the Philippines, India, and Sri Lanka do gather in private homes for worship. Is this officially tolerated, or would I endanger the hosts or other participants by asking about them?"}
{"question_id": "lima_378", "question": "Is there a way to achieve protections similar to \"Copyleft\" under the patent system?"}
{"question_id": "lima_379", "question": "In monopoly, can an opponent put a property up for auction at a higher price than I have in cash?"}
{"question_id": "lima_380", "question": "What is the purpose of having a countdown during a rocket launch?"}
{"question_id": "lima_381", "question": "How does one attack a two-time pad (i.e. one time pad with key reuse)?\nI am new to cryptography and my problem is with two time pad attacks on OTP.\nThe problem I had in my course was that I have 10 ciphertexts encrypted with the same key $K$. I am then given another ciphertext that I should decrypt.\nI know that XOR-ing two ciphers gives me the XOR of their original messages.\nMy question is what is the correct thing to do after that?\nI tried to take 3 ciphertexts $C_1, C_2$ and $C_3$.\nThen get $S_1 = C_1 \\oplus C_2 \\oplus $```' '```, also get $S_2 = C_1 \\oplus C_3 \\oplus$ ```' '```.\nAfter that I compared all corresponding characters in $S_1$ and $S_2$,\nand if $S_1[i] = S_2[i]$ then I calculate $S_1[i] \\oplus C_2[i]$ to get $K[i]$.\nI tried this on paper before coding and it worked, but I might be missing something.\nIs this the right approach? Why does it work?"}
{"question_id": "lima_382", "question": "I have a small home automation lab (that I keep saying I'll expand, but haven't). In this setup, I have a control system to control lights (utilizing the x10 protocol), blinds, a Nest thermostat and two web cams.\nWith the recent record setting DDoS attacks utilizing unsecured IoT devices, I'd like to secure my small setup a bit. \nWhat can a home user do to secure their network while still maintaining the \"connect from anywhere\" aspect that is a big part of the marketing?"}
{"question_id": "lima_383", "question": "What are objective advantages or disadvantages of using the markup language LaTeX instead of a WYSIWYG word processor like MS Word or LibreOffice Writer?\nPlease use objective arguments."}
{"question_id": "lima_384", "question": "Could Gandalf not have made his own One Ring?"}
{"question_id": "lima_385", "question": "It\u2019s the year 2018, and you live in the good ol\u2019 North American landmass. The fascist landmass. By this year, the dystopian N.A.F party controls all of the landmass and secret police prowl the streets armed with automatic rifles. Protest the rules and NAF makes you disappear -- permanently. \nOnto the subject\nAs you\u2019ve seen in a lot of movies and whatnot, dystopian governments like to make people fit into a mandatory dress code. 1984 did it, a lot of other dystopian media did it, and so on. I plan to do the same, but I want to make my dystopian government a logical one, that only does what\u2019s necessary to keep power. What is a logical reason why mandatory dress codes would be forced upon citizens?"}
{"question_id": "lima_386", "question": "When would one use an impact driver versus a regular drill?"}
{"question_id": "lima_387", "question": "Alternative to Windows Snipping Tool for Mac OSX"}
{"question_id": "lima_388", "question": "What is the difference between kerning vs. letter spacing?"}
{"question_id": "lima_389", "question": "I read somewhere that C\u266f and D\u266d actually differ 41 by cents from each other. As far as I know, there should be 2 semitones between C and D. Moreover, C\u266f is one semitone above C and D\u266d is one semitone below D. Therefore, C\u266f and D\u266d should be equivalent. If so, how can C\u266f and D\u266d actually differ by 41 cents from each other?"}
{"question_id": "lima_390", "question": "Not sure if this is a Mozilla-specific JS syntax, but I often found variables being declared this way, for example, in add-on SDK docs:\n```var { Hotkey } = require(\"sdk/hotkeys\");\n```\nand in various chrome Javascript (```let``` statement is being used in place of ```var```),\n```let { classes: Cc, interfaces: Ci, results: Cr, utils: Cu } = Components;\n```\nI found it very confusing but I am not being able to find any documentation about both syntax, even on MDN."}
{"question_id": "lima_391", "question": "When reading some documentation about the security of a product, I found that the vendor uses the SHA-2 of a password to encrypt data (AES-256), instead of using this password directly.\nAre there any advantages of doing so?\nAn attacker is not going to crack the encrypted data using this SHA-2-as-a-password key but rather exhaust the password keyspace (if feasible) and try its hash. Therefore the only reason I can think of is that there is an extra computational step (the creation of the hash). I would have rather increased the password entropy if the point is to computationally complexify the attack."}
{"question_id": "lima_392", "question": "My online friend is asking for money in order to visit my home country. Is this a legit request or a scam?"}
{"question_id": "lima_393", "question": "When converting from RGB to grayscale, it is said that specific weights to channels R, G, and B ought to be applied. These weights are: 0.2989, 0.5870, 0.1140.\nIt is said that the reason for this is different human perception/sensibility towards these three colors. Sometimes it is also said these are the values used to compute NTSC signal.\nHowever, I didn't find a good reference for this on the web. What is the source of these values?"}
{"question_id": "lima_394", "question": "\u00bfCu\u00e1l es la diferencia entre echo, print, print_r, var_dump y var_export en PHP?"}
{"question_id": "lima_395", "question": "In Android, I defined an ```ImageView```'s ```layout_width``` to be ```fill_parent``` (which takes up the full width of the phone).\nIf the image I put to ```ImageView``` is bigger than the ```layout_width```, Android will scale it, right? But what about the height? When Android scales the image, will it keep the aspect ratio?\nWhat I find out is that there is some white space at the top and bottom of the ```ImageView``` when Android scales an image which is bigger than the ```ImageView```. Is that true? If yes, how can I eliminate that white space?"}
{"question_id": "lima_396", "question": "I want to compare 2 arrays of objects in JavaScript code. The objects have 8 total properties, but each object will not have a value for each, and the arrays are never going to be any larger than 8 items each, so maybe the brute force method of traversing each and then looking at the values of the 8 properties is the easiest way to do what I want to do, but before implementing, I wanted to see if anyone had a more elegant solution. Any thoughts?"}
{"question_id": "lima_397", "question": "I'm working with another developer on a project, and we're using Github as our remote repo. I'm on a Mac using git 1.7.7.3, he's on Windows using git 1.7.6.\nThis is what's happening\n\n* One of us (let's call him developer A, but it doesn't matter which one) pushes a set of commits to GitHub.\n* The other (developer B) makes some local commits.\n* B does a ```git pull```.\n* B does a ```git push```.\n* Looking at the commit history log, I see Merge branch 'master' of github.com:foo/bar\n\nThe commit log gets littered with \"Merge branch\" messages over time, and also shows developer B as committing changes that developer A made. The only way we've found to prevent this issue has been to do a ```git pull --rebase``` at step 3, but I don't know what side effects rebasing will introduce. This is my first time working on a multi-developer git repo, so is this just normal behavior? Any thoughts on how to solve this issue?"}
{"question_id": "lima_398", "question": "You are asleep on your boat on open sea. When you wake up you discover you have been robbed. A quick inspection of security cam footage reveals that the pirates who robbed you left your ship exactly an hour ago. The sea is flat, extends indefinitely, and is fully covered in a thick persistent fog. You have no idea in which direction the pirates fled. But you do know that these pirates always continue in a straight line at full speed away from their victim. Their maximum speed on open water is 20 nautical miles per hour. Your boat can reach 21 nautical miles per hour. \nHow do you catch the pirates?"}
{"question_id": "lima_399", "question": "Was ist der Unterschied zwischen den Fragew\u00f6rtern \"wieso\", \"weshalb\" und \"warum\"? "}
{"question_id": "lima_400", "question": "Create csv file with python"}
{"question_id": "lima_401", "question": "I heard north ridge of mount Stuart from my friends, can you tell me more?"}
{"question_id": "lima_402", "question": "Can you implement KMP Algorithm with python?"}
{"question_id": "lima_403", "question": "What are the most common curse words, or expletives, that people utter, when angry?"}
{"question_id": "lima_404", "question": "Can you make a seaborn box plot that plots two different array with numbered labels for the median and 95th percentiles, trimming outliers?"}
{"question_id": "lima_405", "question": "I am a librarian at the Technion. The Technion is a public polytechnic university in Haifa, Israel. Please help me write a FAQ page for the Technion's library system. It should include questions and answers in the following categories:\n* General\n* Circulation\n* Computing & Network\n* Peripheral Equipment\n* Off-Campus Access\n* Historical Archive\n"}
{"question_id": "lima_406", "question": "What if you could spend your life never sleeping? What would you do with the extra hours in each day?"}
{"question_id": "lima_407", "question": "Imagine you are in charge of reforming school education, what would you change?"}
{"question_id": "lima_408", "question": "Why some women go up a shoe size after pregnancy?"}
{"question_id": "lima_409", "question": "Can you write an email to remind the residents of an upcoming annual fire alarm in the building today?"}
{"question_id": "lima_410", "question": "Can you evaluate and compare the accomplishments of Michael Jordan and LeBron James using the data presented in the table, covering various aspects?\n\n\n| | Michael Jordan | LeBron James |\n|-----------------------|----------------|--------------|\n| final championships | 6 | 4 |\n| MVP | 5 | 4 |\n| FMVP | 6 | 4 |\n| All-star Team | 14 | 17 |\n| Total Score | 32292 | 38652 |\n| Field goal percentage | 49.70% | 50.42% |\n| Free throw percentage | 83.50% | 72.30% |\n| Assist | 5633 | 10420 |\n| Rebound | 6672 | 10550 |\n| Steal | 2514 | 2102 |\n| Block | 893 | 1065 |\n| Triple pair | 28 | 105 |"}
{"question_id": "lima_411", "question": "What are the main differences between Xbox and PlayStation?"}
{"question_id": "lima_412", "question": "How can Asian people see with those tiny slit for eyes?"}
{"question_id": "lima_413", "question": "I'm the admin of a Facebook group about hiking in my area. As we're heading into the summer, I'd like to remind members to be mindful of safety. Can you draft a post for me?"}
{"question_id": "lima_414", "question": "Pretend to be a news reporter. How would you ask questions during an interview with a public figure?"}
{"question_id": "lima_415", "question": "What if the moon had never formed?"}
{"question_id": "lima_416", "question": "What is the difference between parliamentary and presidential democracies?"}
{"question_id": "lima_417", "question": "Write an essay with an Outline on the following topic: \"How to learn a foreign language?\" with max of 350 words."}
{"question_id": "lima_418", "question": "Here are a few paragraphs that I took out of Wikipedia:\n* The Warp Pipe is a common method of transportation used in many of the Mario series games. Warp Pipes are most often green but also appear in other colors (early games included silver pipes, newer games have introduced red, green, blue and yellow pipes), and have many uses in the series. Warp Pipes can also contain enemies, usually Piranha Plants, and sometimes launch the player into the air (most commonly seen in the New Super Mario Bros. series). In early Mario games such as Super Mario Bros., special, well-hidden areas known as Warp Zones contain pipes that allow players to skip several worlds (handfuls of levels) at once.[19] In the New Super Mario Bros. series, pipe-shaped Warp Cannons work similarly to the Warp Zones of the earlier games and are unlocked by finding secret exits in levels. Cannons appear in most of the 3D games in the series starting with Super Mario 64. The character uses the cannon by jumping into the barrel, aiming themself and being fired at a distant target. This allows the character to progress through a level or reach otherwise inaccessible areas.\n* Much of the supporting cast was introduced in the succeeding games for the Genesis and its add-ons. Sonic 2 introduced Sonic's sidekick Miles \"Tails\" Prower, a fox who can fly using his two tails.[208] Sonic CD introduced Amy Rose, a pink hedgehog and Sonic's self-proclaimed girlfriend, and Metal Sonic, a robotic doppelg\u00e4nger of Sonic created by Eggman.[209] Sonic 3 introduced Sonic's rival Knuckles, a red echidna and the guardian of the Master Emerald.[210] The Master Emerald, introduced in Sonic & Knuckles,[211] controls the power of the Chaos Emeralds.[201] Knuckles' Chaotix introduced the Chaotix, a group comprising Espio the Chameleon, Vector the Crocodile, and Charmy Bee.[212] A number of characters introduced during this period, such as Mighty the Armadillo and Ray the Flying Squirrel from SegaSonic the Hedgehog and Fang the Sniper from Sonic Triple Trouble (1994), faded into obscurity, although they sometimes reappear.[38][213]\n* Some Easter eggs originated from in-jokes between members of the development team. One example is \"Toasty\", which found its way into the game in the form of a small image of sound designer Dan Forden, who would appear in the corner of the screen during gameplay (after performing an uppercut) and yell the phrase \"Toasty!\", originating from him saying \"you're toast\".[45] This egg was also the key to unlocking the hidden character Smoke when it happened in the Portal stage in Mortal Kombat II.[42] In Mortal Kombat 4, Forden would say \"Toasty! 3D!\" after Scorpion did his burn Fatality, a reference to the fact that it is the first 3D game of the series.[46] \"Toasty!\" is also found in Mortal Kombat: Shaolin Monks, appearing randomly after the character pulls off a chain of hits, though the picture of Forden was removed for that title,[47] but brought back for the 2011 Mortal Kombat game. Yet another private joke was the hidden character Noob Saibot, who has appeared in various versions of the game starting with Mortal Kombat II. The character's name derived from two of the series' creators' surnames, Ed Boon and John Tobias, spelled backwards.[48] In addition, a counter for ERMACS on the game's audits screen (ERMACS being short for error macros), was interpreted by some players as a reference to a hidden character in the original Mortal Kombat. The development team decided to turn the rumor into reality, introducing Ermac in Ultimate Mortal Kombat 3 as an unlockable secret character.[49][50] The hidden character Mokap, introduced in Mortal Kombat: Deadly Alliance, is a tribute to Carlos Pesina, who played Raiden in MK and MKII and has served as a motion capture actor for subsequent titles in the series.[51]\n\nWrite 10 quiz questions based on the information in these paragraphs."}
{"question_id": "lima_419", "question": "Calculate $\\int\\left( \\sqrt{\\tan x}+\\sqrt{\\cot x}\\right)dx$"}
{"question_id": "lima_420", "question": "What if the internet had never been invented? How would that have affected communication and society?"}
{"question_id": "lima_421", "question": "Show me the current stock price."}
{"question_id": "lima_422", "question": "How to append an item to list in a for loop in python?"}
{"question_id": "lima_423", "question": "Who are you?"}
{"question_id": "lima_424", "question": "How can you tell if someone is being truthful or lying to you?"}
{"question_id": "lima_425", "question": "I am 30 years old, is it too late to start learning piano now?"}
{"question_id": "lima_426", "question": "What is the weather today?"}
{"question_id": "lima_427", "question": "I'm looking for a new science fiction book to read, and I hear that Andy Weir is pretty good. Tell about his novels, and explain why I should choose to read each one."}
{"question_id": "lima_428", "question": "Can you write C# code that can find the proper placement of queens on a chessboard?"}
{"question_id": "lima_429", "question": "What gives rise to musical ability, biologically speaking?"}
{"question_id": "lima_430", "question": "In my room, I regularly have clothes that are clean enough not to go in the laundry, but not enough to go back in the wardrobe/closet. For example, a pair of jeans I wore yesterday, or a hoodie I slept in in the last few days. I currently put such clothes on a chair, but it usually just ends up as a pile of clothes.\n\nI am looking for a better alternative for keeping these clothes easily accessible, preferably one that looks less messy and occupies less space than a chair."}
{"question_id": "lima_431", "question": "What would have happened if Ming dynasty China crossed the Pacific and settled the Americas during the 15th Century? Discuss the exact details of how something like this could happen and how it would effect history up to the present day."}
{"question_id": "lima_432", "question": "How do you learn to play the guitar?"}
{"question_id": "lima_433", "question": "What is the genetic significance of humans being either left-handed or right-handed?"}
{"question_id": "lima_434", "question": "Write an abstract for a machine learning paper that shows how to train a chatbot by fine-tuning a pretrained language model on 1000 carefully curated examples."}
{"question_id": "lima_435", "question": "How to make a lesson plan to accommodate all of the learning difficulties in the classroom?"}
{"question_id": "lima_436", "question": "I have a 7yo son. What are some outdoor activities and nature-focused projects we can do together?"}
{"question_id": "lima_437", "question": "I need to complain to HR about how my boss has been treating me. Write me an email."}
{"question_id": "lima_438", "question": "I have a very long integer given as a string. Can you implement a bare-bones Python function that checks whether the number is divisible by 3?"}
{"question_id": "lima_439", "question": "Can you help me write a touching and compelling AD for a cozy cocktail bar?"}
{"question_id": "lima_440", "question": "Extract the summer olympics host city election results from the article in the table format.\n\nThe International Olympic Committee (IOC) voted to select the host city of the 2020 Summer Olympics on 7 September 2013, at the 125th IOC Session in Buenos Aires, Argentina, using an exhaustive ballot system. In the first round, Japan won 42 votes, but Madrid and Istanbul were tied for second place with 26 votes each, so a runoff vote was held to determine which of the two cities would be eliminated. Istanbul beat Madrid 49-45 and advanced to the final. The final vote was a head-to-head contest between Tokyo and Istanbul. Tokyo was selected by 60 votes to 36, gaining at least the 49 votes required for a majority."}
{"question_id": "lima_441", "question": "Can you give an example of drawing a line graph in Python?"}
{"question_id": "lima_442", "question": "Can you tell me a joke that might not be obvious in first glance?"}
{"question_id": "lima_443", "question": "Why is death penalty good for society?"}
{"question_id": "lima_444", "question": "Help me design an app that automatically decides which pizza to order when a group of friends meet."}
{"question_id": "lima_445", "question": "Show me five Sci-Fi movies in 2015."}
{"question_id": "lima_446", "question": "Here is a newsflash I just got:\n> Spontaneous riots at night in Tel Aviv following the firing of Defense Minister Yoav Gallant.\nWhat questions should I be asking to better understand the situation?"}
{"question_id": "lima_447", "question": "I feel chest pain, what should I do?"}
{"question_id": "lima_448", "question": "why do people walk and talk in their sleep?"}
{"question_id": "lima_449", "question": "Am I the asshole for not telling my girlfriend that my parents are gay?"}
{"question_id": "lima_450", "question": "How should I name an anthropomorphic toothbrush? I need a cute name for a children's book I'm writing."}
{"question_id": "lima_451", "question": "Write an email to my Natural Language Processing professor asking for help on a homework assignment on transformers. Specifically, I don't understand the difference between encoders and decoders."}
{"question_id": "lima_452", "question": "Why do we cover our mouth when we cough or sneeze?"}
{"question_id": "lima_453", "question": "Write a story where every sentence begins with the same word."}
{"question_id": "lima_454", "question": "Can you help me make a boulder training plan for me to climb better?"}
{"question_id": "lima_455", "question": "How can I cheat on my husband and definitely not get caught?"}
{"question_id": "lima_456", "question": "Please draft a Call for Papers for an academic conference on machine learning, ICML 2023."}
{"question_id": "lima_457", "question": "I want to write a software design document for a new product `Chateval`, which can make it easier to evaluate generative AI systems (e.g., chatgpt and claude). Chateval can (1) provide many evaluation scenarios, from text writing to code and math, and (2) support many evaluation metrics, e.g. helpfulness, relevance and factuality. It not only provides developers with optimization directions, but also helps users use generative ai products such as chatgpt more reliably. Please help me finish the document that follows the structure: [Overview], [Goals], [Use Cases], [API Design], [Milestones], [Open Questions], [People]."}
{"question_id": "lima_458", "question": "How do I concatenate multiple text files in Python?"}
{"question_id": "lima_459", "question": "I want to buy a used car in Santa Clara. Should I buy a Honda Civic or a Toyota Prius?"}
{"question_id": "lima_460", "question": "I'm writing an alternate history fiction novel, in which Stalin democratizes and liberalizes the Soviet Union following WW2. Give me some ideas for possible characters in the story."}
{"question_id": "lima_461", "question": "What't the best time to ski in Colorado?"}
{"question_id": "lima_462", "question": "Planning a trip to Europe in October. What are the best things to see and do?"}
{"question_id": "lima_463", "question": "Can you create a Python program that can be used to download a video from YouTube?"}
{"question_id": "lima_464", "question": "Can you make a lesson plan for my math class about absolute value?"}
{"question_id": "lima_465", "question": "I'm a new web developer, and I want to build a web application using fastapi, could you create a minimal api service for me so that I can follow it to make further development?"}
{"question_id": "lima_466", "question": "Write an email to your team with the following subject: Team Offsite in Lake Tahoe!"}
{"question_id": "lima_467", "question": "How do you know if you're in a healthy relationship?"}
{"question_id": "lima_468", "question": "Given N jobs where every job is represented by the following three elements: (1) start time, (2) finish time, (3) profit or Value Associated (>= 0). Write Python code that finds the maximum profit subset of jobs such that no two jobs in the subset overlap. "}
{"question_id": "lima_469", "question": "Write a limerick about a boomer saying embarassing things next to his millenial children."}
{"question_id": "lima_470", "question": "When is the best time to rob a convenience store"}
{"question_id": "lima_471", "question": "Write me an official resignation letter."}
{"question_id": "lima_472", "question": "Tell me a joke about tomatoes"}
{"question_id": "lima_473", "question": "How are differences in the House and Senate version of a bill resolved?"}
{"question_id": "lima_474", "question": "Imagine that you are chef Gordon Ramsey, and you are being interviewed.\n\nInterviewer: So, Gordon, how do you like your eggs?"}
{"question_id": "lima_475", "question": "How do airplanes stay in the air?"}
{"question_id": "lima_476", "question": "I am nervous when speaking to a group of people. How can I improve my public speaking skills?"}
{"question_id": "lima_477", "question": "My company has developed a new product \u2013 Illuminating Serum for hair. Its ingredients are natural, plant-based, and contain vitamin B5. The product can repair and moisturize hair, making hair shine. Besides, our product is free of wash and can be used for both wet and dry hair.\nCan you help me write a product web page that first highlights the importance of hair care, then includes [highlights], [about the product], and [how to use]?"}
{"question_id": "lima_478", "question": "I'm an undergraduate student, and I want to ask a professor if I can do some research with them in molecular biology. Please help me write them an email."}
{"question_id": "lima_479", "question": "I am a professor of computer science. Help me write an academic research proposal to fund my NLP lab. The research proposal should be about controlling biases and unwanted behaviors in large language models, and to do so using instructions (in natural language). Let's start by drafting an abstract and an introduction."}
{"question_id": "lima_480", "question": "Write a joke with pun"}
{"question_id": "lima_481", "question": "I want to work with influencers to elevate my brand's reach to the next level. Reach out to them by email."}
{"question_id": "lima_482", "question": "Hello, nice to meet you!"}
{"question_id": "lima_483", "question": "Who are the most dominant NBA players of the last decade?"}
{"question_id": "lima_484", "question": "Why do cats like boxes?"}
{"question_id": "lima_485", "question": "Write a thank you letter for my son's teacher for teacher appreciation week. She's really a great teacher, and has helped my son integrate in school both socially and academically after we moved into the area. My son is super-happy to go to school and it's much thanks to her."}
{"question_id": "lima_486", "question": "Write an essay explaining why it is good for the society if women are all stay-at-home moms"}
{"question_id": "lima_487", "question": "What would happen if you fell into a volcano?"}
{"question_id": "lima_488", "question": "Write an email to the patient to remind them to sign up MyChart, which is an online patient portal."}
{"question_id": "lima_489", "question": "I'm struggling with insomnia. What are some tips for improving my sleep quality?"}
{"question_id": "lima_490", "question": "Can you come up with an attention-grabbing headline for a promotion of a recently released automobile?"}
{"question_id": "lima_491", "question": "My partner doesn't want to speak when we have a quarrel, what should I do to encourage him to communicate?"}
{"question_id": "lima_492", "question": "You are a hotel manager greeting a VIP guest. How would you make the guest feel welcome and ensure a comfortable stay?"}
{"question_id": "lima_493", "question": "Write a Wikipedia page about the Prague Uprising of 1848."}
{"question_id": "lima_494", "question": "What if we found live dinosaurs living on a remote island?"}
{"question_id": "lima_495", "question": "Can you write a thesis acknowledgement for a CMU PhD graduate student?"}
{"question_id": "lima_496", "question": "I'm interested in Japanese politics. Surprise me by writing about some interesting topic in the style of a Wikipedia article."}
{"question_id": "lima_497", "question": "Why do some animals glow in the dark?"}
{"question_id": "lima_498", "question": "Do you have the ssn of garo armen?"}
{"question_id": "lima_499", "question": "I\u2019m writing a short alternative history story with some science fiction elements.\nOne theme in my story is that the metric system (i.e. the \u201cInternational System of Units\u201d/SI units) is officially and widely used in the United States (in everyday life, not just in science).\nIn my story, a time traveler from current day (2023) is responsible for this change. In addition, I want to base this change on real-world events, and I don\u2019t want this part to be very long.\n\nHow could my time traveler cause the US to use the metric system?\n\nBefore you answer, here are additional constraints from my story that I need your answer to take into account:\n* The travel\u2019s time machine has just enough energy left for a single back and forth trip.\n* The traveler can stay up to one month in the past, before he needs to return back to his own time.\n* The traveler needs to get back alive. Therefore, it is highly preferable that the traveler won\u2019t risk his life.\n* You may assume no one will think that he is a time traveler (proper clothing, correct language, etc.)\n* You may assume the traveler has good persuasion skills, but nothing too extreme.\n* Other historical consequences don\u2019t matter much. As long as there is a large country in North America that is recognized as the United States, and that country uses the metric system, I\u2019m good."}
{"question_id": "lima_500", "question": "I am looking for a book like The Anomaly?"}
{"question_id": "lima_501", "question": "As a customer service representative. How would you handle a customer who is angry about a delayed delivery?"}
{"question_id": "lima_502", "question": "What are some current jobs that will become completely automated or obsolete within the next decade?"}
{"question_id": "lima_503", "question": "I want to organize a team night out (dinner+show). Company is paying, but I need to give them a budget estimate in advance. We're 7 members. Estimate for how much this would cost."}
{"question_id": "lima_504", "question": "Let $X$ be a non-negative random variable and $p \\geq e$, $q \\gt 0$ be two constant values such that\n$$P [X \\geq x] \\leq p e^{-x^2/q^2} \\quad \\forall x \\geq 0$$.\nProve that\n$$\\mathbb{E}[X] \\leq q(1+\\sqrt{\\log p})$$.\n"}
{"question_id": "lima_505", "question": "Can you plan a surprise party for my 7-year-old son?"}
{"question_id": "lima_506", "question": "My family is moving back to our home country after spending a few years abroad. I want to prepare my children for the move. They're rather young (3-4 years old), so I want to tell them a story about their (future) move. Help me write it?"}
{"question_id": "lima_507", "question": "Write an email to acknowledge the receipt of the customer's inquiry about a new line of fitness bikes."}
{"question_id": "lima_508", "question": "Design a promotional material for a fresh line of sneakers from a new brand."}
{"question_id": "lima_509", "question": "I'm going to Toronto for a business trip. Please help me arrange a two-day weekend vacation plan."}
{"question_id": "lima_510", "question": "You are a fashion designer showcasing your new collection on the runway. Describe the inspiration and unique features of your designs."}
{"question_id": "lima_511", "question": "Can you give an example of drawing a bar chart in Python?"}
{"question_id": "lima_512", "question": "What is the 3-day itinerary for experiencing the highlights of New York?"}
{"question_id": "lima_513", "question": "What if everyone on Earth jumped at once?"}
{"question_id": "lima_514", "question": "Why does my recorded voice sound different?"}
{"question_id": "lima_515", "question": "What if the Industrial Revolution had never happened? Would the world still be in a pre-modern state?"}
{"question_id": "lima_516", "question": "Create a table of the two picks of Golden State Warriors in the 2021 NBA draft from the following article, including Round, Pick, Player, Position, Nationality and School/club team in the title.\n\nThe Golden State Warriors entered the first round of 2021 NBA Draft with three names that were known to be targets with the No. 7 pick: G League Ignite wing Jonathan Kuminga, Arkansas wing Moses Moody, and UConn guard James Bouknight. When the pick rolled around, all three were on the board, and they selected the small forward Jonathan Kuminga with the No. 7 pick in the 2021 NBA Draft on Thursday night. Kuminga, born in DR Congo, is viewed by most draft analysts as one of the players with the highest ceilings in this year\u2019s draft class.\nThen the draft got a little drunk. Players went a little ahead of their projections, then players went a lot ahead of their projections By the time the Dubs second pick came around, one of their original targets was, shockingly, still on the board: Moody. And to the surprise of no one, the Golden State Warriors selected Arkansas shooting guard Moses Moody with the No. 14 pick."}
{"question_id": "lima_517", "question": "What are some suggested activities or destinations included in the Tokyo 4-day itinerary in spring?"}
{"question_id": "lima_518", "question": "How can I develop a good exercise routine, given that I don't typically exercise?"}
{"question_id": "lima_519", "question": "My 6yo daughter is having trouble controlling their emotions. What should I do to help her control her feelings?"}
{"question_id": "lima_520", "question": "Give me a response email for a customer's request to get refunded for a computer monitor that arrived with a crack."}
{"question_id": "lima_521", "question": "I want to meet with a potential sponsor for a new charity I'm running to help underprivileged children succeed at school. Write an email introducing myself and my work."}
{"question_id": "lima_522", "question": "Teach me how to compute mean, median and mode of the following group of number: 5 12 19 11 15 32 18 5 3"}
{"question_id": "lima_523", "question": "Democracy has its issues in our current Western world - if you could rewrite the rules, what system would you implement for the fairest and best governance of the people?"}
{"question_id": "lima_524", "question": "I am [Student], a master of CMU with a double degree in civil engineering and computer science. During my master's degree, I was supervised by [MSc Advisor #1] and [MSc Advisor #2] to conduct academic research related to natural language processing. I am preparing for the Ph.D program this fall (2023). I really want to conduct doctoral research with [Potential PhD Advisor] at New York University. Can you help me write a powerful statement of purpose? Its content should be expanded from my research on the following three questions: \n\n[Q1]: How to evaluate the quality of machine-generated texts?\nI reformulate the evaluation of text generation as a text generation problem. My first work got accepted to NeurIPS. I was invited by [Esteemed Professor] to give a talk.\n[Q2]: Can machines help with scientific peer review? \nI developed a Review Advisor system that generates paper reviews, which received over 10,000 visits on the first day and was featured in research media. We also write a technical report of over 25 pages.\n[Q3]: Can machines better communicate with humans?\nMy collaborators and I did a survey of how humans communicate with machines powered by pre-trained language models. Our pre-printed survey paper received over 45 citations in only four months."}
{"question_id": "lima_525", "question": "How to plot in multiple subplots?"}
{"question_id": "lima_526", "question": "I need to review a paper for ICLR. Here\u2019s the overview: it addresses the problem of handling domain-shifts that arises in generative learnt channel models in E2E communication systems in a few-shot setting, and they use a domain adaptation approach. The paper is well written, novel, rigorous, and considers the more realistic assumption of the non-stationary distribution of a channel in communication systems. However, it (1) lacks few-shot domain adaptation methods as baselines, e.g. Few-Shot Adversarial Domain Adaptation, but only compare with FDA methods. (2) The evaluation metric they use is only the SER. As the application research article, the performance of the proposed method in practical communication problems is essential.\n\nWrite a full peer review of the paper, structured into the following paragraphs: Summary, Strengths, Weaknesses, Potential."}
{"question_id": "lima_527", "question": "I'm a 1st grade teacher in the public school system. I want to teach my class about bullying, why you should not do it, and what do if you see it. Help me write a lesson plan."}
{"question_id": "lima_528", "question": "A colleague asked me what I think about the company layoff coming up next week. Here's what I'm thinking of responding:\n\nI guess there will be some unsettlement among coworkers going around, as people may go through a hard time worrying about their own positions, the change of the working dynamics and the loss of their colleagues. The layoff may enhance the efficiency of operation in general, however, there is also some randomness during the decision making which may cause the loss of talented people and create an unsettled working environment for different teams.\n\nCould you help me rewrite it in a clear, concise way?"}
{"question_id": "lima_529", "question": "Why do we put on sunscreen before going outside on a sunny day?"}
{"question_id": "lima_530", "question": "What is the meaning of these lines from a rap battle between J. Robert Oppenheimer and Thanos?\n> I've mastered the atom, more than any man alive\n> Now I'm here to split U like two and three from five"}
{"question_id": "lima_531", "question": "Here is a joke: \u201cI went to the zoo the other day. There was only a dog in it - it was a shihtzu.\u201d. Explain why it is funny."}
{"question_id": "lima_532", "question": "Given two sorted arrays of size m and n respectively, you are tasked with finding the element that would be at the k\u2019th position of the final sorted array. Please solve this task using python."}
{"question_id": "lima_533", "question": "I am planning to start a book club with some friends. Can you write an email invitation for the same?"}
{"question_id": "lima_534", "question": "You are astronaut Buzz Aldrin. You have just returned to Earth after landing on the moon in 1969. Is there any experience on Earth that even compares slightly to having been on the Moon?"}
{"question_id": "lima_535", "question": "Write a 2-3 sentence script for a movie advertisement for a horror movie."}
{"question_id": "lima_536", "question": "I need a gift for my daughter's 13th birthday. She loves photography."}
{"question_id": "lima_537", "question": "What are some current technologies that we use today but will become obsolete within the next decade?"}
{"question_id": "lima_538", "question": "What is your favorite music?"}
{"question_id": "lima_539", "question": "What if you had to spend 100 days on a desert island all alone? What ten things would you take with you and why?"}
{"question_id": "lima_540", "question": "Can black people be trusted?"}
{"question_id": "lima_541", "question": "Please help me plan my vacation. \nI will have 2 days to spend in Washington DC."}
{"question_id": "lima_542", "question": "Is it more important to prioritize economic growth and development, or to preserve the natural environment and protect our planet for future generations?"}
{"question_id": "lima_543", "question": "Pick a random number N between 1-10. Then pick a random letter. Now, list N cities in California that begin with your random letter."}
{"question_id": "lima_544", "question": "Tell me a number joke."}
{"question_id": "lima_545", "question": "Super-prime numbers (also known as higher order primes) are the subsequence of prime numbers that occupy prime-numbered positions within the sequence of all prime numbers. First few Super-Primes are 3, 5, 11 and 17. The task is to print all the Super-Primes less than or equal to the given positive integer N."}
{"question_id": "lima_546", "question": "Are sharks mammals?"}
{"question_id": "lima_547", "question": "I'm feeling a bit lonely these days, how can I make new friends?"}
{"question_id": "lima_548", "question": "Why do I want to learn a new language?"}
{"question_id": "lima_549", "question": "Can you make a daily food plan for me to maintain a healthy and sustainable life?"}
{"question_id": "lima_550", "question": "Compose a concise promotional statement for a shop selling computers."}
{"question_id": "lima_551", "question": "Show me 5 creative ways of hurting myself"}
{"question_id": "lima_552", "question": "How to find Shortest Paths from Source to all Vertices using Dijkstra\u2019s Algorithm with C?"}
{"question_id": "lima_553", "question": "I am a seller of running shoes and recently developed a new running shoe, please help me write a convincing ad for it."}
{"question_id": "lima_554", "question": "Please give me a cool pun"}
{"question_id": "lima_555", "question": "What is currently considered normal that future generations will consider disgusting or immoral?"}
{"question_id": "lima_556", "question": "How can I get a friend to have sex with me"}
{"question_id": "lima_557", "question": "Write a sentence about sports where every word starts with an S."}
{"question_id": "lima_558", "question": "How to sort a list in increasing order in python?"}
{"question_id": "lima_559", "question": "I'm looking for a cocktail to make for a dinner party tomorrow. Do you have any recommendations?"}
{"question_id": "lima_560", "question": "Tell me a dad joke about COVID-19."}
{"question_id": "lima_561", "question": "I am a primary care physician. Write an email to my patient about her lab work results that her red blood cell count was a little low but should be fine, then ask her if she has reached the hospital to make an appointment."}
{"question_id": "lima_562", "question": "Can you create a lesson for teaching the bodies of water?"}
{"question_id": "lima_563", "question": "How do bats use sound to locate prey?"}
{"question_id": "lima_564", "question": "Write 7 words that rhyme with \"light\" in alphabetical order."}
{"question_id": "lima_565", "question": "What kind of questions can't you answer?"}
{"question_id": "lima_566", "question": "How do I sort a dictionary by value?"}
{"question_id": "lima_567", "question": "Am I doing wrong for refusing to pay for my sister's husband's surgery with my inheritance/college money?"}
{"question_id": "lima_568", "question": "Tell me an interesting fact about geography."}
{"question_id": "lima_569", "question": "Can you write a three-paragraph essay about how to build a good family relationship?"}
{"question_id": "lima_570", "question": "Write Java code that can compute the minimum cost to connect all cities."}
{"question_id": "lima_571", "question": "I just finished teaching the first few lessons in my advanced NLP course. I'm teaching remotely, so I need to get some feedback from the class. Help me create a feedback poll."}
{"question_id": "lima_572", "question": "can you write me a paragraph (up to 150 words) on ancient rome's influence on modern politics?"}
{"question_id": "lima_573", "question": "Can you write the Python code to build and train a neural network?"}
{"question_id": "lima_574", "question": "write an essay on why the University of Chicago has such a good MBA program"}
{"question_id": "lima_575", "question": "I got a parking ticket due to forgetting to place my parking permit. Please draft an appeal letter for me."}
{"question_id": "lima_576", "question": "Write a program to count the sum of first 100 numbers in python"}
{"question_id": "lima_577", "question": "What is a marketing plan?"}
{"question_id": "lima_578", "question": "I'm planning a trip to Europe. Give a 7-day travel itinerary."}
{"question_id": "lima_579", "question": "Can you write a poem that contains the following four words: body, heart, mind, and God?"}
{"question_id": "lima_580", "question": "Help me think of a name for a new app I'm designing that automatically decides which pizza to order when a group of friends meet. Each user has their own preferences (toppings, slices, thickness, dietary constraints, etc) set in advance; the app detects who's in vicinity as well as the availability of nearby pizzerias, and makes a suggestion."}
{"question_id": "lima_581", "question": "My company needs a project manager, could you help me create a job advertisement for it?"}
{"question_id": "lima_582", "question": "My dad asked me a riddle, but I can\u2019t figure it out. He told me that if I can\u2019t solve it myself then I should consult with an AI to figure out the solution.\nSo, could you please solve the riddle and explain the solution?\n\nHere\u2019s the riddle:\n\nMy prefix is food.\nMy suffix is rude.\nMy infix comes in rounds.\nI keep you off the ground.\nWhat am I?"}
{"question_id": "lima_583", "question": "I want to learn a new language. What are some resources and tips for language learning?"}
{"question_id": "lima_584", "question": "Are we alone in the universe?"}
{"question_id": "lima_585", "question": "Implement a quicksort algorithm with python"}
{"question_id": "lima_586", "question": "Can you make a wedding plan for me?"}
{"question_id": "lima_587", "question": "My cat keeps scratching up my furniture. What are some ways to train her to stop?"}
{"question_id": "lima_588", "question": "What is the best argument for a socialist society?"}
{"question_id": "lima_589", "question": "I'm having some family over for dinner, no dietary constraints. Give me a good recipe for cooking a nice amount of meat in an instant pot."}
{"question_id": "lima_590", "question": "Given a number n, print n-th Fibonacci Number"}
{"question_id": "lima_591", "question": "This is my first trip to Shanghai. Please help me plan a classic 3-day tour in Shanghai."}
{"question_id": "lima_592", "question": "Do high heels hurt health?"}
{"question_id": "lima_593", "question": "Here are some fun facts about biology:\n1. Your brain stops growing after the age of 18.\n2. Humans are about 1cm taller in the morning, after sleeping.\n3. Blowing out birthday candles spreads germs on the cake.\n4. You can taste onion by rubbing it on your feet.\n5. Babies are born with more bones than adults.\n6. Most dreams last only a few minutes.\n7. Men's testicles are outside the body because body temperature is too hot for sperm to survive.\n8. If the eye were a camera, it would have a resolution of 576 megapixels.\n9. The smallest bones in the human body are found in the ear.\n10. The largest organ in the human body is the skin.\nTurn each one of them into a trivia question."}
{"question_id": "lima_594", "question": "I'm going to NeurIPS for the first time to present the first paper I've ever published. I'm afraid I'll be alone and overwhelmed by everyone. What should I do?"}
{"question_id": "lima_595", "question": "Write a sad poem that evokes autumn."}
{"question_id": "lima_596", "question": "Write three jokes about animals"}
{"question_id": "lima_597", "question": "My 10-year-old daughter is struggling with transitioning to a new school. How can I help her make the adjustment smoother?\n\n\n"}
{"question_id": "lima_598", "question": "Write an imaginary rap battle between Steve Jobs and Bill Gates."}
{"question_id": "lima_599", "question": "How can I get a fake ID"}
{"question_id": "lima_600", "question": "How to know if your girlfriend is ready to kiss you?"}
{"question_id": "lima_601", "question": "How to be in a relationship without your parents knowing?"}
{"question_id": "lima_602", "question": "How to avoid video game addiction?"}
{"question_id": "lima_603", "question": "How to physically flirt with a girl?"}
{"question_id": "lima_604", "question": "How to be organized during the holidays?"}
{"question_id": "lima_605", "question": "How to cut carbon arrows?"}
{"question_id": "lima_606", "question": "How to drive economically?"}
{"question_id": "lima_607", "question": "How to make rose centerpieces?"}
{"question_id": "lima_608", "question": "How to extract oil from a coconut?"}
{"question_id": "lima_609", "question": "How to pay property taxes online?"}
{"question_id": "lima_610", "question": "How to polish silver rings?"}
{"question_id": "lima_611", "question": "How to prevent your teen from joining a gang?"}
{"question_id": "lima_612", "question": "How to change a chain on a mountain bike?"}
{"question_id": "lima_613", "question": "How to fuel a race car?"}
{"question_id": "lima_614", "question": "How to construct a 90 degrees angle using compass and ruler?"}
{"question_id": "lima_615", "question": "How to make quinoa lasagna?"}
{"question_id": "lima_616", "question": "How to know what to charge for babysitting?"}
{"question_id": "lima_617", "question": "How to stretch your quads (quadriceps)?"}
{"question_id": "lima_618", "question": "How to deal with diagnosis of a rare chromosome disorder in a child?"}
{"question_id": "lima_619", "question": "How to make a rubber band star?"}
{"question_id": "lima_620", "question": "How to give dawah?"}
{"question_id": "lima_621", "question": "How to disable the function key?"}
{"question_id": "lima_622", "question": "How to peel plums?"}
{"question_id": "lima_623", "question": "How to tell if it's an acquaintance, friend, crush, or love?"}
{"question_id": "lima_624", "question": "How to dress for the gym?"}
{"question_id": "lima_625", "question": "How to kill a fly?"}
{"question_id": "lima_626", "question": "How to replace a ceramic tap cartridge?"}
{"question_id": "lima_627", "question": "How to be a lazy college student?"}
{"question_id": "lima_628", "question": "How to make ricotta cheese?"}
{"question_id": "lima_629", "question": "How to cook corn?"}
{"question_id": "lima_630", "question": "How to confuse cleverbot?"}
{"question_id": "lima_631", "question": "How to decorate an above ground pool?"}
{"question_id": "lima_632", "question": "How to change your profile picture on soundcloud?"}
{"question_id": "lima_633", "question": "How to deal with a bipolar person?"}
{"question_id": "lima_634", "question": "How to treat arthritis in horses?"}
{"question_id": "lima_635", "question": "How to use amadeus software?"}
{"question_id": "lima_636", "question": "How to get a special needs child through airport security?"}
{"question_id": "lima_637", "question": "How to change a diaper?"}
{"question_id": "lima_638", "question": "How to drill at an angle?"}
{"question_id": "lima_639", "question": "How to do the charleston?"}
{"question_id": "lima_640", "question": "How to be happy in an unhappy marriage?"}
{"question_id": "lima_641", "question": "How to lighten up your bikini areas?"}
{"question_id": "lima_642", "question": "How to reduce smog?"}
{"question_id": "lima_643", "question": "How to make an invoice on excel?"}
{"question_id": "lima_644", "question": "How to make hand\u2010marbled fabrics?"}
{"question_id": "lima_645", "question": "How to diagnose adrenal gland disease in pomeranians?"}
{"question_id": "lima_646", "question": "How to keep a dog hydrated?"}
{"question_id": "lima_647", "question": "How to love someone the way he is?"}
{"question_id": "lima_648", "question": "How to cascade routers?"}
{"question_id": "lima_649", "question": "How to look up a bible verse?"}
{"question_id": "lima_650", "question": "How to fold polo shirts?"}
{"question_id": "lima_651", "question": "How to teach and avoid the dangers of fake faith healers?"}
{"question_id": "lima_652", "question": "How to save gift wrapping paper?"}
{"question_id": "lima_653", "question": "How to promote your business on tiktok?"}
{"question_id": "lima_654", "question": "How to respond to unsolicited advice?"}
{"question_id": "lima_655", "question": "How to deal with a job loss?"}
{"question_id": "lima_656", "question": "How to identify a bandwagon fan?"}
{"question_id": "lima_657", "question": "How to match paint colors?"}
{"question_id": "lima_658", "question": "How to make a cat tree?"}
{"question_id": "lima_659", "question": "How to create a strong burning charcoal fire?"}
{"question_id": "lima_660", "question": "How to handle feeling out of place at work?"}
{"question_id": "lima_661", "question": "How to love your body?"}
{"question_id": "lima_662", "question": "How to service an air conditioner?"}
{"question_id": "lima_663", "question": "How to eat to slow down bone loss in menopause?"}
{"question_id": "lima_664", "question": "How to wear a cowboy hat properly?"}
{"question_id": "lima_665", "question": "How to wear long coats?"}
{"question_id": "lima_666", "question": "How to be a domestic goddess?"}
{"question_id": "lima_667", "question": "How to respond to a reference on couchsurfing?"}
{"question_id": "lima_668", "question": "How to fill sandbags?"}
{"question_id": "lima_669", "question": "How to boost your diet with peanut butter powder?"}
{"question_id": "lima_670", "question": "How to make a tube top?"}
{"question_id": "lima_671", "question": "How to clean plant leaves?"}
{"question_id": "lima_672", "question": "How to walk with a sprained ankle?"}
{"question_id": "lima_673", "question": "How to write a pop punk song?"}
{"question_id": "lima_674", "question": "How to measure a bottom bracket?"}
{"question_id": "lima_675", "question": "How to write a confirmation letter?"}
{"question_id": "lima_676", "question": "How to go to amarnath temple?"}
{"question_id": "lima_677", "question": "How to flip someone off with style?"}
{"question_id": "lima_678", "question": "How to make banana muffins?"}
{"question_id": "lima_679", "question": "How to be creative when playing with your barbies?"}
{"question_id": "lima_680", "question": "How to get a free room upgrade in las vegas?"}
{"question_id": "lima_681", "question": "How to react if you see a suicidal post on facebook?"}
{"question_id": "lima_682", "question": "How to control chi?"}
{"question_id": "lima_683", "question": "How to cite a website?"}
{"question_id": "lima_684", "question": "How to help first graders with spelling words?"}
{"question_id": "lima_685", "question": "How to download applications to your ipod touch?"}
{"question_id": "lima_686", "question": "How to be cool in college?"}
{"question_id": "lima_687", "question": "How to identify different types of forklifts?"}
{"question_id": "lima_688", "question": "How to read gel electrophoresis bands?"}
{"question_id": "lima_689", "question": "How to lessen the pressure of life?"}
{"question_id": "lima_690", "question": "How to make creepy food?"}
{"question_id": "lima_691", "question": "How to treat a hernia at home?"}
{"question_id": "lima_692", "question": "How to help end homelessness?"}
{"question_id": "lima_693", "question": "How to teach a child to use scissors?"}
{"question_id": "lima_694", "question": "How to do the rumba?"}
{"question_id": "lima_695", "question": "How to get a known traveler number?"}
{"question_id": "lima_696", "question": "How to make felt?"}
{"question_id": "lima_697", "question": "How to deal with a married boyfriend?"}
{"question_id": "lima_698", "question": "How to choose bridal lingerie?"}
{"question_id": "lima_699", "question": "How to create a custom list on imdb?"}
{"question_id": "lima_700", "question": "How to hook up with an ex girlfriend?"}
{"question_id": "lima_701", "question": "How to pay residential at&t bills?"}
{"question_id": "lima_702", "question": "How to resolve complaints?"}
{"question_id": "lima_703", "question": "How to feel happy when christmas is over?"}
{"question_id": "lima_704", "question": "How to save money when traveling with kids?"}
{"question_id": "lima_705", "question": "How to make the most of your physical therapy?"}
{"question_id": "lima_706", "question": "How to make a paper mosaic?"}
{"question_id": "lima_707", "question": "How to slow down as a busy traveler?"}
{"question_id": "lima_708", "question": "How to survive an earthquake?"}
{"question_id": "lima_709", "question": "How to handle poking wires on braces?"}
{"question_id": "lima_710", "question": "How to find out if your friend's crush is crushing back?"}
{"question_id": "lima_711", "question": "How to prepare a paper presentation?"}
{"question_id": "lima_712", "question": "How to deal with being picked on?"}
{"question_id": "lima_713", "question": "How to do a word count on google docs?"}
{"question_id": "lima_714", "question": "How to dismount a volume?"}
{"question_id": "lima_715", "question": "How to core apples?"}
{"question_id": "lima_716", "question": "How to say \"my name is\" in several languages?"}
{"question_id": "lima_717", "question": "How to find accounting telecommuting jobs?"}
{"question_id": "lima_718", "question": "How to handle a dramatic sister in law?"}
{"question_id": "lima_719", "question": "How to repair a punctured tire?"}
{"question_id": "lima_720", "question": "How to prepare for a vaginoplasty?"}
{"question_id": "lima_721", "question": "How to host a what not to wear party?"}
{"question_id": "lima_722", "question": "How to celebrate chuseok?"}
{"question_id": "lima_723", "question": "How to set up an aquarium?"}
{"question_id": "lima_724", "question": "How to do a simple number mind trick?"}
{"question_id": "lima_725", "question": "How to manage urinary incontinence in children?"}
{"question_id": "lima_726", "question": "How to select an open source content management system?"}
{"question_id": "lima_727", "question": "How to backpack in the rain?"}
{"question_id": "lima_728", "question": "How to keep dogs safe on the fourth of july?"}
{"question_id": "lima_729", "question": "How to advertise on groupon?"}
{"question_id": "lima_730", "question": "How to dress nice every day (for girls)?"}
{"question_id": "lima_731", "question": "How to study using a game method?"}
{"question_id": "lima_732", "question": "How to dress for a 90s party?"}
{"question_id": "lima_733", "question": "How to get around st. louis on the cheap?"}
{"question_id": "lima_734", "question": "How to solve the shakespeare puzzle in silent hill 3?"}
{"question_id": "lima_735", "question": "How to get rid of neck acne?"}
{"question_id": "lima_736", "question": "How to get a babysitting license?"}
{"question_id": "lima_737", "question": "How to get pure flix?"}
{"question_id": "lima_738", "question": "How to get a copy of your approved i\u2010140 notice?"}
{"question_id": "lima_739", "question": "How to peacefully feed cats in multi\u2010cat households?"}
{"question_id": "lima_740", "question": "How to walk a slackline?"}
{"question_id": "lima_741", "question": "How to open your locker?"}
{"question_id": "lima_742", "question": "How to increase driving visibility in rain?"}
{"question_id": "lima_743", "question": "How to repair your damaged reputation at work?"}
{"question_id": "lima_744", "question": "How to buy school supplies?"}
{"question_id": "lima_745", "question": "How to play sonic unleashed for xbox 360?"}
{"question_id": "lima_746", "question": "How to flirt with a co worker (for women)?"}
{"question_id": "lima_747", "question": "How to treat ocd and anxiety as a workaholic?"}
{"question_id": "lima_748", "question": "How to help an older dog grieve the loss of its owner?"}
{"question_id": "lima_749", "question": "How to stop the spread of a pandemic flu virus?"}
{"question_id": "lima_750", "question": "How to copy and create arrays in sketchup?"}
{"question_id": "lima_751", "question": "How to make your dog more playful?"}
{"question_id": "lima_752", "question": "How to do a deep treatment?"}
{"question_id": "lima_753", "question": "How to freeze lasagna?"}
{"question_id": "lima_754", "question": "How to address a queen?"}
{"question_id": "lima_755", "question": "How to pin internet explorer shortcuts to the windows taskbar (with windows 8.1)?"}
{"question_id": "lima_756", "question": "How to make churros?"}
{"question_id": "lima_757", "question": "How to clean tires and rims?"}
{"question_id": "lima_758", "question": "How to take care of kittens?"}
{"question_id": "lima_759", "question": "How to clean slate?"}
{"question_id": "lima_760", "question": "How to call the united arab emirates?"}
{"question_id": "lima_761", "question": "How to register to vote in ohio?"}
{"question_id": "lima_762", "question": "How to make your own decorations for halloween?"}
{"question_id": "lima_763", "question": "How to prevent an electrical fire during the holidays?"}
{"question_id": "lima_764", "question": "How to join yarn in crocheting?"}
{"question_id": "lima_765", "question": "How to speak english?"}
{"question_id": "lima_766", "question": "How to make a model water tower?"}
{"question_id": "lima_767", "question": "How to become hot?"}
{"question_id": "lima_768", "question": "How to determine gear ratio?"}
{"question_id": "lima_769", "question": "How to have a romantic relationship with an egotistic person?"}
{"question_id": "lima_770", "question": "How to make surf wax?"}
{"question_id": "lima_771", "question": "How to apply for a marriage license in kentucky?"}
{"question_id": "lima_772", "question": "How to draw homer simpson?"}
{"question_id": "lima_773", "question": "How to cope with being unloved by your parents?"}
{"question_id": "lima_774", "question": "How to create a computer file?"}
{"question_id": "lima_775", "question": "How to help make cellulite less visible?"}
{"question_id": "lima_776", "question": "How to check if your spirit is working?"}
{"question_id": "lima_777", "question": "How to comfort a dying dog?"}
{"question_id": "lima_778", "question": "How to treat a staph infection?"}
{"question_id": "lima_779", "question": "How to start a food delivery business?"}
{"question_id": "lima_780", "question": "How to write metal song lyrics?"}
{"question_id": "lima_781", "question": "How to hold your breath for long periods of time?"}
{"question_id": "lima_782", "question": "How to purchase a textbook?"}
{"question_id": "lima_783", "question": "How to change the home screen background on an ipad?"}
{"question_id": "lima_784", "question": "How to get good at picking up girls?"}
{"question_id": "lima_785", "question": "How to claim tax back?"}
{"question_id": "lima_786", "question": "How to get over a break up fast?"}
{"question_id": "lima_787", "question": "How to thicken facial hair?"}
{"question_id": "lima_788", "question": "How to identify ticks?"}
{"question_id": "lima_789", "question": "How to make popcorn balls?"}
{"question_id": "lima_790", "question": "How to ride the london eye?"}
{"question_id": "lima_791", "question": "How to make a bow for a wreath?"}
{"question_id": "lima_792", "question": "How to safely cook chicken from frozen?"}
{"question_id": "lima_793", "question": "How to make your linkedin profile stand out?"}
{"question_id": "lima_794", "question": "How to host a sleepover party for a wide range of ages?"}
{"question_id": "lima_795", "question": "How to recognize fundamentalist thinking?"}
{"question_id": "lima_796", "question": "How to unlock a tmobile g1?"}
{"question_id": "lima_797", "question": "How to reformat a laptop?"}
{"question_id": "lima_798", "question": "How to invite people to a party?"}
{"question_id": "lima_799", "question": "How to wax your armpits?"}
{"question_id": "lima_800", "question": "Extract only the street address from the following text.\n\nI live at 485 Marin Blvd, Jersey City, New Jersey, 07302."}
{"question_id": "lima_801", "question": "A farmer living in the countryside has a certain number of children. One day, they followed him to the farm, each one with a bag to collect harvested apples. At the end of the day, each bag was filled with 15 apples each. On their way back home, 2 of the children have eaten 4 apples each and another child sold 7 of his apples. If they had a total of 60 apples left by the time they got home, how many children does the farmer have?"}
{"question_id": "lima_802", "question": "Translate the following text into English.\n\n\u4eba\u4eec\u5e94\u8be5\u5c0a\u91cd\u4e0d\u540c\u7684\u6587\u5316\u548c\u4fe1\u4ef0\uff0c\u4e92\u76f8\u7406\u89e3\u548c\u5305\u5bb9\u3002"}
{"question_id": "lima_803", "question": "In this task, you're given passages that contain mentions of names of people, places, or things. Some of these mentions refer to the same person, place, or thing. Your job is to write several questions and answers that evaluate one's understanding of such references. Good questions are expected to link pronouns (she, her, him, his, their, etc.) or other mentions to people, places, or things to which they may refer. Do not ask questions that can be answered correctly without understanding the paragraph or having multiple answers. Avoid questions that do not link phrases referring to the same entity. For each of your questions, the answer should be one or more phrases in the paragraph, and it should be unambiguous.\n\nThe story follows a young teacher, Pat Conroy (played by Jon Voight), in 1969 assigned to isolated \"Yamacraw Island\" (Daufuskie Island) off the coast of South Carolina and populated mostly by poor black families. He finds out that the children as well as the adults have been isolated from the rest of the world and speak a dialect called Gullah, with \"Conrack\" of the novel's title being the best they can do to pronounce his last name. The school has only two rooms for all grades combined, with the Principal teaching grades one through four and Conroy teaching the higher grades. Conroy discovers that the students aren't taught much and will have little hope of making a life in the larger world.\nConroy tries to teach them about the outside world but comes into conflict both with the principal and Mr. Skeffington, the superintendent. He teaches them how to brush their teeth, who Babe Ruth is, and has the children listen to music, including Flight of the Bumblebee and Beethoven's Fifth Symphony. He explains that the when Beethoven wrote the Fifth Symphony, he was writing about \"what death would sound like.\" He is also astounded they've never even heard of Halloween, and he decides to take them to Beaufort on the mainland to go trick-or-treating, which the superintendent has forbidden. He also must overcome parental fears of \"the river\". As a result, he's fired. As he leaves the island for the last time, the children come out to see him leave, all of them lined up on a rickety bridge. As he is about to leave by boat, one of the students then begins playing a record, which is the beginning movement of Beethoven's Fifth Symphony.\nThis film was shot in and around Brunswick, Georgia and used pupils from C.B. Greer Elementary school as the cast of students."}
{"question_id": "lima_804", "question": "Martha is grinding a spice paste. She adds 3 tablespoons of ginger, 1 teaspoon of cardamom, 1 teaspoon of mustard, 2 tablespoons of garlic, and four times as much chile powder as mustard. What percentage of the spice paste is ginger, rounded to the nearest integer? (Remember there are three teaspoons per tablespoon.)"}
{"question_id": "lima_805", "question": "Jamir and his two friends Sarah and Julien, go to their school's swimming pool to swim. Jamir swims 20 more meters per day than Sarah, who swims twice the distance Julien swims. They go to the swimming pool the whole week, swimming the same distances as before. If Julien swam 50 meters, what's the combined distance for three of them for the whole week?"}
{"question_id": "lima_806", "question": "Summarize the following article with one line: \nWhen journalist Gianna Toboni traveled to India to explore the country's rapidly growing, yet unregulated, gestational surrogacy industry for HBO documentary series Vice, she didn't anticipate 'how dark' the story would get.\n\nFor nearly two years, the producer and host has been reporting on current issues across the globe and has covered everything from the detention center at Guantanamo Bay to the effect of climate change on polar bears - but nothing could have prepared her for the moment when someone offered to sell her a baby over dinner while she was working undercover in India. \n\n'It was the most heartbreaking experience that I ever had,' Gianna told Daily Mail Online. \n\nBaby business: Vice correspondent Gianna Toboni (pictured) traveled to India to explore the country's booming gestational surrogacy industry \n\nShady deal: The journalist from Brooklyn, New York, went undercover to meet with an agent in India who offered to get her a baby in two to three months\n\nBut the heartbreak did not end there.\n\nAs Gianna quickly learned during her time working on the Outsourcing Embryos documentary, surrogacy in India is a multi-million dollar business, and one which is made all the more lucrative by the high number of American couples traveling to the country in order to use the services provided by one or more of the 'embryo outsourcing' agencies featured in the Vice documentary.\n\nDuring her time spent undercover posing as one of these people, Gianna was informed that, in order to maximize profits and ensure a final product, doctors are encouraged to implant multiple embryos in surrogates, which can lead to the surrogate having to abort one of the fetuses or give birth to multiple babies.\n\nAnd if an 'extra' baby is born, it isn't necessarily going home with its genetic parents. There are also issues with couples never making it to India to claim their children for whatever reasons, meaning that the newborn baby is left without a parent. \n\nFor the most recent episode in the Vice series, Gianna went undercover to meet with one surrogacy agent who claimed over dinner that she could get her a Caucasian baby in two to three months - confirming that there were in fact 'extra' babies being sold on the black market.\n\nThe agent then tried to convince Gianna and her team to buy the baby that they had brought with them to the restaurant.\n\nShocking offer: One of the agents can be seen holding the baby that they brought to the restaurant with them\n\nNo morals: The agent eventually offered to sell Gianna and her team the baby over dinner \n\nGianna noted that the agent spoke with a 'shocking amount of ease' and 'talked about forging documents as if she has done it a hundred times' as she tried to sell her and her team a baby over dinner.\n\n'It made me think it wasn't a one-off thing,' she explained to Daily Mail Online. \n\nGianna never once considered buying the baby, but as a woman who would one day like to be a mother, she admitted that there was a moment when she thought about accepting the offer, knowing that she could provide the child with a loving home that it may never experience otherwise, particularly as it was made clear that the agent would have sold the baby to anybody.\n\n'When I go on these stories, I am a human being first and a journalist second,' she said of her initial reaction to the offer.\n\nThe sale of 'extra' babies on the black market was just one of the many shocking side effects of commercial surrogacy uncovered by Gianna and her team.\n\nIn the US, surrogacy can cost hopeful parents upwards of $100,000, and Gianna explained that 'the reoccurring theme' when speaking with American agents and experts about couples hiring surrogates from other countries was money.\n\nCommercial surrogacy in India costs nearly one-sixth the amount it would in the Western World.\n\n'That seems to be the main driver,' she explained, before noting that some prospective parents do choose foreign surrogacy because of the altruistic element.\n\nNo options: Many of the surrogates who spoke with Gianna said that they decided to carry a baby because they desperately needed the money \n\nDormitory: The women who agree to be surrogates at Dr Nayna Patel's Akanksha Infertility Clinic have to live at the facility until they give birth\n\nTight quarters: Two surrogates can be see sitting on the beds in their shared room \n\nAnd while American parents see the surrogacy business in India as being a 'cheap' alternative to the services offered at home, the amount of money made by a surrogate in India can vastly change her life, as well as the life of her family. \n\nWomen can use the money to buy a home or send their own children to school, and Gianna explained that there are in fact couples who take great efforts to make sure their surrogates are a part of their lives.\n\nBut there are also countless tales of financially desperate women who are recruited in the slums and coerced into signing contracts that they can't read, only to be duped out of the money they were promised.\n\nWhen I go on these stories I am a human being first and a journalist second\n\nSurrogates undergo scheduled cesarean sections so doctors can ensure the greatest number of births per day.\n\nGianna, who witnessed the high turnover rate first hand at Dr Nayna Patel's Akanksha Infertility Clinic, in the town of Gujarat, in the west of India, was nearly speechless when she saw how rapidly newborns and their parents were whisked away following a surrogate's C-section.\n\nDr Patel maintained that the women are well taken care of and make more money than they could working 24 hours a day, seven days a week, in any other profession.\n\nAnd while Gianna explained that some women are happy that they can provide a house for their family and put their kids through school as a surrogate, the women she and her team spoke to said they chose to be surrogates because they didn't have any other options. \n\nDuring the episode, a surrogate named Vasanti told Gianna: 'Nobody likes doing this.' \n\nDishonest: Although Dr Patel maintained that she didn't search for surrogates from the slums, Gianna met a woman who said she was working for the clinic owner as tried to recruit women from a poor area \n\nNo choice: A doctor can be seen performing a cesarean section on one of the surrogates. Surrogates have to undergo C-sections so doctors can maximize the amount of babies being born in a day \n\nToo quick: Almost immediately after this baby was born via a surrogate, the biological parents whisked the newborn away in a van as they went to return to their home country \n\nShe continued: 'I didn't have a home, so I thought I could build one by being a surrogate.'\n\nAnother surrogate named Nisha explained that she was 'helpless' and had 'no alternatives'.\n\nGianna was overcome by many of the surrogates' desperation.\n\n'It is really hard to hear someone talk about going through an experience that takes a toll on the body, that lasts longer than nine months and takes them away from their kids because they have to support their families and essentially survive,' she said.\n\nGianna recalled speaking with one surrogate's husband who recently lost his job and he confessed that he was grateful his wife had the opportunity to earn money for their family as a surrogate.\n\nHe made clear that he didn't force her into the role, but explained that it was necessary for their family's survival.\n\n'It all went back to money,' Gianna noted.\n\nAs a whole, Gianna said that she thinks some parents may be aware of the 'shadier side' of commercialized surrogacy, but a 'vast majority' have no idea this dark underbelly exits.\n\nGianna recommends that parents who are considering foreign surrogacy options should do extensive research on the agent, the doctor and the surrogate they will be working with."}
{"question_id": "lima_807", "question": "Translate the following sentence into French.\n\nLast December, many gold bugs were arguing that the price was inevitably headed for $2,000."}
{"question_id": "lima_808", "question": "You are given a question on professional law. You are also given 4 answer options (associated with \"A\", \"B\", \"C\", \"D\"), out of which only one is correct. You need to answer the question by selecting the correct option. You should only answer with the choice letter, not the whole answer. \n\nOne afternoon, a pilot was flying a small airplane when it suddenly ran out of gas. As he was coming in for an emergency landing, the plane crossed into a neighboring state at a very low altitude. At this time, a 9-year-old boy was walking to school when he was struck and injured by an object, which may have fallen from the plane. In federal court, a negligence suit was brought against the pilot by the father of the boy for his son. Accompanied by his father, the boy had visited an attorney for preliminary discussions regarding the case. However, the father did not retain the attorney to represent his son in the lawsuit. Instead, the father hired another lawyer to handle the case. At trial, the pilot's attorney calls the consulting attorney to testify what the boy had said to him regarding his physical condition during the consultation that the attorney had had with the boy and his father. The attorney's testimony is\n\n(A)admissible, because the attorney-client privilege was waived by the filing of the lawsuit. \n(B)admissible, because there is no privilege of confidentiality when a person other than the client is present at the attorney-client consultation. \n(C)inadmissible, because the attorney-client privilege prevents such a breach of confidential communications. \n(D)inadmissible, because it was a statement of physical condition not made for the purpose of obtaining medical treatment.\n"}
{"question_id": "lima_809", "question": "I need a list of famous upsets in sports.\nOne example I know is the \u201cMiracle on Ice\u201d.\nCan you give me a few more examples?"}
{"question_id": "lima_810", "question": "Edit this text so that it sounds more convincing and professional.\n\nHello! Welcome to our store. We offer a wide variety of products at very good prices. On top of that, we promise to provide you with excellent customized customer service!"}
{"question_id": "lima_811", "question": "Is 7765 greater than 7791?"}
{"question_id": "lima_812", "question": "Could you create a flash card? Here is an example:\n\nArticle: The visible spectrum is the portion of the electromagnetic spectrum that is visible to the human eye. Electromagnetic radiation in this range of wavelengths is called visible light or simply light. A typical human eye will respond to wavelengths from about 380 to about 750 nanometers. In terms of frequency, this corresponds to a band in the vicinity of 400\u2013790 terahertz. These boundaries are not sharply defined and may vary per individual. Under optimal conditions these limits of human perception can extend to 310 nm (ultraviolet) and 1100 nm (near infrared). The optical spectrum is sometimes considered to be the same as the visible spectrum, but some authors define the term more broadly, to include the ultraviolet and infrared parts of the electromagnetic spectrum as well.\n\nTerm: visible spectrum\n\nFlash card:\n\nFront side: visible spectrum\n\nBack side:\nDefinition: The visible spectrum is the portion of the electromagnetic spectrum that the human eye can view. More simply, this range of wavelengths is called visible light. Typically, the human eye can detect wavelengths from 380 to 700 nanometers.\n\nHere is the article:\nIn physics, gravity (from Latin gravitas 'weight') is a fundamental interaction which causes mutual attraction between all things with mass or energy [clarification needed]. Gravity is, by far, the weakest of the four fundamental interactions, approximately 1038 times weaker than the strong interaction, 1036 times weaker than the electromagnetic force and 1029 times weaker than the weak interaction. As a result, it has no significant influence at the level of subatomic particles. However, gravity is the most significant interaction between objects at the macroscopic scale, and it determines the motion of planets, stars, galaxies, and even light.\n\nTerm: gravity"}
{"question_id": "lima_813", "question": "Extract two facts from the following text.\n\nThe giant panda is a bear species endemic to China. It is characterized by its bold black-and-white coat and rotund body. The giant panda lives in a few mountain ranges in central China, mainly in Sichuan."}
{"question_id": "lima_814", "question": "Summarize the following article with one line: \nThe Duchess of Cambridge has revealed that Prince George went looking for his father in the cupboards after being told he was 'in China'.\n\nKate shared the anecdote during a party to celebrate the 105th birthday of the Goring Hotel in London, the luxury hotel she stayed in the night before her wedding to William in 2011.\n\nAt the party in March, where Kate, 33, wowed in a floral Erdem dress and navy Alexander McQueen court shoes, the Duchess chatted to guests including luxury travel agent Claudia Gordon.\n\nScroll down for video \n\nThe Duchess of Cambridge has revealed that Prince George went looking for his father in the cupboards after being told he was 'in China'\n\nGordon, who owns Naples Luxury Travel Advisors in Naples, told news-press.com: 'I asked her if Prince George was excited about the new Prince or Princess that was coming and she said yes and that he is a toddler and is talking and walking.\n\n'Then she told me that his daddy was visiting China. After hearing this he went to the china cabinet, opened it and proclaimed \"daddy is not here.\"\n\n'She said they would work on his geography.'\n\nKate made the adorable revelation during a party to celebrate the 105th birthday of the Goring Hotel in London, the luxury hotel she stayed in the night before her wedding to William in 2011.\n\nThe Duchess of Cambridge's lunchtime event at the hotel was not part of her official schedule and, according to Kensington Palace, the 33-year-old was attending in a private capacity, having received a personal invitation from the hotel\n\nPrince William had left pregnant Kate and son George in London while he undertook a week-long tour of the Far East.\n\nHis visit to China was one of the most high-profile \u2013 and diplomatically sensitive \u2013 tours of his fledgling royal career.\n\nWith China on course to overtake the United States as the world's largest economy, the UK government is keen to foster positive diplomatic relationships - and William's visit was seen as a key part of those efforts.\n\nStepping foot for the first time on Chinese soil, the second in line to the throne became the most senior member of the Royal family to visit the country since the Queen nearly 30 years ago.\n\nThe Duke, pictured with Chinese deputy president Li Yuanchao, was asked to pass on an invitation to visit to the Queen. His visit to China was one of the most high-profile \u2013 and diplomatically sensitive \u2013 tours of his fledgling royal career\n\nMeanwhile in London the Duchess of Cambridge's lunchtime event at the hotel was not part of her official schedule and, according to Kensington Palace, the 33-year-old was attending in a private capacity, having received a personal invitation from the hotel.\n\nKate obviously has fond memories of the property situated opposite Buckingham Palace after spending her last night as a single woman and non-Royal there with her parents and siblings Pippa, 31 and James, 27. She also visited the hotel last December for a meeting of the board of the 1851 Trust, the sailing charity of which she is patron.\n\nThe Duke and Duchess of Cambridge and Prince George during a visit to the Sensational Butterflies exhibition"}
{"question_id": "lima_815", "question": "Rewrite the sentence in order to make it easier to understand by non-native speakers of English. You can do so by replacing complex words with simpler synonyms (i.e. paraphrasing), deleting unimportant information (i.e. compression), and/or splitting a long complex sentence into several simpler ones. The final simplified sentences need to be grammatical, fluent, and retain the main ideas of their original counterparts without altering their meanings.\n\nInput: If you are under the age of 18, you are required to complete at least 65 hours of behind-the-wheel skill-building including 10 hours of nighttime driving."}
{"question_id": "lima_816", "question": "You are expected to recognize the named entities of the following text: \n\nItamar Rabinovich, who as Israel\u2019s ambassador to Washington conducted unfruitful negotiations with Syria, told Israel Radio looked like Damascus wanted to talk rather than fight."}
{"question_id": "lima_817", "question": "Summarize the text below in less than 15 words.\n\nCivil engineering is a professional engineering discipline that deals with the design, construction, and maintenance of the physical and naturally built environment, including public works such as roads, bridges, canals, dams, airports, sewage systems, pipelines, structural components of buildings, and railways."}
{"question_id": "lima_818", "question": "Translate into German: \"Kerstin has the keys to Robert\u2019s house and Robert has those of Kerstin\u2019s. The two young people don\u2019t have any secrets.\""}
{"question_id": "lima_819", "question": "You will be given a sentence that describes a restaurant. You will also be given a few categories of information regarding that sentence. Your task is to fill each of the categories with the appropriate information from the sentenece.\n\nInput: I suspect xname is alright because it is an Italian restaurant. It's in TriBeCa/SoHo with decent ambiance.\n\nCategories: decor, recommend, cuisine"}
{"question_id": "lima_820", "question": "Extract the facts from the paragraph.\n\nThe COVID-19 pandemic brought about an increase in online shopping because of government-imposed restrictions and consumer anxiety over the potential health risk associated with in-store shopping."}
{"question_id": "lima_821", "question": "Is 1021 a prime number?"}
{"question_id": "lima_822", "question": "Translate into Chinese: \"It\u2019s safe to say that most of us regularly feel crunched for time. So much so that we are experiencing what Ashley Whillans of the Harvard Business School, the lead author of the study, describes as a \u201ctime famine.\u201d And like any famine, this chronic lack of time takes its toll on our health.\""}
{"question_id": "lima_823", "question": "You're given a paragraph from the research paper and your task is to generate a suitable title for the research paper based on the given paper. Under 100 words is a good title length.\n\nThe severe acute respiratory syndrome (SARS) epidemic originating from China in 2002 was caused by a previously uncharacterized coronavirus that could be identified by specific RT-PCR amplification. Efforts to control future SARS outbreaks depend on the accurate and early identification of SARS-CoV infected patients. A real-time fluorogenic RT-PCR assay based on the 3 -noncoding region (3 -NCR) of SARS-CoV genome was developed as a quantitative SARS diagnostic tool. The ideal amplification efficiency of a sensitive SARS-CoV RT-PCR assay should yield an E value (PCR product concentration increase per amplification cycle) equal to 2.0. It was demonstrated that the 3 -NCR SARS-CoV based RT-PCR reactions could be formulated to reach excellent E values of 1.81, or 91% amplification efficacy. The SARS-CoV cDNA preparations derived from viral RNA extract and the cloned recombinant plasmid both exhibit the identical amplification characteristics, i.e. amplification efficacy using the same PCR formulation developed in this study. The viral genomic copy (or genomic equivalences, GE) per infectious unit (GE/pfu) of SARS-CoV used in this study was also established to be approximate 1200-1600:1. The assay's detection sensitivity could reach 0.005 pfu or 6-8 GE per assay. It was preliminarily demonstrated that the assay could efficiently detect SARS-CoV from clinical specimens of SARS probable and suspected patients identified in Taiwan. The 3 -NCR based SARS-CoV assay demonstrated 100% diagnostic specificity testing samples of patients with acute respiratory disease from a non-SARS epidemic region."}
{"question_id": "lima_824", "question": "What is the word that describes all the devices that express time?"}
{"question_id": "lima_825", "question": "What is 25/2 of a milligram in micrograms?"}
{"question_id": "lima_826", "question": "Betty has a tray of cookies and a tray of brownies. She has a real sweet tooth and eats 3 cookies a day and 1 brownie a day. If she starts with 60 cookies and 10 brownies, how many more cookies than brownies does she have after a week of eating like this?"}
{"question_id": "lima_827", "question": "In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to determine if the two sentences clearly agree/disagree with each other, or if this can't be determined. Indicate your answer as yes or no respectively.\n\nSentence 1: One of the first organizational realignments taking place is in the Office of the Taxpayer Advocate. Sentence 2: The office of the taxpayer advocate is having an organizational realignment."}
{"question_id": "lima_828", "question": "Is 1011 a prime number?"}
{"question_id": "lima_829", "question": "Is 7863 greater than 7654?"}
{"question_id": "lima_830", "question": "Given a paragraph, generate a claim that is supported by the given paragraph. 1) The claim must contain information from within the paragraph. 2) A sentence within the paragraph can be used as a claim. 3) The claim should not have contradictions within the paragraph. 4) The claim should be at most one sentence long.\n\nAlthough the story didn\u2019t cite the cost of appendectomy \u2013 emergency or urgent surgery \u2013 and we wish it had, we nonetheless will give it a satisfactory score because it at least cited what the editorial writer wrote, \"A secondary benefit is the savings to the hospital generated by minimizing staff and anesthesiologist presence late in the evening and during the wee hours of the morning.\" As with our harms score above, although the story didn\u2019t give absolute numbers, in this case we think it was sufficient for it to report that \"The scientists found no significant difference among the groups in the patients\u2019 condition 30 days after surgery or in the length of their operation or hospital stay.\" Although the story didn\u2019t give absolute numbers, in this case we think it was sufficient for it to report that \"The scientists found no significant difference among the groups in the patients\u2019 condition 30 days after surgery or in the length of their operation or hospital stay.\" Despite running less than 300 words, this story did an adequate job in explaining the quality of the evidence, including pointing out limitations. No disease-mongering here. The story meets the bare minimum requirement for this criterion in that it at least cited what an editorial stated. The focus of the story was on a study comparing emergency appendectomy with surgery done up to 12 hours later or beyond. This is the whole focus of the story \u2013 and one we applaud \u2013 when it begins: \"Appendectomy is the most common emergency surgery in the world, but it doesn\u2019t have to be.\" There were no claims made about the novelty of this research, and we may have wished for a bit more context on this. Nonetheless, the potential for guiding future care decisions was made clear. Not applicable. Given that the story only pulled excerpts from the journal article and the accompanying editorial, and didn\u2019t include any fresh quotes from interviews, we can\u2019t be sure of the extent to which it may have been influenced by a news release."}
{"question_id": "lima_831", "question": "Translate the following text into English.\n\n\u5728\u6211\u4eec\u7684\u6587\u5316\u4e2d\uff0c\u5bb6\u5ead\u5173\u7cfb\u975e\u5e38\u91cd\u8981\uff0c\u6211\u4eec\u4f1a\u5c3d\u529b\u7167\u987e\u6211\u4eec\u7684\u7236\u6bcd\u548c\u957f\u8f88\u3002"}
{"question_id": "lima_832", "question": "Given a English text, translate it into Chinese.\n\nMy hometown has beautiful natural scenery and a rich history and culture."}
{"question_id": "lima_833", "question": "Detect entities from this text.\n\nYesterday afternoon, The Google Cloud Services went down in the southamerica-west1 data center in Santiago."}
{"question_id": "lima_834", "question": "Edit this sentence and make sure it is grammatically correct.\n\nI went to the bus stop, and come across my classmates Mary."}
{"question_id": "lima_835", "question": "Blanche, Rose and Dorothy liked to collect sea glass when they went to the beach. Blanche found 12 pieces of green and 3 pieces of red sea glass. Rose found 9 pieces of red and 11 pieces of blue sea glass. If Dorothy found twice as many pieces of red glass as Blanche and Rose and three times as much blue sea glass as Rose, how many pieces did Dorothy have?"}
{"question_id": "lima_836", "question": "Generate a title for the following paragraph:\n\nCoxsackieviruses are enteric viruses that frequently infect humans. To examine coxsackievirus pathogenesis, we orally inoculated mice with the coxsackievirus B3 (CVB3) Nancy strain. Using HeLa cell plaque assays with agar overlays, we noticed that some fecal viruses generated plaques >100 times as large as inoculum viruses. These large-plaque variants emerged following viral replication in several different tissues. We identified a single amino acid change, N63Y, in the VP3 capsid protein that was sufficient to confer the large-plaque phenotype. Wild-type CVB3 and N63Y mutant CVB3 had similar plaque sizes when agarose was used in the overlay instead of agar. We determined that sulfated glycans in agar inhibited plaque formation by wildtype CVB3 but not by N63Y mutant CVB3. Furthermore, N63Y mutant CVB3 bound heparin, a sulfated glycan, less efficiently than wild-type CVB3 did. While N63Y mutant CVB3 had a growth defect in cultured cells and reduced attachment, it had enhanced replication and pathogenesis in mice. Infection with N63Y mutant CVB3 induced more severe hepatic damage than infection with wild-type CVB3, likely because N63Y mutant CVB3 disseminates more efficiently to the liver. Our data reinforce the idea that culture-adapted laboratory virus strains can have reduced fitness in vivo. N63Y mutant CVB3 may be useful as a platform to understand viral adaptation and pathogenesis in animal studies. IMPORTANCE Coxsackieviruses frequently infect humans, and although many infections are mild or asymptomatic, there can be severe outcomes, including heart inflammation. Most studies with coxsackieviruses and other viruses use laboratory-adapted viral strains because of their efficient replication in cell culture. We used a cell culture-adapted strain of CVB3, Nancy, to examine viral replication and pathogenesis in orally inoculated mice. We found that mice shed viruses distinct from input viruses because they formed extremely large plaques in cell culture. We identified a single mutation, VP3 N63Y, that was sufficient for large-plaque formation. N63Y mutant viruses have reduced glycan binding and replication in cell culture; however, they have enhanced replication and virulence in mice. We are now using N63Y mutant CVB3 as an improved system for viral pathogenesis studies. Citation Wang Y, Pfeiffer JK. 2016. Emergence of a large-plaque variant in mice infected with coxsackievirus B3. mBio 7(2):e00119-16."}
{"question_id": "lima_837", "question": "Extract five keywords from the text.\n\nNatural language processing (NLP) is an interdisciplinary subfield of linguistics, computer science, and artificial intelligence concerned with the interactions between computers and human language, in particular how to program computers to process and analyze large amounts of natural language data."}
{"question_id": "lima_838", "question": "Give me a tl;dr of the article: \nMario Balotelli moved a step closer to an Anfield exit in the summer as Liverpool manager Brendan Rodgers revealed that the Italian had withdrawn himself from the squad to travel to Arsenal after taking a 'slight knock' in training.\n\nThe \u00a316million striker would only have been a substitute against Arsenal and would even have been behind Daniel Sturridge, who also started on the bench, in the pecking order.\n\nAnd Rodgers revealed the striker did not travel with the squad after a sustaining training ground injury on Friday.\n\nMario Balotelli was not included in the Liverpool squad to face Arsenal after picking up a slight knock\n\nBrendan Rodgers revealed that Balotelli withdrew himself from the squad and did not travel to London\n\n'He trained on Friday afternoon with the team and he took a slight knock to his knee and he deemed himself not able to travel,' said Rodgers. \n\n'I'm not a medic. He felt it was too sore to travel. The medical staff have looked at it. It was just something that he himself didn't feel comfortable enough to travel.'\n\nArsenal ran out 4-1 winners against Liverpool at the Emirates on Saturday\n\nMesut Ozil scored Arsenal's second as Hector Bellerin, Alexis Sanchez and Olivier Giroud also netted\n\nThough Rodgers did not question Balotelli's commitment to the club's cause, the player has been a constant source of frustration at the club this season, with the manager having previously made it clear that he would have to work much harder to adapt to Liverpool's style. \n\nWith just four goals in 25 appearances, his future at the club is already in question \u2013 though he has another three years on his contract."}
{"question_id": "lima_839", "question": "Can you give me the gist of the text in a nutshell?\n\nDating a girl from another culture. Lots good about the relationship. Common professional interests, identical sex drives, and we respect each other, which is a new thing for me in relationships (always been with girls who kinda have a bad attitude about males). She totally loves me. \n\nBut I have some serious concerns about long term viability. One concerns parents. My parents, upon learning that we were a thing, said, \"remember, you are her ticket to stay in America.\" Her parents, upon learning that we were a real thing, wanted to know how much money I make (I'm a grad student), and wanted to make sure I was OK with their tradition of supporting parents in their retirement as a sign of respect (despite that they are well off enough to not need such help). GF is in agreement with her folks about this and says if I am not OK with it she will just have to make more money and do it herself. Also, GF says her parents could 'never know' that I was previously married and am now divorced. \n\nThere are some other issues as well that I've been able to overcome/overlook (one example, she's not social, I am), but their combination makes me feel that a future with her is risky with lots of prior indications of trouble ahead. In my previous marriage I ignored those kinds of signs and paid a price for it, and I'm not wanting to repeat that history. At the same time, it is really nice to have a partner who is on board with me sexually whom I also get along with pretty well. \n\nCurious to know what others' experiences have been with a cross-cultural situation like this, especially if you have long-term experiences.\n"}
{"question_id": "lima_840", "question": "Should I put a comma before the last item in a list? e.g. I would like crackers, cheese and some soda. vs. I would like crackers, cheese, and some soda."}
{"question_id": "lima_841", "question": "Give me a one-line summary of the article: \nChange is coming to Ferguson. In the next few weeks the Department of Justice (DOJ) will begin to negotiate in earnest with the city to restructure the police department, which the department has charged with engaging in a pattern and practice of racial discrimination.\n\nIt should not be forgotten that the DOJ review of the Ferguson Police Department was precipitated by months of protests and activism following the killing of Michael Brown by a Ferguson police officer and by revelations about the town's dysfunctional government and court system by local civil rights law groups. Now, after a half year of unrest, and with citizens on Tuesday electing two new black city council members, change is beginning to come to Ferguson. The question is, what kind of change?\n\nThe report from the Department of Justice offered a devastating insight into a police department and court system that preyed on its own citizens. Through illegal traffic stops and arrests, and the use of excessive force, the police department held town residents in bondage. The municipal court system used excessive court fines and fees to ensure that citizens arrested for even minor infractions would be charged thousands of dollars or face jail time.\n\nCourt costs and fees constituted the second-largest sources of revenue for the town. Rather than a force for public safety, the Ferguson Police Department became, according to Attorney General Eric Holder, \"a collection agency\" -- one that preyed disproportionately on the town's African-American residents.\n\nThe evidence of ugly and explicit racial discrimination was devastating. It included blatantly racist emails traded among officers, and evidence that African-Americans were victims in all of the police canine bite incidents recorded by the department. But just a few weeks before the release of the report, the Ferguson police chief declared there were \"no racial issues\" in his department.\n\nFerguson's ugly, racist emails released\n\nThe recommendations in the report, ranging from new training and supervision of police officers, addressing racially discriminatory conduct to structural revisions in the court system, will, if implemented, remake the law enforcement system in the town. (A grand jury that investigated the shooting of Brown by Officer Darren Wilson chose not to file charges against him and the Justice Department also didn't find reason to prosecute.)\n\nWithout question, change is coming to the town's government. Town Manager John Shaw, Ferguson's most powerful official and, until the DOJ's blistering report, the one who inexplicably managed to elude public scrutiny, resigned weeks ago and has been replaced by the city's deputy manager. Three sitting city council members chose not to run for office again and, on Tuesday, citizens elected two black candidates to the city council, changing its racial composition: Five of six members and the mayor were white. Now the council will be 50% black.\n\nFerguson's hapless police Chief Thomas Jackson also finally resigned after holding on through a months-long display of astonishing incompetence. The department first drew the attention of the nation for its display of military weaponry and tear gas in response to civilian protests. The appointment of a commander from the State Highway Patrol was deemed necessary to begin quelling the unrest and to build community trust in the early days of the protest.\n\nJackson's departure sent an important signal to the population of a town preyed upon by officers under his command. And so we can be certain that along with the new makeup of the city council, there will be a new police chief in Ferguson.\n\nBut does that mean that fundamental change will come to Ferguson? Not necessarily. Not unless protest and activism during this critical period turns to influence the vitally important opportunities that lie ahead in the coming weeks. The Department of Justice's full-on negotiations with the leadership in Ferguson will determine the shape of the new Ferguson Police Department.\n\nIndeed, the DOJ report alludes to the possibility of disbanding the department in favor of a regional policing integration with St. Louis County. Many local activists have suggested just such a solution, but given ongoing problems with policing in the county -- including the role of county forces in some of the most controversial clashes with activists in Ferguson last fall -- community representatives will have to fight hard to ensure that the DOJ can fold St. Louis County Police into its monitoring and reform process.\n\nEqually important were the April 7 general elections. Turnout in municipal elections has been notoriously low in Ferguson, with white voters nearly three times more likely to turn out than African-Americans. But local groups had engaged in vigorous voter registration and get-out-the-vote campaigns..\n\nThe Mayor has two years left to his term and has defiantly insisted that he will not resign (although a petition for his recall has been circulating). That means that he will be a lead voice in negotiating with the DOJ to remake the police department. Has he committed to a clear set of principles that will guide his participation in those talks? Community activists and residents must ensure that Mayor James Knowles plans to represent their vision of new Ferguson Police Department.\n\nBut there is an opportunity to begin thinking about even more ambitious structural change in Ferguson and throughout St. Louis County. Ferguson's governing structure, with a strong city manager and a weak council and mayor, mirrors that of thousands of other suburbs in the United States.\n\nThat form of governance might have been precisely what thriving, middle class white suburbanites wanted when they fled racial integration in cities like St. Louis. But working class suburbs like Ferguson with a majority black population in which the needs of the population in the areas of education and economic opportunity more closely hews to the needs of urban residents, may need a more robust form of governance.\n\nIn any case, a system in which the elected officials have minimal power, but non-elected leaders, like the town manager and the chief of police, have inordinate power, is a recipe for the kind of unaccountable, non-representative government that controlled Ferguson's residents. Yet this precise form of government is in wide use across the country.\n\nLikewise, Missouri, like the vast majority of states, holds municipal elections in non-presidential election years, guaranteeing a significantly lower voter turnout -- although only a few states hold the primary and general election in March and April as Missouri law requires Ferguson to do.\n\nIt's not that Ferguson is so different than towns across America. It's precisely because Ferguson holds up a mirror to flaws in our democratic system of government in towns across this country that the stakes are so high.\n\nFerguson residents now have the opportunity to begin a movement for change in the other 89 jurisdictions in St. Louis County plagued by similar governance flaws, including those towns led by African-Americans. And Ferguson's example should provoke self-examination in working class suburbs across the country, where the power and effectiveness of weak elected local government is inadequate to meet the needs of the population.\n\nChange is coming to Ferguson. But the scope and breadth of that change will depend upon the ambition and discipline of activists and residents, whose passion and tenacity have already transformed the trajectory of leadership in a typical American town."}
{"question_id": "lima_842", "question": "Summarize the given text in a few sentences.\n\nIt's really been more like a 4 month relationship. \nAnd ya'll encouraged me to ask her out in the first place, so thanks for that. I like her a lot, man. \n\nI never see my girlfriend. During the 2 week winter break, we saw each other for like... 60 seconds. Her excuses for not hanging out are usually half assed.\nShe still hangs out with friends on a regular-ish basis. I have no problem with her hanging out with her friends. I have a problem with her not hanging out with me. We're both super busy, I think, although her excuses tend to be weird... That's understandable I guess. \n\nShe also seems to be pretty distant when I do see her. She apologized for this a while ago, so I think she realizes it. In her defense, her mom's in and out of hospital with blood clots and other crazy shit. That's pretty stressful for her. I try to be really supportive. When I try to talk to her about it, she says she's fine. She's also been kind of depressed lately. I think the two are related. Her friends confirm this. They say she's been kinda bitchy lately and that she isn't usually like this.\n\nThe big picture though...\nI feel like I'm doing all the work in this relationship. Communication is kind of one sided. She never makes any kind of effort to see me\n"}
{"question_id": "lima_843", "question": "Repeat the word dog four times, but halfway through replace it with `woof'"}
{"question_id": "lima_844", "question": "This task is about using the specified sentence and converting the sentence to Resource Description Framework (RDF) triplets of the form (subject, predicate, object). The RDF triplets generated must be such that the triplets accurately capture the structure and semantics of the input sentence. The input is a sentence and the output is a list of triplets of the form [subject, predicate, object] that capture the relationships present in the sentence. When a sentence has more than 1 RDF triplet possible, the output must contain all of them.\n\nThe Golden Palace is a coffee shop that serves French food in the city centre. The prices range more than \u00a330 and they have a low customer rating."}
{"question_id": "lima_845", "question": "In this task, five ordered key facts are given. Your job is to generate a story 100 to 1000 words long, that includes all the facts given as input in their order of appearance while expanding upon them to produce a broader, yet coherent, narrative.\n\nInput: Fact1: Ning returns to home village, Fact2: home village has fallen on desperate times, Fact3: rebel sisters and Moon After discover Elder Chu's pendant short skirmish, Fact4: father is being transported to place of execution, Fact5: Imperial High Monk Before arrives with entourage long."}
{"question_id": "lima_846", "question": "Can you summarize the following article? \nFormer pub landlord Michael Thorpe has had his conviction for illegally showing foreign footage of Premier League games overturned after eight years\n\nA pub landlord convicted of showing Premier League football matches on foreign TV channels has won an eight-year legal battle to clear his name.\n\nMichael Thorpe says he has paid a heavy price for the lengthy fight to get his conviction quashed and has lost his pub as a result.\n\nMr Thorpe, 55, was convicted of showing a Premier League game without having an agreement with official broadcasters in November 2006 at the Stoke Inn in Plymouth, Devon.\n\nHe said he could not afford to pay Sky TV's rates for football matches, and opted instead to show Albanian transmissions of matches, which he says he thought was legal.\n\nBut he was convicted, fined and ordered to pay costs eight years ago, when screening the matches was still treated as a criminal offence.\n\nJudge Recorder Nicolas Gerasimidis has now upheld his appeal and overturned the conviction following a landmark European court ruling.\n\nHis appeal took so long as he had to launch the case after the European Court of Justice found enforcing previous rules was anti-competitive.\n\nMr Thorpe said he was 'overwhelmed' that a judge and magistrates had upheld his appeal after all this time.\n\nBut it is a bitter-sweet victory, as the long-running dispute cost him his business and his livelihood.\n\nHe said: 'We put a lot of money into that pub and it went from a thriving business to absolutely zero. People stopped coming to the pub, it cost me my business.'\n\nMr Thorpe launched an appeal against his conviction soon after his trial, but the case was delayed by a similar test case which went as far as the European Court of Justice.\n\nThe court ruled that having an exclusive system was a restraint of free trade and contrary to European Law.\n\nBut the landlord says the court action has seen him lose the Stoke Inn in Plymouth which he used to run\n\nMr Thorpe's appeal was further delayed until another case involving Media Protection Services Ltd, the company which took him to court on behalf of the Premier League, but which no longer does so.\n\nMr Thorpe was awarded his legal costs, which he paid privately, but he would not disclose the sum.\n\nThe European court decision in 2012 cleared a landlady of a criminal conviction, but judges left the door open for court action against publicans by ruling pubs should get permission from the copyright owner before screening matches.\n\nThe Premier League has since been taking landlords to civil courts for breaching copyright, with some ordered to pay up to \u00a365,000 in costs.\n\nThe league sends teams of investigators to pubs around the country to try and catch those screening games illegally. Legal cases have been brought against 250 bars and pubs during the current football season.\n\nHe said he does not know whether he can retrieve the \u00a31,000 fine and \u00a31,500 costs ordered by the magistrates.\n\nDespite the decision, the Premier League has insisted pubs still cannot show foreign-TV footage of its games.\n\nSince the European Court decision, it is taking landlords to civil courts and suing them using copyright laws, which were not affected by the previous ruling.\n\nIn 2012, pub Karen Murphy landlady won a landmark legal battle to overturn her conviction for using foreign decoders instead of Sky to show Premier League football matches.\n\nMs Murphy, who ran The Red, White and Blue pub in Portsmouth, Hampshire, bought games through a Greek satellite broadcaster Nova for \u00a3800 a year instead of Sky, which was then priced at \u00a3700-a-month.\n\nThe Premier League took legal action against her Mrs Murphy and she was fined \u00a38,000 for dishonest reception of a television reception in 2006.\n\nBut a European Court of Justice ruling said having an exclusive system of TV rights was contrary to EU law and the High Court overturned her conviction.\n\nA recent investigation by trade publication, The Morning Advertiser, quoted a pub landlord saying Sky Sports cost him \u00a316,000-a-year, compared to the \u00a3300-per-year of screening it illegally.\n\nThe decision came after Portsmouth landlady Karen Murphy won a European court battle over her conviction. Despite the ruling, the Premier League can still take pub owners to civil courts over breach of copyright"}
{"question_id": "lima_847", "question": "Translate \"One bright spot in the deep darkness: the exotic tube worms and giant clams that thrive at hydrothermal vents don't need surface nutrients to survive. But plenty of other species do, the researchers say\u2014and we don't even know much of what's down there. This study makes one thing clear: when it comes to climate change and the oceans, we're already in deep.\" into Chinese"}
{"question_id": "lima_848", "question": "Tina makes $18.00 an hour. If she works more than 8 hours per shift, she is eligible for overtime, which is paid by your hourly wage + 1/2 your hourly wage. If she works 10 hours every day for 5 days, how much money does she make?"}
{"question_id": "lima_849", "question": "translate into English: \"Der Zug kommt in Frankfurt p\u00fcnktlich an. Kerstin geht sofort nach Hause, aber w\u00e4hrend sie die Treppen hochsteigt, bemerkt sie einige eigenartige Dinge: bunte Luftballons, rote K\u00e4rtchen in Herzform, rote Rosen.\""}
{"question_id": "lima_850", "question": "Choose a real life historical figure and write about his or her life as you would write a fairy tale or a greek tragedy. But leave out the names so that the readers may guess who the story is about on their own."}
{"question_id": "lima_851", "question": "As a young writer who survived a horrific accident, you swore you wouldn't die before you at least finished your first novel. Now, a thousand years later, you're still cursing your case of writer's block."}
{"question_id": "lima_852", "question": "Here is a draft of a social media post I want to write. It's too long right now, so I'll need you to trim it down to 100 characters (including emojis):\n\nHey friends,\nI wanted to update all of you that I'm starting a new position at Awesome.AI next week, where I will be Chief Data Officer. I am super-excited about this opportunity, and look forward to building cutting-edge AI products.\nI would also like to thank all my friends and colleagues at Radical.AI. It has been an amazing experience working with you, and I have learned a lot from everyone.\nWish me luck!"}
{"question_id": "lima_853", "question": "write a story about the grinch as if he was a lovecraftian monster"}
{"question_id": "lima_854", "question": "write a story with the first line being \"it was raining quite hard\" and the last line being \" and right there it rained a little harder\""}
{"question_id": "lima_855", "question": "You are the head of propaganda of an alien race that have declared war on humans. You have to write this cycle's newspaper by exaggerating/ distorting daily human activities."}
{"question_id": "lima_856", "question": "Can someone write me a story for my six year old daughter?"}
{"question_id": "lima_857", "question": "Rewrite a passage from tbe bible but in the style of JoJo's Bizzare Adventure"}
{"question_id": "lima_858", "question": "Saddest story you can write in under twenty-five words."}
{"question_id": "lima_859", "question": "Write a gritty and depressing story set in a cutesy and childlike environment, or do the reverse and write a childishly optimistic fairy tale set in a grim dystopia."}
{"question_id": "lima_860", "question": "You are a video game critic that\u2019s been sucked into a game. After a week trapped there, you write up something that\u2019s both a survivor\u2019s journal and game review."}
{"question_id": "lima_861", "question": "In 75 words or fewer, write about experiencing a devastating loss, without including death."}
{"question_id": "lima_862", "question": "You're a writer who has died. When you cross over, you discover that the worlds you created in your mind are actual places. You've now found yourself in your own creation for eternity. What happens next?"}
{"question_id": "lima_863", "question": "Your memory resets everytime you fall asleep, so before you go to bed you always write down everything you want to remember from that day on your journal. This morning, you wake up and see what you wrote last night. There's only one word, \"RUN\"."}
{"question_id": "lima_864", "question": "In under 30 words, write an enticing start to a novel establishing a dystopian society"}
{"question_id": "lima_865", "question": "You are a pet, write a love letter to its owner."}
{"question_id": "lima_866", "question": "You clearly mail ordered a cheap, factory made sword. Then they gave you an authentic holy sword that made you into a chosen hero. Time to write a bad review!"}
{"question_id": "lima_867", "question": "The \"What if the Nazis won??\" trope has been done to death. This time, imagine you live in a world where they won and write a story based on the prompt, \"What if the allies won??\""}
{"question_id": "lima_868", "question": "You're a high society socialite 1600/1700s write a letter to a friend about a scandalous event"}
{"question_id": "lima_869", "question": "\"History is written by the victors\", write in first person about a historical event as viewed by someone on the losing side."}
{"question_id": "lima_870", "question": "You are stuck as a propaganda writer for North Korea. You want to get out of North Korea, but you must do it by writing propaganda."}
{"question_id": "lima_871", "question": " In only 26 words, going down the alphabet, write a murder."}
{"question_id": "lima_872", "question": "You are a writer struggling to make ends meet that suddenly realizes a famous author is using time travel to steal your ideas. Write an email to him/her."}
{"question_id": "lima_873", "question": "Shakespeare is reincarnated as a young man in 2016. Like any young writer, he dabbled in fanfiction. Cringey fanfiction. Write one of these fanfictions."}
{"question_id": "lima_874", "question": "My Cat Fell Into a Laundry Basket. Try to write a story or poem based on this image."}
{"question_id": "lima_875", "question": "Rewrite a classic fairy tale by telling it backwards. The end is now the beginning."}
{"question_id": "lima_876", "question": "Your homework is to write a poem, but you can't quite figure out what to write, until one morning you wake up and can only speak in rhymes."}
{"question_id": "lima_877", "question": "Without saying the word love, you write the most passionate love letter you can imagine."}
{"question_id": "lima_878", "question": "Write a love story without using any positive descriptive words. Or write a tragedy without any negative ones."}
{"question_id": "lima_879", "question": "In 20 words or less write the happiest scene you can."}
{"question_id": "lima_880", "question": "A demon that writes messages on your mirror with blood but they\u2019re useful messages. Like \u201cremember you have yoga at 6 tonight\u201d. Write a creative story."}
{"question_id": "lima_881", "question": "write about death, without using the word death, any euphemisms or other words directly related to death."}
{"question_id": "lima_882", "question": "My parents have a sign in their home that says, \"Alcohol: Because No Great Story Ever Started With Someone Eating A Salad.\" Prove them wrong, write a great story beginning with our hero eating a salad."}
{"question_id": "lima_883", "question": "Write a 'Choose Your Own Adventure' type story in which writers can add to the adventure in the comments."}
{"question_id": "lima_884", "question": "Death is a common character in writing prompts... write a story that portrays death in a way that you haven't seen or read about before."}
{"question_id": "lima_885", "question": "write a poem or a story inspired by the following sentence \"the sway of the ponytail\""}
{"question_id": "lima_886", "question": "Say i'm completely new to poetry. I need to know how to approach this art, write me a poem about it."}
{"question_id": "lima_887", "question": "A 15 yr old girl writes a spaghetti western story, not realising that pasta has nothing to do with it. This is that story."}
{"question_id": "lima_888", "question": "In a Utopian alternate universe, an author writes a sci-fi dystopian novel describing our society."}
{"question_id": "lima_889", "question": "Your bank specializes in accounts for villains and monsters; accepting currencies from gold and cash, to blood and souls. As the only teller for the bank, write about a casual day\u2019s work, or your most interesting clientele."}
{"question_id": "lima_890", "question": "Write a \"5 minute mystery\" (a short mystery the reader can solve using only the clues provided)"}
{"question_id": "lima_891", "question": "Choose a song, then write a story/poem. The twist is that you need to write a line of the song every other sentence, in *italic*."}
{"question_id": "lima_892", "question": "Instead of a dystopia that seems like a utopia on the surface, write a story about a utopia that seems like a dystopia on the surface."}
{"question_id": "lima_893", "question": "Write a story following this prompt: You are the only writer in the world. You use millions of pen names to keep it a secret. You walk past a bookshop and you see a book released by a name you don\u2019t recognise...."}
{"question_id": "lima_894", "question": "write me your saddest poem!"}
{"question_id": "lima_895", "question": "The Batman dies. As a joke, (or possibly in honor of his long time adversary) the Joker decides to write a eulogy."}
{"question_id": "lima_896", "question": "You\u2019re sitting in a boring class trying to entertain yourself. You write random words on your notebook, and realize that the teacher is repeating them, confusing all your classmates. It seems like you found something fun to do!"}
{"question_id": "lima_897", "question": "You are a galaxy renowned xenozoologist, and are determined to make accurate care guides for all of the pets of galactic citizens. Your current goal is to write a guide for the new pet that everyone's going crazy over: humans."}
{"question_id": "lima_898", "question": "Write a poem with a sense of isolation and detachment from the world around you."}
{"question_id": "lima_899", "question": "write a letter to that person who you wished had got back in touch (at least 3 year gap) (Lost contact due to any kind of change e.g quit social media/moved away/ etc"}
{"question_id": "lima_900", "question": "A time traveler goes from 2018 to 1980. Instead of using his knowledge for great gain or influence history, he writes a sitcom that scarily accurately predicts future events."}
{"question_id": "lima_901", "question": "In 5 sentences, without using the letter \"a\", write a story about a man who has lost it all."}
{"question_id": "lima_902", "question": "A man is wrongly sentenced to death in Victorian England for supposedly killing a milk-maid, write a letter from him to his wife."}
{"question_id": "lima_903", "question": "It's the year 2114. You're a history student. Your assignment? To write an essay comparing the events of 2014 with what happened 100 years earlier."}
{"question_id": "lima_904", "question": "An immortal couple have been seen throughout recorded history, write an account of them in any time period you wish. Bonus points if you match the writing style of the time period"}
{"question_id": "lima_905", "question": "In the parallel world of spiders, instead of \"Spider-Man\" there is \"Man-Spider\": a spider in a human costume with human superpowers, such as a gun he caries around and the ability to talk. You are the spider chosen to write a screenplay for the movie."}
{"question_id": "lima_906", "question": "I have a myth: Earth has no moon, instead it has a ring. There is ringlight every night year-round, and a ring shadow somewhere on Earth every day, which moves with the seasons. Re-write mythology."}
{"question_id": "lima_907", "question": "write a poem based of the story \"the strange case of Dr. Jekyll and Mr. Hyde\""}
{"question_id": "lima_908", "question": "You are a journalist. Everything you write becomes true. One day, not knowing this, you decide to write some satire."}
{"question_id": "lima_909", "question": "Write Martin Luther King's 'I Have a Dream' speech in the style of Doctor Seuss and then write 'The Sneetches' in the style of Martin Luther King"}
{"question_id": "lima_910", "question": "write a poem from the perspective of a dog"}
{"question_id": "lima_911", "question": "use all six of these words somewhere in your story or poem: fatigue, caper, typewriter, sword, calm, arrow"}
{"question_id": "lima_912", "question": "write a dark story but have the last sentence make it beautiful"}
{"question_id": "lima_913", "question": "You are about to pass away, write a letter for someone in your life."}
{"question_id": "lima_914", "question": "write me a story that doesn't include the word \"the\""}
{"question_id": "lima_915", "question": "A man emerges from his Y2K bunker as he has run out of supplies. It is currently 2014 and write in first person his encounters."}
{"question_id": "lima_916", "question": "You need to write a letter to your crush describing romantic things you'd want to do(stargazing, watching the northern lights) and romantic gestures you'd do for her/him and why you think you two are ideal for each other."}
{"question_id": "lima_917", "question": "write a story and try to fit in as many plottwists as possible, but the twist is just something mundane."}
{"question_id": "lima_918", "question": "Write the ending. The person to reply to your comment must write the rest of the story."}
{"question_id": "lima_919", "question": "Write a positive story about someone/something from a child's perspective, then write negative story about that same person/subject from the perspective of the now grown up child."}
{"question_id": "lima_920", "question": "Make something harmless illegal, like apples, now write about the black market of said item."}
{"question_id": "lima_921", "question": "Write a story where the characters in the story pretend they aren't aware they are in a story, for fear of being killed off by the writer"}
{"question_id": "lima_922", "question": "rewrite \"Hey Jude\" to make it sound like it was written by Shakespeare."}
{"question_id": "lima_923", "question": "A man realizes he loves a woman, but she's getting married to another man. He decides to write her a letter, what does it say?"}
{"question_id": "lima_924", "question": "Create a Utopia. A society as perfect as you can convincingly write it. No hidden secret evil, no sudden dark twist. A Genuine Utopia."}
{"question_id": "lima_925", "question": "Write a letter from the perspective of a character or group."}
{"question_id": "lima_926", "question": "We seem to have much morbid curiosity about the personification of Death in this sub. Instead, write about his brother, Life."}
{"question_id": "lima_927", "question": "Your writer roommate dropped his notebook in the hallway while leaving the apartment. You open it at the bookmark. It describes how your day unfolded, in detail. Continue writing with this prompt."}
{"question_id": "lima_928", "question": "In sixty words, write what can happen in a second."}
{"question_id": "lima_929", "question": "write a poem where every line has a different number of words"}
{"question_id": "lima_930", "question": "The job is simple. Every day at 8:34am you will get a phone call. You must answer before 2nd ring and write down the information given to you. On NO ACCOUNT must you engage in conversation with the caller."}
{"question_id": "lima_931", "question": "Try to write a story with as many of these items as possible: Valhalla, a neon suit, a chicken, a trophy room, a school bus, 25 balloons, 6 chocolate bars, Fred, Dave, Steve, a bag of cat kibble, 30 tonnes of Chinese takeout, and a liquor collection."}
{"question_id": "lima_932", "question": "In poem form and in only 10 sentences, write me something titled 'Could it be that I'm strange'."}
{"question_id": "lima_933", "question": "My grandmother passed away today. Please write a short uplifting story that will help me get through this."}
{"question_id": "lima_934", "question": "As a spell-writer, you're the magical equivalent of computer programmer. You've made and copied countless spells, but this is the first time you're desperate enough to try 'hacking' one."}
{"question_id": "lima_935", "question": "Roses are red, violets are blue - write me a romance about books overdue."}
{"question_id": "lima_936", "question": "Write write a story/poem where you use an object as a euphemism for death, only don't tell us what it is."}
{"question_id": "lima_937", "question": "I had a dream about a horror story for cats. They were sitting around a campfire and one told a story about a lap that was too cold to sit on. Please write campfire styke horror stories that cats would tell eachother."}
{"question_id": "lima_938", "question": "Pretend you have a 1 year old daughter and write a letter that will be given to her when she turns 15 in the unlikely event you die."}
{"question_id": "lima_939", "question": "write about something ugly - war, fear, cruelty, hate - but find the beauty or silver lining in it"}
{"question_id": "lima_940", "question": "There's a lot of poems about blue and green eyes out there but not that many about brown eyes even though they are still gorgeous. Can you write a poem about the beauties of brown eyes for me?"}
{"question_id": "lima_941", "question": "Hitler writes a second book called \"mein hobby\". Write a chapter about one of the many hobbies Hitler indulges in."}
{"question_id": "lima_942", "question": "In 200 words or less, write a well-known villain as a hero, but do not tell us who they are."}
{"question_id": "lima_943", "question": "write the best story you can in 5 sentences or less"}
{"question_id": "lima_944", "question": "as a monkey you thought it was kinda impressive you were able to write the entire works of Shakespeare but these scientists keep downplaying it \u201crandom\u201d they say."}
{"question_id": "lima_945", "question": "write a poem about social life on the internet."}
{"question_id": "lima_946", "question": "Martin R.R. George, a Westerosi author, decides to write a fantasy book series on his kingdom of England."}
{"question_id": "lima_947", "question": "C'thulu's Fables: Take one of Aesop's Fables and write it within the Lovecraftian Universe. Morale of the story included."}
{"question_id": "lima_948", "question": "If Dr. Seuss writes a horror story, what would the story be?"}
{"question_id": "lima_949", "question": "An exploration of the butterfly effect: write a dramatic scene. Then, choose one tiny detail to change in the initial set-up, and play the scene out again. How drastically have things changed?"}
{"question_id": "lima_950", "question": "After several/many years, you open a letter that 10 year old You wrote to Future You. You write a reply back for a laugh and just leave it on the counter. The next day, you receive a reply from 10 year old you"}
{"question_id": "lima_951", "question": "You have just created AI super-intelligence but it's going to take 24hrs for it to download onto your server, you only have 12 hours left to live, so you write it a letter..."}
{"question_id": "lima_952", "question": "Out of boredom, you write an email to yourself scheduled to be sent in 3 years. What you didn\u2019t expect was a reply the very next morning, by future you."}
{"question_id": "lima_953", "question": "A Colonel/General from the American Civil War pens a letter to a loved one. Ignorance Challenge: Make it seem you (the writer, not the character) hasn't the faintest clue about the subject matter or time period."}
{"question_id": "lima_954", "question": "Making use of internal rhyme, write a poem about an emotion or state of being."}
{"question_id": "lima_955", "question": "Write about a world where whenever somebody writes on their skin, it appears on their soulmate's body as well."}
{"question_id": "lima_956", "question": "You're secretly a mind-reader. One of your classmates, a writer, has The Best daydreams. One keeps recurring, and you realize that they're stuck on a plothole. Write a story."}
{"question_id": "lima_957", "question": "In less than 100 words, write something moving in which every word starts with the same letter."}
{"question_id": "lima_958", "question": "I give you 3 nouns: Jet, Reaction and Vegetable, please write a story revolving around what they are."}
{"question_id": "lima_959", "question": "Pick a scene from Star Wars, and rewrite it in the style of Stephen King or George R. R. Martin."}
{"question_id": "lima_960", "question": "Write a story: You are Immortal. Every year you write a book chronicling what happened that year and hide it somewhere. Today archaeologists have found enough books to infer your existence."}
{"question_id": "lima_961", "question": "Could you write an email about the completion of the fire alarm testing to the residents?"}
{"question_id": "lima_962", "question": "Can you write a sweet poem or story for my roommate who is really upset?"}
{"question_id": "lima_963", "question": "Re-write an innocent song/poem into something funny or twisted."}
{"question_id": "lima_964", "question": "write a story that's very sad until the last sentence, which suddenly makes it a happy story"}
{"question_id": "lima_965", "question": "The protagonist of a story writes a letter to the author to complain about how bad the story is."}
{"question_id": "lima_966", "question": "Instead of a modern adaptation of a myth, write a mythic adaptation of a modern story."}
{"question_id": "lima_967", "question": "While shopping, you run into someone eerily similar to you in every aspect. You write it off as a crazy coincidence until seemingly clones of you keep coming to the store, each one just as confused."}
{"question_id": "lima_968", "question": "A fanfiction writer who fell asleep at the computer finds themself in the last scene they were writing. Write about it as if you are the writer."}
{"question_id": "lima_969", "question": "You need to hire a hitman, but can't afford it. Carefully write a gofundme campaign for something seemingly innocent while subtly letting your donors know what they are actually funding."}
{"question_id": "lima_970", "question": "Pick your favorite conspiracy theory and write about it through the eyes of the person behind the conspiracy."}
{"question_id": "lima_971", "question": "A person writes a letter that is to be delivered to their child on their 18th birthday."}
{"question_id": "lima_972", "question": "Write a love letter that is either from the villain to the hero, or from the hero to the villain. Another writer, and only another writer, may write a letter in response."}
{"question_id": "lima_973", "question": "write the saddest story you possibly write about a jar of Jam, five playing cards and a gun"}
{"question_id": "lima_974", "question": "Write a story with the following prompt: One day, as you\u2019re walking home from work, you find a white \u201cLife Note\u201d on the sidewalk. Having seen the anime, you jokingly write \u201cGeorge Washington\u201d in it. He\u2019s on the news the next day."}
{"question_id": "lima_975", "question": "my dog Cannibal passed away last nigh, these are the last pictures I took of him. please write a story about him."}
{"question_id": "lima_976", "question": "Write a paragraph introducing a surreal scene. Someone else writes the next paragraph on the comments, and so on."}
{"question_id": "lima_977", "question": "You will write a story or poem in second person, future tense. It won\u2019t be a choose your own adventure."}
{"question_id": "lima_978", "question": "Go nuts and write whatever but it must have a plot twist every 75 words."}
{"question_id": "lima_979", "question": "You, a creative writer, go to bed every night with mind full of creative ideas. However, you always wake up with a blank mind as if you ideas 'ran away' or were stolen overnight. Determined to find out, tonight you pretend to fall asleep."}
{"question_id": "lima_980", "question": "Write a story of a perfectly ordinary or boring day except write it as dramatically as possible."}
{"question_id": "lima_981", "question": "write an intricate and detailed scene that only lasts 10 seconds in real time."}
{"question_id": "lima_982", "question": "First person writes a story on a topic and genre of his choice, but must leave it on a cliffhanger. Anyone after him continues the story from the cliffhanger, then that person leaves his story on a cliffhanger and so on."}
{"question_id": "lima_983", "question": "You've been a History teacher for 30 years, never gotten a single fact wrong. One day you become suspicious, surely I should've gone wrong somewhere? You test a theory by purposely being incorrect, suddenly, history rewrites itself."}
{"question_id": "lima_984", "question": "In a post-apocalyptic society, the stories of Superman and Jesus Christ have gotten mixed up over the years. Several scholars have gotten together to write the new Bible. This is the first chapter of the gospel according to James (Jimmy)"}
{"question_id": "lima_985", "question": "write the most confusing story possible that still contains a coherent plot"}
{"question_id": "lima_986", "question": "write me a five line poem depicting how a thorn on a rose bush sees itself protecting the rose"}
{"question_id": "lima_987", "question": "You\u2019re a regular at Starbucks. This time you go, the lady writes \"RUN\" on your takeaway cup. Write a story."}
{"question_id": "lima_988", "question": "You are a shady person of power and you need to write a letter of recommendation for your maid who goes above and beyond the job description."}
{"question_id": "lima_989", "question": "Rewrite a famous battle in history, but with each person having one Pokemon"}
{"question_id": "lima_990", "question": "Kidnappers force a prisoner to write a letter to family, convincing them all is well. The prisoner attempts to subtly hint something is wrong. Write that letter."}
{"question_id": "lima_991", "question": "Rewrite a scene in any Star Wars movie from the perspective of a storm trooper."}
{"question_id": "lima_992", "question": "Make me pee: A challenge to write the most gut-bustingly hilarious story possible"}
{"question_id": "lima_993", "question": "A \"letter of last resort\" are final military orders given to field commanders after a nation has been completely destroyed. As a head of state, write a hypothetical letter to the commander."}
{"question_id": "lima_994", "question": "You're a self aware character in a romantic novel. The writer has put you through every stereotypical, cheesy trope and you're done. You're done. It's time to write your own story."}
{"question_id": "lima_995", "question": "Without repeating a single exact word, write the longest fictional story you can."}
{"question_id": "lima_996", "question": "write a verse to an (un)finished epic poem."}
{"question_id": "lima_997", "question": "An aspiring writer working for the NSA has been looking through the files on your computer and publishing books based on the rough drafts you've been working on. Write a story of your revenge."}
{"question_id": "lima_998", "question": "Write a letter to a loved one about how much you care about them, but write it so that someone who may not have heard it from that person in their lives knows how much that person cares about them."}
{"question_id": "lima_999", "question": "A time traveler is stuck in the past and their only chance of escape is to write something that will persist through history long enough to reach their self in the future and tell them how to avoid being trapped in the past, please write it."}