-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHaekuh_05_01_2020.html
1747 lines (1267 loc) · 69 KB
/
Haekuh_05_01_2020.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Programmer's Hangout - Haekuh Q&A - May 1st, 2020</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<style>
/* General */
@font-face {
font-family: Whitney;
src: url(https://discordapp.com/assets/6c6374bad0b0b6d204d8d6dc4a18d820.woff);
font-weight: 300;
}
@font-face {
font-family: Whitney;
src: url(https://discordapp.com/assets/e8acd7d9bf6207f99350ca9f9e23b168.woff);
font-weight: 400;
}
@font-face {
font-family: Whitney;
src: url(https://discordapp.com/assets/3bdef1251a424500c1b3a78dea9b7e57.woff);
font-weight: 500;
}
@font-face {
font-family: Whitney;
src: url(https://discordapp.com/assets/be0060dafb7a0e31d2a1ca17c0708636.woff);
font-weight: 600;
}
@font-face {
font-family: Whitney;
src: url(https://discordapp.com/assets/8e12fb4f14d9c4592eb8ec9f22337b04.woff);
font-weight: 700;
}
body {
font-family: "Whitney", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 17px;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
object-fit: contain;
}
.markdown {
white-space: pre-wrap;
line-height: 1.3;
overflow-wrap: break-word;
}
.spoiler {
border-radius: 3px;
}
.quote {
margin: 0.5em 0;
padding-left: 0.6em;
border-left: 4px solid;
border-radius: 3px;
}
.pre {
font-family: "Consolas", "Courier New", Courier, monospace;
}
.pre--multiline {
margin-top: 0.25em;
padding: 0.5em;
border: 2px solid;
border-radius: 5px;
}
.pre--inline {
padding: 2px;
border-radius: 3px;
font-size: 0.85em;
}
.mention {
border-radius: 3px;
padding: 0 2px;
color: #7289da;
background: rgba(114, 137, 218, .1);
font-weight: 500;
}
.emoji {
width: 1.25em;
height: 1.25em;
margin: 0 0.06em;
vertical-align: -0.4em;
}
.emoji--small {
width: 1em;
height: 1em;
}
.emoji--large {
width: 2.8em;
height: 2.8em;
}
/* Preamble */
.preamble {
display: grid;
margin: 0 0.3em 0.6em 0.3em;
max-width: 100%;
grid-template-columns: auto 1fr;
}
.preamble__guild-icon-container {
grid-column: 1;
}
.preamble__guild-icon {
max-width: 88px;
max-height: 88px;
}
.preamble__entries-container {
grid-column: 2;
margin-left: 0.6em;
}
.preamble__entry {
font-size: 1.4em;
}
.preamble__entry--small {
font-size: 1em;
}
/* Chatlog */
.chatlog {
max-width: 100%;
}
.chatlog__message-group {
display: grid;
margin: 0 0.6em;
padding: 0.9em 0;
border-top: 1px solid;
grid-template-columns: auto 1fr;
}
.chatlog__author-avatar-container {
grid-column: 1;
width: 40px;
height: 40px;
}
.chatlog__author-avatar {
border-radius: 50%;
height: 40px;
width: 40px;
}
.chatlog__messages {
grid-column: 2;
margin-left: 1.2em;
min-width: 50%;
}
.chatlog__author-name {
font-weight: 500;
}
.chatlog__timestamp {
margin-left: 0.3em;
font-size: 0.75em;
}
.chatlog__message {
padding: 0.1em 0.3em;
margin: 0 -0.3em;
background-color: transparent;
transition: background-color 1s ease;
}
.chatlog__content {
font-size: 0.95em;
word-wrap: break-word;
}
.chatlog__edited-timestamp {
margin-left: 0.15em;
font-size: 0.8em;
}
.chatlog__attachment-thumbnail {
margin-top: 0.3em;
max-width: 50%;
max-height: 500px;
border-radius: 3px;
}
.chatlog__embed {
display: flex;
margin-top: 0.3em;
max-width: 520px;
}
.chatlog__embed-color-pill {
flex-shrink: 0;
width: 0.25em;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.chatlog__embed-content-container {
display: flex;
flex-direction: column;
padding: 0.5em 0.6em;
border: 1px solid;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.chatlog__embed-content {
display: flex;
width: 100%;
}
.chatlog__embed-text {
flex: 1;
}
.chatlog__embed-author {
display: flex;
margin-bottom: 0.3em;
align-items: center;
}
.chatlog__embed-author-icon {
margin-right: 0.5em;
width: 20px;
height: 20px;
border-radius: 50%;
}
.chatlog__embed-author-name {
font-size: 0.875em;
font-weight: 600;
}
.chatlog__embed-title {
margin-bottom: 0.2em;
font-size: 0.875em;
font-weight: 600;
}
.chatlog__embed-description {
font-weight: 500;
font-size: 0.85em;
}
.chatlog__embed-fields {
display: flex;
flex-wrap: wrap;
}
.chatlog__embed-field {
flex: 0;
min-width: 100%;
max-width: 506px;
padding-top: 0.6em;
font-size: 0.875em;
}
.chatlog__embed-field--inline {
flex: 1;
flex-basis: auto;
min-width: 150px;
}
.chatlog__embed-field-name {
margin-bottom: 0.2em;
font-weight: 600;
}
.chatlog__embed-field-value {
font-weight: 500;
}
.chatlog__embed-thumbnail {
flex: 0;
margin-left: 1.2em;
max-width: 80px;
max-height: 80px;
border-radius: 3px;
}
.chatlog__embed-image-container {
margin-top: 0.6em;
}
.chatlog__embed-image {
max-width: 500px;
max-height: 400px;
border-radius: 3px;
}
.chatlog__embed-footer {
margin-top: 0.6em;
}
.chatlog__embed-footer-icon {
margin-right: 0.2em;
width: 20px;
height: 20px;
border-radius: 50%;
vertical-align: middle;
}
.chatlog__embed-footer-text {
font-size: 0.75em;
font-weight: 500;
}
.chatlog__reactions {
display: flex;
}
.chatlog__reaction {
display: flex;
align-items: center;
margin: 0.35em 0.1em 0.1em 0.1em;
padding: 0.2em 0.35em;
border-radius: 3px;
}
.chatlog__reaction-count {
min-width: 9px;
margin-left: 0.35em;
font-size: 0.875em;
}
.chatlog__bot-tag {
position: relative;
top: -.2em;
margin-left: 0.3em;
padding: 0.05em 0.3em;
border-radius: 3px;
vertical-align: middle;
line-height: 1.3;
background: #7289da;
color: #ffffff;
font-size: 0.625em;
font-weight: 500;
}
/* Postamble */
.postamble {
margin: 1.4em 0.3em 0.6em 0.3em;
padding: 1em;
border-top: 1px solid;
}
</style>
<style>
/* General */
body {
background-color: #36393e;
color: #dcddde;
}
a {
color: #0096cf;
}
.spoiler {
background-color: rgba(255, 255, 255, 0.1);
}
.quote {
border-color: #4f545c;
}
.pre {
background-color: #2f3136 !important;
}
.pre--multiline {
border-color: #282b30 !important;
color: #b9bbbe !important;
}
/* === Preamble === */
.preamble__entry {
color: #ffffff;
}
/* Chatlog */
.chatlog__message-group {
border-color: rgba(255, 255, 255, 0.1);
}
.chatlog__author-name {
color: #ffffff;
}
.chatlog__timestamp {
color: rgba(255, 255, 255, 0.2);
}
.chatlog__message--highlighted {
background-color: rgba(114, 137, 218, 0.2) !important;
}
.chatlog__message--pinned {
background-color: rgba(249, 168, 37, 0.05);
}
.chatlog__edited-timestamp {
color: rgba(255, 255, 255, 0.2);
}
.chatlog__embed-color-pill--default {
background-color: rgba(79, 84, 92, 1);
}
.chatlog__embed-content-container {
background-color: rgba(46, 48, 54, 0.3);
border-color: rgba(46, 48, 54, 0.6);
}
.chatlog__embed-author-name {
color: #ffffff;
}
.chatlog__embed-author-name-link {
color: #ffffff;
}
.chatlog__embed-title {
color: #ffffff;
}
.chatlog__embed-description {
color: rgba(255, 255, 255, 0.6);
}
.chatlog__embed-field-name {
color: #ffffff;
}
.chatlog__embed-field-value {
color: rgba(255, 255, 255, 0.6);
}
.chatlog__embed-footer {
color: rgba(255, 255, 255, 0.6);
}
.chatlog__reaction {
background-color: rgba(255, 255, 255, 0.05);
}
.chatlog__reaction-count {
color: rgba(255, 255, 255, 0.3);
}
/* Postamble */
.postamble {
border-color: rgba(255, 255, 255, 0.1);
}
.postamble__entry {
color: #ffffff;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/solarized-dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('.pre--multiline').forEach(block => hljs.highlightBlock(block));
});
</script>
<script>
function scrollToMessage(event, id) {
var element = document.getElementById('message-' + id);
if (element) {
event.preventDefault();
element.classList.add('chatlog__message--highlighted');
window.scrollTo({
top: element.getBoundingClientRect().top - document.body.getBoundingClientRect().top - (window.innerHeight / 2),
behavior: 'smooth'
});
window.setTimeout(function() {
element.classList.remove('chatlog__message--highlighted');
}, 2000);
}
}
</script>
</head>
<body>
<div class="preamble">
<div class="preamble__guild-icon-container">
<img class="preamble__guild-icon" src="https://cdn.discordapp.com/icons/244230771232079873/a_34da0ee46c9ed9799a636a976c896361.png" alt="Guild icon" />
</div>
<div class="preamble__entries-container">
<div class="preamble__entry">The Programmer's Hangout</div>
<div class="preamble__entry">Haekuh Q&A - May 1st, 2020</div>
</div>
</div>
<div class="chatlog">
<div class="chatlog__message-group">
<div class="chatlog__author-avatar-container">
<img class="chatlog__author-avatar" src="https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png" alt="Avatar" />
</div>
<div class="chatlog__messages">
<span class="chatlog__author-name" title="Nano#8992" data-user-id="429275180309807134" style="color: #E91E63">Nano</span>
<span class="chatlog__bot-tag">BOT</span>
<span class="chatlog__timestamp">02-May-20 02:21 AM</span>
<div class="chatlog__message " data-message-id="705952025451429899" id="message-705952025451429899">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering Zenohm's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> When doing the behavioral portion of the interview, what are you looking for in an applicant. What would be a red flag, what would be a flag to move forward, etc?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/150799801368313858/8359d688b7bce0e0389c5f0b8f4ed1ca.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Zenohm
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">2</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705952026181238885" id="message-705952026181238885">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> During the behavioral portion amazon is looking for specific qualities related to the 12 leadership principles. There really are no red flags other than illegal, or inflammatory behavior. In general its about trying to get a good idea about your attitude, and company fit.</span>
</div>
</div>
<div class="chatlog__message " data-message-id="705952281614614600" id="message-705952281614614600">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering trashGitUser's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> you said that there will be four people interviewing you at the same time, is that always the case?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/579316829638361109/e691a6eed52d1c3457f334da971cd97a.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by trashGitUser
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705952282692419584" id="message-705952282692419584">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> not <strong>always</strong>, but usually during an onsite interview that is for a non internship position you will have 4-5 interviewers.</span>
</div>
</div>
<div class="chatlog__message " data-message-id="705952941454131260" id="message-705952941454131260">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering shan's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> You mentioned the "resolve diagreement with a senior" needing a specific format at a place like amazon. Could you elaborate on the format?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/356260437567995914/347b4cf90b56fcdc223a4bec2afffec9.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by shan
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705952942272020490" id="message-705952942272020490">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> The format of the behavioral questions would be covered by your recruiter before the onsite interview process. The goal is to use a standard method for explaining a situation called STAR, and to demonstrate the amazon leadership principles in your response. All candidates get this information. <a href="https://www.amazon.jobs/en/principles">https://www.amazon.jobs/en/principles</a></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill chatlog__embed-color-pill--default"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<a class="chatlog__embed-title-link" href="https://www.amazon.jobs/en/principles"><span class="markdown">Amazon's global career site</span></a>
</div>
</div>
<div class="chatlog__embed-thumbnail-container">
<a class="chatlog__embed-thumbnail-link" href="https://static.amazon.jobs/global_images/2/images/Jobs_thumbnailV2.jpg?1554491962">
<img class="chatlog__embed-thumbnail" src="https://static.amazon.jobs/global_images/2/images/Jobs_thumbnailV2.jpg?1554491962" alt="Thumbnail" />
</a>
</div>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="👍" title="👍" src="https://twemoji.maxcdn.com/2/72x72/1f44d.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705953498449051708" id="message-705953498449051708">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering Nicholas's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> You mentioned that most people don't get to any working solution on that particular question, if that's the case do they get any more help/encouragement on the following questions?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/349122024129429524/68332eb30bda5c136a6e9068d9b93e03.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Nicholas
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">2</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705953498793246823" id="message-705953498793246823">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> Absolutely. I probably should have said this during the actual livestream, but the whole point of the interview is to see how you work and think as an engineer. I gain nothing by asking you a question you have absolutely no idea how to answer. It is no uncommon that I just switch questions if someone tells me they just have absolutely no idea how to solve the question. That being said there are still some things that you should know. Its a bit of a balancing act between asking general info, while still trying to ensure some level of standards.</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="👍" title="👍" src="https://twemoji.maxcdn.com/2/72x72/1f44d.png" />
<span class="chatlog__reaction-count">3</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705954819998875739" id="message-705954819998875739">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering Toby Larone's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> I think there will be a few people here that do not yet know about linked lists, nor their uses in the real world. Could you give a real world use case for this particular problem?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/227810440560902144/477e803cf500d080d99653b7d95213e6.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Toby Larone
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705954820430757899" id="message-705954820430757899">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> A semi real work example for a problem like this could involve needing to copy sub sections of graphs. IE I need to create a new graph out of all the children of a specific node. The goal though is not always to ask a real world question though. I have only ~30 minutes to get an accurate idea of a candidate.</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="👍" title="👍" src="https://twemoji.maxcdn.com/2/72x72/1f44d.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705955320475942973" id="message-705955320475942973">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering Sphexi's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> Was the amount of back and forth/guiding that you (Haekuh) did in this interview representative of what would happen in a real one, or would an interviewee be expected to ask the majority of the questions and work through the problem on their own?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/349994608165519363/79480dae4dd292d47ea76460895655dc.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Sphexi
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705955321172197417" id="message-705955321172197417">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> It was fairly accurate. In a real interview it would have been a little less hint giving and more talking about the problem. Most people feel like they cant talk to their interviewer, but that is not the case. Its a good sign when a candidate is talking out loud, asking questions to clarify any edge cases, and discussing the problem.</span>
</div>
</div>
<div class="chatlog__message " data-message-id="705955485748297738" id="message-705955485748297738">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering Po0ka's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> Generally, how prepared are your interviewed people when they attend one of your interview?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/209002718897897472/75e7b7c9bd5056346d6fcef29b93a1f4.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Po0ka
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705955485953818637" id="message-705955485953818637">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> I would say fairly prepared. I can't really guess though.</span>
</div>
</div>
<div class="chatlog__message " data-message-id="705955820369870928" id="message-705955820369870928">
<div class="chatlog__content">
<span class="markdown"></span>
</div>
<div class="chatlog__embed">
<div class="chatlog__embed-color-pill" style="background-color: rgba(255,0,255,1)"></div>
<div class="chatlog__embed-content-container">
<div class="chatlog__embed-content">
<div class="chatlog__embed-text">
<div class="chatlog__embed-title">
<span class="markdown">haekuh is answering Toby Larone's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> What's the biggest mistake you've made during your career? What did you learn from it?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/227810440560902144/477e803cf500d080d99653b7d95213e6.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Toby Larone
</span>
</div>
</div>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="⭐" title="⭐" src="https://twemoji.maxcdn.com/2/72x72/2b50.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="705955821183303710" id="message-705955821183303710">
<div class="chatlog__content">
<span class="markdown"><strong>haekuh:</strong> Big question. I am lucky to not have made too many mistakes. My biggest one was not being aggressive about internships during college, and being afraid to look bad. No one ever learned anything by being right all the time.</span>