-
Notifications
You must be signed in to change notification settings - Fork 0
/
2016-07-12-11-02-24-delete.json
1007 lines (1007 loc) · 36.2 KB
/
2016-07-12-11-02-24-delete.json
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
{
"post": {
"id": "759985267390294_1289315211123961",
"level": 0,
"group": "759985267390294",
"parent": "759985267390294",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "status",
"message": "Can we slay the argument of why would someone pay for a MacBook instead of a Windows laptop when it's more expensive? It's like asking why buy a bmw instead of a Plymouth sundance. They both do the same thing, just one is in style 😎\n\nEdit: MBP pwns all other laptops and Mac OS is the ultimate and one and only true operating system to use.",
"created": "2016-07-12T20:17:33.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289315497790599",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10154061411731329",
"fromName": "Anonymous",
"type": "comment",
"message": "can we just not create debates for the sake of creating debates? What's your question/added value proposition?",
"created": "2016-07-12T20:18:20.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289315734457242",
"level": 1,
"group": "759985267390294",
"parent": "1289315497790599",
"from": "10157177703585013",
"fromName": "Anonymous",
"type": "comment",
"message": "> implying there has to be a question to post something in this group.\n> doesn't look at posts below",
"created": "2016-07-12T20:18:50.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "dab80cfa9db712e6ef8705f96701deb473c5dfe2"
},
{
"id": "1289315781123904",
"level": 1,
"group": "759985267390294",
"parent": "1289315497790599",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": "Can we not create a debate about creating debates for the sake of creating debates? What's your question?",
"created": "2016-07-12T20:18:54.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "05c3956a3c9fd083b79401ebbfea66d9d7913a61"
},
{
"id": "1289322697789879",
"level": 1,
"group": "759985267390294",
"parent": "1289315497790599",
"from": "1050756891675984",
"fromName": "Anonymous",
"type": "comment",
"message": "Humor",
"created": "2016-07-12T20:31:30.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "42348f148db67335f9917e4c8887cce665682502"
},
{
"id": "1289371431118339",
"level": 1,
"group": "759985267390294",
"parent": "1289315497790599",
"from": "1316112895069086",
"fromName": "Anonymous",
"type": "comment",
"message": "",
"created": "2016-07-12T22:18:42.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "03116ff15d28445ed014b8cb69ed84ba0baf97ea"
}
],
"isMod": false,
"command": null,
"version": "54bc5af85e097ce6ac0cdd35c6b31355e0852903"
},
{
"id": "1289316594457156",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1361479010533264",
"fromName": "Anonymous",
"type": "comment",
"message": "*Fanboying intensifies*",
"created": "2016-07-12T20:20:25.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "1058366a788ea150c615ec9cc3cef5fbc6637284"
},
{
"id": "1289317504457065",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1098320483540404",
"fromName": "Anonymous",
"type": "comment",
"message": "I think Dan is trying to say this post is contradictory; your post will actually increase petty arguments instead of \"slaying\" the argument. Either way, shitpost.",
"created": "2016-07-12T20:21:21.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289318204456995",
"level": 1,
"group": "759985267390294",
"parent": "1289317504457065",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": ">writes a shit post\n>calls other posts shitposts",
"created": "2016-07-12T20:22:25.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "8d823129aa57adbf5496a74f53644a6d14c968e3"
},
{
"id": "1289318227790326",
"level": 1,
"group": "759985267390294",
"parent": "1289317504457065",
"from": "10157177703585013",
"fromName": "Anonymous",
"type": "comment",
"message": "> implying mods can't put a mac vs pc debate freeze up",
"created": "2016-07-12T20:22:30.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "2cc8094469ac6de6635c09b8114b92a6ec441e8e"
},
{
"id": "1289318567790292",
"level": 1,
"group": "759985267390294",
"parent": "1289317504457065",
"from": "1098320483540404",
"fromName": "Anonymous",
"type": "comment",
"message": "Obvious trolls, nice meme arrows",
"created": "2016-07-12T20:23:28.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "f6cdfd2a0c4bcfd553f0cda86d08b5c1e51ba156"
}
],
"isMod": false,
"command": null,
"version": "80dc94c264028df1c6f4b28f51785799c5ff9b14"
},
{
"id": "1289317661123716",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1084509254945238",
"fromName": "Anonymous",
"type": "comment",
"message": "Cheap thrills inversely proportionate to productivity. Until and unless you bring Linux into the scene. *drops mic*",
"created": "2016-07-12T20:21:29.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "146e1d9f320ea9491a2147fb2ab1035216036bd3"
},
{
"id": "1289317771123705",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": "T R I G G E R E D",
"created": "2016-07-12T20:21:34.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "710a2c97a81889b50854e2ac02e6cff8fefd9201"
},
{
"id": "1289318067790342",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10103593790412092",
"fromName": "Anonymous",
"type": "comment",
"message": "its all about that custom form factor",
"created": "2016-07-12T20:22:01.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "6dcaaeb2660c6b26f17cf6c740b2e73c87d540ba"
},
{
"id": "1289318291123653",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10207110975436144",
"fromName": "Anonymous",
"type": "comment",
"message": "LOL nice meme except Windows is like Telsa and has better features aka autopilot aka customization",
"created": "2016-07-12T20:22:42.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289318477790301",
"level": 1,
"group": "759985267390294",
"parent": "1289318291123653",
"from": "10157177703585013",
"fromName": "Anonymous",
"type": "comment",
"message": "Does it kill drivers too?",
"created": "2016-07-12T20:23:10.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "283b9ff1acd74639c758037377d7ad71ed2a2f31"
},
{
"id": "1289318481123634",
"level": 1,
"group": "759985267390294",
"parent": "1289318291123653",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": "LOL, good joke",
"created": "2016-07-12T20:23:10.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "800e785aa8e3832b54d51a4549e7c8a2f96cc345"
},
{
"id": "1289319331123549",
"level": 1,
"group": "759985267390294",
"parent": "1289318291123653",
"from": "1084509254945238",
"fromName": "Anonymous",
"type": "comment",
"message": "Really? Tesla just lost some of its sheen because it was compared to Windows.",
"created": "2016-07-12T20:24:56.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "436dee1b45ed3757e0e4387ed6a7e19dd01f87cd"
},
{
"id": "1289320727790076",
"level": 1,
"group": "759985267390294",
"parent": "1289318291123653",
"from": "1053234708076719",
"fromName": "Anonymous",
"type": "comment",
"message": "LOL",
"created": "2016-07-12T20:27:50.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "82020c33021339b4c69074c7e0e6040491e9391b"
}
],
"isMod": false,
"command": null,
"version": "ef0ffec7789ff642b2ec56ddd0361dcee64c75cc"
},
{
"id": "1289319517790197",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10154308000323769",
"fromName": "Anonymous",
"type": "comment",
"message": "you're not going to \"slay the argument\". just because you and I think macbooks are stupid doesn't mean there won't be some douche with $3000 to blow but doesn't play games or do any digital content creation, and is willing to pay an extra $2500 for a nicer touchpad",
"created": "2016-07-12T20:25:13.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289320477790101",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10154308000323769",
"fromName": "Anonymous",
"type": "comment",
"message": "to clarify, my point was that you don't need logic to waste money, and nobody can tell YOU what YOU are willing to pay for an extra 2 hours of battery life",
"created": "2016-07-12T20:27:03.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "29209becc59f74ac1f94e66c82cc5b005ae6ccca"
},
{
"id": "1289321034456712",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": ">thinks that i think MacBooks are stupid",
"created": "2016-07-12T20:28:20.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "58da266a671ba5a976ea0a41a8eb56a4d6221af9"
},
{
"id": "1289321204456695",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": "MacBooks are the true dev machines",
"created": "2016-07-12T20:28:49.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "e68a6d383043f80b6ca2b8ec0c7b3bb4914b6d8d"
},
{
"id": "1289321454456670",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10154308000323769",
"fromName": "Anonymous",
"type": "comment",
"message": "sorry, I shouldn't have assumed that the post bashing macbooks came from someone who thinks macbooks are stupid",
"created": "2016-07-12T20:29:15.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "8f1b9fd4777deba27ce8319f8e4f162f3fecbde7"
},
{
"id": "1289321847789964",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10207110975436144",
"fromName": "Anonymous",
"type": "comment",
"message": "True cringe machine*",
"created": "2016-07-12T20:29:27.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "586f830143524127455c82ddeb4ff4d9ce8092fd"
},
{
"id": "1289322057789943",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10154308000323769",
"fromName": "Anonymous",
"type": "comment",
"message": "for the record, mac os is better than windows for dev work by miles, but not as good as linux (even ubuntu).",
"created": "2016-07-12T20:30:11.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "787f7c300d1958149b38e70a44e6e61402dd5901"
},
{
"id": "1289322267789922",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": "Saurabh Mitra gotcha 😘🙃😚😏😉",
"created": "2016-07-12T20:30:43.000Z",
"place": null,
"tags": [
{
"id": "10154308000323769",
"length": 13,
"name": "Saurabh Mitra",
"offset": 0,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "de29a5588fd4ff0f3cb3cdcf55e162685b894769"
},
{
"id": "1289322271123255",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10207110975436144",
"fromName": "Anonymous",
"type": "comment",
"message": "ubaetu*",
"created": "2016-07-12T20:30:44.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "3ca4b22e1fbe58ed8f431e9ec0aac6043e2173b6"
},
{
"id": "1289323204456495",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10154308000323769",
"fromName": "Anonymous",
"type": "comment",
"message": "I just realized this post was in hackathon hackers and not an entirely different group without people that code.",
"created": "2016-07-12T20:32:59.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "b7c423ba1c4c0fc80eb78b61d333443c8bc4122b"
},
{
"id": "1289340234454792",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "1038867086201017",
"fromName": "Anonymous",
"type": "comment",
"message": "holy shit any linux machine is better for dev than both mac and windows",
"created": "2016-07-12T21:07:52.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "7bc1d78ffa42e1cbc2dfb43881156cc96b5630f9"
},
{
"id": "1289344947787654",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "10153991455208557",
"fromName": "Anonymous",
"type": "comment",
"message": "Linux allows more freedom yes but lacks dat \n\nU S E R I N T E R F A C E",
"created": "2016-07-12T21:20:14.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "56d806b606c0fe90f7d105495769e98957044e03"
},
{
"id": "1289347221120760",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "1038867086201017",
"fromName": "Anonymous",
"type": "comment",
"message": "UI doesn't matter, but if you think it does there are literally\ndozens\nof OSX desktops for linux",
"created": "2016-07-12T21:26:15.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "ad034a84ae94a5ac59b03edc1c6917fb8f9d8936"
},
{
"id": "1289347337787415",
"level": 1,
"group": "759985267390294",
"parent": "1289319517790197",
"from": "1038867086201017",
"fromName": "Anonymous",
"type": "comment",
"message": ".\nReasons to use windows: gaming\nReasons to use mac: ios dev\nReasons to use linux: everything else",
"created": "2016-07-12T21:26:44.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "1e338b604b6532e6d2828525a99e99cc60c6a683"
}
],
"isMod": false,
"command": null,
"version": "f2b093c3eb73001641817403cda02934542977cc"
},
{
"id": "1289320321123450",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1061327983937517",
"fromName": "Anonymous",
"type": "comment",
"message": "This is bad content",
"created": "2016-07-12T20:26:34.000Z",
"place": null,
"tags": [
{
"id": "1650825635242770",
"length": 19,
"name": "This is bad content",
"offset": 0,
"type": "page"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "2036655f9ce40cf6c468c53d0dfe8279a5f4b7e6"
},
{
"id": "1289322664456549",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "157174951362852",
"fromName": "Anonymous",
"type": "comment",
"message": "Please don't compare BMWs with other inferior car brands",
"created": "2016-07-12T20:31:26.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289363261119156",
"level": 1,
"group": "759985267390294",
"parent": "1289322664456549",
"from": "708649047767",
"fromName": "Anonymous",
"type": "comment",
"message": "Luxury brands are the worst. Getting just some brake pads changed can cost you 3x as much because they're all custom order/import, they require special knowledge to repair.....yeah starting to sound like macs.",
"created": "2016-07-12T21:58:24.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "525a633547bac76bfe91dbeae3a271323208a522"
},
{
"id": "1289366631118819",
"level": 1,
"group": "759985267390294",
"parent": "1289322664456549",
"from": "157174951362852",
"fromName": "Anonymous",
"type": "comment",
"message": "If you want a car to use at your business. Buy a Toyota, easy to repair, cheap, efficient etc. If you are a car dealer you buy cars that are easy to sell in your zone. If you simple like BMW because it's BMW. You buy it because you like it and you are not expecting to make money out of it. Cars are always a waste of money, specially new cars. But, it's relative. If you make 65k a month and you only spend 20% of your profit in yourself. You can buy a new 328i and it won't be a significant investment.",
"created": "2016-07-12T22:04:47.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "c5b08e119df4a3193cc71ad3508eb3c31f80a8ca"
},
{
"id": "1289369584451857",
"level": 1,
"group": "759985267390294",
"parent": "1289322664456549",
"from": "157174951362852",
"fromName": "Anonymous",
"type": "comment",
"message": "I am not a mac user. Because I only use computers to program and play video games. Therefore buying a 1.3k PC perfectly satisfies my necessities. But, in fact. It's a waste of money because I could spend that money into something else like the stock market, agriculture, farming, real state, money for a restaurant etc. But, I don't know anything about it. And it's also relative. Like I said before if you are making 65k a month and you only spend 20% or less in yourself and the other 80% back into your business to make it grow. Well..... I think you got my point.",
"created": "2016-07-12T22:12:14.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "589b7225f882a6c924ad4481907ea0e0426da6bc"
},
{
"id": "1289376157784533",
"level": 1,
"group": "759985267390294",
"parent": "1289322664456549",
"from": "157174951362852",
"fromName": "Anonymous",
"type": "comment",
"message": "What if you spend your money in the stock market or anything else. And at the second day, everything goes down. And boom you are bankrupt... it depends on how high you put the bar; but, it's based in your experiences. Based on my experiences, for me this is how it works. If you spend 20% of your profit/income in yourself and the rest in little business to create some jobs (opportunity) you are doing great. If you spend 50% both yourself and businesses you are ok. If you spend 100% or more in yourself, you are not efficient. If you live in debt... no words. These rules only apply for people making over 30k a month (doctors, lawyers etc) if you make around 10k a month. You are free to spend your money in anything. But, if you make more than 30k you have new responsibilities. That's how I think. It's based in my experiences. Therefore, if you are a doctor, you drive a supercar and you still live in debt because you are spending more than 100% of your income. Then, you are not investing your money correctly.",
"created": "2016-07-12T22:30:18.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "a0d0da8634c58d3a3cdc19bea5586b3c15fe8e43"
}
],
"isMod": false,
"command": null,
"version": "4d5159c74abc5ccef3843b0e2af152e8ee6a907d"
},
{
"id": "1289322777789871",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10209943846815749",
"fromName": "Anonymous",
"type": "comment",
"message": "The problem is that a Mac Book is literally worse.",
"created": "2016-07-12T20:31:43.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "3e17632d76f008890eb392da2f51b10e80a30946"
},
{
"id": "1289324914456324",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1050756891675984",
"fromName": "Anonymous",
"type": "comment",
"message": "Hmm it seems like the non Mac people always have the loudest arguments...wonder why...maybe because they're WRONG AND THEY KNOW IT! Okok jkjk, *grown upping it again*",
"created": "2016-07-12T20:36:22.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289331211122361",
"level": 1,
"group": "759985267390294",
"parent": "1289324914456324",
"from": "10154308000323769",
"fromName": "Anonymous",
"type": "comment",
"message": "no its because apple obviously killed their families",
"created": "2016-07-12T20:46:30.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "6433e08aac62633996cc120e30dd06935f69470c"
}
],
"isMod": false,
"command": null,
"version": "49b52091861ab3c69c908565fa4d0e62c94bcae9"
},
{
"id": "1289332931122189",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10205070588642710",
"fromName": "Anonymous",
"type": "comment",
"message": "top shitpost",
"created": "2016-07-12T20:50:26.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "5e9c8322afa118fc04353f0279e8aa034a8eb698"
},
{
"id": "1289335314455284",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10153806683283380",
"fromName": "Anonymous",
"type": "comment",
"message": ".\nWEWLAD\nE E\nWEWLAD\nL L\nA A\nD D",
"created": "2016-07-12T20:55:27.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289336481121834",
"level": 1,
"group": "759985267390294",
"parent": "1289335314455284",
"from": "1061327983937517",
"fromName": "Anonymous",
"type": "comment",
"message": ".\nWWWWWWWWWW\nEEEEEEEEEE\nWWWWWWWWWW",
"created": "2016-07-12T20:58:54.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "31f212c65d1456e5656c17b8e9ceb168f57ba0f6"
}
],
"isMod": false,
"command": null,
"version": "da5cf3a24d528a910fb84524a4ccf0079f0f81e4"
},
{
"id": "1289342781121204",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10153748280992960",
"fromName": "Anonymous",
"type": "comment",
"message": "Can we make a HH: Macs vs Windows group plz. I see this debate like twice a day now",
"created": "2016-07-12T21:14:32.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "175014832a6012aea9ee604c24e6bd47c6dcc6e6"
},
{
"id": "1289343547787794",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1610543155923620",
"fromName": "Anonymous",
"type": "comment",
"message": "Don't forget about support - if all your colleagues are using mac, docs always have mac install instructions, and the ecosystem caters to *nix environments, the easier choice is clear. (note that Windows used to be the de facto dev machine)",
"created": "2016-07-12T21:15:59.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "a3a74c92b8fd448e5a973cecf2656e761ba303f2"
},
{
"id": "1289350791120403",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "1749358055280393",
"fromName": "Anonymous",
"type": "comment",
"message": "Rohan Shah would agree to disagree to slay this argument; he has slain many arguments b4.",
"created": "2016-07-12T21:31:58.000Z",
"place": null,
"tags": [
{
"id": "10206982448736697",
"length": 10,
"name": "Rohan Shah",
"offset": 0,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "f99d7ab3bb704d7792f49a94399f5408f85eaffd"
},
{
"id": "1289352924453523",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10201963122276918",
"fromName": "Anonymous",
"type": "comment",
"message": "Node.js",
"created": "2016-07-12T21:37:36.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1289364837785665",
"level": 1,
"group": "759985267390294",
"parent": "1289352924453523",
"from": "708649047767",
"fromName": "Anonymous",
"type": "comment",
"message": "not sure why someone keeps saying nodejs on mac vs pc threads. Nodejs can be installed on any platform.",
"created": "2016-07-12T22:00:10.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "62bbac3c3d058289e9c1a27404ad47d57378ee4a"
},
{
"id": "1289369671118515",
"level": 1,
"group": "759985267390294",
"parent": "1289352924453523",
"from": "10153806683283380",
"fromName": "Anonymous",
"type": "comment",
"message": "triggered",
"created": "2016-07-12T22:12:27.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "a32a72ad639af908586263af0434804977812f17"
},
{
"id": "1289377091117773",
"level": 1,
"group": "759985267390294",
"parent": "1289352924453523",
"from": "157174951362852",
"fromName": "Anonymous",
"type": "comment",
"message": "I was waiting for someone to post that.... lol",
"created": "2016-07-12T22:33:15.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "de906f559ca51967c61f7b95d328953d35eb9dfa"
}
],
"isMod": false,
"command": null,
"version": "5f029367fc9eb10ea5b6dff2a00c0b44b34a6a04"
},
{
"id": "1289371691118313",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "10208697819515717",
"fromName": "Anonymous",
"type": "comment",
"message": "True developers just use terminal for everything and browse the Internet using curl. All others are plebs",
"created": "2016-07-12T22:19:40.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "da57b1dbd760c73badd91920cbce695c83c12608"
},
{
"id": "1289389611116521",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1289315211123961",
"from": "3223282470829",
"fromName": "Megan Ruthven",
"type": "comment",
"message": "/delete",
"created": "2016-07-12T23:02:14.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": true,
"command": "delete",
"version": "8a67f52aff78702ebe90cd48333c8e87a82d3153"