-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLana_02_16_2020.html
More file actions
2424 lines (1799 loc) · 108 KB
/
Lana_02_16_2020.html
File metadata and controls
2424 lines (1799 loc) · 108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Programmer's Hangout - Lana Q&A - Feb 16th, 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">Lana Q&A - Feb 16th, 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">16-Feb-20 11:03 PM</span>
<div class="chatlog__message " data-message-id="678738231797219328" id="message-678738231797219328">
<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">Lana is answering Toby Larone's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> You said that you consider yourself a generalist. What do you do to keep your knowledge base wide and deep enough, whilst keeping on top of new topics?</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">2</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678738232258592814" id="message-678738232258592814">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> A lot of this comes from practical experience. You start by learning not just the direct piece of code that you're working, but those that connect to it, and then expand out. Be open to asking questions of other people (e.g., why did we choose to use X for this task? why did it suit us better than Y). Drawing on the knowledge of others is very valuable. There is also the occasional blog post and reddit browsing built in, but usually I'm keeping up with the technologies we have in place, and how we can add/best make use of those</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="💯" title="💯" src="https://twemoji.maxcdn.com/2/72x72/1f4af.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678738696257667100" id="message-678738696257667100">
<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">Lana is answering botus's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> What is the most valuable thing you've learned so far in your career?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/412540774694256640/b32cb9384302e745d75faee503c55431.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by botus
</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="678738696853258293" id="message-678738696853258293">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> To always be learning. Never be afraid of owning up to what you don't know. Once you're willing to do that, you are open to learning about it, and can gain that knowledge a lot quicker than trying to fudge it.</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="💯" title="💯" src="https://twemoji.maxcdn.com/2/72x72/1f4af.png" />
<span class="chatlog__reaction-count">9</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678739281799544902" id="message-678739281799544902">
<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">Lana is answering Elliott's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> In your mind, what's one of the most underrated soft skills in the programming industry?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/335628039302021121/a_30232e21b6efa0e86b0b107b56f0af71.gif" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Elliott
</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="678739282176770059" id="message-678739282176770059">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> Never underestimate the power of people skills, mostly communication, and using the knowledge/skills of others. For me, the 10x developer isn't the one that locks themselves in a room and pumps out code. The 10x developer is the one that notices department X and department Y are both building the same thing, and can then draw on the knowledge of the people involved in those projects, and coordinate them working together. Rather than duplicated effort from those teams you now have a single project, probably built better because it's drawn on the best of both teams.</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="💯" title="💯" src="https://twemoji.maxcdn.com/2/72x72/1f4af.png" />
<span class="chatlog__reaction-count">9</span>
</div>
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="😂" title="😂" src="https://twemoji.maxcdn.com/2/72x72/1f602.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678739733492400128" id="message-678739733492400128">
<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">Lana is answering Sey's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> How many career related books do you read in a year?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/185286961295130624/6b1e307e3653d8e08aaf47948a5db83f.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Sey
</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="678739734062694413" id="message-678739734062694413">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> I'm actually not a big book reader. I had to ditch my physical book collection when I went from Australia to US. Most of my career info comes from managers and others around me. Talking regularly to your manager or peers, and asking how you can do a better job. Also keeping up with tech interview skills by interviewing regularly (both as an interviewee and interviewer)</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="😂" title="😂" src="https://twemoji.maxcdn.com/2/72x72/1f602.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678740254529683476" id="message-678740254529683476">
<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">Lana is answering botus's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> How do you manage your work-life balance?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/412540774694256640/b32cb9384302e745d75faee503c55431.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by botus
</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="678740254794055701" id="message-678740254794055701">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> Quite simply, I don't force myself to do something if it's not fun. If I get home, and I don't feel like coding, then I don't. I'm also a big supporter of allowing work from home and flexible hours (it's surprising how refreshing it can be to skip the morning standup once in a while). Along with this the idea that you should evaluate someone by what their output is rather than time they spend in an office.</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">11</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678740691345473536" id="message-678740691345473536">
<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">Lana is answering Lgneous's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> What field do you work in and is there another that you would like to experience ?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/154552940680445952/a_fa827cd746e2b29f90f42e393d453c32.gif" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Lgneous
</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="678740691794526214" id="message-678740691794526214">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> The bulk of my work has been on payments, and now it's in fintech. The industry I work is a very low ranking factor in where I would choose to work. I tend to be someone where if you throw em an interesting technical challenge, I don't really care what industry it is in. So, there isn't really an industry I'd try to get into.</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="🤷♂️" title="🤷♂️" src="https://twemoji.maxcdn.com/2/72x72/1f937-200d-2642.png" />
<span class="chatlog__reaction-count">1</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678741085345939466" id="message-678741085345939466">
<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">Lana is answering Ping | Pong's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> What is the most challenging problem you've faced in your career?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/394574967448141826/e792a772055f043bb25952c705f283f3.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Ping | Pong
</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="678741085853581316" id="message-678741085853581316">
<div class="chatlog__content">
<span class="markdown"><strong>Lana:</strong> The most challenging problem has been starting a new position at a new workplace and being expected to be a senior technical figure. You enter a work place with a bunch of people who know more about what you're working on than you do, but there's an expectation that you'll be able to ramp up and become the person they come to for advice/guidance.</span>
</div>
<div class="chatlog__reactions">
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="🙂" title="🙂" src="https://twemoji.maxcdn.com/2/72x72/1f642.png" />
<span class="chatlog__reaction-count">12</span>
</div>
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="HR_RooWOW" title="HR_RooWOW" src="https://cdn.discordapp.com/emojis/594177649266524160.gif" />
<span class="chatlog__reaction-count">7</span>
</div>
<div class="chatlog__reaction">
<img class="emoji emoji--small" alt="👌" title="👌" src="https://twemoji.maxcdn.com/2/72x72/1f44c.png" />
<span class="chatlog__reaction-count">6</span>
</div>
</div>
</div>
<div class="chatlog__message " data-message-id="678741481288237066" id="message-678741481288237066">
<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">Lana is answering Shone's Question:</span>
</div>
<div class="chatlog__embed-description"><span class="markdown"><strong>Question:</strong> I've seen you a lot in <span class="mention">#career-advice</span> so which one advice would you give to a person looking to establish their career path?</span></div>
</div>
</div>
<div class="chatlog__embed-footer">
<img class="chatlog__embed-footer-icon" src="https://cdn.discordapp.com/avatars/394888774812958723/74263e9059f2d853dde83b7e4e28ee1c.png" alt="Footer icon" />
<span class="chatlog__embed-footer-text">
Asked by Shone
</span>
</div>
</div>