-
Notifications
You must be signed in to change notification settings - Fork 1
/
2015-12-26-06-25-20-delete.json
1013 lines (1013 loc) · 49.5 KB
/
2015-12-26-06-25-20-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_1169305149791635",
"level": 0,
"group": "759985267390294",
"parent": "759985267390294",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "link",
"message": "For anyone joining a startup, or currently part of one, I just wrote up a sizeable post on some bad-experiences I've had in 2015. I thought it might be valuable posting it here, if you can learn from and avoid some pretty big mistakes that I made. Here's to 2016.\n\n",
"created": "2015-12-26T10:58:04.000Z",
"place": null,
"tags": [],
"link": {
"url": "https://medium.com/@jmitch/fail-until-you-succeed-is-the-motherfucking-2k15-motto-866662704c4d#.71qmb3nuz",
"caption": "medium.com",
"description": "2015 marks my 4th year in the startup game. By this point, the excitable, pimple-faced and optimistic teen is dead and b…",
"picture": "https://external.xx.fbcdn.net/safe_image.php?d=AQCnqTMK_MFCQU2c&w=130&h=130&url=https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F800%2F1%2AQ1xmcKrfeVmRzWwIUWAbuQ.jpeg&cfs=1"
},
"comments": [
{
"id": "1169313969790753",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10205385848797262",
"fromName": "Anonymous",
"type": "comment",
"message": "What a shit article.\nFirst you start by enumerating your failures and calling out people involved *by name* (which, by the way, is a great first impression of your probably objectionable personality), then after many paragraphs of one-sided stories, shift without the clutch into a generic and Silicon-Valley-worthy (the satirical TV show, not the actual demographic of hard-working entrepreneurs) startup pitch full of words that have grown to mean nothing. Why do you think this venture will end any better than your previous ones? Why are we to believe that this endeavor won't end in you speaking poorly of it once you latch onto a new idea in a few months, just like the previous ones you've so openly discussed? Why does the word \"money\" occur 14 times in your article and the word \"passion\" occur only once?\nBecause you represent exactly what is wrong with (and harmful to) the tech industry. Create and innovate for the purpose of self-fulfillment and/or benefiting the progression of the human race and not for the number of zeroes in your bank account, or get out of the way and let the real creators and innovators do their thing.",
"created": "2015-12-26T11:36:14.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169399563115527",
"level": 1,
"group": "759985267390294",
"parent": "1169313969790753",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "I replied below btw",
"created": "2015-12-26T15:30:28.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "dca1611653be13597fee812013d7e876a067a266"
},
{
"id": "1169428793112604",
"level": 1,
"group": "759985267390294",
"parent": "1169313969790753",
"from": "10153523724641737",
"fromName": "Anonymous",
"type": "comment",
"message": "Matt, it doesn't sound like you've ever worked at a startup before. When you're an employee of a startup, money matters because you're putting in twice as many hours as employees who work 9-5s. It's only until it's your startup are you willing to give up everything to solve a problem you're passionate about. So much truth in the article. I'll also vouch for the fact that some founders are so \"passionate\" about their idea that they\"ll justify out-of-character behavior to stay afloat.",
"created": "2015-12-26T16:35:33.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "91d3f8653678550450ab00c93a8e691c43b5acfa"
},
{
"id": "1169429929779157",
"level": 1,
"group": "759985267390294",
"parent": "1169313969790753",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Thanks for the kind words Sammy Soto! :-) You're obviously a Founder kicking-ass and knows what's up. From being a co-founder at an already existing startup, to an employee at an agency, to an actual founder, there's certainly many subtleties as to time vs. money vs. passion etc, you're right about that!\n\nLove your out-of-character remark, that is brilliant. Totally true!",
"created": "2015-12-26T16:39:00.000Z",
"place": null,
"tags": [
{
"id": "10153523724641737",
"length": 10,
"name": "Sammy Soto",
"offset": 26,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "a953d988b46005ef70d0141c475366c67c5e1076"
}
],
"isMod": false,
"command": null,
"version": "0a0a902fabbdb860a904c43627baf1baf6f018ba"
},
{
"id": "1169316306457186",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10206126088044612",
"fromName": "Anonymous",
"type": "comment",
"message": "^ Shots fired.",
"created": "2015-12-26T11:47:38.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "e0c9719d1cdf7d45144ab274a27a263e39f9a5f7"
},
{
"id": "1169316499790500",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "I don't think you should badmouth and list names of the boss and company you work for. It looks really bad and you are just creating a bad name for yourself in the tech industry for being a spiller.",
"created": "2015-12-26T11:48:56.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "f97c288c247d7f1ae7c5e9a247371f42fc7b0b74"
},
{
"id": "1169319473123536",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10153092133185480",
"fromName": "Anonymous",
"type": "comment",
"message": "Spelling and grammatical issues notwithstanding, I don't think this is the way to approach the bad experiences you've had. While I appreciate the candor, it isn't right to list names. If the companies are as bad as you say they are, those in the industry will recognise them without your explicit mention. I fear this will hurt you more than your intended targets, as no one - including me - will be willing to work with you for this reason. It might be better instead for you to have focused on the things you learned and how you've moved forward since then.",
"created": "2015-12-26T12:03:34.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "4a93a097e2175ba19af707122c5c9f0fd9e5be62"
},
{
"id": "1169323989789751",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10155268730480241",
"fromName": "Anonymous",
"type": "comment",
"message": "John I understand.",
"created": "2015-12-26T12:19:18.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169324473123036",
"level": 1,
"group": "759985267390294",
"parent": "1169323989789751",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Good to hear Ethan Keiser! :-)",
"created": "2015-12-26T12:21:37.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "09592638f888659edd2f7361a37371fafb44b54a"
}
],
"isMod": false,
"command": null,
"version": "f4bca90842e09f2b2fcfe1a6827bee85eab9ace1"
},
{
"id": "1169324083123075",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Matt Mokary Honestly, cheers man for the honest comment! I feel as though my life is getting brutal feedback, adjusting, and bettering myself from there.\n\nI've been doing this company for 12 months now, with solid momentum. I absolutely fucking love it, the industry, and the goal behind it.\n\nThis post was very blunt, because it's how I feel it should be. I'd love to mention passion a ton of times, but that's really what's wrong with the tech industry, too many people talking shit about \"making the world a better place\".\n\nI will indeed be making the lives of my customers significantly better through out product. So that is what I will do, and what I will focus on. Not talking b.s. around it.\n\nIf it came off as if I am in this for money—you either misread it—or I failed to articulate it properly. I got into this because I had been taking Nootropics for over two years, and really feel passionate about letting the world know about them.\n\nI mentioned time and time again, after 4 years, I've not made a cent and still love doing it. I want to make that clear :-)\n\nIvan Teong Hrishi Olickel Thanks for your comments too guys. However, I'm going to have to completely disagree with you both here.\n\nSure, if I wanted to be an employee my whole life, this would be a bad move. But I am a founder, and it's what I will always strive toward being.\n\nStaying quiet, and not exposing these kinds of people makes you weak, and it's in no way commendable. It's cowardly.\n\nBecause think of how many more lives they're going to affect negatively if they continue? I don't want others to have to go through what I did.\n\nJulian Assange, Edward Snowden and Aaron Swartz all gave themselves a \"bad name\" to many. To others, they are heroes, because they did the right thing, and pointed out the corruption that is occurring.\n\nIt's a necessary evil—having to expose people by name—for the greater good. I 1,000% stand behind it, as I believe in transparency, doing the right thing by others, and not encouraging greed and corruption.\n\nIf you think I am wrong by doing that, then you're free to :-)",
"created": "2015-12-26T12:19:59.000Z",
"place": null,
"tags": [
{
"id": "10205385848797262",
"name": "Matt Mokary",
"type": "user",
"offset": 0,
"length": 11
},
{
"id": "10154031118493912",
"name": "Ivan Teong",
"type": "user",
"offset": 1073,
"length": 10
}
],
"link": null,
"comments": [
{
"id": "1169324463123037",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "Would you want to work with someone who will potentially tell everyone what you did at the company? Be careful you might get into legal trouble here for spilling the beans too.",
"created": "2015-12-26T12:21:35.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "dfa9c9dc79d6993e4f67f36984e407da5d70c88f"
},
{
"id": "1169324946456322",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Ivan Teong Absolutely! If I was fucking clients over, fucking my staff over, doing shady things, and capitalising off of it all for selfish reasons, then I deserve to be called out.\n\nPeople sit by and let people get away with all this stuff, because they're too afraid of what might happen if they post about it.\n\nLet them try. I do not care. I simply care about doing the right thing, not doing what is PC, or will keep me out of trouble.",
"created": "2015-12-26T12:23:44.000Z",
"place": null,
"tags": [
{
"id": "10154031118493912",
"length": 10,
"name": "Ivan Teong",
"offset": 0,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "6b702ad082d1da7e80558991c13895e4ec01c468"
},
{
"id": "1169326553122828",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "Look, you may think you are a hero, but it doesn't benefit you in any way. Take all this as experience, move on and apply what you learnt in your next venture. The smartest people who always get what they want never let others know what is going on in their minds - I'm learning that and I think you should too.",
"created": "2015-12-26T12:30:03.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "28f455584f2bbdaadeb94c62b161e734b238bdb2"
},
{
"id": "1169327733122710",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "I don't think I am a hero at all. I don't want to be a hero. I want to focus on my startup.\n\nI honestly cannot believe that people are so resistant to literally telling the truth, and doing the right thing? How can you logically justify that, seriously? Tell me EXACTLY what your rationale is, other than potentially ruining ones reputation and \"damaging their image\". Go ahead, I am all ears Ivan Teong",
"created": "2015-12-26T12:32:52.000Z",
"place": null,
"tags": [
{
"id": "10154031118493912",
"length": 10,
"name": "Ivan Teong",
"offset": 393,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "b8bc115372359092bdfe0b9efbbc469957fb5280"
},
{
"id": "1169328396455977",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "If you want to focus on your startup, do something productive and focus on your startup rather than ruining your profile in the startup world with a one-sided story. Nobody wants to hear how ill-treated you are or how bad others are, they only want to know what good things you learnt which can help them at their startups.",
"created": "2015-12-26T12:35:19.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "39fbb0347c53dd8c6661123ac9fe11aa17627508"
},
{
"id": "1169328739789276",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "Gabriel this is nothing to do with Chinese or not. Dont be silly and keep your racist comments to yourself.",
"created": "2015-12-26T12:36:43.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "8737f97b1cbd21dd7a196bcac664f4c6dbdb83df"
},
{
"id": "1169329236455893",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "How wise. So one person's word is the truth. Enough said.",
"created": "2015-12-26T12:38:29.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "2feee59e0b7c622948970d11e327415b35332ec7"
},
{
"id": "1169329549789195",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Ivan Teong You're completely wrong! People do want to hear it. There would not be fucking riots and protests if people did not want to hear this stuff.\n\nSure it's currently one-sides, but it's an open platform, so they can feel free to comment and share their views. I welcome it! After all, I am about transparency.\n\nThe fact that you would keep quite, and say nothing Ivan goes to show that you're part of the 99% who will sit in a corner and cower, and let others walk all over them.\n\nAgain, you keep talking of this \"professional and startup reputation\". If others in the community despise this, then I do not care at all. I am doing me. I am talking the truth. I am doing what is right.\n\nYou still have not presented** a single valid reason other than reputation to not do this.",
"created": "2015-12-26T12:39:46.000Z",
"place": null,
"tags": [
{
"id": "10154031118493912",
"length": 10,
"name": "Ivan Teong",
"offset": 0,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "46b9d927432fe39bf196f73882cb62aeb66e948d"
},
{
"id": "1169329569789193",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "And we resort to vulgarities when we cannot stand up for ourselves. Interesting.",
"created": "2015-12-26T12:39:48.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "27b3c25a7724bf230b5088ddada9e558589a71de"
},
{
"id": "1169329823122501",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "Btw you are very \"well travelled\". Just because I'm chinese doesnt mean im from china. There is something called immigration.",
"created": "2015-12-26T12:40:46.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "ae496d1ffb90b538d2de128172619d582c1b66da"
},
{
"id": "1169410396447777",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10152932819785289",
"fromName": "Anonymous",
"type": "comment",
"message": "Gabriel Laddel Yeah here's a recent highlight from European culture http://www.amazon.com/Second-World-War-Complete-History/dp/0805076239/ref=sr_1_3?s=books&ie=UTF8&qid=1451144362&sr=1-3&keywords=world+war+2+history",
"created": "2015-12-26T15:41:25.000Z",
"place": null,
"tags": [
{
"id": "845199118905742",
"length": 14,
"name": "Gabriel Laddel",
"offset": 0,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "4b19c21f035c7e6e9abecc5d3d33abdb0b627595"
},
{
"id": "1169432026445614",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10204421899051834",
"fromName": "Anonymous",
"type": "comment",
"message": "John, reputation is everything. Having a good reputation means that others will be willing to trust and work with you. Having a bad one means that they'll skip over to the next \"big idea\". Sorry, but in the wide focus of things, good reputation is one of the best things you can have.",
"created": "2015-12-26T16:44:58.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "f97a3e736571528f9daec1d3972224648cd59066"
},
{
"id": "1169434596445357",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "The point is, that if you think this is the kind of thing that will give me a bad reputation, you're mistaking. Well, somewhat. I WANT it to give me a bad reputation amongst the people who would not like this, as they're the types I'd never do business with myself, as our values do not align.\n\nThis acts as a filter.\n\nOther people in the game, who highly value doing things right by others, transparency and openness should not see this as negative.\n\nSo it's not actually a factor for me in terms of reputation loss, more of a benefit, as it will mean avoiding corrupt people.\n\nI hope that makes sense... :-)",
"created": "2015-12-26T16:49:12.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "96fb83a3dac5b2b72326dd9177aa5a74c695eec2"
},
{
"id": "1169435176445299",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10204421899051834",
"fromName": "Anonymous",
"type": "comment",
"message": "What you did was unprofessional at best, so if you're seeking unprofessional people as well, be my guest. You won't find yourself getting anywhere with a superiority complex and a bad attitude.",
"created": "2015-12-26T16:51:21.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "132d0382c9b3789a187bb63f7ac42229d6e33eac"
},
{
"id": "1169435796445237",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "A worse attitude is being a coward and letting corrupt people continue doing what they do. THAT is unprofessional, as you're literally letting other people that will work with them in the future fall into the trap, which is utterly selfish.\n\nDon't convince yourself that being PC is professional. Maybe to your and many others standards—but think about it logically—it's not the case",
"created": "2015-12-26T16:53:51.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "2eaddb973d53a9d4d3ab75b7b346442e1aa41be6"
},
{
"id": "1169443499777800",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10204421899051834",
"fromName": "Anonymous",
"type": "comment",
"message": "It's not being \"PC\" it's respecting people. Treating people with respect, even those you disagree with, will never hurt you.",
"created": "2015-12-26T17:15:15.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "d80149686f115dfe1d7e1a330ee4f6dfe2921408"
},
{
"id": "1169445326444284",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "I am all for treating people with respect! But those who treat me with none will get none in return. That's fair, as it's a proportionate amount of returned-respect. Don't you agree?",
"created": "2015-12-26T17:18:06.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "997ad2f96c18c70f60cc675f5d2e69ca5cef9f82"
},
{
"id": "1169448853110598",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10204421899051834",
"fromName": "Anonymous",
"type": "comment",
"message": "No, I don't, actually. Publishing private conversations, most likely without the consent of the other party/parties, is immoral and juvenile. You could easily have used this article to talk about valuable lessons you had learned through this experience rather than agressively attacking and slandering others /by name/. It's a very callow way of handling this situation, don't you agree?",
"created": "2015-12-26T17:27:17.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "9fd549731ab4c6dd6261823ec7127f9cf1767c7a"
},
{
"id": "1169453233110160",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Sure the private conversation thing is a catch-22, of course I'll admit that's a moral dilemma. Like Snowden being prosecuted for exposing illegal activities from the NSA. Sure, it's illegal for him to publicly share classified documents, but it's also illegal for the company in question to be doing those sorts of activities.\n\nIMO, if you break *technicalities* in order to serve a greater good, you're providing a lot more value to others than you otherwise would have. If I did not do this, I'd be the only one walking away with lessons-learned. \n\nWhat if I could prevent tens, or hundreds of people from wasting time they can't get back, by avoiding these people in the first place? That's significantly more valuable. The regard you're presenting it in is selfish.\n\nIn these two examples anyway. This OFC does not apply to every situation.\n\nSo to be very clear, forget about b.s. technicalities. Stop basing your argument on a fallacy / technicality, because when you REALLY get down to it (in this case, let's just stick to), it's more morally correct to expose these harmful people (while immorally showing private messages), than it is to leave it be.\n\nThat's how I see it anyway. You cannot be 100% correct. But, you can most certainly be MORE correct by making one decision over the other.",
"created": "2015-12-26T17:40:16.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "e8f9aaac94cadc9eba7695dd7143a8b4f76ab479"
},
{
"id": "1169455013109982",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10204421899051834",
"fromName": "Anonymous",
"type": "comment",
"message": "No, you're acting like you've got some moral authority for posting these conversations to meet your own selfish ends of \"exposing\" those you think did you wrong. Don't try to act like you have the high ground here. What you did was immature and reprehensible, as pretty much all of the other people on this post have pointed out.",
"created": "2015-12-26T17:45:08.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "04176a5a5bde6fecb7991386b580f21349550e68"
},
{
"id": "1169455916443225",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Yeah apart from the one other person who was an actual founder who knows what they're talking about. You're not even responding with any logic, only repeating what you said earlier, which was a false argument.\n\nHow the fuck do you conclude this is for my \"selfish ends\" anyway? Literally the WHOLE point of this is so that other people (future employees, clients, business associated etc.) avoid the same situation.\n\nThe post being public in and of itself PROVES that. If this were selfish, I would have kept it all to myself, and moved on. Just to help myself. That is painfully obvious. If you don't realise that, there's not point continuing to debate here.\n\nBut if you do acknowledge that I am doing this for reasons other than selfish ones, give me last comment a proper response, as you did not do so above.",
"created": "2015-12-26T17:48:56.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "e4c3316df09288a1c0ded4aebcbc30624b1e15c6"
},
{
"id": "1169458019776348",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "10204421899051834",
"fromName": "Anonymous",
"type": "comment",
"message": "I don't though. You doing it to attack people for doing you wrong, while simultaneously trying to explain away where you did wrong, both in your article and here.",
"created": "2015-12-26T17:54:36.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "9e975260fd2a84320ede000001d2b11d60ea29b0"
},
{
"id": "1169460623109421",
"level": 1,
"group": "759985267390294",
"parent": "1169324083123075",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "I very openly admitted my many shortfalls, comprehensively, in that post. If there's not a proportionate amount of mentions in regards to where I did wrong, then I'd be more than happy to add more (though, I think the current amount is sufficient). I fucked up a ton, I really want that to be clear.\n\nI can't argue that it's a doubled-edged sword, but it's not binary, whereby it's either completely right, or completely wrong, which is how everyone looks at these situations.\n\nNo hard feelings here also Jen Platt, it's good being taken to this point. As I too should be held to the same standards, and called out. Otherwise, I'm no better.",
"created": "2015-12-26T17:58:47.000Z",
"place": null,
"tags": [
{
"id": "10204421899051834",
"length": 9,
"name": "Jen Platt",
"offset": 505,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "7df013014e5c51fce899be85ba1afe73953ca779"
}
],
"isMod": false,
"command": null,
"version": "df9b9e6dacb2b52ddb95fd93717ac1b8a4e1aef0"
},
{
"id": "1169346969787453",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10152799372873751",
"fromName": "Anonymous",
"type": "comment",
"message": "hyphens in weird-places",
"created": "2015-12-26T13:32:27.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169347156454101",
"level": 1,
"group": "759985267390294",
"parent": "1169346969787453",
"from": "10154031118493912",
"fromName": "Anonymous",
"type": "comment",
"message": "Lol random",
"created": "2015-12-26T13:33:11.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "e94c178cdce31814e62141825b9fc1f386873bad"
},
{
"id": "1169347216454095",
"level": 1,
"group": "759985267390294",
"parent": "1169346969787453",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "I didn't write it to be politically or grammatically correct, I wrote it to tell the truth :-) Well aware I'm no grammar master",
"created": "2015-12-26T13:33:25.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "80e794b32957be667d787d7628d280fc9a6850ba"
},
{
"id": "1169347426454074",
"level": 1,
"group": "759985267390294",
"parent": "1169346969787453",
"from": "10152799372873751",
"fromName": "Anonymous",
"type": "comment",
"message": "John Mitchell I'm just having some fun :) I appreciate your honesty in this article",
"created": "2015-12-26T13:33:59.000Z",
"place": null,
"tags": [
{
"id": "420641488094192",
"length": 13,
"name": "John Mitchell",
"offset": 0,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "725b74e390d9cd1121b1ef84ac02c18475ab2aca"
},
{
"id": "1169347493120734",
"level": 1,
"group": "759985267390294",
"parent": "1169346969787453",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Ha ha thank you Li Xuanji :-)",
"created": "2015-12-26T13:34:20.000Z",
"place": null,
"tags": [
{
"id": "10152799372873751",
"length": 9,
"name": "Li Xuanji",
"offset": 16,
"type": "user"
}
],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "cc33682fd805341549be636ee05a590e5705612c"
},
{
"id": "1169397329782417",
"level": 1,
"group": "759985267390294",
"parent": "1169346969787453",
"from": "10204600743768789",
"fromName": "Anonymous",
"type": "comment",
"message": "those are essentially gramerically correct. I know what you mean though hypens always make me doubletake which is good in some ways",
"created": "2015-12-26T15:23:47.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "95323391d1bb62ca808461216f9ed11d9aef30d8"
}
],
"isMod": false,
"command": null,
"version": "ca5c69b9a3de76e681b6372d49cb8cb49f516adf"
},
{
"id": "1169397993115684",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "858668297535388",
"fromName": "Anonymous",
"type": "comment",
"message": "Diode. Interesting read.",
"created": "2015-12-26T15:26:02.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169399503115533",
"level": 1,
"group": "759985267390294",
"parent": "1169397993115684",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Thanks!",
"created": "2015-12-26T15:30:13.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "b28e9e102df1bb1d783802bd83db6c1612ad6cdf"
}
],
"isMod": false,
"command": null,
"version": "8d4855b9c01c9c34fdaf85233c53dada6273c17e"
},
{
"id": "1169414339780716",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10153628977782474",
"fromName": "Anonymous",
"type": "comment",
"message": "This is what happens when you take the entrepreneurial road with no proper leadership or teamwork training.\nThere is an old saying: “You wash your dirty laundry at home”. Now I understand you might be frustrated, every entrepreneur go through their own tough times and other bullsh*t. Like someone already commented, it is best to learn your lesson, and move on. Failing a few times is not a sin if you manage to get back, try hard till you succeed. You should expect to deal and meet all kind of people. This is not a perfect world. The fact that you copy private conversations with names and stuff on an article with no clear point prove that you are not ready for the business world. You may be a great programmer, but not business savvy at all. Take it from someone with a degree in international business, heavy training courses in Entrepreneurship, management etc. before I became a Computer Science related major. This speaks poorly of your personality, management skill and ability to work with people. I would not work with you either. If you are wise, and just realize you were either very angry or under the influence when you wrote that crap, swallow your pride and delete it. You will thank me later. This is my one (1) comment. I won’t make this an endless senseless conversation. I got other important things to do. Happy Holidays!",
"created": "2015-12-26T15:52:48.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169417603113723",
"level": 1,
"group": "759985267390294",
"parent": "1169414339780716",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Hey Marie thanks for the comment! As always, feedback like this is good :-)\n\nYour \"qualifications\" mean nothing to me, and gives your comment no extra weight either. You must not have properly read a significant amount of the post—because if you did—a lot of what you mentioned would not have been written (as it's not applicable).\n\nThere's been 100s of other failures I've experienced over the last 4 years. In both 2013 and 2014 I posted reviews (you can see them on my Medium). They did not call anyone out, and they were purely reflections.\n\nI don't know what your definition of \"ready\" is, but I've been in this game, and played significant roles for 4 years now. It's not a fact of being \"ready\", it's a fact of stepping the fuck up, failing, trying again, failing, trying again, and persisting** on until something good comes out of it. You're making a lot of assumptions.\n\nThis time it's different, because these are not just failures in and of themselves. They're bigger. They're working with others in the space who have extremely bad intentions. I disagree with being a cowardly bystander and letting them go unnoticed. I want people to see them for who they really are, so that they can avoid them to begin with.\n\nIt's not about pride. It's about doing what is right, and calling people out when necessary. If I were treating everyone at our company poorly, I WANT people to call me out on it, so that I can adjust my attitude, improve how I treat others, and do a better job in general.\n\nNo hate by the way—your feedback is really welcomed—as getting a range of perspectives from people helps me to learn, so thanks for taking the time to do so :-)",
"created": "2015-12-26T16:02:47.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "b21907057ec87d7a4875c623cdca03503ac71314"
}
],
"isMod": false,
"command": null,
"version": "f9c5796743f348ec87500390b34c0a6b060ddfa3"
},
{
"id": "1169421706446646",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "962921323719842",
"fromName": "Anonymous",
"type": "comment",
"message": "Hey John, can I ask you a couple of questions in PM? Thanks",
"created": "2015-12-26T16:12:50.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169421943113289",
"level": 1,
"group": "759985267390294",
"parent": "1169421706446646",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "You're more than welcome to ask them here (as I am fine with anything being public). Otherwise, PM works fine! :-)",
"created": "2015-12-26T16:13:35.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "21870c1f9aa610c98a6366466bbc31e9a5c9b95a"
},
{
"id": "1169466999775450",
"level": 1,
"group": "759985267390294",
"parent": "1169421706446646",
"from": "962921323719842",
"fromName": "Anonymous",
"type": "comment",
"message": "PMed you",
"created": "2015-12-26T18:22:35.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "fac2a19304f0ed6740639bfe7ecd035ae822cd02"
}
],
"isMod": false,
"command": null,
"version": "bfeee5a7c9ef2c2a3d6e05e5b2c15b2ab4ccc5df"
},
{
"id": "1169430789779071",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "FYI to everyone, I've made it very clear to the people mention that they can feel-free to (honestly) respond to this. I welcome it, as no one should just believe me by default: http://b3.ms/YxpM1gm7AgK3\n\nI want to point that out, as I by no means have spun this post.\n\nEdit:** This comment can be found at the bottom of the post :-)",
"created": "2015-12-26T16:41:25.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "817d9abbd4dcc3c90f3169f4cf500b55dbc86ddf"
},
{
"id": "1169461659775984",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "1105423419481776",
"fromName": "Anonymous",
"type": "comment",
"message": "If there's anything I've taken away from this article and comment section, it's that I would never want to work at a startup that John Mitchell is involved in. It's blatantly obviously that he can't take constructive criticism, seeing as how he is resorting to swearing and angrily attacking others when they tell the truth (the truth being the article is inappropriate). Professionalism, respect, and character in the workplace will take you far, learn this.",
"created": "2015-12-26T18:02:31.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [
{
"id": "1169463086442508",
"level": 1,
"group": "759985267390294",
"parent": "1169461659775984",
"from": "420641488094192",
"fromName": "Anonymous",
"type": "comment",
"message": "Cole, thanks for the comment!\n\nThat's your call. If you'd never want to work with me, then obviously our values do not align. Which means I'd never want to work with you, as it would not be a good fit...\n\nI've been responding to all of the comments, and replying as rationally as I can. If you REALLY think I cannot take constructive criticise, please point out exactly how I can't take it, and I'll change my approach here. As I don't want to be that guy, truly.\n\nIt's inappropriate to some, not others. Just a question (not an attack :-) ) have you personally gone through this experience, or founded a company of your own?\n\nI respect people when I am respected, and if you jump on my Facebook page and see the comments from colleagues (all of whom I have a professional relationship with), you'll see that I am fine in that regard.\n\nAnyway, keen to hear your thoughts man! I'm not here to attack people.",
"created": "2015-12-26T18:07:35.000Z",
"place": null,
"tags": [],
"link": null,
"comments": [],
"isMod": false,
"command": null,
"version": "170e07ea7200bf094a5555866c0005c75ab39b42"
}
],
"isMod": false,
"command": null,
"version": "63b87e750f7f8418cefa5ab9c64db2e4ae60518e"
},
{
"id": "1169467429775407",
"level": 1,
"group": "759985267390294",
"parent": "759985267390294_1169305149791635",
"from": "10205329130164690",
"fromName": "Hallie Lomax",
"type": "comment",
"message": "/delete for public shaming",
"created": "2015-12-26T18:24:23.000Z",
"place": null,