forked from Azure-Samples/Synapse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJeremyLiknessTweets.csv
We can't make this file beautiful and searchable because it's too large.
3981 lines (3981 loc) · 577 KB
/
JeremyLiknessTweets.csv
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
26/06/2020,14:35,jeremylikness,@duracellko Glad you like it!
26/06/2020,14:35,jeremylikness,"RT @JohnMarkHowell: Global Query Filters were introduced in Entity Framework 2.0 and, to me, is still one of the most understated features…"
26/06/2020,14:08,jeremylikness,@mistermag00 @MrAnthCool @lupusa1 ... maintain then I wouldn't change a thing. I'm not a fan of following a pattern… https://t.co/IWmDW9k4ul
26/06/2020,14:06,jeremylikness,@mistermag00 @MrAnthCool @lupusa1 I'm not trying to say it's either/or. I haven't looked at performance between the… https://t.co/EPawURngM3
26/06/2020,07:11,mistermag00,@MrAnthCool @jeremylikness @lupusa1 It's not. The dot net team like to push EventCallback as the 'right' way but th… https://t.co/84TxAtdWaI
26/06/2020,03:54,jeremylikness,"RT @smitpatel: Also coming in nightly build and in preview8, 'UseQuerySplittingBehavior' - context level API to configure single vs split q…"
26/06/2020,02:37,MrAnthCool,@mistermag00 @jeremylikness @lupusa1 I use StateHasChanged() in my component event handlers unashamedly. 😂 Why do… https://t.co/gQSGTp93ed
26/06/2020,01:31,lupusa1,@mistermag00 @jeremylikness I will add that row can be component itself and be updated locally not touching whole g… https://t.co/YyvZ4t71z0
26/06/2020,01:30,mistermag00,@jeremylikness @lupusa1 And use @ key on every row if you really care about performance
26/06/2020,01:08,jeremylikness,@jsnover ...and a 'message of the day.' Ah sweet Unix memories...
26/06/2020,01:04,jeremylikness,"@lupusa1 We'll see. On one hand, it's there for a reason. On the other, I think there may be an MVVM approach that… https://t.co/WLO8d9XoNC"
26/06/2020,01:15,lupusa1,"@jeremylikness Yep, it is there for a reason but I would love to know best practices how to use it. When I have som… https://t.co/5p5L9Lck0f"
26/06/2020,01:16,lupusa1,@jeremylikness I use events approach too to subscribe and re-render component when it is initiated by event source.… https://t.co/6iQppE16DA
26/06/2020,01:19,lupusa1,@jeremylikness I use eventcallbacks only if there is strong and clear parent-child relation between components whic… https://t.co/dKMcze9xVV
26/06/2020,01:26,mistermag00,"@jeremylikness @lupusa1 You need to be careful using eventcallback in a grid. Deleting a row is ok, but if you use… https://t.co/fmSnWKuvQ7"
26/06/2020,00:55,jeremylikness,@bketelsen @SeanTAllen Be well Brian.
26/06/2020,00:56,bketelsen,@jeremylikness @SeanTAllen ❤️
26/06/2020,01:00,TashasEv,"@jeremylikness @bketelsen @SeanTAllen Some folks send well wishes, but you had to step it up with a well command!… https://t.co/TJs8sAzgtA"
25/06/2020,23:28,jeremylikness,".NET big data lovers ... does this Spark your interest? ...I know, I know, couldn't resist. https://t.co/642l29d6fg"
25/06/2020,23:33,Janisku7,@jeremylikness I see what you did there
25/06/2020,23:53,zdanev,@jeremylikness it Sparks joy
25/06/2020,23:01,JulieBr33723357,How do you build a Blazor server on top of existing libraries with Azure authentication? Find out here #Blazor… https://t.co/uLaGuCxfHT
25/06/2020,19:55,esesci,"@jeremylikness @ajcvickers nevermind, this doesn't seem to be compatible with EF [Index] attribute. :)"
25/06/2020,17:36,jeremylikness,Announcing the release of #EntityFramework Core #EFCore 5.0 preview 6 Lots of community contributions! Features:… https://t.co/7xa9738dsJ
25/06/2020,19:53,esesci,@jeremylikness @ajcvickers NOOOO... not after we've spent days converting these to fluent for migration. https://t.co/2Xm7BJ1tjR
25/06/2020,16:23,jeremylikness,Had an interesting conversation around #NuGet version dependencies. Turns out there is a doc for that. Curious what… https://t.co/iVNsz6THwn
25/06/2020,15:37,jeremylikness,How to consume Dungeons 🏰 and Dragons 🐲 from #Blazor 🔥 apps using #gRPC gRPC-Web by @DavideGuida82… https://t.co/8gx2VweMgI
25/06/2020,14:49,jeremylikness,@spboyer They are so loyal and attached. ❤
25/06/2020,14:24,jeremylikness,"The #EntityFramework Core #EFCore Wed Jun 24th recording is available. Community links, #dotnet data docs, a look a… https://t.co/cUw7UNSRNX"
25/06/2020,12:16,ederbond,@ajcvickers @jeremylikness @dotnet @julielerman JetBrains reminds me to Resharper's company. But if you guys is say… https://t.co/9FyfBVr6uz
25/06/2020,02:42,iStarr,@ferozekhan267oa @jeremylikness @AzureFunctions @nthonyChu @jeffhollan Azure Fluent Management SDK is the bees’ knees too.
25/06/2020,00:58,buhakmeh,@jeremylikness I could give a TED talk about this and some of the other issues stagnating the .NET space. https://t.co/s2bsdXxSx1
25/06/2020,00:53,buhakmeh,"@jeremylikness It signals a broader issue in the .NET community: That unless you're going to be a coder, you're not… https://t.co/OjqyERYiqn"
25/06/2020,00:36,jeremylikness,@buhakmeh But those few designers who did show up helped us make magic with some extraordinary projects. The design… https://t.co/W2G5VHvgGP
25/06/2020,00:48,buhakmeh,@jeremylikness I'm not saying there weren't exceptions. It just seems that the design community as a whole poured t… https://t.co/hSDL7PKk0n
25/06/2020,00:28,jeremylikness,RT @clairernovotny: Improving credit for community contributions to @dotnet https://t.co/nsvq9FJ6o3 #DotNetCommunity
25/06/2020,00:17,jeremylikness,@jaydestro So sorry brother. Indi just left us this past Saturday. She was also almost 8. Literally feeling the sam… https://t.co/xpkQ2JrB8E
25/06/2020,00:12,aspnetcore_news,"Build a Blazor WebAssembly Line of Business App Part 3: Query, Delete and Concurrency by @JeremyLikness… https://t.co/HPMnW9862C"
24/06/2020,18:35,jeremylikness,@Mehrandhn @dotnet Apologies. The link changed. Here is the recording: https://t.co/4sm1QDuaPK
24/06/2020,18:37,Mehrandhn,@jeremylikness @dotnet Thanks.👍
24/06/2020,17:05,jeremylikness,"RT @jongalloway: If you're watching on YouTube, correct link is https://t.co/eUHWeC7b3s For Twitch: https://t.co/ZXvCmZus3T https://t.co/9…"
24/06/2020,16:32,jeremylikness,Live in 30! https://t.co/h2TVWAbOLD
24/06/2020,17:16,Mehrandhn,@jeremylikness @dotnet The video is not available.
24/06/2020,16:23,jeremylikness,"Introducing #CSharp C# 9: improved pattern matching, by @anthonygiretti. It's relational, logical, simple, and ...… https://t.co/msAnp2YhWL"
24/06/2020,15:37,jeremylikness,Take a guided tour of `dotnet-monitor` with @sshirhatti ... 'an experimental tool that makes it easier to get acces… https://t.co/4BPGidTYxw
24/06/2020,15:29,aspnetcore_news,Build a Blazor WebAssembly Line of Business App Part 2: Client and Server by @JeremyLikness https://t.co/Z06CEGacxe… https://t.co/kIjWRZ5IXC
24/06/2020,14:24,jeremylikness,"You might think it's summer, but for @rogreen_ms and @skimedic class is in session and we're getting schooled on… https://t.co/C19hSgTg6q"
24/06/2020,16:15,AmrimhM,"@jeremylikness @ajcvickers @rogreen_ms @skimedic Please and please and please share the YouTube link, the channel n… https://t.co/cs8uVZZPDm"
24/06/2020,01:26,jeremylikness,@KingLouisII ✅
24/06/2020,00:18,KingLouisII,@jeremylikness check DMs
23/06/2020,21:35,AzureDevOps,"GitHub Actions makes it easy to build, test, and deploy your application right from #GitHub. In this episode of… https://t.co/RY9hho5BxF"
23/06/2020,21:26,jeremylikness,RT @davidfowl: I'm confident that Microsoft is the place where the next generation of people will want to work. Not just for the technology…
23/06/2020,20:43,jeremylikness,"@uzochiapa We'll talk approaches to EF Core, and some of that will overlap design, but that sounds like a great top… https://t.co/motTRFkqg6"
23/06/2020,20:49,uzochiapa,@jeremylikness @jongalloway Thanks for the reply
23/06/2020,20:17,jeremylikness,Just a reminder - this is tomorrow. We'll be diving into Blazor Server and WebAssembly projects that use EF Core. L… https://t.co/MY5pNZji02
23/06/2020,20:18,uzochiapa,@jeremylikness Any chance you can talk about design patterns for building with Blazor ?
23/06/2020,19:07,aspnetcore_news,Build a Blazor WebAssembly Line of Business App Part 1: Intro and Data Access by @JeremyLikness… https://t.co/mufShjRZbJ
23/06/2020,15:37,jeremylikness,A guide to migrate from #aspnet ASP.NET #MVC to #Razor pages by @buhakmeh https://t.co/CuRB0dqAxC https://t.co/xjKEYHldA1
23/06/2020,14:24,jeremylikness,Video 🎦: part of the @ch9 #onDotNet #aspnetcore ASP.NET Core series: high performance requests with #gRPC featurin… https://t.co/KnICHBMd4m
23/06/2020,11:48,anthonygiretti,@codeputer @jeremylikness Yes
23/06/2020,01:53,jeremylikness,@mich_winkel Thank you.
22/06/2020,20:51,dotnetkicks,Build an Azure AD Secured Blazor Server Line of Business App by @JeremyLikness https://t.co/wcbq1amUNP #azure… https://t.co/WWHgW7xBb9
22/06/2020,20:41,dotnetkicks,Build a Blazor WebAssembly LOB App Part 4: Make it Blazor-Friendly by @JeremyLikness https://t.co/9ThJLWYRXD… https://t.co/NR1nX90hH7
22/06/2020,20:27,BrettRowberry,@AbelSquidHead @dotnet @jeremylikness @github @martinwoodward No worries. Thanks @AbelSquidHead!
22/06/2020,20:26,AbelSquidHead,@BrettRowberry @dotnet @jeremylikness @github @martinwoodward Hey sorry for the long response time. I took some per… https://t.co/A6hGo9RAuE
22/06/2020,18:16,jeremylikness,@ederbond @dotnet @julielerman What refactoring are you looking for? The namespace is defined here:… https://t.co/hyqxJoksS7
22/06/2020,20:04,ajcvickers,"@jeremylikness @ederbond @dotnet @julielerman Yep, intentional."
22/06/2020,18:07,jeremylikness,@kmorgan26 Not a LINQ query master but I made a suggestion on your post.
22/06/2020,17:36,jeremylikness,"Introducing #CSharp C# 9: top-level program (check it out, no `Main`!) by @anthonygiretti https://t.co/eYvWUF1BSi https://t.co/jFurPGlMn0"
23/06/2020,10:37,codeputer,@jeremylikness @anthonygiretti How does it determine the entry point? Program.cs and starts at the top?
22/06/2020,17:03,dr_dimaka,Build an #AzureAD Secured #Blazor Server Line of Business App // by @JeremyLikness https://t.co/iDQezbgPam
22/06/2020,16:51,ChristosMatskas,Authentication and Authorization in .NET Core #blazor apps - @jeremylikness got you covered in this great blog post… https://t.co/eiEow26Rsb
22/06/2020,16:23,jeremylikness,Build an #Azure Active Directory #AzureAD secured #Blazor 🔥 Server Line of Business app. 🔐 Secure the server with… https://t.co/RP03r3QV4s
22/06/2020,15:37,jeremylikness,⭐ The #EntityFramework Core #EFCore Community Standup is every other week 📅 Next standup: Wed June 24th 10 am PT/1… https://t.co/KCIgure0nz
22/06/2020,15:08,nthonyChu,@ferozekhan267oa @jeremylikness @AzureFunctions @jeffhollan PowerShell or Python are probably your best bets: -… https://t.co/S1wjADpAjl
22/06/2020,15:03,ferozekhan267oa,"@jeremylikness @AzureFunctions @nthonyChu @jeffhollan Hey Az-Func Gurus, Where does one start for creating Function… https://t.co/NOvUS3etGm"
22/06/2020,14:24,jeremylikness,Build a #Blazor 🔥 Line of Business app part 4 ... 📱 responsive design 🔗 simple link buttons ♒ cascading values and… https://t.co/fQL3I5XIg2
26/06/2020,01:00,lupusa1,@jeremylikness “You should never have to call StateHasChanged().” it sounds arguable for me. Have not seen such rec… https://t.co/oXbh9ygHeA
26/06/2020,01:03,lupusa1,@jeremylikness And eventcallback is calling StateHasChanged too. If component has to update what can we do else? If… https://t.co/IeI6Kxg080
26/06/2020,01:05,lupusa1,@jeremylikness If I call 10 times unnecessary StateHasChange it should not hurt performance because there is nothin… https://t.co/DsU9SeGWhz
26/06/2020,01:27,lupusa1,@jeremylikness I will add 2 words about cascading parameter. I never use it. Maybe I am wrong here but I see no poi… https://t.co/beFdoGKJl9
22/06/2020,14:08,jeremylikness,"This week we said goodbye to our beloved German Shepherd, 'Indi.' She would have been 8 on July 3rd. I miss you s… https://t.co/sG35TyCkL6"
23/06/2020,01:52,mich_winkel,@jeremylikness I am so sorry for your loss.
22/06/2020,14:08,jeremylikness,There was #somegoodnews this week: the mountain at 'golden hour'; my wife surprised me with a trip to the island fo… https://t.co/avXhweh8Bi
20/06/2020,16:32,jeremylikness,@ferozekhan267oa Great! I was looking for it but had links from more recent one which did not include durable. Glad you found it!
20/06/2020,16:35,ferozekhan267oa,"@jeremylikness Thanks for following up on this. FYI, I added the code link as comment to the youtube video. Cheers."
20/06/2020,16:31,ferozekhan267oa,@jeremylikness Got the code : https://t.co/yLIYNNsHRV >> DEV >> DEV50
20/06/2020,13:50,jeremylikness,RT @AzurePodcast: Microsoft Cloud Architect and Software Engineer @chixcancode gives us some great insights into the Azure Data Explorer s…
20/06/2020,13:45,jeremylikness,@timmermansr @C64Audio @scotontherock5 It's what I started serious coding on. I can still write 6502 assembly from… https://t.co/oQaxBVFFws
20/06/2020,13:36,jeremylikness,Lol. Truth. https://t.co/olaEFntoc5
20/06/2020,13:34,jeremylikness,@EricVBailey Arkanoid https://t.co/g2TWe4S8pL
19/06/2020,19:56,jeremylikness,@ferozekhan267oa Thanks for the kind words! Here you go: https://t.co/iZRUUMrjmr
20/06/2020,04:01,ferozekhan267oa,"@jeremylikness Awesome. BTW, I couldn't find the code on azure samples github ☹"
19/06/2020,18:21,ferozekhan267oa,"Hey @jeremylikness just wanted appreciate your NDC session on Durable Functions, where you discussed the Durable Du… https://t.co/3hxVJJj1Du"
19/06/2020,15:58,jeremylikness,@Brii_toe_knee @Facebook Congratulations!!!!
19/06/2020,15:57,jeremylikness,@jdooley_clt Happy anniversary!
19/06/2020,13:48,jeremylikness,@SjoukjeZaal Congratulations!!!
19/06/2020,13:42,pticostarica,"Top from #cloud #tech experts @dotnet: 'GitHub Actions makes it easy to build, test, and deploy your application ri… https://t.co/sq0kbHLYdd"
19/06/2020,12:17,xakpc,"@stevensanderson @GoodCoffeeCode @shanselman @dotnet @Azure @jeremylikness OMG, Thank you, Steve 🙏 Indeed SSL for I… https://t.co/UMpzpqJ3Vj"
19/06/2020,11:23,stevensanderson,"@GoodCoffeeCode @xakpc @shanselman @dotnet @Azure @jeremylikness OK, it seems like your browser isn't sending a req… https://t.co/NW3m3q7DsV"
19/06/2020,07:58,stevensanderson,"@GoodCoffeeCode @xakpc @shanselman @dotnet @Azure @jeremylikness Thanks, we’ll have a look and see if we can offer some advice!"
19/06/2020,07:39,GoodCoffeeCode,@xakpc @shanselman @dotnet @Azure Maybe nudge @jeremylikness or @stevensanderson ?
18/06/2020,21:20,dotnetstacks,Happy to have @jeremylikness answer some questions in a future newsletter. If you have any questions for him around… https://t.co/1oxysQJXeO
18/06/2020,20:49,jeremylikness,RT @OASISopen: New Version of REST-based Open Data Protocol (#OData) Approved as OASIS Standard. @Dell @Huawei @IBM @Microsoft @RedHat @SAP…
18/06/2020,19:48,jeremylikness,Love that context factory 🌝 https://t.co/fMZS3DTXcP
19/06/2020,01:52,ibaumann,@jeremylikness Indeed!
18/06/2020,18:59,jeremylikness,I'll blog about the changes this weekend then work on the Blazor Server version reusing existing code stack. https://t.co/boECcmSzlz
18/06/2020,19:47,Virgil_O,"@jeremylikness Great stuff, Jeremy. Thank you!"
19/06/2020,06:01,Red_Owl_IT_Devs,"@jeremylikness Looking forward to the server version, server is where its at!"
18/06/2020,18:59,jeremylikness,Thanks #Blazor 🔥 team for some great feedback on the reference app. I just pushed a new commit that makes it more r… https://t.co/eaqFRQpqWw
18/06/2020,18:22,_JoinMe_,@VisualStudio @danroth27 @jeremylikness Have already explored basics 😃
18/06/2020,18:00,VisualStudio,Are you ready to explore #Blazor on the server and in the browser? @DanRoth27 joins @JeremyLikness on this episode… https://t.co/yanCBa5dZ5
18/06/2020,16:19,gldraphael,@anthonygiretti @jeremylikness @linqpad Aaaah I see. Thank you. I wanted to try using it to represent message contr… https://t.co/387PxovUEL
18/06/2020,16:15,anthonygiretti,@gldraphael @jeremylikness Records are not available with latest .NET 5 preview sdk with VS 2019 16.7 preview. Targ… https://t.co/TzcbOVKMUV
18/06/2020,15:37,jeremylikness,🎙 Podcast: #dotnet multi-platform app UI with @coolcsh on .NET Rocks! https://t.co/uBrqUD95MF https://t.co/XB8M7Qqu9i
18/06/2020,14:24,jeremylikness,Introducing #CSharp C# 9: Records by @anthonygiretti ✅ data keyword ✅ with-expressions ✅ objects comparisons ✅ po… https://t.co/jWYv0gtqdY
18/06/2020,14:49,MCCshreyas,@jeremylikness @anthonygiretti I really liked the use of new 'with' keyword. 🎉💯
18/06/2020,14:51,MCCshreyas,@jeremylikness @anthonygiretti I wish we would have typescript like constructor variable declaration in C#.
18/06/2020,16:11,gldraphael,@jeremylikness @anthonygiretti Can I try this with the latest SDK? (I wasn't able to get data class to work last we… https://t.co/lRFFsDd3Wk
18/06/2020,02:34,jeremylikness,"RT @linqpad: Play with the latest experimental C# 9 features in LINQPad, including records and init-only properties. Just click a checkbox;…"
18/06/2020,00:33,jeremylikness,@shortproof @Lenovo Thanks for the tip. Installing it now!
18/06/2020,00:20,AbelSquidHead,@BrettRowberry @dotnet @jeremylikness @github You want to take this one @martinwoodward?
18/06/2020,00:05,jeremylikness,"@zooba Yes. Useful, but was tough for me to learn. It took a lot of trial and error before I had my ah-hah moment.… https://t.co/zczFzWbejj"
17/06/2020,23:47,jeremylikness,"Today, I achieved enlightenment. 👏 I *FINALLY* figured out how VoiceMeeter Banana 🗣🍌 actually works. I strategi… https://t.co/HbNQ1Rn8ne"
18/06/2020,00:03,zooba,"@jeremylikness I only discovered it recently, but wow is it a useful tool! Only chance I had of being able to capt… https://t.co/mJoO4mrqZA"
17/06/2020,23:39,andrewbrown,I heard you like Azure 🙃 You think you can retweet my free AZ-900 video course. People will love you for it.… https://t.co/XJQx9JGJ2T
17/06/2020,21:34,BrettRowberry,@dotnet @jeremylikness @AbelSquidHead Does @github Enterprise have actions yet?
17/06/2020,19:22,jeremylikness,⭐ The #EntityFramework Community Standup is coming to you more often. Now every other Wednesday. Next standup will… https://t.co/PGKbHH0iMt
17/06/2020,19:00,SeleniumBase,@dotnet @jeremylikness @AbelSquidHead Very easy to configure GitHub Actions! (P.S. We’re using it!) https://t.co/o9FxCyCAjy
17/06/2020,18:54,dotnet,"GitHub Actions makes it easy to build, test, and deploy your application right from within #GitHub. In this episod… https://t.co/y40ByTTKQv"
17/06/2020,16:23,jeremylikness,"Parts 4 and 5 are here of the video 🎦 series #EntityFramework Core #EFCore in depth. In these episodes, build your… https://t.co/XlzrKUhHdT"
17/06/2020,15:59,jeremylikness,"I absolutely LOVE my new @Lenovo ThinkPad P1 Gen 2. Specs blow away the 3-year old model I'm replacing, it has doub… https://t.co/2CISYgs9mP"
17/06/2020,16:00,DanSchnau,@jeremylikness @Lenovo fun fact! You can switch 'fn' and 'ctrl' in the BIOS. there's a flag for it.
17/06/2020,16:27,shortproof,@jeremylikness @Lenovo Swap fn and control. Boom. Instant best keyboard. Make sure you have the Lenovo Vantage inst… https://t.co/luka6cbA89
17/06/2020,15:37,jeremylikness,A real-time #serverless #Azure ☁ Event Grid viewer using #SignalR https://t.co/7NAXfUf9jC https://t.co/LfOtIeTO3N
17/06/2020,15:32,jeremylikness,@melvinselvaraj @stevejgordon @dotnet I'd be more interested in the database itself. How many tables and relationsh… https://t.co/gGuVOLGj79
17/06/2020,15:35,melvinselvaraj,@jeremylikness @stevejgordon @dotnet Thanks @jeremylikness This is a big project international school education boa… https://t.co/ebroc31zCT
17/06/2020,15:14,melvinselvaraj,@stevejgordon @jeremylikness @dotnet Thanks @stevejgordon I recently joined a team and they suggested db first beca… https://t.co/q5OMm3QgZU
17/06/2020,15:12,stevejgordon,@melvinselvaraj @jeremylikness @dotnet I don't do a lot of EF at the moment but when we have used it I've tended fo… https://t.co/cIZGFS5SK0
17/06/2020,15:04,melvinselvaraj,For a large team would you recommend code first or database first approach 🤔 #EFCore @jeremylikness @dotnet @stevejgordon
17/06/2020,14:24,jeremylikness,Whoot! #grpcWeb for .NET #dotnet is now available! 📞 Call #aspnetcore #gRPC apps from the browser 🏠 Host ASP.NET… https://t.co/CGSPhbcqJs
17/06/2020,14:07,jeremylikness,@YodasMyDad You can try @andriysvyryd and @smitpatel ... and @ajcvickers and I will always route questions when we… https://t.co/odRzciPSny
17/06/2020,15:31,YodasMyDad,@jeremylikness @andriysvyryd @smitpatel @ajcvickers Fantastic thanks.
17/06/2020,13:21,YodasMyDad,@jeremylikness Hi Jeremy. Is there anyone from the EF Core Cosmos DB team on twitter? Have a question about HasMany() use.
16/06/2020,17:52,jeremylikness,@Scott_Addie @schneidenbach @ajcvickers It's tough to have any ideas without seeing more details. What is the query… https://t.co/1vZgzG1Fbu
16/06/2020,18:12,schneidenbach,@jeremylikness @Scott_Addie @ajcvickers query is a simple select with a few includes. removing the includes yields… https://t.co/ctq6TSqZ4X
16/06/2020,17:37,Scott_Addie,@schneidenbach Let's ask @ajcvickers & @jeremylikness for some ideas.
16/06/2020,17:36,jeremylikness,Install the #Azure ☁ Command Line Interface (CLI) with the new #WinGet package manager by @crpietschmann… https://t.co/VTM6jIkoYv
16/06/2020,16:44,jeremylikness,"@ralph_squillace Basically: controls, repository implementation, data access, model definitions all are just a proj… https://t.co/Cx7Z4FN4vX"
16/06/2020,16:41,jeremylikness,@ralph_squillace I mean that all of the libraries from the UI controls down to the database can be referenced 'as i… https://t.co/DfTxPBVL3r
16/06/2020,16:37,jeremylikness,Looks like #Azure AD it is!
16/06/2020,16:39,ralph_squillace,"@jeremylikness what you mean, 'reuse' in this case? curious!"
16/06/2020,16:57,MrAnthCool,@jeremylikness Don't do Azure AD B2C either. Just straight up AAD single-org connecting to an API project registered in Azure for data.
17/06/2020,03:33,DrewEvangelista,@jeremylikness AD B2C preferrably
16/06/2020,16:24,jeremylikness,Video 🎦: The @ch9 #onDotNet #aspnetcore ASP.NET Core series continues with tracing: when developers should care ab… https://t.co/s2Z5oKSM1r
16/06/2020,16:00,uncle_dallas,Build a #Blazor #WebAssembly Line of Business App Part 1: Intro and Data Access https://t.co/0uwaXYoS5o by… https://t.co/BQuy8lWIIf
16/06/2020,14:42,thereformedprog,@flowinthezone @jeremylikness I *think* the pseudo-key is used to match up a new primary key returned to fill in th… https://t.co/JYPG3kN2Vv
15/06/2020,23:01,jeremylikness,@shanselman and-really-old-urls-look-like-this.asp orThis.xhtml
15/06/2020,17:36,jeremylikness,#EntityFramework Core in depth: what happens when #EFCore writes to the database? by @thereformedprog… https://t.co/H59jIJXqNw
15/06/2020,20:36,thereformedprog,@jeremylikness Glad you liked it
16/06/2020,13:35,flowinthezone,@jeremylikness @thereformedprog Does the pseudo key value ever matter? Does it compare it against any keys in the s… https://t.co/6ZAUz7MARj
15/06/2020,16:32,dotnetgeorgia,Build a Blazor WebAssembly Line of Business App Part 1: Intro and Data Access by @jeremylikness https://t.co/yZ9xwDf6Ko
15/06/2020,16:29,jeremylikness,"To be clear, '3rd party' can be anything (just let me know preference in replies) ... Twitter was just an example."
15/06/2020,16:23,jeremylikness,Video 🎦: the journey to .NET 5 #dotnet5 on #VisualStudio Toolbox 🧰 with @rogreen_ms and @coolcsh… https://t.co/EvraZIuwBn
15/06/2020,16:22,jeremylikness,@fudgeboy2000 Thanks!
15/06/2020,16:22,jeremylikness,I'm creating a #Blazor 🔥 Server project to demonstrate how to reuse all of the libraries created for the Blazor Web… https://t.co/i6zMLbcvB1
15/06/2020,16:23,casperOne,"@jeremylikness Note, I voted for 3rd party OAuth, but we're using Auth0, easier to have all of the providers work t… https://t.co/3BoKTVkfzw"
16/06/2020,03:16,andrewdmoreno,@jeremylikness 3rd party via Okta
16/06/2020,11:50,chananb,@jeremylikness @awesomeblazor Local AD fronted by Cognito
16/06/2020,19:33,KyleLJohnson,@jeremylikness Put localdb next to anything and now you have me interested
20/06/2020,06:32,Michel1973,@jeremylikness Actually ....... we still use the membership provider :-)
15/06/2020,16:13,jeremylikness,"ICYMI, blog post is here: https://t.co/cduLtWvG8X"
15/06/2020,15:37,jeremylikness,Video 🎦: route to code ... quickly stand up #HTTP endpoints in #aspnetcore ASP.NET Core using code and controllers… https://t.co/LcljekyxcT
15/06/2020,14:24,jeremylikness,"Read execution plans for better #EntityFramework Core #EFCore performance, by @pawelgerr via @erikej… https://t.co/r7CfdhZlDH"
15/06/2020,14:48,erikdarlingdata,"@jeremylikness @ErikEJ @pawelgerr Oh boy, that post is just plain wrong about query costs and performance. Cost is… https://t.co/Ipo4DWDBTL"
15/06/2020,14:18,jeremylikness,I blogged: build a #Blazor 🔥 #WebAssembly 🕸 Line of Business App. Three part series. 🔐 authentication 📝 audit ↔… https://t.co/TB8IeUQ8in
15/06/2020,20:55,GioviQuarella,@jeremylikness Maybe you are interested to see my use of https://t.co/OckaA41OVP to simplify API in https://t.co/hdEkjkUzcM
18/06/2020,21:55,RalmsDeveloper,@jeremylikness Fantastic @jeremylikness!!!
15/06/2020,13:11,BlazorGuy,Part 1 of a three part series by @jeremylikness Build a #Blazor WebAssembly Line of Business App Part 1: Intro and… https://t.co/ZsyZMmReKq
15/06/2020,12:46,jeremylikness,@Annatar34381343 @CommodoreBlog My roommate/landlord/friend somehow found an early access program and secured a pro… https://t.co/jYhXyO3lEf
15/06/2020,12:44,jeremylikness,Another week and #somegoodnews moments. A pink display of clouds; our garden against the fence with the sunset re… https://t.co/0Wom1V7skz
16/06/2020,18:24,kindnewsnetwork,@jeremylikness Those little moments can make the world brighter. 🙌😍
15/06/2020,12:29,jeremylikness,@webmaxru Programs With Attitude
15/06/2020,01:36,jeremylikness,"@joelcochran @jwcarroll What's an Instagram? Is it like a telegram? Oooh it sounds neat, I want one."
14/06/2020,21:01,jeremylikness,@isaacrlevin ... Look into mergeMap and forkJoin
14/06/2020,20:59,jeremylikness,@isaacrlevin Sounds like you could use some Observables. https://t.co/t4I8fxd2a8
14/06/2020,20:56,jeremylikness,"@StrongFree67 You can have 12,999 follower bots or 5 engaged followers willing to have meaningful discussion and sh… https://t.co/8OJPMXwfHF"
14/06/2020,18:46,jeremylikness,"RT @davidfowl: I am David, I’m supposed to be here"
14/06/2020,15:39,jeremylikness,@joe_darko Wow my 11 was just a few days ago. We both joined when people mainly just tweeted check-ins and reporte… https://t.co/tIgDWffZ8O
14/06/2020,16:11,joe_darko,"@jeremylikness Yup! We were one of the pioneers of Twitter I guess. Well, “innovators”."
14/06/2020,01:32,jeremylikness,@crandycodes @jeffwilcox Nice!
14/06/2020,01:24,jeremylikness,@crandycodes @jeffwilcox I should have mentioned she has a fused spine.
14/06/2020,01:31,crandycodes,@jeremylikness @jeffwilcox Smaller door is easy to operate and doesn’t let out as much hot air. It’s a big win. If… https://t.co/qHE6PkjUYt
14/06/2020,01:23,jeremylikness,@crandycodes @jeffwilcox We like that option because my wife can't bend over to use a traditional oven. The smaller… https://t.co/rWao3srjGH
14/06/2020,01:18,jeremylikness,@julielerman Thank you for sharing! It's amazing.
13/06/2020,23:21,jeremylikness,@YodasMyDad Thank you for sharing this feedback! Very appreciated.
15/06/2020,06:14,YodasMyDad,"@jeremylikness Hi Jeremy. I'm not sure if you have seen this blog post, but it's in-depth and lists out some of the… https://t.co/xQuipOvPCf"
13/06/2020,21:01,jeremylikness,"RT @chixcancode: Hi all we are still looking for speakers for @juneteenthconf. If you are new to speaking and looking for mentorship, plea…"
13/06/2020,19:59,jeremylikness,"@CommodoreBlog TI-99/4A, Commodore 64, C128, Amiga, BeBox, PC w/ Linux, AS/400, back to PC w/ Windows. Never did spend time on a Mac."
15/06/2020,07:23,Annatar34381343,"@jeremylikness @CommodoreBlog Props for BeBox, now that's really exotic. How did you even get one?"
13/06/2020,19:31,jeremylikness,Congratulations @ShawnWildermuth ! The documentary has such a timely message. https://t.co/BlJFQzN5c2
12/06/2020,20:40,dr_dimaka,Example of a #Blazor #WebAssembly project that uses #EntityFrameworkCore on the server for data access. // by… https://t.co/UToJvY1w9v
12/06/2020,14:51,jeremylikness,Just found out about 'Spaces' (https://t.co/oGy0q9dfLB). Looks like a VR meeting platform. Does anyone reading this… https://t.co/kVMYCWXwL3
12/06/2020,14:04,BySaschaBaumann,📰 NEWS 'Announcing Entity Framework Core 5.0 Preview 5' Article by Jeremy Likness <@jeremylikness> via @Microsoft… https://t.co/hLInAn3uvs
12/06/2020,06:30,YodasMyDad,"@jeremylikness when querying across entities / partitions. May be a better way of doing it, but if you are creating… https://t.co/VNwSzyEgUm"
12/06/2020,04:38,jongalloway,@SimonCropp @jeremylikness @ajcvickers @shanselman Moving to e-mail -> 📬
12/06/2020,03:49,jeremylikness,"You know that voice in your head that says, 'Any sane person would break this into a series?' I'm getting to the… https://t.co/Wp1NIzJ3wU"
12/06/2020,19:04,chris_noring,@jeremylikness Sounds like a path for learn or a tutorial series at some point :) I know I'd read it :)
11/06/2020,22:11,jeremylikness,@jhalbrecht 1. Yes. I have a placeholder in the README that will be updated to point to the blog when I post it 2.… https://t.co/EYuuovUw0n
11/06/2020,20:53,uzochiapa,@timheuer @jeremylikness I see a lot of SAAS apps being built with BLAZOR. Good job #msft
11/06/2020,20:32,jeremylikness,@joslat Hah! Amazing.
11/06/2020,19:33,jeremylikness,Check out the plan! Updated 🗺️ roadmap. https://t.co/yEqiEPiN93
11/06/2020,21:38,jhalbrecht,"@jeremylikness Hi Jeremy, if we 'watch' the github repo will we notice when you publish the blog post? In case I/we miss it on twitter...."
11/06/2020,18:07,jeremylikness,@gabrymartinez My pleasure! Looking forward to getting the post out to explain decisions in the code base. :)
11/06/2020,15:53,jeremylikness,"I need a few days to finish the blog post, but here's a reference #Blazor 🔥 #WebAssembly 🕸 line of business app wit… https://t.co/Asva6xZVsg"
11/06/2020,16:22,dorm79,"@jeremylikness Perfect, I was looking for that kind of demo. 👍 Thanks 🙏"
11/06/2020,17:48,gabrymartinez,@jeremylikness This is gold ! Thanks Jeremy !
11/06/2020,20:49,timheuer,@jeremylikness File...New...Business Application 😜
15/06/2020,16:22,fudgeboy2000,"@jeremylikness Yes! Fab work, just the kind of reference we needed. Cheers!"
11/06/2020,13:55,jeremylikness,@billwagner @amandaksilver Well that's easy to do now. If they have a blue checkbox next to their name then everyth… https://t.co/dmrdaIc3nF
11/06/2020,13:50,jeremylikness,"@amandaksilver I think it would result in less pontificating, grandstanding and soap box preaching. It's easy on Tw… https://t.co/W9InHgwXzp"
11/06/2020,13:52,billwagner,"@jeremylikness @amandaksilver It could also help, in a small way, with mis-information. tweet: “I just saw <someth… https://t.co/SbI1j4hHjF"
11/06/2020,12:57,jeremylikness,So satisfying putting that little check in the corner every morning! https://t.co/hX79EIxPqR
11/06/2020,11:47,jeremylikness,"@YodasMyDad It's the newest provider, and we're prioritizing issues and features based on feedback. I'm curious to… https://t.co/hQ7f7G7zrv"
12/06/2020,06:28,YodasMyDad,@jeremylikness I have used Entity Framework for years. It's familiar and means I can get up and running with Cosmos… https://t.co/DNUq1E2XbB
11/06/2020,03:42,ibaumann,@julielerman @jeremylikness Woah a reply from @julielerman ! I went through your EF 3.1 course on pluralsight. Great stuff! 👍🙂
11/06/2020,00:00,julielerman,@ibaumann @jeremylikness this is definitely sweet!
10/06/2020,22:29,jeremylikness,Now that's enthusiasm .... https://t.co/a5XXNJx9Wi
10/06/2020,22:36,ibaumann,@jeremylikness Hehe thanks 😋 ... 2 things I was expecting. One workaround was to use env vars since nothing was com… https://t.co/qE4dcLLUcy
10/06/2020,19:19,jeremylikness,@matthiasendler My pleasure!
10/06/2020,18:57,jeremylikness,"Got #hugo #jekyll or #zola? Add search to your site with a tiny, static full-text search 🔎 engine written in… https://t.co/6qV46KVram"
10/06/2020,17:36,jeremylikness,Announcing the 5th preview release of #EntityFramework #EF Core 5.0 https://t.co/W7JM79wnx9 https://t.co/facvrfNgRl
10/06/2020,20:40,Beelzenef_,@jeremylikness big fan of Jean-Michel Jarré references 😎
10/06/2020,22:15,ibaumann,@jeremylikness YES AND YEEEEEEEEEEESSSSS!!! \o/ https://t.co/hahgIUZy37
11/06/2020,06:33,YodasMyDad,"@jeremylikness How is the Cosmos Provider coming along? Been really interested in this since it was announced, but… https://t.co/95elEp02FE"
10/06/2020,16:37,jeremylikness,RT @ajcvickers: Starting in 30 minutes!
10/06/2020,16:37,jeremylikness,"22 years ago today, the envelope I mailed on a whim paid off when my $50 'quick tip' was published in News/400, a m… https://t.co/rnYDfD33HS"
11/06/2020,20:32,joslat,@jeremylikness Wow!! at that time I was working at Help400 the Spanish version of News/400 as a technical translato… https://t.co/rbKsRwVQh6
10/06/2020,16:23,jeremylikness,Build a small blog in #Blazor 🔥 part 3: crafting your #EntityFramework Core #EFCore queries by @roundthecode… https://t.co/Z2phd0gLh6
10/06/2020,15:37,jeremylikness,Use #Azure Monitor Notebooks 📓 for quick monitoring analytics 📈 by @AbhijitJana https://t.co/WkG4w3Fihr https://t.co/4DhTAsyRF3
10/06/2020,15:30,jeremylikness,Thread: improving soft skills https://t.co/mpci1Hajjw
10/06/2020,15:27,jeremylikness,@raberin_ Congratulations!
10/06/2020,14:24,jeremylikness,Check the new video 🎦 series by @rogreen_ms and @skimedic ... #EntityFramework Core #EFCore in depth! First episod… https://t.co/eMaMxfs7da
10/06/2020,00:25,jeremylikness,@Alexxussh Congratulations!!!
10/06/2020,00:14,jeremylikness,RT @chris_sainty: Just blogged: Avoiding AccessTokenNotAvailableException when using the Blazor WebAssembly Hosted template with individual…
10/06/2020,00:12,jeremylikness,@spboyer @KirstyBoyer Happy anniversary!!!
10/06/2020,03:58,SteveLasker,@jeremylikness @spboyer @KirstyBoyer https://t.co/czIaLII1F5
09/06/2020,15:40,LothanLukeBrown,@kaleighscruggs @jeremylikness @reactjs @GatsbyJS @Netlify @angular @SassCSS @WordPress So sorry to hear. Hope you… https://t.co/kSRqTLRb1j
09/06/2020,15:26,jeremylikness,RT @kaleighscruggs: I've unfortunately been laid off. Looking for a remote position doing front-end web dev work. Check out my site: https:…
09/06/2020,15:03,ddskier,ASP .NET Core Series: MVC and Razor Pages https://t.co/XtJS5A2ZxS by @ch9 @danroth27 @jeremylikness #aspnetcore #MVC #Razor
09/06/2020,14:24,jeremylikness,"🎵 One, two, three and to the four @erikj @shayrojansky and #EFCore is at the door Ready to make an entrance, so bac… https://t.co/QJ27JqCq9Q"
10/06/2020,00:15,ajcvickers,"@jeremylikness @erikj @shayrojansky Btw, this is a brilliant tweet for those of us who still love the Dre/Snoop cla… https://t.co/wZsZ6OcDeh"
10/06/2020,19:59,cecilphillip,@jeremylikness @erikj @shayrojansky I love it!
09/06/2020,02:56,anomepani,1. What are the security checklist to protect webapp and api in dotnercore? How to achive and implement this type o… https://t.co/ygnA7Nbrq8
09/06/2020,02:28,jeremylikness,@sirishapratha @brunoborges Awesome!
09/06/2020,02:28,jeremylikness,RT @sirishapratha: Published my first blog ever! 😃 https://t.co/unNnSqsuo1
08/06/2020,17:36,jeremylikness,Video 🎦: #aspnetcore ASP.NET Core Endpoint Routing: ❓ what is it? 🗺 what is the routing zone? 🔎 inspecting endp… https://t.co/hqi2o6I7eX
08/06/2020,16:23,jeremylikness,Video 🎦: #aspnetcore ASP.NET Core series: SameSite Cookie 🍪 Security 🔐 https://t.co/OJcMwHFyDo https://t.co/XkatVjig9K
08/06/2020,16:14,stimms,"@ThorstenHans @jeremylikness @AgileRamblings Didn't even see the link down there, I'll give it a read"
08/06/2020,15:49,ThorstenHans,"@stimms @jeremylikness @AgileRamblings Of course it takes more. If you had looked at the article, you would see the scope."
08/06/2020,15:37,jeremylikness,Six steps to run #aspnetcore ASP.NET Core apps on #Azure #Kubernetes #K8s ☸ Spoiler alert: 1️⃣ #Docker 🐳 Image… https://t.co/dyBfih7ML4
08/06/2020,15:38,stimms,@jeremylikness Obviously it is a bit more involved than that. My buddy @AgileRamblings has a great series where he… https://t.co/8cTms9yTYY
08/06/2020,14:45,jeremylikness,With pleasure! 👏👏👏👏👏👏👏👏👏👏👏👏 https://t.co/3n5A6klNJa
08/06/2020,14:24,jeremylikness,Dynamically build Language Integrated Query (LINQ) expressions #CSharp C# #dot .NET 👉 what are expressions? 👉 dyna… https://t.co/t4no5vL1w8
08/06/2020,13:18,jeremylikness,Happy Monday! Last week's #somegoodnews to share... Indi the German Shepherd (https://t.co/VVCOzMeUJQ) relaxes on… https://t.co/BuURc18A36
08/06/2020,14:02,Mteheran,@jeremylikness amazing pics
08/06/2020,05:13,jeremylikness,"@editingemily That looks de-lic-ious 😋🟫 Happy birthday, Emily. 🌟🥳🎉🍾 Wish you a magical one. https://t.co/Q8FZQgYPWx"
07/06/2020,06:36,uncle_dallas,Dynamically Build #LINQ Expressions - https://t.co/GYm4S9aq2E by @jeremylikness via @codeproject #developer #coding https://t.co/RQ6YUGWqft
06/06/2020,19:24,codewithmukesh,@sergey_mig @Ba4bes @BelloneDavide @almirmesic @danroth27 @jeremylikness Thanks for the share 😁✌️
06/06/2020,15:25,spboyer,@bradygaster @jeremylikness @Swirlyg It’s been a very mentally exhausting week for you. Well needed rest.
06/06/2020,15:14,jeremylikness,@mentorafrika I don't have the words. https://t.co/NdgCcVhV4p
06/06/2020,15:13,jeremylikness,@bradygaster You over-achiever! I only slept half that. https://t.co/QyPiYcJoo3
06/06/2020,15:17,bradygaster,@jeremylikness .@Swirlyg turned on a show and i never saw the opening credits. Out.
06/06/2020,13:16,sergey_mig,Read my next .NET newsletter here: https://t.co/bLozouzblD Thanks to: @codewithmukesh @Ba4bes @BelloneDavide… https://t.co/2a4a1vA95o
06/06/2020,04:49,jeremylikness,@engineering_bae Congratulations!!!
05/06/2020,14:56,dr_dimaka,Dynamically Build #LINQ Expressions - Your expression is so dynamic! // by @JeremyLikness https://t.co/N2Fav0EY9Y
05/06/2020,12:40,MiguelBernard88,Checkout my reading notes. This week: #efcore #ef #csharp #dotnet #cosmosdb #git #featureflag #performance #serilog… https://t.co/telJUiAsAD
05/06/2020,09:36,isaacrlevin,Dynamically Build LINQ Expressions @jeremylikness https://t.co/DZAJk4rvIS
05/06/2020,08:36,dotNetWire,Dynamically Build LINQ Expressions by Jeremy Likness (@jeremylikness) https://t.co/0I54qsPEXq
04/06/2020,23:47,jeremylikness,"My daughter @lizzieml74 wrote this. I couldn't be more proud. Thank you, Lizzie! Link to original post:… https://t.co/wFth0db2H0"
04/06/2020,16:41,dotnetkicks,Dynamically Build LINQ Expressions by @JeremyLikness https://t.co/NBkUJZ0lzA #dotnet via @DotNetKicks
04/06/2020,14:30,alvinashcraft,Dynamically Build #LINQ Expressions by @jeremylikness. #csharp #dotnet #programming https://t.co/ROeMjrDEF3
04/06/2020,12:40,MiguelBernard88,Get the latest news from the .NET world: #efcore #ef #csharp #dotnet #cosmosdb #git #featureflag #performance… https://t.co/gBgrJ69zI4
04/06/2020,12:30,jeremylikness,@iamsashaariel 🎈🎉🎈🎉👏
04/06/2020,12:19,marciopetry,@iamsashaariel @jeremylikness Congratulations!
04/06/2020,12:14,jeremylikness,RT @iamsashaariel: Only 2.9% of black women in the USA hold a bachelor’s degree in STEM. Today I am one of them. #Tech #STEM #BlackTechTwi…
04/06/2020,06:25,AzureWeekly,EF Core and #CosmosDB with Blazor WebAssembly from @jeremylikness https://t.co/elQDO81bUO #Azure
04/06/2020,00:57,jeremylikness,"@realDWVS @cwheeler76 Christina, I want to echo David's reply. He said it better than I would have."
03/06/2020,19:14,jeremylikness,@ardalis Wake up! Wake up! Wake up! Wake up! Wake up! Wake up! Wake up! Wake up!
03/06/2020,15:36,isaacrlevin,Blazor and Web Assembly with Jeremy Likness @jeremylikness @jthake @Microsoft365Dev https://t.co/3iXswpcw5p
03/06/2020,14:40,MiguelBernard88,Don't miss out on what's happing in the .net world: #efcore #ef #csharp #dotnet #cosmosdb #git #featureflag… https://t.co/sTYYpucc8q
03/06/2020,14:06,uncle_dallas,#ASPNETCore Series: #Blazor https://t.co/tgNPKYTHIe via @ch9 by @jeremylikness @danroth27 https://t.co/cZzjP8jC3L
03/06/2020,08:25,AzureWeekly,#AzureAD Secured #Serverless #CosmosDB from Blazor WebAssembly from @jeremylikness https://t.co/htYr2qcmCs #Azure
02/06/2020,17:00,alvinashcraft,"Microsoft 365 Developer Podcast - #Blazor and #WebAssembly with @jeremylikness, @jthake, and @paulschaeflein. #wasm… https://t.co/PPTuL2FCbX"
02/06/2020,11:40,MiguelBernard88,Stay up to date with the latest news in the .NET world: #efcore #ef #csharp #dotnet #cosmosdb #git #featureflag… https://t.co/dKUFD8ltLt
02/06/2020,01:10,jeremylikness,@BrettRowberry @runfaster2000 @alpinelinux @SQLServer It doesn't look like it. There is an ask for driver support b… https://t.co/QeTiJgIN3H
02/06/2020,01:19,BrettRowberry,@jeremylikness @runfaster2000 @alpinelinux @SQLServer Voted for drivers and added full Alpine image request
01/06/2020,23:58,jeremylikness,"@ajcvickers @SimonCropp @shanselman @jongalloway Yes! Saw this, meant to respond earlier."
12/06/2020,04:30,SimonCropp,@jeremylikness @ajcvickers @shanselman @jongalloway any more thoughts on this?
01/06/2020,23:53,ajcvickers,@SimonCropp @shanselman @jongalloway @jeremylikness Let's talk. I'll reach out tomorrow.
01/06/2020,22:34,jeremylikness,We will not stream the #EntityFramework Core #EFCore Community Standup this week. It is moved out to next Wednesday (June 10th).
01/06/2020,19:40,ddskier,Azure AD Secured Serverless Cosmos DB from Blazor WebAssembly https://t.co/dU6impzAGk by @JeremyLikness #Serverless #Blazor #WebAssembly
01/06/2020,18:07,jthake,Great interview by @paulschaeflein talking to @jeremylikness about Blazor and Web Assembly on @m365devpodcast. Awes… https://t.co/d9hAbEOV62
01/06/2020,15:32,jeremylikness,"Thank you, Jon. https://t.co/A76scey2Y5"
01/06/2020,14:00,m365devpodcast,Paul talks with @jeremylikness about the new .Net-based Blazor technology combined with Web Assembly (WASM) to run… https://t.co/YaFYDA9kDv
01/06/2020,13:08,jeremylikness,@jhalbrecht Thank you!
01/06/2020,12:29,jeremylikness,"It's Monday. Rough week: pandemic, murder, injustice, the news our dog Indi has terminal cancer. Still… https://t.co/Run4d8CvL7"
01/06/2020,12:57,jhalbrecht,@jeremylikness Sampson and I send our regards. Indi looks like a great dog. https://t.co/gl6Szyal3D
01/06/2020,17:20,SlimBoyWynn,@jeremylikness Keep that chin up fella 👍🤞
01/06/2020,23:50,gabrymartinez,"@jeremylikness Thanks for the reminder, I pray too. 🙏❤️"
01/06/2020,11:01,MiguelBernard88,Make sure to read those very important announcements: #efcore #ef #csharp #dotnet #cosmosdb #git #featureflag… https://t.co/720otQAEia
01/06/2020,04:55,SimonCropp,@shanselman @jongalloway @jeremylikness @ajcvickers same goes for this one https://t.co/tBryZ8UYIA
01/06/2020,04:22,shanselman,@jongalloway @SimonCropp @jeremylikness @ajcvickers
01/06/2020,04:21,jeremylikness,RT @LadyNaggaga: Maintaining Professionalism In The Age of Black Death Is….A Lot by @GoldingGirl617 https://t.co/A5ALjOye5I
01/06/2020,04:03,jongalloway,@SimonCropp @shanselman @jeremylikness ?
30/05/2020,19:03,jeremylikness,"RT @ErikEJ: In my yard, prepping for my EF Core Power Tools presentation at the EF Core Community Standup - looking forward to seeing you t…"
30/05/2020,16:55,jeremylikness,@pdxmisfit Congratulations!
30/05/2020,14:26,jeremylikness,@jaydestro hey brother! Happy Anniversary.
30/05/2020,14:21,jeremylikness,"22 years today she said, 'I do.' 🥂 My closest friend. My forever love. Together we raised 2 amazing children, re… https://t.co/Mjg9BnDsFc"
30/05/2020,14:24,jaydestro,@jeremylikness hey anniversary twin
30/05/2020,14:24,ssdulawat,@jeremylikness God Bless Happy Wedding Anniversary
30/05/2020,14:25,sarah_edo,@jeremylikness Happy anniversary Jeremy :)
30/05/2020,14:37,uzochiapa,@jeremylikness Congratulations
30/05/2020,14:57,Kaybarax,@jeremylikness That's how it should be 👍👍👍👏👏👏
30/05/2020,15:29,dr_dimaka,@jeremylikness You are so cute :) Happy every day!
30/05/2020,15:45,mairacw,@jeremylikness Happy anniversary! 🥂
30/05/2020,15:46,joe_darko,@jeremylikness Happily anniversary!!!!
30/05/2020,15:50,amandaksilver,@jeremylikness Aw!
30/05/2020,15:54,sinclairinat0r,@jeremylikness 😍😍😍😍
30/05/2020,15:55,PGhatak,@jeremylikness Congrats my MSFT buddy. You are doing good and let’s all join in for our safest survival. Many congr… https://t.co/5stTwt4biZ
30/05/2020,16:21,JenMsft,@jeremylikness <3
30/05/2020,16:51,Michael17064609,@jeremylikness Happy anniversary!
30/05/2020,16:53,as_w,@jeremylikness Happy anniversary!
30/05/2020,16:53,pdxmisfit,"@jeremylikness Congratulations, sir! Yesterday was our 11th anniversary."
30/05/2020,16:58,paramvik,@jeremylikness Congratulations! You both make a great couple.♥️
30/05/2020,19:11,m_khooryani,@jeremylikness Happy anniversary :)
30/05/2020,19:27,shawty_ds,@jeremylikness Grats mate :-) This is my 13th year with my best friend :-)
30/05/2020,19:32,ajpinedam,@jeremylikness Congratulations the two of you! Happy anniversary!
30/05/2020,20:30,editingemily,@jeremylikness Omg y’all are so adorable. This is wonderful and I’m so happy for you. Happy Anniversary. ❤️
30/05/2020,20:32,_s_hari,@jeremylikness Happy anniversary!
31/05/2020,01:00,cecilphillip,@jeremylikness Happy Anniversary to the two of you ❤
31/05/2020,11:14,ScottCate,@jeremylikness The love you two share and how you write about it is amazing. How she puts up with your Mad Rapping… https://t.co/ht87K6NTve
31/05/2020,12:36,joslat,@jeremylikness Congratulations! connecting like this with someone special is a blessing!! Enjoy your day and all the ones to come :)
03/06/2020,20:45,Fredwebs,@jeremylikness Congrats and here's to another 22 or more.
30/05/2020,04:49,isaacrlevin,@cecilphillip @jeremylikness Let's chat this week!
30/05/2020,03:49,cecilphillip,@isaacrlevin @jeremylikness Yes
30/05/2020,02:52,isaacrlevin,@cecilphillip @jeremylikness any interest in a #OnDotNet episode about #PresenceLight?
30/05/2020,01:33,jeremylikness,RT @ImTooOld4This: @shanselman My coping mechanism is trying to understand how we got to this point. I wrote this blog on a couple resource…
30/05/2020,01:32,jeremylikness,@condrong @DamianEdwards Will there be a transcript?
30/05/2020,01:30,jeremylikness,@bdsams Easily my @surface Go. I use it every day.
30/05/2020,00:00,jeremylikness,Happy Friday! Current plan: turn my living room into a virtual club by blasting live DJ mixes from my high school… https://t.co/f2GOnmcZO1
30/05/2020,00:08,madebygps,@jeremylikness @DjChrisCraze Tuning in now. I’m digging the tunes!
29/05/2020,19:30,alvinashcraft,On .NET - #ASPNETCore Series: #Blazor with @jeremylikness and Daniel Roth. #dotnetcore #webdev #wasm https://t.co/L3fpRD0Jny
29/05/2020,16:23,jeremylikness,ASP.NET Core #aspnetcore WebSockets and Application Lifecycle Shutdown events https://t.co/cYhYmwODo4 https://t.co/GgObGOiuJa
29/05/2020,15:50,jeremylikness,@iamalexmang No idea. @spboyer any thoughts or who might know?
29/05/2020,15:37,jeremylikness,Come and get your starter workflow! Continuous integration workflow template for .NET Core #dotnetcore desktop apps… https://t.co/8annAQWzIe
29/05/2020,15:39,iamalexmang,@jeremylikness Just in time. Do you happen to know why and how pushd is used in Microsoft’s dotnet and App Services… https://t.co/Gu6Jz1BTSc
29/05/2020,14:24,jeremylikness,Video 🎦: A data-driven security 🔐 system for #Windows Presentation Foundation #WPF apps https://t.co/qkmWj5GTPP https://t.co/SjiaFKG1Vk
29/05/2020,14:09,jeremylikness,RT @shayrojansky: Release #npgsql #efcore provider 3.1.4 with some bugfixes: https://t.co/M40Mlxx9PT
29/05/2020,13:39,FoxDeploy,This session from @NDC_Conferences by the super sharp @jeremylikness made me laugh out loud. Did you know Durable… https://t.co/isxe5nXeiQ
29/05/2020,04:15,jeremylikness,I know many of you got ❤️ love for #mongodb 🍃. What features should #cosmosdb 🌍 carry for the MongoDB API that aren… https://t.co/PWewQN8N3a
29/05/2020,04:10,jeremylikness,RT @chris_sainty: Are you interested in a full week of #Blazor development?! Then check out this event from @Telerik. I'm going to be join…
29/05/2020,04:06,jeremylikness,@RyanJosephDev @BriceFriha draw me
28/05/2020,20:51,jeremylikness,"RT @ajcvickers: #EntityFramework Weekly Update #efcore Highlights: » TPT support to model building, migrations and update pipeline! » Fu…"
28/05/2020,19:45,jeremylikness,...or the version guided by the energetic @danroth27. Each version has a unique perspective.… https://t.co/ES4g8cGFtg
28/05/2020,19:42,jeremylikness,... Of course many of you may prefer to watch the version hosted by the creator of #blazor himself...… https://t.co/VHIvoaYx3N
28/05/2020,18:14,jeremylikness,"#EFCore is back. Back again. #EntityFramework, tell your friends! Join the team on Wed June 3 at 10am PT/1pm ET fo… https://t.co/FcO0lS33K6"
28/05/2020,17:28,jeremylikness,@lupusa1 @rajesh_dotnet @ADefWebserver @chris_sainty @stevensanderson There is no scenario where storing credential… https://t.co/lA1Lpp7Up9
28/05/2020,17:03,lupusa1,@rajesh_dotnet @ADefWebserver @chris_sainty @stevensanderson @jeremylikness is connecting from blazor wasm directly… https://t.co/bolVOyQOi7
28/05/2020,16:23,jeremylikness,This @InfoQ article is a nice summary/overview of #msbuild #msbuild2020 with links to the various technologies and… https://t.co/h5aLkwucwj
28/05/2020,15:37,jeremylikness,"The #Blazor 🔥 fu is strong 💪 today! For the new @ch9 #ondotnet series for #aspnetcore ASP.NET Core, @danroth27 jo… https://t.co/GTbsM96lCP"
28/05/2020,15:28,jeremylikness,RT @ayende: I was on a podcast talking about building high performance databases. Interesting discussion all around. https://t.co/cW8ShYLa…
28/05/2020,15:01,JulieBr33723357,This will help you secure your own identity server #security #Blazor #Azure #Cosmos @codeproject @jeremylikness https://t.co/zBFccGkys2
28/05/2020,14:24,jeremylikness,"Your #msbuild workshop on-demand 🎦 video! Join @danroth27, @jongalloway, @adrian_stevens and me for a hands-on lab… https://t.co/4yyhTPoPeA"
27/05/2020,21:30,markjbrown,@finarne @Ealsur @jeremylikness @AzureFunctions tokens simply expire and are checked in our data plane on each request but it's very fast.
27/05/2020,21:30,markjbrown,@finarne @Ealsur @jeremylikness @AzureFunctions Yeah I would not use our users model for millions of users. It's no… https://t.co/z3puC7ootN
27/05/2020,20:45,finarne,@markjbrown @Ealsur @jeremylikness @AzureFunctions Looks like I should start here: https://t.co/wzoSyLo2kJ
27/05/2020,20:36,finarne,@markjbrown @Ealsur @jeremylikness @AzureFunctions Guess I am trying to work out if a client app that has say milli… https://t.co/qmqteLbJIt
27/05/2020,20:33,finarne,@markjbrown @Ealsur @jeremylikness @AzureFunctions Thanks for responding. Would it be unwise to build an app that u… https://t.co/FLx93mgttz
27/05/2020,20:31,uncle_dallas,@azuread Secured Serverless @AzureCosmosDB from #Blazor #WebAssembly https://t.co/QoW36zDEiT by @jeremylikness https://t.co/jXVMulZBMO
27/05/2020,19:58,irashid26,@Stuartq @ajcvickers @Scott_Addie @jeremylikness That's what I do...I use single or default to ensure either one or… https://t.co/UbTtYdNc7B
27/05/2020,19:41,dotnetkicks,Azure AD Secured Serverless Cosmos DB from Blazor WebAssembly by @JeremyLikness https://t.co/BKoIsNGDq4 #azure via @DotNetKicks
27/05/2020,18:57,jeremylikness,This looks like a great webinar by @EdCharbeneau and @Telerik ... full stack #CSharp with Telerik UI for #Blazor 🔥… https://t.co/Wq7sec4iQo
27/05/2020,18:31,markjbrown,@Ealsur @jeremylikness @finarne @AzureFunctions I think there's a soft limit of 50K users.
27/05/2020,17:36,jeremylikness,Series: the original #Serverless @azureFunctions link shortener with #Twitter enhancements from @logicappsio and… https://t.co/SOGI3J4qzo
27/05/2020,17:29,Stuartq,"@ajcvickers @jeremylikness Come to think of it, does it still do that when calling raw SQL? Aren't we just using Li… https://t.co/igPqKziadv"
27/05/2020,17:27,Stuartq,@ajcvickers @Scott_Addie @jeremylikness Single for me. If it's supposed to return a single value I want to know if… https://t.co/RM6MGJclgd
27/05/2020,16:23,jeremylikness,"Use #LINQ to query dynamic, schema-less #CosmosDB 🌍 #SQL API documents https://t.co/iV4bhYRY5W https://t.co/7qMalyaQCV"
27/05/2020,16:18,ajcvickers,@Scott_Addie @Stuartq @jeremylikness It's honestly not that important. It rarely makes a difference in the real wor… https://t.co/ff5pqSqpAw
27/05/2020,16:11,Scott_Addie,@ajcvickers @Stuartq @jeremylikness This seems like an important distinction to include in the EF docs. Is it already explained somewhere?
27/05/2020,16:07,jeremylikness,#entityframework #efcore knowledge dropped Twitter style. https://t.co/kca28rAyxn
27/05/2020,16:04,ajcvickers,@Stuartq @jeremylikness Nope. Single gets two rows so that it can throw if there is more than one row in the result… https://t.co/nJVBhk9aDA
27/05/2020,15:37,jeremylikness,Series: #JavaScript and the #VanillaJs framework: how to build apps using just a 'come as your are' approach with t… https://t.co/xi8FXUGhP3
27/05/2020,14:24,jeremylikness,"The experimental 🥼 mobile 📱 bindings for #Blazor 🔥 get a May update, featuring improved syntax for buttons 🔘 and la… https://t.co/ZGBkyXMpQC"
27/05/2020,14:23,jeremylikness,"Why let go of the past? #Silverlight forever... nah, I'm a #Blazor fan now. https://t.co/VOZn3eqaM3"
27/05/2020,14:19,cecilphillip,I believe @jeremylikness is behind this.. https://t.co/sW8UfzhYoZ #Silverlight
27/05/2020,06:57,Jayendran_A,'Azure AD Secured Serverless Cosmos DB from Blazor WebAssembly' by @jeremylikness #DEVCommunity… https://t.co/x69zDcGyMz
27/05/2020,05:29,uncle_dallas,#AspNetCore Series: MVC and #Razor Pages https://t.co/9PJIDEBdPi via @ch9 by @danroth27 @jeremylikness
27/05/2020,01:30,jeremylikness,@MrAhmadAwais The creative process. I love to find hard-to-solve problems then use code to create the solution. Unl… https://t.co/t1VK77RUFW
26/05/2020,22:20,finarne,@Ealsur @jeremylikness @AzureFunctions @markjbrown Totally get that “not the actual user’s data but just defined th… https://t.co/jteXMe6aQG
26/05/2020,22:14,finarne,@Ealsur @jeremylikness @AzureFunctions @markjbrown Thanks for the responses. It’s the resource tokens that I’d like… https://t.co/jU55ebsx7w
26/05/2020,22:08,jeremylikness,@Ealsur @finarne @AzureFunctions @markjbrown I was thinking of that. Question: I know if I have permission 'x' that… https://t.co/7ySUMXhmyQ
26/05/2020,20:49,jeremylikness,"@finarne @AzureFunctions Thanks! You can ask. I don't know the answer, but I know someone who might. @Ealsur , is… https://t.co/jjMbu1Xb8M"
26/05/2020,21:29,finarne,@jeremylikness @AzureFunctions @Ealsur My thinking was if your blog example used Azure AD B2C with (maybe) millions… https://t.co/VsyQDE5I7y
26/05/2020,22:01,Ealsur,"@jeremylikness @finarne @AzureFunctions I am not aware of any limits, @markjbrown do you know if there are any limi… https://t.co/YqxN3t4Mdx"
26/05/2020,20:03,jeremylikness,RT @BrigitMurtaugh: Hey friends! 😊 Check out part 2 of our On .NET #DotNetForSpark series where we run some awesome code samples using Azur…
26/05/2020,19:30,alignedDev,"Feature Flags are good, thanks @AbelSquidHead and @jeremylikness for this discussion: https://t.co/x4bNauinPt"
26/05/2020,19:02,melvinselvaraj,@dotnet @AbelSquidHead @jeremylikness Can't explain feature flags better than our devops rockstar @AbelSquidHead 🥰
26/05/2020,18:22,dotnet,"In the DevOps for .NET Developers series, @AbelSquidHead & @jeremylikness discuss doing Feature Flags with .NET https://t.co/TZOtPnxUGI"
26/05/2020,18:17,jeremylikness,"Woah! I didn't think it was real, but I found it in the wild. BELIEVE! The magic unicorn 🦄 calendar day really d… https://t.co/KJETWZTyvY"
26/05/2020,17:44,AzureDevOps,"In a new episode of #OnDotNET, @AbelSquidHead and @JeremyLikness show us how to apply feature flags to our code and… https://t.co/lrOQku8xIz"
26/05/2020,17:36,jeremylikness,"Quick 💡 #EFCore tip: Get a single, simple type value from a stored procedure with #EntityFramework Core and raw… https://t.co/w1MFuHD3GF"
26/05/2020,20:14,MarusykRoman,@jeremylikness Does it only work in EF Core 3?
26/05/2020,23:23,Stuartq,@jeremylikness @ajcvickers Not Single()?
27/05/2020,05:18,deepumi,@jeremylikness Instead of .AsEnumerable().First().Value; Why not Simply have new API or an extension meth… https://t.co/p6bd16XcqF
26/05/2020,16:53,dotnet,Today we're kicking off our #aspnetcore series with @danroth27 & @jeremylikness talking about MVC and Razor Pages… https://t.co/grEaWRrPJg
26/05/2020,16:35,dr_dimaka,#ASPNETCore Series: #MVC and #RazorPages // @danroth27 and @jeremylikness on @ch9 https://t.co/zmcgn2gr6n
26/05/2020,16:23,jeremylikness,A clever use of the new(er) #JavaScript API 'MutationObserver' to detect when a third-party JavaScript plug-in (in… https://t.co/48OkF14VB7
26/05/2020,16:17,jeremylikness,@mattstratton Sales and communication. I left tech an introvert to start my own fitness business. I gained apprecia… https://t.co/6qUV5nzTHf
26/05/2020,15:37,jeremylikness,Video 🎦: A great introduction to #aspnetcore ASP.NET Core #MVC and #Razor pages with the amazing @danroth27 for… https://t.co/MN6OSGs8Mu
26/05/2020,17:49,rebinoq,"@jeremylikness @danroth27 @ch9 Very helpful and nice explanation, I hope everyone has time to listen to this 🦸♂️ topic 🦸♂️"
26/05/2020,14:24,jeremylikness,Watch the #msbuild video on demand 🎦: 'Ask the #dotnetcore .NET Core' team hosted by @KathleenDollard featuring… https://t.co/sNkwUY5mad
26/05/2020,14:13,jeremylikness,"ICYMI, how to create a completely static/standalone #Blazor #WebAssembly app that securely communicates to… https://t.co/13ZSeIUiVx"
26/05/2020,13:58,jeremylikness,@julielerman @anup1252000 @efmagicunicorns I'm pinging @smitpatel to keep me honest but I'm fairly certain the answ… https://t.co/sHgRftaP6n
27/05/2020,05:11,anup1252000,@jeremylikness @julielerman @efmagicunicorns @smitpatel Thanks
26/05/2020,04:02,jeremylikness,@QuinnyPig We need a data access layer in case we need to swap out the database provider later on. We'll wrap that… https://t.co/EoVoagfUhK
26/05/2020,05:08,cullophid,@jeremylikness @QuinnyPig Uh this is so ingrained. I still create horizontal layers like this per default 🤦♂️
25/05/2020,22:56,bradygaster,"got the previous/next buttons working in downr, which was key as i'm building my first workshop with it. deployed a… https://t.co/JsbbokB3dP"
25/05/2020,22:36,jeremylikness,@vicki_langer Congratulations!!
25/05/2020,22:30,NareshJBhatia,@Kaybarax @kvlly @sseraphini @jeremylikness @mtliendo @cyanharlow @cjbrooks12 @mweststrate @jensimmons @dabit3… https://t.co/i0bS2Os7DK
25/05/2020,21:11,jeremylikness,@Kaybarax @kvlly @sseraphini @mtliendo @cyanharlow @cjbrooks12 @mweststrate @NareshJBhatia @jensimmons @dabit3… https://t.co/1iBLglxrIv
25/05/2020,21:11,Kaybarax,@jeremylikness @kvlly @sseraphini @mtliendo @cyanharlow @cjbrooks12 @mweststrate @NareshJBhatia @jensimmons @dabit3… https://t.co/wS23Fvnu6K
25/05/2020,21:08,Kaybarax,"@kvlly I'll just mention them all, that I have seen their work, and as 180 chars can allow me: @sseraphini ,… https://t.co/0OTyhr5CxL"
25/05/2020,20:29,jeremylikness,@jfarrell @nthonyChu @AzureFunctions Thank you!
25/05/2020,18:58,jeremylikness,"I'm not great at sketching, but I enjoy doing it and know practice will improve my skills. I started doing sketches… https://t.co/WdyNtjVC5u"
25/05/2020,19:30,eamokeane,@jeremylikness @surface I use an IPad. It feels good to draw again. Visuals can explain concepts much clearer sometimes.
25/05/2020,19:39,StevenTCramer,@jeremylikness @surface Which model?
25/05/2020,17:31,jeremylikness,"@EngstromJimmy @Workshopshed @code The service is great but it does send your text to their servers, which means an… https://t.co/ekOKiuOcZb"
25/05/2020,17:32,Workshopshed,@jeremylikness @EngstromJimmy @code Valid point
25/05/2020,17:30,jeremylikness,@thnk2wn @bradygaster @Janisku7 @mkristensen I did a combination of manual tweaks and writing one-off utilities to… https://t.co/Q0md48GdFj
26/05/2020,12:38,Janisku7,@jeremylikness @thnk2wn @bradygaster @mkristensen I might go the orchardcore if it have those modules build so it w… https://t.co/PlrvkCAxFz
25/05/2020,17:27,EngstromJimmy,"@Workshopshed @jeremylikness Me too, from within @code and using Markdown."
25/05/2020,17:26,thnk2wn,@bradygaster @jeremylikness @Janisku7 @mkristensen After running the export I almost think it’ll be easier fixing p… https://t.co/ZCyzP0LdPJ
25/05/2020,17:23,bradygaster,@thnk2wn @jeremylikness @Janisku7 Migration used to keep me locked to a platform. One day @mkristensen and I brute-… https://t.co/ogzG9PH41j
25/05/2020,17:14,thnk2wn,@bradygaster @jeremylikness @Janisku7 Nice. I've been looking at moving from Wordpress to Eleventy but it's migrati… https://t.co/znsy8vFxCY
25/05/2020,15:57,dr_dimaka,#AzureAD Secured #Serverless #CosmosDB from #Blazor #WebAssembly // by @JeremyLikness https://t.co/p9C5a24Eqs
25/05/2020,15:48,jeremylikness,@Janisku7 @bradygaster https://t.co/Pm8zbVqBpn
25/05/2020,17:07,bradygaster,@jeremylikness @Janisku7 Hugo is dope
25/05/2020,15:43,Janisku7,I guess I need to make blogs as static websites like @jeremylikness and @bradygaster made but first i guess i have… https://t.co/4xMzmBFypk
25/05/2020,14:32,jeremylikness,@granicz @AzureFunctions I have not.
25/05/2020,14:31,jeremylikness,Whew! Done: https://t.co/9G6fVvm2IJ
25/05/2020,14:24,jeremylikness,"I blogged: secure a #Blazor 🔥 #WebAssembly 🕸 app with #Azure Active Directory, then use the Azure AD token to secur… https://t.co/e8bxRkDOnZ"
25/05/2020,14:30,granicz,@jeremylikness @AzureFunctions This would have been so much more awesome with #fsbolero - then you get all the good… https://t.co/L9R09M07nQ
25/05/2020,19:55,jfarrell,@jeremylikness @nthonyChu @AzureFunctions I approve this approach!! Great work
26/05/2020,20:27,finarne,"@jeremylikness @AzureFunctions Fantastic blog. Can I ask, is there a limit on the number of users you can create in… https://t.co/G4F2OBdsNm"
25/05/2020,13:54,jeremylikness,@beefarino @bradygaster Yes. https://t.co/gu9QRi2sO1
25/05/2020,13:50,jeremylikness,YARP: A Reverse Proxy https://t.co/VHEsdNiqXC
25/05/2020,13:40,jeremylikness,I'm not sure I want that story on my permanent Twitter record. https://t.co/FIaJ6h8kMl
25/05/2020,13:37,jeremylikness,@mrolaolu @Shopify Congratulations!!!!
25/05/2020,13:07,jeremylikness,Happy 🎉🍾🥳 Monday! Here's #SomeGoodNews from this past week in memory of those who died in service. Watching… https://t.co/wUdV9hEBMr
25/05/2020,12:56,jeremylikness,@sinclairinat0r Yes! We visited an Airbnb and slept better than we ever had before. So we asked the owner what bran… https://t.co/dYyCgpPsj9
25/05/2020,12:54,jeremylikness,@jonahhorowitz My decent laser printer was only $99.
25/05/2020,09:04,AzureWeekly,EF Core and #CosmosDB with Blazor WebAssembly from @jeremylikness https://t.co/elQDO8iNjo #Azure
25/05/2020,07:01,egilhansen,"@jeremylikness Gah, that tweet was clearly written without spell check... My trick is to create a custom style that sets...."
25/05/2020,04:42,jeremylikness,"@_s_hari Werd. I didn't figure out it was actually Sunday, not Saturday, until around noon."
25/05/2020,00:03,jeremylikness,@ravinwashere All my life? Probably. All the time? Nope. #Developer4life Git my gist?
25/05/2020,01:45,StevenTCramer,@jeremylikness @ravinwashere Couldn't have said it better myself.
25/05/2020,02:14,integerman,"@jeremylikness @ravinwashere I'm about the same. My job is no longer to write code, but I wouldn't be Matt without… https://t.co/kx5qqCLeMo"
25/05/2020,06:21,mike_kaufmann,"@jeremylikness @ravinwashere Same here. The older I get, the less code I write. But I enjoy digging into code from… https://t.co/IRIPgJRY3a"
24/05/2020,23:25,jeremylikness,Wow. My next blog post turned out huge but there are so many steps to configuring security that I didn't want to le… https://t.co/Dyvoz3Lf56
25/05/2020,02:27,AlexBlount,@jeremylikness Can’t wait! https://t.co/Xm9BTigAbf
24/05/2020,23:23,jeremylikness,"@egilhansen Mark it. Highlight the text, go to 'language' and check 'Do not check spelling or grammar.' Record the… https://t.co/ObX8wtqrUn"
25/05/2020,07:00,egilhansen,"@jeremylikness My truck is to create a custom style that is sets 'do not spell check', and assign the custom style… https://t.co/ij7kRTg0SX"
24/05/2020,22:38,jeremylikness,@terrajobst I'm using @Code with Code Spell Checker and Spell Right. The markdown editor is the one built-in with o… https://t.co/DZ2n8XKqiU
24/05/2020,22:23,jeremylikness,@Tyrrrz @code Because I want grammar too. Code catches my spelling mistakes. With Word it's usually things like bad… https://t.co/rIEpKTMQvN
24/05/2020,22:16,jeremylikness,"@terrajobst I compose in Markdown then paste from the generated HTML, so there aren't styles... but I like it for t… https://t.co/Iaxta0gkZC"
24/05/2020,22:34,terrajobst,@jeremylikness What’s your Markdown editor? Integrated spell checker not as good then?
24/05/2020,22:10,jeremylikness,Confession: I use Word to spell and grammar check all of my blogs. I use it so often that I created a macro with th… https://t.co/R04tdDXIQM
24/05/2020,22:13,terrajobst,"@jeremylikness If you use a style for code blocks, you can set “don’t spell check” in the style itself 😀"
24/05/2020,22:16,Tyrrrz,@jeremylikness Why not use @code with spell checking plugin?
24/05/2020,23:06,egilhansen,@jeremylikness I do the same. It does seem to cause a few problems some times when I have online code snippets that… https://t.co/GFABdlnaQQ
25/05/2020,02:19,cajunAA,@jeremylikness I do the same and also check them in the Hemingway app! https://t.co/VdcbMMIQ5m
25/05/2020,06:47,DavidBabayan4,@jeremylikness Why Microsoft don't add #microsofteditor plug in for @code?
25/05/2020,07:06,egilhansen,@jeremylikness Maybe it's time for an extension for Word that makes writing markdown easier in it? Or does such a thing already exists?
25/05/2020,09:06,Workshopshed,@jeremylikness I use the free version of Grammarly
25/05/2020,21:48,JurgenOnAzure,@jeremylikness I use Word to find synonyms 😏
24/05/2020,21:41,timheuer,@bradygaster @jeremylikness You may be able to add rewrite rules on the CDN to deliver the pre-compressed files. It… https://t.co/XaueDdmKr8
24/05/2020,21:38,jeremylikness,"@timheuer @bradygaster No, but you can cheat by making the default `index.html` more interesting than just 'Loading...'"
24/05/2020,21:37,jeremylikness,"You're welcome! I'm glad it helped. For anyone confused about #CosmosDB consistency levels, here's a little song I… https://t.co/265C3XX4Vd"
24/05/2020,21:36,bradygaster,@timheuer @jeremylikness Yeah I tried. Put CDN on top of it and made a static-hosted version of the site. Same thin… https://t.co/s8O4TKtGYn
24/05/2020,21:10,ScottCate,@bradygaster @jeremylikness @dotnet Anytime my friend. Anytime.
24/05/2020,21:09,RodrigoGroener,Frist article I read that explains Cosmos DB Consistency Levels so that i got it. thank you @jeremylikness https://t.co/RL3hUkuFfC
24/05/2020,19:24,jeremylikness,@brianlagunas Whoa! A ready-to-go bike ramp for just a c-note?!
24/05/2020,19:03,jeremylikness,@codeputer @AzureFunctions I need to update that... Works even better IMHO using a base component class to wire the… https://t.co/H3lU3M2ViB
24/05/2020,18:57,jeremylikness,@codeputer @AzureFunctions https://t.co/8jLS8V34cS
24/05/2020,14:52,jeremylikness,@thewhitmore On the computer probably a tie between Legacy of the Ancients and Altered Reality. In the arcade it wa… https://t.co/mDl0sYAxTr
24/05/2020,14:43,jeremylikness,@bradygaster For a blog site I would enhance the default template to maybe render a nice intro or about page while… https://t.co/fZNynP56n4
24/05/2020,14:44,bradygaster,@jeremylikness I may request you pull request to the downr master branch once I get this next update finished and deployed.
24/05/2020,21:30,timheuer,@jeremylikness @bradygaster Storage won't enable you a method of getting the pre-compressed assets that will help.
24/05/2020,14:40,jeremylikness,@WobbleyPatriot Yes.
24/05/2020,14:39,joslat,"@codeputer @jeremylikness @AzureFunctions Well, I agree with the HTML and a Js part... But at least you can impleme… https://t.co/OSEzyMV28X"
24/05/2020,14:15,jeremylikness,@bradygaster @dotnet It's old but I wrote about the step I use in my CI/CD pipeline to 'static prep' my hosted apps… https://t.co/MfhbFUhjrl
24/05/2020,13:58,bradygaster,@jeremylikness @dotnet thanks to my bruh @ScottCate for helping me fix a few dns/ssl issues that've been plaguing me for a bit.
24/05/2020,13:55,jeremylikness,@codeputer @AzureFunctions I use MVVM with Razor.
24/05/2020,18:43,codeputer,@jeremylikness @AzureFunctions Really! Please let me know of any sample project that shows this... Didn't think the… https://t.co/zQjWxsyEu3
24/05/2020,13:18,bradygaster,@jeremylikness @dotnet w00t! got it. had to tweak the base url of the API call back to the server to get the conten… https://t.co/5jPuviaiSL
24/05/2020,13:12,bradygaster,@jeremylikness @dotnet subsequent pages don't load - yeah the static part will take some work. sticking with the hosted solution. :)
24/05/2020,13:11,bradygaster,"@jeremylikness @dotnet read a few docs and got the blog up and running on a static site hosted in #azure storage, w… https://t.co/lpgnzJUprK"
24/05/2020,02:03,jeremylikness,@bradygaster @dotnet The blog looks sweet my man. Looking forward to checking out the repo.
24/05/2020,02:11,bradygaster,@jeremylikness @dotnet Thanks homie
23/05/2020,23:46,bradygaster,@RickStrahl @DamianEdwards @dotnet @danroth27 @spboyer @timheuer @jeremylikness ui “atop” pardon
23/05/2020,23:45,bradygaster,@RickStrahl @DamianEdwards @dotnet @danroth27 I’m also experimenting a lot with the likes of @spboyer and @timheuer… https://t.co/QCgoavGDoT
23/05/2020,20:41,jeremylikness,RT @coolcsh: We have been experimenting with building a high performance proxy with #dotnet called YARP (Yet Another Reverse Proxy). We hop…
23/05/2020,20:37,jeremylikness,"@ryanflorence 20 developer team? Wait, that means 12 are slackers...."
23/05/2020,20:36,jeremylikness,... This is an entirely #severless solution that does not require a hosted #aspnetcore controller. I used… https://t.co/RjgNNxEMhI
24/05/2020,04:07,me_manishk,@jeremylikness Why not host it on the newly launched Static Web Apps..
23/05/2020,20:13,jeremylikness,...it's a long weekend so I hope to publish the full repo and blog early next week.
23/05/2020,20:13,jeremylikness,"Long weekend and babysitting a dog recovering from surgery. So, what to do? Implement a static (non-hosted) #Blazor… https://t.co/kPnivZkCfq"
23/05/2020,20:26,joelcochran,@jeremylikness @AzureFunctions I’m interested in 4 of those things 😊
24/05/2020,10:07,deepumi,@jeremylikness @AzureFunctions Token would have access from Azure Key vault!
24/05/2020,13:41,codeputer,@jeremylikness @AzureFunctions Am I crazy about thinking how HTML5 and XAML should be used in a browser?? How hard… https://t.co/VPnj9bJyxo
25/05/2020,02:26,timheuer,@jeremylikness @ajcvickers @AzureFunctions I mean technically something is hosting it 😜
22/05/2020,21:53,anotarian,@zippy1981 @vickyharp @jeremylikness My son hung up on the doctor today because it was the first time it was not his friend on the phone.
22/05/2020,21:48,vickyharp,@jeremylikness 'I know this is unpopular but I rather like (a movie with multiple sequels and a toy line)'
22/05/2020,21:47,zippy1981,@vickyharp @jeremylikness I can't wait for my kids to be old enough so we can mildly disagree about quitting vim.
22/05/2020,16:57,jeremylikness,@film_girl @Microsoft @azureadvocates Happy anniversary!
22/05/2020,16:24,jeremylikness,Do people actually research whether an opinion is popular or not before tweeting their self-described unpopular opi… https://t.co/M43cLIGorE
22/05/2020,16:28,brunoborges,@jeremylikness Is this an unpopular questioning?
22/05/2020,21:46,vickyharp,@jeremylikness Those threads often look like a list of mild disagreements someone might have had with a housemate.
22/05/2020,15:07,jeremylikness,@bitandbang Trip.
22/05/2020,15:06,jeremylikness,@jsnover This!
22/05/2020,15:03,jeremylikness,@elylucas Null modem cables and IPX.
22/05/2020,15:04,elylucas,@jeremylikness And then IPX over TCP and gaming on local BBS services 🤣. 14.4 kbps gaming FTW!
22/05/2020,14:59,jeremylikness,@elylucas Also Doom and Quake. I played both in campaign mode before I got into online death matches. I'm thankful… https://t.co/hTgjdVu1ao
22/05/2020,15:01,elylucas,"@jeremylikness Oh yes, Doom was my first game playing in a LAN. The local indoor paint ball place setup 4 computers… https://t.co/GmWHcksshG"
22/05/2020,14:56,jeremylikness,@elylucas Plenty of options to try it out! I remember spending a summer playing the series all day long while my pa… https://t.co/MxAojGGrl1
22/05/2020,12:23,jeremylikness,"@elylucas Ultima I, II, III, and IV. Zork."
22/05/2020,14:51,elylucas,@jeremylikness I never played an Ultima game. Feel like its a piece of gaming history I don't have.
22/05/2020,11:39,codeputer,"@davidfowl @jeremylikness @DAPR Oops., @daprdev is what I was attempting to tweet about!"
22/05/2020,06:28,davidfowl,@codeputer @jeremylikness @DAPR https://t.co/1wAettd5W4
22/05/2020,01:04,EpochUnix,@seanw122 @jeremylikness https://t.co/lXzZqrbRJJ
21/05/2020,23:30,seanw122,Listening to @jeremylikness and Arthur Vickers at Louisville .NET user group: https://t.co/K58OrrAet4 Join now!!
21/05/2020,21:54,jeremylikness,This online event starts in just over an hour. Still time to RSVP! @ajcvickers and I are excited to share… https://t.co/mJQ8MAN0MS
21/05/2020,20:17,akshay_shaha,Azure Event Grid: The Whole Story by @jeremylikness https://t.co/YeZ24GXiLK
21/05/2020,17:36,jeremylikness,Introducing Project Tye for #dotnet .NET! ✅ Make development of microservices easier ▶ Run many services with 1 co… https://t.co/AF18xv4vTK
21/05/2020,18:55,codeputer,"@jeremylikness Looks like a good use case for @dapr startup, and better than running multiple versions of visual st… https://t.co/91Z8gwyDAt"
22/05/2020,13:21,lakritzator,"@jeremylikness It's cool, it feels slightly like Spring-Boot from the Java ecosystem, but on a different level. Th… https://t.co/5D17VXQJvr"
21/05/2020,16:35,ddskier,EF Core and Cosmos DB with Blazor WebAssembly https://t.co/HTEtj7UYiW by @JeremyLikness #Blazor #WebAssembly
21/05/2020,15:37,jeremylikness,The docs to get started with #Azure Static Web Apps using your framework of choice! https://t.co/fTXsPLv9Zd https://t.co/nZwJgZg40y
21/05/2020,15:26,jeremylikness,"Thanks to some early morning (my time) help from Javier Calvarro Nelson, I figured out what is needed to have a who… https://t.co/URljzXMGJI"
21/05/2020,14:26,jeremylikness,@iamalexmang There is a mention!
21/05/2020,14:26,iamalexmang,@jeremylikness #mustwatch #MSBuild
21/05/2020,14:24,jeremylikness,Video 🎦: #DevOps for #aspnet ASP.NET developers: feature 🏁 flags! ❓ What are feature flags used for? ⚙ Using App… https://t.co/2eVRbptw9x
21/05/2020,14:26,iamalexmang,"@jeremylikness Uh, this must be good! LaunchDarkly also included or is all Azure-powered?"
21/05/2020,06:02,jeremylikness,And that's a wrap for me. Thank you for being a part of this unprecedented and revolutionary virtual experience th… https://t.co/eWd3yoHJtQ
21/05/2020,06:03,isaacrlevin,@jeremylikness You... Are... Great!!! https://t.co/BR74h4fh6x
21/05/2020,05:36,sfeldman,@codeputer @jeremylikness The compiled assembly is static. What it does is not.
21/05/2020,04:14,jeremylikness,Hi #MSBuild ... this is happening soon! Hope to see you there. #Blazor #WebAssembly #aspnetcore #dotnetcore https://t.co/5K9fEP6X2G
21/05/2020,03:53,ljquintanilla,@jongalloway @jeremylikness Neat! Thanks https://t.co/ThuiOQKbKo
21/05/2020,03:50,jeremylikness,"RT @jongalloway: Here's a nice summary of everything that's been announced at #MSBuild (available in PDF, too): 🎺MICROSOFT BUILD 2020🎺…"
21/05/2020,00:36,jeremylikness,"9:30pm Pacific The #blazor 🔥 #webassembly 🕸️ event of the year, er, at least of the evening. We will build a beau… https://t.co/OJvdMhfDSV"
21/05/2020,04:34,ttkkmg,@jeremylikness @MicrosoftLearn @danroth27 I have just joined your session! Thank you.
20/05/2020,21:46,J_aa_p,@Malscent @jeremylikness @Adron @cecilphillip @codeopinion The manual install on supported Linux platforms is so ea… https://t.co/t1QNid9faq
20/05/2020,17:36,jeremylikness,Explore the native support for #MicrosoftGraph #Microsoft Graph in #OData 'power your applications with extensive… https://t.co/sB1U3q460R
20/05/2020,16:23,jeremylikness,Building apps with #Angular 🅰 #React #ReactJs #vuejs or perhaps #svelte? Join @John_Papa on a tour of the new… https://t.co/rZuZjTrE8u
20/05/2020,15:42,jeremylikness,Thanks for the post @timheuer !! https://t.co/vF8bYFT8Ga
20/05/2020,15:37,jeremylikness,How to host your #Blazor 🔥 #WebAssembly 🕸 single page apps (SPA) using the brand new preview #Azure Static Web Apps… https://t.co/Ih6a26sWld
20/05/2020,15:38,uzochiapa,@jeremylikness I asked this question yesterday. #MSFT is on fire. Thank you for the post. Keep posting.
21/05/2020,05:22,codeputer,@jeremylikness Isn't blazor the opposite of static?
20/05/2020,15:29,aspnetcore_news,EF Core and Cosmos DB with Blazor WebAssembly by @JeremyLikness https://t.co/t2oRAIJGE1 #aspnetcore https://t.co/m0FoRvPmA3
20/05/2020,14:28,jeremylikness,This is awesome to hear! Thanks for sharing Matt. /cc @ajcvickers https://t.co/l4FEbQ7hiK
20/05/2020,14:24,jeremylikness,"It's here! New, improved, with dozens of bug fixes and several new features. Announcing the 4th preview of versio… https://t.co/Lkh1e5Lq1R"
20/05/2020,13:47,J_aa_p,"@Adron @cecilphillip @jeremylikness @codeopinion Blazor WebAssembly, gRPC and SQLite running on a Ubuntu 18.04 VPS… https://t.co/CIiX8eZF0e"
20/05/2020,13:30,jeremylikness,Hello #Blazor 🔥 #WebAssembly 🕸 fans at #MSBuild ! Several spots opened up for my @MicrosoftLearn session tonight… https://t.co/2zcN7JdkOm
20/05/2020,14:04,uzochiapa,@jeremylikness @MicrosoftLearn Thank you for posting this link. I hope to join. I am interested in some design patt… https://t.co/ilX24q9cfw
20/05/2020,07:38,jepperc,"@Adron @cecilphillip @jeremylikness @codeopinion seriously, third false statement in a row? Just stop ranting.."
20/05/2020,07:09,DeviantCrypto,@Adron @cecilphillip @jeremylikness @codeopinion You poor thing
20/05/2020,05:24,henriksen,@Adron @cecilphillip @jeremylikness @codeopinion The platform that's not supported in those cases is the browser sa… https://t.co/gYjf9W7ivz
20/05/2020,05:14,jeremylikness,🙏🏻Thanks everyone for joining us this evening for #dotnetcore! 🤷🏻♀️I have no idea how I managed to sneak onto a p… https://t.co/7kWB7xu0C2
20/05/2020,05:44,msucgun,@jeremylikness @jaredpar @Tashkant @KathleenDollard @terrajobst @oliagavrysh @mjhutchinson @danroth27 Has the sessi… https://t.co/2wzbJmrQf7
20/05/2020,03:22,jeremylikness,There is a beautiful view as I prepare for an evening session with the #dotnetcore .NET Core team. #MSBuild is sti… https://t.co/2iufAVy4LA
20/05/2020,02:57,cecilphillip,@Adron @jeremylikness @codeopinion What if you click on that tab that says .NET Cli?
20/05/2020,02:40,98codes,"@joelcochran @jbogard @Adron @cecilphillip @jeremylikness @codeopinion Adding to this: the docs are missing a step,… https://t.co/30RzX9mPPu"
20/05/2020,02:26,jbogard,@distantcam @Adron @cecilphillip @jeremylikness @codeopinion Ha no joke. I’m on a cloud platform in my current clie… https://t.co/RSsLNb6CCm
20/05/2020,02:19,distantcam,@Adron @jbogard @cecilphillip @jeremylikness @codeopinion At least there's an option. I always feel terrible when a… https://t.co/O26TnYkqJx
20/05/2020,02:15,Adron,@jbogard @cecilphillip @jeremylikness @codeopinion Sure. That'd be a fix. Why see VS when I clearly can't install i… https://t.co/LS02oVJz6u
20/05/2020,01:48,joelcochran,"@98codes @jbogard @Adron @cecilphillip @jeremylikness @codeopinion I agree here, but I think that’s the first time… https://t.co/TmKEYUc5G0"
20/05/2020,01:29,98codes,"@jbogard @Adron @cecilphillip @jeremylikness @codeopinion To be fair, the devs most likely to be interested in Blaz… https://t.co/IaomXhS2HF"
20/05/2020,01:29,jbogard,@Adron @cecilphillip @jeremylikness @codeopinion I mean half the demos today were all CLI. Running in WSL 2...but w… https://t.co/1jDwco2iHd
20/05/2020,01:23,jeremylikness,@mairacw @Adron @cecilphillip @codeopinion @danroth27 Sorry @danroth27. I take back my /cc.
20/05/2020,01:20,jbogard,@Adron @cecilphillip @jeremylikness @codeopinion I mean...why would the UX folks do any different? Do you want the… https://t.co/WbZG7ZbZnQ
20/05/2020,01:19,jeremylikness,"@Adron @cecilphillip @codeopinion Believe me, I'm not trying to convert you or change your mind. Just want people r… https://t.co/4GhYjNmgzk"
20/05/2020,13:12,Malscent,"@jeremylikness @Adron @cecilphillip @codeopinion Except on stock Ubuntu 19.10, with package manager install of dot… https://t.co/XS14Z4nMen"
20/05/2020,01:18,Adron,@jbogard @cecilphillip @jeremylikness @codeopinion Yup. I did. I circled the part I did though for the specific reason in thar tweet tho.
20/05/2020,01:18,jbogard,@Adron @cecilphillip @jeremylikness @codeopinion The other 3 options are for different platforms
20/05/2020,01:17,jeremylikness,@Adron @cecilphillip @codeopinion The WebAssembly version is _not_ tied to SignalR.
20/05/2020,05:29,davidfowl,@jeremylikness @Adron @cecilphillip @codeopinion You should use SignalR anyway ;)
20/05/2020,01:16,jbogard,@Adron @cecilphillip @jeremylikness @codeopinion Did you not see the sentence right above and all the tabs?
20/05/2020,01:16,Adron,"@cecilphillip @jeremylikness @codeopinion Being that so much is kind of tied to SingalR, and other various things,… https://t.co/ExeLdSJy1d"
20/05/2020,01:15,jeremylikness,@Adron @cecilphillip @codeopinion That happens in Windows too. It's thrown when features can't be implemented in th… https://t.co/nAnNFIQSZ0
20/05/2020,01:15,Adron,"@cecilphillip @jeremylikness @codeopinion I want to be excited about this. But even now, after reviewing and toying… https://t.co/k9MBc6fZjC"
20/05/2020,01:13,jeremylikness,@Adron @cecilphillip @codeopinion /cc @danroth27
20/05/2020,01:21,mairacw,@jeremylikness @Adron @cecilphillip @codeopinion @danroth27 I know Dan is working on improving that. But the instal… https://t.co/k9JcZVqPqf
20/05/2020,01:13,Adron,@cecilphillip @jeremylikness @codeopinion Then a few seconds later I go digging and one of the first exceptions tha… https://t.co/nKWlUuSuqV
20/05/2020,01:12,Adron,@cecilphillip @jeremylikness @codeopinion Here's where I feel like I get kicked in the face tho... First docs that… https://t.co/GGZyfKARii
20/05/2020,00:16,jeremylikness,@daniellittledev @codeopinion Yes. https://t.co/iCewV9w6Am
20/05/2020,00:11,daniellittledev,"@jeremylikness @codeopinion A question though, does it work with FSharp?"
19/05/2020,23:49,jeremylikness,@daniellittledev @codeopinion What about Blazor prevents that?
20/05/2020,00:09,daniellittledev,"@jeremylikness @codeopinion I'm not sure anything prevents it, but it goes seem harder as boundaries become less ex… https://t.co/2alzngaqZH"
20/05/2020,06:19,dustinmoris,@jeremylikness @daniellittledev @codeopinion .NET prevents it. No front end developers are not skilled in C# to wri… https://t.co/l5Aw3zQSMX
19/05/2020,23:47,jeremylikness,@Adron @codeopinion dotnet new blazorwasm -o newapp cd newapp dotnet run
20/05/2020,01:02,cecilphillip,@jeremylikness @Adron @codeopinion Looks like someone actually read the documentation!
19/05/2020,23:36,jeremylikness,At the bottom of every web page: 👍 'Please don't hesitate to contact support.' At the top of every support page: ✋… https://t.co/NXUC5zCdEG
19/05/2020,20:59,burkeholland,@nthonyChu @jeremylikness @JonathanGiles You can get an apex domain with this workaround while we wait for official… https://t.co/4MA57J2IhJ
19/05/2020,20:22,jeremylikness,@JonathanGiles I haven't dug in deep enough to answer. Maybe @nthonyChu knows ... or knows someone who knows ...?
19/05/2020,20:36,nthonyChu,"@jeremylikness @JonathanGiles Custom domain support with managed certs (apex domain not yet supported), proper supp… https://t.co/jCOnBU7Udo"
19/05/2020,19:01,isaac_abraham,@Kevin_L_Howard @jeremylikness @demisbellot chocolatey can uninstall packages
19/05/2020,18:38,jeremylikness,"RT @meetdux: Microsoft's Fluid Framework is now open source, comes to Office 365 https://t.co/5lkAe70IzB via @techcrunch #msbuild"
19/05/2020,17:55,demisbellot,"@pauldotknopf @jeremylikness @chocolateynuget It's nice that they ship Linux :) The WSL2 Gimp demo was cool, as loo… https://t.co/FmNw5DomrF"
19/05/2020,17:53,pauldotknopf,"@demisbellot @jeremylikness @chocolateynuget I really wish Microsoft would make it a proper package manager, with u… https://t.co/SYIMKOUwdQ"
19/05/2020,17:51,demisbellot,"@pauldotknopf @jeremylikness @chocolateynuget It was mentioned somewhere that it integrates with Chocolatey, so may… https://t.co/AgUWyHAwfL"
19/05/2020,17:48,DenelonMs,"@quantumcalc @jeremylikness Yes, select the configuration you want: https://t.co/UvtYfXVAT2"
19/05/2020,17:46,DenelonMs,@mkellerman @Kevin_L_Howard @jeremylikness @demisbellot https://t.co/RXqTkfL2Fp
19/05/2020,17:46,jeremylikness,@quantumcalc Yes! This is the list of Microsoft packages supported right now: https://t.co/2Iai2HbQzG
19/05/2020,17:58,quantumcalc,"@jeremylikness Cool! Does it support selecting VS install options (i.e. .NET development, C++ development, Android an so on)?"
19/05/2020,18:07,quantumcalc,@jeremylikness I have tried before to create chocolate-based script for deploying dev environment for a project wit… https://t.co/r51NBujyIS
19/05/2020,17:32,ajcvickers,@CodePaLOUsa @LouDotNet @jeremylikness Actually @ajcvickers :-)
19/05/2020,16:50,jeremylikness,Come and get your post #MSBuild virtual #entityframework #efcore goodness! /cc @ajcvickers https://t.co/nbdtBckCov
19/05/2020,16:48,jeremylikness,"Since there are so many dogs in the #MSBuild keynote, here's my German Shepherd, Indi, watching the live stream on… https://t.co/pnaAWLvvDt"
19/05/2020,16:45,CodePaLOUsa,This week's @LouDotNet will feature @JeremyLikness and @ajcickers from the Entity Framework team as they talk about… https://t.co/QXrYN5byGB
19/05/2020,16:37,uzochiapa,@jeremylikness This is really something. https://t.co/QGnwKNSxbU I love this abstraction. No need to configure re… https://t.co/rXjmg6bcJr
19/05/2020,16:33,mkellerman,@Kevin_L_Howard @jeremylikness @demisbellot I’d love to read more about this ☝️blog post?
19/05/2020,16:27,jeremylikness,It's here! #Windows Terminal 1.0. This is the _only_ terminal I use since it was announced last year. I have… https://t.co/BO8ZiRz0zr
19/05/2020,16:29,Chris_L_Ayers,"@jeremylikness Agreed. It is great. Looks good, runs awesome."
20/05/2020,00:21,DawidFerenczy,"@jeremylikness Well, I have that since Windows 2k (ConEmu + Cygwin). Including Powershell since Windows 7. But it'… https://t.co/Q2athJqMYB"
21/05/2020,12:20,MokhtarAshour,@jeremylikness How to replicate these nice looks in the settings.json? Any community contributions?
19/05/2020,16:23,jeremylikness,#JAMStack lovers celebrate 🎉🎈. Introducing #Azure App Service STATIC WEB APPS! 'optimized around the #OSS tools d… https://t.co/0MflAtDnur
19/05/2020,19:53,JonathanGiles,"@jeremylikness Jeremy, do you know how this differentiates from static sites on Azure blob storage (which is what I currently use)?"
19/05/2020,16:17,jeremylikness,Running GIMP (dork) in #Linux 🐧 on #Windows via #WSL2 ... full graphics y'all ... mind blown! #MSBuild 🧠💥 https://t.co/KraT9YgQy5
19/05/2020,16:08,jeremylikness,`winget install terminal` `winget install powershell` `winget install powertoys` What am I doing? Setting up a new… https://t.co/y20RKqWKqZ
19/05/2020,16:28,Kevin_L_Howard,@jeremylikness @demisbellot Nice... what are the pros and cons for using this versus Chocolatey?
19/05/2020,17:17,daniel0x00,@jeremylikness AMEN!
19/05/2020,17:40,quantumcalc,@jeremylikness Is it possible to install Visual Studio 2019 using this package manager?
19/05/2020,17:49,pauldotknopf,@jeremylikness @demisbellot What does this mean for @chocolateynuget?
19/05/2020,18:25,LiekensSteven,@jeremylikness Cool but what happened to OneGet?
20/05/2020,03:33,rcb_evans,"@jeremylikness Affiliated in any way with, or based on chocolatey? https://t.co/zGz3VedHD0"
20/05/2020,04:35,parthiv7,@jeremylikness Can we build and run it for Mac??
20/05/2020,08:00,BlnaryMlke,@jeremylikness Wonder if it will have a brewfile option like homebrew does. It's a pretty great way to restore all your apps
20/05/2020,09:18,legigor,@jeremylikness RIP @chocolateynuget ?
20/05/2020,12:31,adam0x5A,@jeremylikness @Uter1007 Stopped reading at 3rd line of screenshot
20/05/2020,13:39,Jaykul,@jeremylikness Looks like you need boxstarter 🤔😉
20/05/2020,22:24,Ardwnto,@jeremylikness And WSL2 got me like 😱
21/05/2020,02:44,RaisingCode,@jeremylikness Hopefully this commences the end of unmaintainable install scripts that had to curl Microsoft websit… https://t.co/wO7LGbOGRW
21/05/2020,08:06,alireza_noori,@jeremylikness Your terminal theme looks awesome could you please share it?
19/05/2020,15:54,jeremylikness,Yes! #parkinsons shout out to Team Tremor Vision!!!! Thank you 🙏. #MSBuild #parkinsonsawareness
19/05/2020,15:41,jeremylikness,"It's here! A moment many of us have been waiting for since November 5, 2017. Full release. Production ready. 🎉🎈… https://t.co/B9xh1dK9WV"
19/05/2020,15:37,jeremylikness,Simple logging with #EntityFramework Core #EFCore 5 and `LogTo'` (like Database.Log 'back in the day' with Entity F… https://t.co/Ks9PsuANpw
19/05/2020,15:20,jeremylikness,"Introducing the #dotnet .NET Multi-platform UI (MAUI) ... one project, multiple devices and platforms. This is… https://t.co/WzHF5hDNLd"
19/05/2020,14:56,jeremylikness,...when your docking station arrives but you can't do anything yet because the laptop still hasn't shipped.... https://t.co/HloxYoapVt
19/05/2020,14:37,jeremylikness,...watching the #msbuild countdown right now! https://t.co/65QqS92xTF https://t.co/cZbQaekpKW
19/05/2020,14:46,msdev,@jeremylikness Welcome and enjoy the show! 🎉 https://t.co/veO36OhgNQ
19/05/2020,14:24,jeremylikness,So much fun recording this video 🎦 with @AbelSquidHead ... #DevOps for #aspnet ASP.NET developers: #GitHub Actions… https://t.co/L2EDAfzu6r
19/05/2020,13:28,jeremylikness,"...and in the spirit of leading by example, I'll answer my own questions: 🖐 yes, several (in addition to the ones… https://t.co/gmcnlIjCNn"
19/05/2020,13:28,jeremylikness,⌛tick ... ⌚tock ... 💥anticipation! #MSBuild kicks off in the next 2 hours. 🖐 will you join any sessions 🔴 live? ❓… https://t.co/2Op3KMgByO
19/05/2020,13:19,jeremylikness,The joy of Open Source #OSS! https://t.co/mCPFkpDkrD
19/05/2020,12:30,cecilphillip,"Before #MSBuild starts, warm up with this episode of On .NET w/ @AbelSquidHead and @jeremylikness talking about....… https://t.co/DASZnPQUkf"
19/05/2020,11:44,developerjack,"@mattgillard @summer__heidi @jeremylikness Look as long as you're on the homepage at 12:15 AEST, I'll be happy!"
19/05/2020,11:43,mattgillard,@developerjack @summer__heidi @jeremylikness Oh no. Not me.
19/05/2020,11:43,developerjack,@mattgillard @summer__heidi @jeremylikness You BOOKED MEETINGS? https://t.co/AgTCqRtVpF
19/05/2020,11:42,mattgillard,@developerjack @summer__heidi @jeremylikness I might need to sneak out of some meetings 🙈
19/05/2020,11:18,developerjack,@summer__heidi @jeremylikness Just some small virtual event. Nothing to worry about. But like... I dunno.. wouldn't… https://t.co/n45kYiXTwg
19/05/2020,08:00,SeshuK,"@jeremylikness @shanselman, the build scheduler says the session is full. Will, there be a recording or some kind o… https://t.co/o3ZVd0ccPW"
19/05/2020,03:50,jeremylikness,@livelovegeek Shouldn't be tough... (said in a hushed whisper) 'I heard _everyone_ anywhere in the world is invited.'
19/05/2020,03:55,livelovegeek,@jeremylikness Woah 😳
19/05/2020,02:35,jeremylikness,"@cecilphillip Wait, you're not the one running it?"
19/05/2020,10:58,cecilphillip,@jeremylikness oh shot... am I??
19/05/2020,02:33,jeremylikness,@desireelindsey Same.
19/05/2020,02:30,jeremylikness,I heard there's a conference or something tomorrow. I've got invites on my calendar and everything. Anyone in the… https://t.co/OYzwEIThdk
19/05/2020,02:32,cecilphillip,@jeremylikness Can I get an invite?
19/05/2020,02:39,2020_developer,@jeremylikness Looking forward to #MSBuild 2020 ! https://t.co/mMz3drk85I
19/05/2020,02:45,livelovegeek,"@jeremylikness Oh, looks super exclusive. Think you can get me an invite? 😉"
19/05/2020,09:48,erikuma,"@jeremylikness Yup, I will join!"
19/05/2020,11:12,summer__heidi,@jeremylikness @developerjack I'm not familiar with this Microsoft thing you speak of can you tell me more
19/05/2020,11:40,Saraquin21,"@jeremylikness Not as good as MS Wreck, its the gift that keeps giving."
18/05/2020,21:00,m365devpodcast,M365 Developer Guide to Build 2020 Community News (1/2): - How Fluent UI Unlocks the Next Generation of Microsoft… https://t.co/6bA1RV7Wjk
18/05/2020,18:20,J_aa_p,"@jeremylikness Oh, and good luck and lots of fun with #MSBuild. I'm looking forward to it!"
18/05/2020,18:18,J_aa_p,"@jeremylikness with programming again. So, I'm learning and learning, and I can't imagine anything more fun than th… https://t.co/XERkVa4tnT"
18/05/2020,18:09,jeremylikness,"@J_aa_p For the person: public override Task<Person> GetPersonAsync( AddressBookQuery request, ServerCallCon… https://t.co/19HGFMU0he"
18/05/2020,18:16,J_aa_p,@jeremylikness Thank you for your replies and example code. I really appreciate it. I'll update my code first thing… https://t.co/5o2T7aOQmT
18/05/2020,18:06,jeremylikness,"@J_aa_p There are some tweaks you can do. For example, you are adding unnecessary blocking by treating asynchronous… https://t.co/zwwEZodpaG"
18/05/2020,17:54,J_aa_p,@jeremylikness Everything I know about gRPC and .NET I learned from @JamesNK Github repo with a lot of small but ve… https://t.co/L5vZopUJmF
18/05/2020,17:48,J_aa_p,@jeremylikness This is a live prototype project at https://t.co/UYluYn8TGI (it's a domain name I still have) The h… https://t.co/muhfik8Smg
18/05/2020,17:42,J_aa_p,"@jeremylikness And what happened next was pure magic for me. I still don't know how this works behind the scenes, a… https://t.co/oN9VfnpBfu"
18/05/2020,17:37,J_aa_p,@jeremylikness My Blazor WASM solution is Kestrel hosted. The *Server Side* 'AddressBook gRPC Service' looks like t… https://t.co/Dp6pa79Wsh
18/05/2020,17:36,jeremylikness,Compile #rustlang 🦀 to #webAssembly 🕸 then run it in #Deno https://t.co/Ncb0boDcfQ https://t.co/hhXK9qqx0V
19/05/2020,12:42,chadbr,@jeremylikness Good stuff 👍
18/05/2020,17:23,J_aa_p,@jeremylikness Updated my DbContext (for enum & google.protobuf.Timestamp). See screenshot. After that I did an in… https://t.co/XM6kSDCZwO
18/05/2020,17:15,J_aa_p,@jeremylikness First of all: I've no idea if I'm doing the things the right/correct way. I was pretty surprised wha… https://t.co/OLqX2C06Y8
18/05/2020,16:23,jeremylikness,Real-time communication 🗣 in #Blazor 🔥 #WebAssembly 🕸 apps using #SignalR and #Azure Functions <⚡> @AzureFunctions… https://t.co/0pzxKhPTGi
18/05/2020,16:05,_ar1234567,How can i use custom storage provider with IdentityServer in .Net Core 3.1. I am having issues implementing it...… https://t.co/4x3otXyx0l
18/05/2020,15:37,jeremylikness,"Video 🎦: #Azure Friday introduces AzUrlShortener: 'an open source, budget-friendly URL shortener you can deploy dir… https://t.co/x31iiVVt8K"
18/05/2020,15:03,jeremylikness,"@J_aa_p Will you blog details and/or posting a repo for this? I'm curious - are you serializing complex queries and if so, how?"
18/05/2020,16:54,J_aa_p,@jeremylikness I'll let you know in 30 minutes.
18/05/2020,14:48,jeremylikness,In case you missed this last week ... https://t.co/XwqFKHopHi
18/05/2020,14:37,jeremylikness,RT @ctyar: I've been working on a #dotnet tool to make every day work with #efcore easier. Any feedback is appreciated. 😄 https://t.co/ugJ…
18/05/2020,13:11,jeremylikness,"Happy 🎉 Monday! My #somegoodnews from last week: Our new tiered planter with strawberries 🍓, basil, lemongrass,… https://t.co/UAjwGL4vM0"
18/05/2020,12:44,dr_dimaka,Don't miss a new game in #BlazorGames family ;) @JeremyLikness @lupusa1 @prosetech
18/05/2020,12:36,isaacrlevin,EF Core and Cosmos DB with Blazor WebAssembly @jeremylikness @aspnet #blazor https://t.co/KcU3MUDd5l
18/05/2020,05:20,EShy,"@msdev @jeremylikness Stop acting like you've never streamed it, for free, before. Without those silly 'sold out' s… https://t.co/PasFORymhP"
18/05/2020,04:29,jeremylikness,RT @msdev: This year #MSBuild is coming to you. Who will be watching with you?
18/05/2020,04:25,jeremylikness,@John_Papa @jeffhollan @craigshoemaker I managed to practice until I got rid of ahhhh and ummmn... only to realize… https://t.co/ozaTFrRW7n
17/05/2020,16:47,jeremylikness,"Six years ago today. Feels like a lot longer. I miss you, #devlink. https://t.co/rR332BqDHK"
17/05/2020,16:49,joelcochran,"@jeremylikness It really does feel like longer, doesn't it? That was three jobs and two specialties ago..."
17/05/2020,14:26,jeremylikness,"@julielerman That is sad! We have a busy back yard. European Starlings, Black-capped Chikadees, Stellar Jays, Dov… https://t.co/sYoOTavw9o"
17/05/2020,14:29,julielerman,@jeremylikness Sounds like a similar gallery except that bald eagle!!
17/05/2020,14:29,julielerman,@jeremylikness And owls
16/05/2020,20:17,jeremylikness,"Now, children, gather around for your story. Once upon a time, before the pandemic of '20, there was a magical lan… https://t.co/qNhloTo2ed"
16/05/2020,19:47,jeremylikness,"@mrashed @socketnorm @danroth27 Not quite. I'm using the implicit auth to get a cosmos token, but I just tried exte… https://t.co/DcfRVvilWS"
16/05/2020,18:19,jeremylikness,@KerryDavidsMCT @codeproject I love that they have such an amazing syndication process. Glad you found it and me! Thanks for connecting.
16/05/2020,14:04,jeremylikness,@spboyer @KirstyBoyer Yay! Congratulations! 👍🙏🥳🍾🎉 https://t.co/rRTn5tAmQe
16/05/2020,07:34,eamokeane,@vhyrodrigues @jeremylikness Cheers ✌️. Once I learned how it was done I had to share. I'll be referencing it myself in the future!
16/05/2020,07:29,vhyrodrigues,@Jalpesh @jeremylikness @eamokeane well done!
16/05/2020,05:41,uncle_dallas,#EFCore and @AzureCosmosDB with #Blazor WebAssembly https://t.co/3S45tNsfvo by @jeremylikness #entityframework https://t.co/Uz4WcVfz3k
15/05/2020,20:31,dotnetkicks,EF Core and Cosmos DB with Blazor WebAssembly by @JeremyLikness https://t.co/vRjteUPll2 #blazor via @DotNetKicks
15/05/2020,19:04,jeremylikness,"'Our #dotNET community is filled with so many passionate individuals (you) ...it spans across every nationality, g… https://t.co/pTY4FVGYyU"
15/05/2020,19:00,alvinashcraft,EF Core and #CosmosDB with #Blazor #WebAssembly by @jeremylikness. #webdev #aspnetcore #dotnetcore #wasm #cloud… https://t.co/u77HHKZ7lL
15/05/2020,18:57,jeremylikness,"Common Business-Oriented Language, or #COBOL, is perhaps one of the most important languages of all time. As eviden… https://t.co/wlwvjPxUQH"
15/05/2020,19:09,recumbent,@jeremylikness That. Is. Gloriously. Insane! 😁
15/05/2020,19:15,chadbr,@jeremylikness Love it :)
16/05/2020,04:23,codeputer,"@jeremylikness Mam oh man, I would have lost a LOT of money on this one. What compiler does this....and why?"
15/05/2020,17:36,jeremylikness,View the #SQL generated by #EntityFramework Core #EFCore with just a few lines of code by configuring logging… https://t.co/5chQxRbDXR
16/05/2020,03:36,Jalpesh,@jeremylikness That is what I always ask to entity framework core team
16/05/2020,11:19,RJPeres75,@jeremylikness Old stuff: https://t.co/mMBRD3CkId
15/05/2020,16:25,dr_dimaka,"#WebAssembly #COBOL Pong https://t.co/dD8BLRm4mV - written in COBOL, compiled to WebAssembly… https://t.co/RhiwfXNuvY"
15/05/2020,16:23,jeremylikness,Multi-threaded 🧵 Producer Consumer using #dotnetcore .NET Core channels https://t.co/PDrJSGQ25t https://t.co/6ea7lPGd4M
15/05/2020,16:56,gorhal,"@jeremylikness Yes very interesting, Raw Coding has a really good video explaining the basics with channels https://t.co/bxF1yz1Ebu"
15/05/2020,15:37,jeremylikness,A look at optimistic 😂 and pessimistic 😞 concurrency and handling conflicts using the Aggregate pattern with… https://t.co/Vyzv3KSaLZ
15/05/2020,14:49,dr_dimaka,#EFCore and #CosmosDB with #Blazor #WebAssembly // by @JeremyLikness https://t.co/W8dY6Y5hv4
15/05/2020,14:24,jeremylikness,Video 🎦: Private Link for #Azure #SQL #SQLServer 🧙♂️ 'Is it secret? It is safe?' 💻 'What wizardry is this?' Le… https://t.co/ugcO1TDlq7
15/05/2020,13:12,jeremylikness,Just checked my top 5 most clicked links of the week. You ❤ #Blazor 🔥 5️⃣ Build a PWA w/ Blazor 4️⃣ Set up… https://t.co/yUl2UMofI2
15/05/2020,13:48,gorhal,@jeremylikness Yes we love Blazor 😄
15/05/2020,12:14,jeremylikness,@Red_Owl_IT_Devs It's tough to compare due to different storage models and calculations. My link shortener saves mo… https://t.co/RRuLjq4yN8
17/05/2020,06:50,Red_Owl_IT_Devs,@jeremylikness Just discovered there is a free tier for cosmos dB
15/05/2020,12:11,jeremylikness,@ArneDeruwe It can be highly automated but you do need a reliable way to synchronize RBAC between your auth provider and Cosmos DB.
15/05/2020,12:07,jeremylikness,@foppenma @pskelly That's where I'm looking to go...
15/05/2020,12:06,jeremylikness,@mistermag00 @chris_sainty @ADefWebserver I like!
15/05/2020,09:23,mistermag00,"@chris_sainty @jeremylikness So, if we took this and merged it with @ADefWebserver #Blazor blog project and served… https://t.co/vpxOpPYiNH"
15/05/2020,08:56,chris_sainty,Great post from @jeremylikness on his method for using #EFCore with #CosmosDB from the browser with #Blazor! 👍😎 https://t.co/DfUHPwhgI3
15/05/2020,02:52,jeremylikness,@pskelly Does the implementation make sense? My next plan is to look at auth direct to #AzureAD and handle the… https://t.co/O5JI9Mh3Xk
15/05/2020,04:11,pskelly,@jeremylikness Implementation makes sense. The auth to #AzureAD is what I am curious about. This is a more typical… https://t.co/yeKSrMfzqw
15/05/2020,08:13,foppenma,@jeremylikness @pskelly The server side in a azure function would be better for low cost solutions if you use a con… https://t.co/kMl0lTmFd0
15/05/2020,14:22,paulschaeflein,"@jeremylikness @pskelly If you use OIDC w/AAD, then you likely do not need to use https://t.co/r2n2SkNNbv auth. And… https://t.co/Moa9DNEuYZ"
15/05/2020,02:49,jeremylikness,"@m_josiah @jongalloway Michael, does the solution make sense? Thoughts?"
15/05/2020,02:48,jeremylikness,@ArneDeruwe Curiosity satisfied?
15/05/2020,06:31,ArneDeruwe,"@jeremylikness Yes! Thanks for the writeup, it seems like a viable usecase for multi-tenant apps with a minimal lev… https://t.co/p6BxHrvEXK"
15/05/2020,02:47,jeremylikness,@foppenma How do you feel about the approach?
15/05/2020,08:10,foppenma,"@jeremylikness I was hoping for a WebAssembly only solution, wishful thinking i know, but like you described that i… https://t.co/nQkHYkyqAn"
15/05/2020,02:46,jeremylikness,@BrarPiening @RickStrahl What are your thoughts?
15/05/2020,03:01,BrarPiening,"@jeremylikness @RickStrahl There are always some secrets involved down the stack that you store in config files, en… https://t.co/yawcUm1wne"
15/05/2020,02:45,jeremylikness,"For those following this tweet who missed the final version, here it is: https://t.co/1xPd7WOBLS"
15/05/2020,01:43,jeremylikness,I'll be hanging out virtually for most of #msbuild but there are 3 slots I _know_ I'll be at. RSVP and stop by! 5/… https://t.co/Rd3N3ESkdy
15/05/2020,00:29,jeremylikness,@MJBeckius I'm looking into #Azure AAD plus @AzureFunctions as a potential solution
15/05/2020,00:02,Ealsur,Super cool scenario by @jeremylikness using #Blazor #WebAssembly and #CosmosDB! Great read https://t.co/MoDWS0v1DG
14/05/2020,21:31,jeremylikness,RT @ajcvickers: #EntityFramework Weekly Update #efcore Highlights: » The EF Core 3.1.4 patch release is live on NuGet! » @jeremylikness s…
14/05/2020,21:29,ajcvickers,#EntityFramework Weekly Update #efcore Highlights: » The EF Core 3.1.4 patch release is live on NuGet! »… https://t.co/jrpqiJ6Wyr
14/05/2020,17:01,peter_joelving,@jongalloway @jeremylikness @dat_protocol There goes my spare time...
14/05/2020,16:59,peter_joelving,@jongalloway @jeremylikness Distributed by @dat_protocol! 🤯❤️
14/05/2020,16:23,jeremylikness,"Oh, #Blazor 🔥 #WebAssembly 🕸, let me count the ways to host thee ... 👉 #aspnetcore ASP.NET Core 👉 #azure Storage… https://t.co/VbZoDuEElE"
14/05/2020,16:57,jongalloway,"@jeremylikness Anywhere you can host a static site, so hard to count. GitHub pages, S3 bucket, Raspberry Pi, AOL (i… https://t.co/LC3IfZ4SKf"
14/05/2020,16:14,jeremylikness,When someone comments on that article you wrote over 6 years ago... https://t.co/5R155M8zKN
14/05/2020,15:48,jeremylikness,Exactly 3 years ago today my wife and I enjoyed the last evening of our 20-year anniversary trip to Rome. The next… https://t.co/gt59HRHlAd
14/05/2020,15:52,corcav,@jeremylikness Time to plan another trip to Italy for next year 😉
14/05/2020,23:38,ajcvickers,@jeremylikness Very glad you passed! 😀@wendowoman and I were in Rome two years ago for a big family reunion. Beauti… https://t.co/TgSYya3JaL
15/05/2020,03:45,editingemily,@jeremylikness I want to heart this 100 times
14/05/2020,15:37,jeremylikness,How to: #GraphQL API for #SQL #SQLServer on #dotnet .NET - setting up access to the data https://t.co/QdxfI9zJTV https://t.co/MqOqIYccwp
14/05/2020,14:26,jeremylikness,"Hits the Twitter EDIT button. Progressive, not Progress. D'oh! (⊙_⊙;)"
14/05/2020,14:24,jeremylikness,Building a (one of those cool offline cross-platform web-based things) Progress Web App (PWA) with #Blazor 🔥… https://t.co/YkrkqhIHHn
14/05/2020,14:13,jeremylikness,"@MavenofHonor I bumped into Kevin Costner in the early 2000s in Deadwood, SD. We were walking to the parking deck a… https://t.co/lCeTncN3Sg"
14/05/2020,14:10,jeremylikness,Are you considering giving your first technical presentation? Are you a technical presenter looking for tips and te… https://t.co/9sTeMkj9Tg
14/05/2020,12:59,jeremylikness,...and published.
14/05/2020,12:58,jeremylikness,I blogged: access #CosmosDB 🌍 directly from your browser using #Blazor 🔥 #WebAssembly 🕸 with #EntityFramework Core… https://t.co/BlOoNaeela
14/05/2020,13:23,vertigo7x,@jeremylikness As a proof of concept it's a good approach. Maybe useful for certain scenarios. Thanks for sharing your thoughts
14/05/2020,23:37,PanglossWasHere,@jeremylikness Are there any plans for cosmos to support the same sort of authentication as firesbase/firestore? I… https://t.co/tMRmAVF9q1
15/05/2020,03:53,madnan_rafiq,@jeremylikness Awesome read. Thanks So essentially cosmos token is ~ OAuth token as it expires & control access +… https://t.co/kEKgDovCzE
15/05/2020,06:45,Red_Owl_IT_Devs,@jeremylikness Is #CosmosDB still very expensive when compared to an instance of a basic Azure SQL database?
15/05/2020,13:46,pskelly,@jeremylikness Lunchtime reading for sure! Thx
16/05/2020,16:39,KerryDavidsMCT,@jeremylikness Great article. Found it in @codeproject which led me to follow you there and in Twitter.
14/05/2020,12:29,jeremylikness,RT @shanselman: Have you registered for #Msbuild? It’s free and next week! Here is a live unboxing of what the first few thousand registrat…
14/05/2020,01:39,jeremylikness,@jernej_kavka Post is coming. I'll explore memory and SQLite next.
14/05/2020,01:45,jernej_kavka,"@jeremylikness Yes, that would be awesome! 😊 All my pet projects are designed to run in Azure Blob Storage website/… https://t.co/u3pJr1jNaj"
14/05/2020,01:20,jernej_kavka,"@jongalloway @falt86 @jeremylikness Just my 5 cents, there are apps that want to: 1. Work offline 2. No back-end to… https://t.co/bE06DjDfDn"
14/05/2020,00:34,jeremylikness,Getting closer... goal is to post tomorrow morning after some review. https://t.co/zCY2Nxxa51
14/05/2020,12:15,richardjfoster,@jeremylikness Interesting. Looking forward to reading it.
13/05/2020,21:59,jeremylikness,"@flowinthezone If you are already doing that, not much different. This is a more direct way to make it clear that i… https://t.co/thw5atilDb"
13/05/2020,21:05,flowinthezone,@jeremylikness just watched https://t.co/QHZWMObp6i standup 4/28. Couple questions 1 - we already run migrations se… https://t.co/YhKYVA0wAe
13/05/2020,17:09,jeremylikness,"This causes so much #fomo. And then there's always the dark thought, 'What does it mean if they never let me in?' https://t.co/qJcqdarZbb"
13/05/2020,17:10,rorypreddy,@jeremylikness https://t.co/WyyUljBioz
13/05/2020,17:36,dotnetgator,@jeremylikness Even better. I had this shown to me yesterday - on a meeting I CREATED. The only solution I found wa… https://t.co/lSnStx0wNK
13/05/2020,15:29,jeremylikness,@jguadagno @jekyllrb It is @GoHugoIO. Absolutely LOVE it. https://t.co/pmKHEht3Of
13/05/2020,15:16,jeremylikness,Working on this now.... https://t.co/zLY1BEMgrx
13/05/2020,15:24,jguadagno,@jeremylikness What is the blogging engine? There are a lot more attributes in that post then I have with @jekyllrb
13/05/2020,14:21,IDispose,@peterritchie @jeremylikness Yes they are. I hate them. But satisfying once you get thru a few.
13/05/2020,14:09,jeremylikness,"Celebrating 🎈🎉 a major milestone! 31 days of nonstop burpees, started at 10 and ended up at 40 today: 40 burpees n… https://t.co/LoZAGPTkIE"
13/05/2020,14:11,peterritchie,@jeremylikness Impressive! I'm convinced Burpees started out as a torture method.
13/05/2020,14:49,julielerman,@jeremylikness https://t.co/GLKABi9HqM
13/05/2020,12:08,jeremylikness,@florinpop1705 7
13/05/2020,11:49,jeremylikness,@sarathi4ever No SQL Server access from the browser right now. SQLite a possibility.
13/05/2020,12:05,sarathi4ever,@jeremylikness Ok Thank you
13/05/2020,04:36,jeremylikness,@ChristosMatskas Sure. I'll reach out tomorrow.
13/05/2020,04:30,BrarPiening,@RickStrahl @jeremylikness That was my first thought.
13/05/2020,02:58,jeremylikness,@vnextcoder Not published yet...
13/05/2020,02:23,jeremylikness,Should I be this excited to finally be able to complete the 'Like a G6' custom Beat Saber level? It's expert only a… https://t.co/qgzEjtfeOQ
12/05/2020,23:55,jeremylikness,@falt86 @jongalloway It's helpful but I don't agree it's necessary. There are many well-maintained production apps… https://t.co/iALzQfJuQp
12/05/2020,23:48,falt86,@jongalloway @jeremylikness Thats exactly my point. There should be a repo class of some kind between the UI and th… https://t.co/6Lvg9PdVGw
12/05/2020,23:44,jongalloway,@falt86 @jeremylikness I usually use some kind of service for this kind of thing as an indirection and test boundar… https://t.co/E5jP8sUihh
12/05/2020,23:44,jeremylikness,"@falt86 @jongalloway How many times has that actually happened to you? In my 25 years it's been rare, and switchi… https://t.co/ZdjXYrHYK9"
12/05/2020,23:53,falt86,@jeremylikness @jongalloway Just an example. Swapping in a mock data store for unit testing may be more common. I w… https://t.co/oiBrbvnRcb
12/05/2020,23:43,jongalloway,@falt86 @jeremylikness If you're working somewhere that you'll likely be told you're switching to Oracle tomorrow:… https://t.co/Ay2ZS496F9
12/05/2020,23:35,jeremylikness,@madnan_rafiq ... More straightforward.
12/05/2020,23:23,jeremylikness,@falt86 @jongalloway So how is asking a Web API for `foo` different from asking Cosmos DB directly? And if I need… https://t.co/3YuBqzZSk2
12/05/2020,23:34,falt86,@jeremylikness @jongalloway Imagine your boss tells you are switching to oracle tomorrow. No more cosmodb. The api… https://t.co/LzMybDkwpp
12/05/2020,23:12,jeremylikness,@falt86 @jongalloway How so?
12/05/2020,23:18,falt86,@jeremylikness @jongalloway Data access and layout in the same file. Now front end changes touch backend processes… https://t.co/gK1qraYIbD
12/05/2020,22:47,jeremylikness,Mission: accomplished. #Blazor 🔥 #WebAssembly 🕸 talking directly to #CosmosDB 🌍 from the browser using the #EFCore… https://t.co/nN1XTmlOWn
12/05/2020,22:50,xcap2000,@jeremylikness Great achievement! 👏 I am studying Blazor and looking forward to do things like this!
12/05/2020,22:50,RickStrahl,@jeremylikness Curious to see how the auth works to make credentials not visible.
12/05/2020,22:55,rumdood,@jeremylikness @jongalloway https://t.co/w72iZPP91C
12/05/2020,23:07,hsvotwa,@jeremylikness @jongalloway This Is Awesome. Waiting for the blog post.
12/05/2020,23:10,falt86,@jeremylikness @jongalloway Doesn't that go against separation of responsibility
12/05/2020,23:27,madnan_rafiq,@jeremylikness Awesome Curious about credential part - guessing may be something like worker on edge modifying the… https://t.co/xFhnbtosLD
12/05/2020,23:31,Strkli,@jeremylikness Sounds like my jam.👍
12/05/2020,23:48,ToughToWatch,@jeremylikness Amazing!!!!!
12/05/2020,23:55,pskelly,@jeremylikness Very curious about the auth implementation. Can’t wait for the post.
13/05/2020,00:27,rehamnm1,@jeremylikness @stevensanderson I will wait
13/05/2020,01:40,SmartmanApps,@jeremylikness @stevensanderson @lachlanwgordon
13/05/2020,02:05,ChristosMatskas,@jeremylikness @jeremylikness great work buddy. I'm interested in the Auth piece of this... can you ping me to chat?
13/05/2020,02:45,vnextcoder,@jeremylikness Where is the github repo for this Demo?
13/05/2020,03:46,deepumi,@jeremylikness May I know how many seconds it took for initial page load?
13/05/2020,04:00,sadranyi,@jeremylikness This is awesome 🔥
13/05/2020,04:20,paulschaeflein,@jeremylikness Would you please come on the @m365devpodcast and talk about this? I would love to interview you on this.
13/05/2020,05:40,VivekRagunathan,@jeremylikness Blazer web assembly all fine ... EF on the browser is whole another level. 😇
13/05/2020,05:43,sarathi4ever,@jeremylikness Awesome..!!
13/05/2020,05:45,sarathi4ever,@jeremylikness Can you add EF core with SQL server code in your blog post?
13/05/2020,05:51,foppenma,@jeremylikness Looking forward to your blog post. Really want to know how you handled credentials
13/05/2020,06:17,vertigo7x,@jeremylikness Waiting to see the blog post. This is like an Azure a la Firebase approach. Awesome
13/05/2020,06:19,ArneDeruwe,"@jeremylikness This reminds me of RIA services, in a bad way :p I am curious about the security aspect though"
13/05/2020,07:49,joslat,"@jeremylikness Cool scenario, looking Forward to check it out!"
13/05/2020,08:03,m_josiah,@jeremylikness @jongalloway Oh wow. I thought this would be a huge security concern. Are you somehow building up th… https://t.co/zj3RTXtYIT
13/05/2020,09:05,gorhal,@jeremylikness Great work! Blazor is the best 😄
13/05/2020,11:23,moristotle,"@jeremylikness Amazing, definitely looking forward to the blog post. This example illustrates one of the biggest ad… https://t.co/gyh0xo07yN"
13/05/2020,12:47,shawty_ds,@jeremylikness !!NICE!! - Can't wait for the blog post for that one..... 👏👍
13/05/2020,13:44,markjbrown,@jeremylikness Awesome. Looking forward to seeing the blog post.
13/05/2020,14:51,tech_fellow,@jeremylikness wasmblazefcosmo
13/05/2020,15:26,Scott98390,@jeremylikness https://t.co/qxAHlWWqMV
13/05/2020,18:28,Goldytech,"@jeremylikness Make sure you have enough capacity on the server , which hosts your blogging website. No wonder if i… https://t.co/81vLec6dEd"
14/05/2020,01:23,jernej_kavka,@jeremylikness This is what I have been waiting for! (and #mlnet but I can wait 😊) 1. SQLite is stored local storag… https://t.co/iuxShWepJ4
31/05/2020,13:45,niceplumage,@jeremylikness Interesting idea! Like the resource tokens approach. Came across this while seeing if there was a Co… https://t.co/URFbyfVQxk
12/05/2020,20:59,realDotNetDave,"@ErikEJ @jeremylikness @julielerman Ok, rebooted. Didn't get the timeout error, but the ones in red in the second g… https://t.co/9rZELY3GQR"
12/05/2020,17:24,ErikEJ,"@realDotNetDave @jeremylikness @julielerman Retry, reboot, improve connectivity"
12/05/2020,17:16,realDotNetDave,@ErikEJ @jeremylikness @julielerman Yeah. How do I fix that? I don't use WiFi at home.
12/05/2020,17:15,ErikEJ,"@realDotNetDave @jeremylikness @julielerman NuGet timeout, and then downhill from there."
12/05/2020,17:03,realDotNetDave,@ErikEJ @jeremylikness @julielerman Here are two of them. https://t.co/wUIer7iNZ6
12/05/2020,16:58,realDotNetDave,@ErikEJ @jeremylikness @julielerman I'll run it again and take a screen grab.
12/05/2020,16:58,ErikEJ,@realDotNetDave @jeremylikness @julielerman What errors do you see when running build.cmd ?
12/05/2020,16:55,jeremylikness,@editingemily This is why I love 'CrossFit weights' that you can just drop. Otherwise I do it in a cage with snake… https://t.co/t8tSFajNtU
12/05/2020,17:02,jwcarroll,@jeremylikness @editingemily Yeah. Everyone doing squats with real weight needs to learn how to bail from a squat.… https://t.co/DhsSSEJgEy
12/05/2020,16:54,realDotNetDave,@ErikEJ @jeremylikness @julielerman It's there. Don't understand your question.
12/05/2020,15:09,ErikEJ,@realDotNetDave @jeremylikness @julielerman Global.json lurking somewhere??
12/05/2020,15:05,jeremylikness,"Learn from incredible speakers during a 24-hour, international fundraiser for @DirectRelief to help those most affe… https://t.co/8MnLVyfyiP"
12/05/2020,14:24,jeremylikness,Video 🎦: data processing using #dotnet .NET for #Apache #Spark ❓ What is Apache Spark? 🤷 What are customers usin… https://t.co/CZ4dMIG7CA
12/05/2020,13:36,jeremylikness,"@shahedC @julielerman @nbarbettini All providers are not created equal. Although they are often used that way, it's… https://t.co/119g6eNMJa"
12/05/2020,08:30,NG_Tutorial,Deploy Angular and .NET Core 2.1 to the Azure Cloud (Part Four). By @jeremylikness https://t.co/9JcXV1ytXz
12/05/2020,00:34,jeremylikness,"@realDotNetDave @julielerman OK. I confirmed I can open the mega 44-project solution, but there are smaller solutio… https://t.co/aNYdFBc2lY"
12/05/2020,15:04,realDotNetDave,"@jeremylikness @julielerman It works on my machine! LOL I will read the build document later today. Also, when I ra… https://t.co/eZKw115dz7"
11/05/2020,23:35,jeremylikness,@julielerman @realDotNetDave I just verified and am able to open fine - I did the `All.sln` ut there are sub-collec… https://t.co/LThMgE83Da
12/05/2020,00:00,realDotNetDave,@jeremylikness @julielerman 'Unable to locate the .NET Core SDK. Check that it is installed and that the version sp… https://t.co/GZMbiUi829
11/05/2020,19:50,julielerman,@realDotNetDave yeesh. Tagging @jeremylikness in case this is of interest :)
11/05/2020,15:37,jeremylikness,Security 🔐 in a #WebAssembly 🕸 world: add #Azure Active Directory authentication to your #Blazor 🔥 #Wasm apps… https://t.co/vJTNF22XMe
11/05/2020,14:24,jeremylikness,Hands-on ✋🤚 lab: build a #webapp with #Blazor 🔥 #WebAssembly 🕸 and #VisualStudio #Code https://t.co/nKKjfrhv6E https://t.co/3gicoMODjJ
12/05/2020,05:32,MrAnthCool,@jeremylikness Thank you for this one! Happy to see something beyond #AzureAllTheThings for once.
11/05/2020,13:41,dotnet,Exploring the Microsoft graph toolkit with @jeremylikness and @metulev https://t.co/SeRMpsClwy #ondotnet #webcomponents #MicrosoftGraph
11/05/2020,13:14,jeremylikness,"RT @smitpatel: After spending hours in multiple meetings, we finally have a design for doing split query for collection include in #EFCore…"
11/05/2020,12:47,jeremylikness,Happy Monday! Here's #SomeGoodNews in pictures from last week. Holes to blue sky punch through beautiful rain clo… https://t.co/c4so2ORjqO
10/05/2020,21:06,jeremylikness,@julielerman @vijayamalla Lol
10/05/2020,21:06,jeremylikness,@julielerman Thanks Julie! Way back at 10 burpees I thought 40 sounded impossible. Just took it one day at a time.… https://t.co/3bvDCJk2CZ
10/05/2020,21:07,julielerman,"@jeremylikness when I do my pilates videos and '10 pushups' is next, I never fail to let out an audible groan."
10/05/2020,18:54,jeremylikness,"@anquetil ...so, Starbucks?"
10/05/2020,18:49,jeremylikness,"@davidfowl Just had a cookout and fire 🔥 pit hang out last night. I am used to clouds of mosquitos in Georgia, here… https://t.co/KhhAbWpvFc"
10/05/2020,18:44,jeremylikness,RT @shayrojansky: Great conversation with @FransBouma on single vs. multiple queries and the data consistency guarantees across different d…
10/05/2020,18:42,jeremylikness,@vijayamalla That's a running total. I do 2x 1 minute holds. 41 is total over 28 days.
10/05/2020,21:05,julielerman,@jeremylikness @vijayamalla hahaha...heymaybe by the end of 2020 you will be able to do *658 burpees *41:00 minutes… https://t.co/dMTRgHuICr
10/05/2020,17:43,jeremylikness,"Hi, mothers! Happy Mother's Day!!! 'Mother is the name for God in the lips and hearts of little children.' - Wil… https://t.co/mDvWacvu0F"
10/05/2020,18:01,cecilphillip,@jeremylikness I love that movie!
10/05/2020,15:37,jeremylikness,Just 3 more days left on this challenge ... but I think I'll take it well beyond. 👊👍 31 days of burpees Day 28… https://t.co/Kb9g0qxThG
10/05/2020,18:16,vijayamalla,@jeremylikness 41 min plank hold... that’s insane. I can do 2 min max.
10/05/2020,21:04,julielerman,@jeremylikness holy canoli! So impressive!! Yeah you are probably addicted now so why stop? :) Maybe I will try th… https://t.co/9lG9IVRvz7
09/05/2020,02:50,jeremylikness,Weekend has arrived. Deck is now in relaxation configuration. Mental recharge in 3️⃣🕒2️⃣🕑1️⃣🕛...🚀 Now playing:… https://t.co/dAgFUAedYo
08/05/2020,19:22,jeremylikness,"@beefarino Yeah, I noticed that too: https://t.co/dWIa3kZktq"
08/05/2020,19:19,jeremylikness,RT @isaacrlevin: A new look at Azure Durable Functions @azurefunctions https://t.co/vZOrl6OLTX
08/05/2020,19:18,jeremylikness,"RT @LyalinDotCom: The #MSBuild agenda is live! The team has been working really hard to do something we've never tried before, a tier-1 dev…"
08/05/2020,15:25,TATTOOEDCRMGUY,@donasarkar @BradGroux @jeremylikness @JonJLevesque @sergeluca @carsten_growth Hey all... yeah live the CDS. Absolu… https://t.co/aOmrb5ZUhV
08/05/2020,14:43,jeremylikness,"For those curious, this is my decade old blog post on the subject. https://t.co/sH2NzSnK8z"
08/05/2020,14:24,jeremylikness,"I wrote my first article about the #XAML Visual State Manager in March of 2010. Enough nostalgia, here's a video 🎦… https://t.co/hBQ1ZM32nN"
08/05/2020,14:41,LBugnion,@jeremylikness ✊ Silverlight
08/05/2020,14:17,donasarkar,@BradGroux @jeremylikness @JonJLevesque @sergeluca And @TATTOOEDCRMGUY and @carsten_growth will have a million thoughts on this too
08/05/2020,14:14,jeremylikness,"RT @BradGroux: @jeremylikness It is awesome to use, we use it in production for customer data and services without issue. The #MSBizAppsSum…"
08/05/2020,14:04,jeremylikness,Taking a closer look at the Common Data Service (CDS). Have any of my followers worked with this? Any thoughts? Alt… https://t.co/pd0YFFh0mC
08/05/2020,14:13,BradGroux,"@jeremylikness It is awesome to use, we use it in production for customer data and services without issue. The… https://t.co/iYcLkMtifc"
08/05/2020,13:35,jeremylikness,Google Timeline pre-coronavirus: 🏙 10 cities visited this month (5 new) 🏪 47 places visited this month (17 new)… https://t.co/T8fvBNJ6m5
08/05/2020,13:36,jaydestro,@jeremylikness i really do miss our chats in person
08/05/2020,13:00,alvinashcraft,On .NET - Exploring the Microsoft Graph Toolkit with @jeremylikness and @metulev. #msgraph #dotnet #webdev #m365 https://t.co/5F11lsLa4q
08/05/2020,08:28,19nine78,@jeremylikness I'm trying to put together a workflow to manage/guide new developers to try to mitigate this
08/05/2020,04:22,jeremylikness,@mahoekst I bought a Surface Go just for that and get great use out of it every day.
08/05/2020,03:20,jeremylikness,RT @ajcvickers: #EntityFramework Weekly Update #efcore The first EF Community Standup was streamed live this week! Watch now on YouTube!…
08/05/2020,02:34,shrutikapoor08,@melvinselvaraj @udemy @johnlindquist @acemarke @brandontroberts @chrisbiscardi @elmd_ @jelbourn @Jakeherringbone… https://t.co/x0EHBkDVt6
07/05/2020,21:16,jeremylikness,@cecilphillip @ajcvickers @efmagicunicorns @smitpatel Yes let's do it!
07/05/2020,21:16,cecilphillip,@ajcvickers @jeremylikness @efmagicunicorns @smitpatel whooooaaa... so can we try it? Let's discuss after Build. I'll setup a meeting
07/05/2020,20:40,jeremylikness,"@cecilphillip @efmagicunicorns I like the idea, but might not work as a single show. Very complex and advanced topi… https://t.co/EIYhXHl03a"
07/05/2020,21:08,ajcvickers,@jeremylikness @cecilphillip @efmagicunicorns That's not a single show! That's more like a 24 episode series with t… https://t.co/SZSuU48aLc
07/05/2020,20:33,jeremylikness,@19nine78 What types of issues are you having? There are a lot of ways it is and can be managed.
08/05/2020,08:25,19nine78,@jeremylikness Mostly the issue described here: https://t.co/aCORrdmR9E The main problem seems to be many develope… https://t.co/oZ09hsymjC
07/05/2020,20:31,jeremylikness,RT @ErikEJ: The EF Core team design proposal for support for temporal tables/queries https://t.co/Y0FwLLHvZ0 #efcore #sqlserver
07/05/2020,17:35,jeremylikness,Today @efmagicunicorns met with a 3rd-party database team to ensure we provide the best support from #EFCore. We t… https://t.co/WvEqIZoz82
07/05/2020,19:58,cecilphillip,@jeremylikness @efmagicunicorns We should do a show on build Linq providers. Yea.. I wanna do that. Can we do that?
08/05/2020,05:19,AmrimhM,@jeremylikness @ajcvickers @efmagicunicorns Looking forward to see that 3 season and 24 episode. I'm not sure linq… https://t.co/FbmvGhVd8B
07/05/2020,14:39,metulev,The giraffe is back!!! I had a ton of fun talking to @jeremylikness about the #MicrosoftGraph toolkit in the latest… https://t.co/04cmoeiiR4
07/05/2020,14:24,jeremylikness,Work with #GitHub issues directly from within #VisualStudio Code https://t.co/74a7aDnjHf https://t.co/opcwkwV5mr
07/05/2020,13:45,jeremylikness,This was a fun episode to record. Learn how to amp your enterprise software from a giraffe. https://t.co/EkRd6Fky5g
07/05/2020,12:47,cecilphillip,"On this episode of On .NET Cribs, @jeremylikness chats with @metulev the giraffe 🦒about a collection of Web Compone… https://t.co/lTvQ3gBLtm"
07/05/2020,12:42,uncle_dallas,Exploring the #MicrosoftGraph Toolkit https://t.co/zJ7lXbv09B via @ch9 by @jeremylikness @metulev
07/05/2020,06:01,melvinselvaraj,@udemy @johnlindquist @acemarke @brandontroberts @chrisbiscardi @elmd_ @jelbourn @Jakeherringbone @davidfowl… https://t.co/x8C1IJvl6s
07/05/2020,03:36,jeremylikness,@thurrott Niiiice! Such beautiful birds.
07/05/2020,03:23,jeremylikness,@BelloneDavide https://t.co/YW9jHphvGq
06/05/2020,18:18,jeremylikness,Thanks you for joining! Appreciate your time. Special shout out to @camerontomisser @JamesMontemagno and… https://t.co/csJuv0m4nb
06/05/2020,22:44,jplane,"@jeremylikness @camerontomisser @JamesMontemagno @jongalloway appreciate the invite, Jeremy! it was fun. let's do it again sometime :)"
06/05/2020,16:55,jeremylikness,We are live! Stand-up starts in 5 minutes ... https://t.co/xHA8cjX3OL Watch to learn. Chat to participate. Ask q… https://t.co/RZYiR3Z6P9
06/05/2020,14:12,jeremylikness,"The first ever #EntityFramework Core #EFCore Community Stand-up is live in a few hours (10am PT, 1pm ET). Join us t… https://t.co/OcvtZ5kXtp"
07/05/2020,22:39,shawty_ds,@jeremylikness DANG IT... it was too late on a bank holiday weekend (We have 4 days this time!!) by the time I saw… https://t.co/REbXbLNRts
06/05/2020,13:33,jeremylikness,"Several people reached out to me to ask about a plant-based diet: how to transition, how to get protein, what to do… https://t.co/R0axInfcrL"
07/05/2020,05:04,NejcBW,"@jeremylikness Excellent article, Jeremy! The biggest challenge for me personally has been to find good recepies. T… https://t.co/xtPgN7OYzg"
06/05/2020,07:18,artyprog,'Blazor State Management' by @jeremylikness #DEVcommunity https://t.co/Ky39IdOBbC
06/05/2020,06:39,HowardvRooijen,@JeffHandley @davidfowl @clemensv @jeremylikness 100%.
06/05/2020,06:37,JeffHandley,@HowardvRooijen @davidfowl @clemensv @jeremylikness And especially if you're writing those queries for them to be s… https://t.co/zuLz8PFC9w
06/05/2020,06:34,HowardvRooijen,"@davidfowl @JeffHandley @clemensv @jeremylikness Just because some Devs claim to be full stack, doesn't mean they a… https://t.co/PWEyyeFePd"
06/05/2020,05:01,JeffHandley,@joelverhagen @davidfowl @clemensv @jeremylikness I recall when we started implementing that. I'm really glad to he… https://t.co/nqabOSKXqY
06/05/2020,01:19,joelverhagen,@davidfowl @clemensv @jeremylikness @JeffHandley Yeah it's been a bit of a bear managing that OData shape.… https://t.co/r8Hqdh3FgW
05/05/2020,22:58,sampy,@davidfowl @ralph_squillace @Duncanma @clemensv @jeremylikness @JeffHandley Somewhat but the restrictions were pret… https://t.co/4wo7MyRR0G
05/05/2020,22:47,ralph_squillace,@JeffHandley @davidfowl @sampy @Duncanma @clemensv @jeremylikness Ha!
05/05/2020,22:44,JeffHandley,"@davidfowl @sampy @ralph_squillace @Duncanma @clemensv @jeremylikness No, GraphQL is NOT OData. https://t.co/FZRMJsCPUk"
05/05/2020,21:49,davidfowl,@sampy @ralph_squillace @Duncanma @clemensv @jeremylikness @JeffHandley Remote code execution 😬
05/05/2020,21:37,sampy,@davidfowl @ralph_squillace @Duncanma @clemensv @jeremylikness @JeffHandley We used the OData parsing libraries to… https://t.co/Cg8FvPwmOZ
05/05/2020,21:29,tomasrestrepo,@darrel_miller @davidfowl @jeremylikness @clemensv @JeffHandley Partial OData implementations are fun. filter is s… https://t.co/OW3CEwBS9n
05/05/2020,21:22,darrel_miller,@davidfowl @jeremylikness @clemensv @JeffHandley Still today one of the biggest challenges we have with describing… https://t.co/CjupiOLPiC
05/05/2020,21:17,davidfowl,@ralph_squillace @Duncanma @clemensv @jeremylikness @JeffHandley @sampy https://t.co/TxJWvKmvII
05/05/2020,21:17,ralph_squillace,@davidfowl @Duncanma @clemensv @jeremylikness @JeffHandley @sampy graphql is odata but NIH or rather NIT
05/05/2020,21:12,davidfowl,@Duncanma @clemensv @jeremylikness @JeffHandley @sampy Is it mostly a normal REST API with some odata sugar?
05/05/2020,20:14,jeremylikness,@davidfowl @clemensv @JeffHandley I'm intrigued by the way control vendors do complex grids. They package filter/so… https://t.co/A7LJk5puMb
05/05/2020,23:50,ajcvickers,"@jeremylikness @davidfowl @clemensv @JeffHandley To quote @roji, 'That's insane!' Surely we can make this better..."
05/05/2020,20:14,Duncanma,@davidfowl @clemensv @jeremylikness @JeffHandley @sampy I was more suggesting that you and Clemens were right and t… https://t.co/6vSv6cp8BL
05/05/2020,20:08,davidfowl,@jeremylikness @clemensv @JeffHandley I think the odata syntax for paging and sorting is something lots of apps need though
05/05/2020,20:06,davidfowl,@jeremylikness @clemensv @JeffHandley I see graphql as making a backend for the front end. So a backend that does b… https://t.co/HVXDuQ1Uq8
05/05/2020,20:02,davidfowl,@Duncanma @clemensv @jeremylikness @JeffHandley @sampy Oh I’m aware what’s possible.
05/05/2020,20:01,jeremylikness,"@davidfowl @clemensv @JeffHandley Do you think #GraphQL is a repeat of the same, or does it come with better rail g… https://t.co/OHQpsVMAJQ"
05/05/2020,20:05,davidfowl,@jeremylikness @clemensv @JeffHandley The original design https://t.co/A7M0HZCtfR data services encouraged an “expo… https://t.co/88uVgbSPRV
06/05/2020,07:24,gblock,@jeremylikness @davidfowl @clemensv @JeffHandley I would argue it has better rail guards. GraphQL lets you have tig… https://t.co/syqGDueOBq
05/05/2020,20:01,Duncanma,"@davidfowl @clemensv @jeremylikness @JeffHandley For Channel 9, @sampy built a system that used OData syntax for qu… https://t.co/lKmHXNZsiV"
05/05/2020,19:58,davidfowl,@clemensv @jeremylikness NuGet used odata for the original API and man was that a mistake. It was not just odata bu… https://t.co/EN0rAbbbDl
05/05/2020,18:34,jeremylikness,"@chris_sainty I love the solution, just prefer to maximize surface area. Would rather be focused on property change… https://t.co/5bjba57Pln"
05/05/2020,18:18,bfexplorer,"@isaac_abraham @jeremylikness I used MVP, MVVM in WPF C# apps, but ended using MVC with F#. Here is the app in F# https://t.co/IVXnAw7QQw"
05/05/2020,18:07,jeremylikness,Nice article! I think it hits the nail on the head quite nicely. I am very interested in how GraphQL plays out in t… https://t.co/aQ2w4eWNsX
05/05/2020,20:24,asyncoder,"@jeremylikness Right now, I've started switching my .NET backend app from OData to GraphQL 🙂"
05/05/2020,18:03,jeremylikness,@isaac_abraham Should have read the caveat first. 😆
05/05/2020,18:06,isaac_abraham,@jeremylikness I should've included it in the original tweet 😉
05/05/2020,18:03,jeremylikness,@isaac_abraham The Blazor MVVM implementation feels pretty trivial to me. In my 10+ years of implementing the patte… https://t.co/O3TCw8VnW0
05/05/2020,18:05,jbogard,@jeremylikness @isaac_abraham it worked fine for us once we put in Reactive UI. tho i vastly prefer the simpler model of Model-View-Update
05/05/2020,17:55,isaac_abraham,"@jeremylikness Of course, I'm referring to XAML based applications here."
05/05/2020,17:50,jeremylikness,"I love this solution, but it also highlights the power of patterns like MVVM. It is trivial to wire a service to sa… https://t.co/WVOVaAfGfV"
05/05/2020,17:53,isaac_abraham,@jeremylikness Hmmm. I have fond memories but seem to recall MVVM needing a few more things for it to 'just work'.… https://t.co/JnLn9Tg6QC
05/05/2020,18:30,chris_sainty,@jeremylikness It’s trivial once you’ve built the service to do the persisting and retrieving. Same as using this c… https://t.co/GOfTOT8hpK
05/05/2020,17:36,jeremylikness,"@jeffhollan Huge congratulations! Oh, and wishing you an abundance of sleep in the coming months."
05/05/2020,17:36,jeremylikness,When good constructors go bad: a tale of static constructors in #dotnet .NET and why the order of your declarations… https://t.co/GxuYnKxHSR
05/05/2020,17:37,SittenSpynne,@jeremylikness Problems like this are why I tend to hate field initializers. It only bites you 1/100 times but when… https://t.co/XTg7EHTzWE
06/05/2020,10:02,codeputer,"@jeremylikness Interesting, & also highlights to me that has been bugging me. The use of static and when to use it… https://t.co/131WXu2RgF"
05/05/2020,16:32,jeremylikness,"@clemensv Right, I don't disagree with those concerns at all. What I see is people implementing endpoints that take… https://t.co/7pjvTGF7WH"
05/05/2020,16:23,jeremylikness,Use #jQuery and #Bootstrap from a Content Delivery Network (CDN) with fallback scripts in #aspnetcore ASP.NET Core… https://t.co/dnnpX8HIV4
05/05/2020,16:18,jeremylikness,Technologies like #odata and #GraphQL are alive and well in production and sites aren't falling like dominos just b… https://t.co/nCEz75XTyP
05/05/2020,16:19,realDotNetDave,@jeremylikness I agree! What ever happened to the dynamic data website/ web services from Visual Studio? :-(
05/05/2020,16:24,clemensv,@jeremylikness The cost predictability and reliability concerns some people have about client shaped queries are re… https://t.co/vxLfoSoHJi
05/05/2020,17:54,ardalis,@jeremylikness Thoughts on this? https://t.co/ofNJ7YMYDo
05/05/2020,20:22,theo_albers,@jeremylikness SQL works very well against a relational database. A lot of effort is put into the database provider… https://t.co/6cwic6tVvY
05/05/2020,21:30,zogface,@jeremylikness Certainly have their place - very effective if coupled with a dedicated per-tenant reporting databas… https://t.co/5KaaCAXGK4
05/05/2020,21:36,rgmills33,"@jeremylikness My former company implemented odata, but by hand. Unable to leverage any in built offering. It was… https://t.co/Qe6wVrxE2w"
05/05/2020,15:37,jeremylikness,"Add structure to your unstructured data: manage and find data with Blob Index for #Azure Storage, a preview feature… https://t.co/XO7dg6Yaa4"
05/05/2020,14:24,jeremylikness,Add some flair to your #cloudapp: configure a custom domain for your #Azure ☁ App Service using #Cloudflare 🔥 (this… https://t.co/SPaoPRRSmg
05/05/2020,03:11,jeremylikness,@joe_darko @jplane @keith_rome @Wintellect Same.
05/05/2020,03:01,joe_darko,@jplane @jeremylikness @keith_rome @Wintellect Miss you all!
04/05/2020,22:59,jeremylikness,@julielerman @ajcvickers I think having a calendar download would be awesome. I haven't checked the issues to see i… https://t.co/2gouqEY0Rd
04/05/2020,23:53,mairacw,@jeremylikness @julielerman @ajcvickers Don’t recall seeing that but I’ll add to the backlog!
04/05/2020,22:55,jeremylikness,Coming soon... https://t.co/bzGih3WDwU https://t.co/DEG4fGn005
04/05/2020,22:52,jeremylikness,@julielerman @ajcvickers I can send you a calendar hold if you like. Right now there isn't a 'download to calenda… https://t.co/eiJMHYWK7z