-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1319 lines (934 loc) · 44.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GreenMeeple</title>
<meta name="keywords" content="">
<meta name="description" content="GreenMeeple">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:type" content="website">
<meta property="og:title" content="GreenMeeple cannot find what you are looking for...">
<meta property="og:url" content="https://greenmeeple.github.io/404.html">
<meta property="og:site_name" content="GreenMeeple">
<meta property="og:locale" content="en_US">
<meta property="og:image" content="https://greenmeeple.github.io/images/404.png">
<meta property="article:published_time" content="2024-10-19T02:25:07.060Z">
<meta property="article:modified_time" content="2024-10-19T02:25:07.060Z">
<meta property="article:author" content="Alex Li">
<meta property="article:tag" content="Coding, Boardgames, Language learning.">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://greenmeeple.github.io/images/404.png">
<link rel="icon" href="/img/favicon.png">
<link href="/css/style.css?v=1.1.0" rel="stylesheet">
<link href="/css/hl_theme/atom-dark.css?v=1.1.0" rel="stylesheet">
<link href="//cdn.jsdelivr.net/npm/[email protected]/animate.min.css" rel="stylesheet">
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="/js/titleTip.js?v=1.1.0" ></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/highlight.pack.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/nprogress.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/jquery.cookie.min.js" ></script>
<script src="/js/iconfont.js?v=1.1.0" ></script>
<!-- hexo injector head_end start -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/style.css">
<!-- hexo injector head_end end --><meta name="generator" content="Hexo 7.3.0"></head>
<div style="display: none">
<input class="theme_preload_comment" value="">
<input class="theme_blog_path" value="">
<input id="theme_shortcut" value="true" />
<input id="theme_highlight_on" value="true" />
<input id="theme_code_copy" value="true" />
</div>
<body>
<aside class="nav mobile">
<div class="nav-left">
<a href="/"
class="avatar_target">
<img class="avatar"
src="/img/avatar.png"/>
</a>
<div class="author">
<span>Alex Li</span>
</div>
<div class="icon">
<a title="rss"
href="/atom.xml"
target="_blank">
<svg class="iconfont-svg" aria-hidden="true">
<use xlink:href="#icon-rss"></use>
</svg>
</a>
<a title="github"
href="https://github.com/GreenMeeple"
target="_blank">
<svg class="iconfont-svg" aria-hidden="true">
<use xlink:href="#icon-github"></use>
</svg>
</a>
<a title="linkedin"
href="https://www.linkedin.com/in/alexcnli/"
target="_blank">
<svg class="iconfont-svg" aria-hidden="true">
<use xlink:href="#icon-linkedin"></use>
</svg>
</a>
<a title="instagram"
href="https://www.instagram.com/alexli0o/"
target="_blank">
<svg class="iconfont-svg" aria-hidden="true">
<use xlink:href="#icon-instagram"></use>
</svg>
</a>
<a title="email"
href="mailto:[email protected]"
target="_blank">
<svg class="iconfont-svg" aria-hidden="true">
<use xlink:href="#icon-email"></use>
</svg>
</a>
</div>
<a class="more-menus">More Menu</a>
<ul>
<li>
<div class="all active" data-rel="All">All
<small>(70)</small>
</div>
</li>
<li>
<div data-rel="LeetCode">
<i class="fold iconfont icon-right"></i>
LeetCode
<small>(17) </small>
</div>
<ul class="sub hide">
<li>
<div data-rel="LeetCode<--->SQL_50">
SQL_50
<small>(17) </small>
</div>
</li>
</ul>
</li>
<li>
<div data-rel="Projects">
Projects
<small>(2) </small>
</div>
</li>
<li>
<div data-rel="Coding">
Coding
<small>(4) </small>
</div>
</li>
<li>
<div data-rel="Cantonese">
<i class="fold iconfont icon-right"></i>
Cantonese
<small>(7) </small>
</div>
<ul class="sub hide">
<li>
<div data-rel="Cantonese<--->Full_Course">
Full_Course
<small>(7) </small>
</div>
</li>
</ul>
</li>
<li>
<div data-rel="Notes">
<i class="fold iconfont icon-right"></i>
Notes
<small>(37) </small>
</div>
<ul class="sub hide">
<li>
<div data-rel="Notes<--->UdS">
UdS
<small>(37) </small>
</div>
</li>
</ul>
</li>
<li>
<div data-rel="Site_Note">
Site_Note
<small>(3) </small>
</div>
</li>
</ul>
<div class="left-bottom">
<div class="menus">
<a class="dynamic-menu "
target="_blank"
href="https://github.com/GreenMeeple/GreenMeeple.github.io">This Repo</a>
</div>
<div>
<a class="about hasFriend site_url"
href="/about">About</a>
<a style="width: 50%"
class="friends">Links</a>
</div>
</div>
<input type="hidden" id="yelog_site_posts_number" value="70">
<input type="hidden" id="yelog_site_word_count" value="38.9k">
<div style="display: none">
<span id="busuanzi_value_site_uv"></span>
<span id="busuanzi_value_site_pv"></span>
</div>
</div>
<div class="nav-right">
<div class="friends-area">
<div class="friends-title">
Links
<i class="iconfont icon-left"></i>
</div>
<div class="friends-content">
<ul>
<li><a target="_blank" href="https://www.youtube.com/@meeplematch2582">Meeple Match</a></li>
<li><a target="_blank" href="https://www.instagram.com/uds_mensa/">Best Mensa in the world</a></li>
</ul>
</div>
</div>
<div class="title-list">
<div class="right-top">
<div id="default-panel">
<i class="iconfont icon-search" data-title="search shortcut key i"></i>
<div class="right-title">All</div>
<i class="iconfont icon-file-tree" data-title="switch to outline view shortcut key w"></i>
</div>
<div id="search-panel">
<i class="iconfont icon-left" data-title="return"></i>
<input id="local-search-input" autocomplete="off"/>
<label class="border-line" for="input"></label>
<i class="iconfont icon-case-sensitive" data-title="case sensitive"></i>
<i class="iconfont icon-tag" data-title="label"></i>
</div>
<div id="outline-panel" style="display: none">
<div class="right-title">outline</div>
<i class="iconfont icon-list" data-title="switch to article list"></i>
</div>
</div>
<div class="tags-list">
<input id="tag-search" />
<div class="tag-wrapper">
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>3-hexo</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>AGV</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Cantonese</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>GitHub</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Hexo</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>HTML</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>json</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Language Learning</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Latex</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>LTS</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Mathjax</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Node.js</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Phonology</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>PV</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Python</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Scraper</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Selenium</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>SQL</a>
</li>
</div>
</div>
<div id="local-search-result">
</div>
<nav id="title-list-nav">
<a id="top" class="All Notes UdS "
href="/agv/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="Automata, Games, and Verification (Portal)">Automata, Games, and Verification (Portal)</span>
<span class="post-date" title="2024-12-13 16:35:16">2024/12/13</span>
</a>
<a id="top" class="All Site_Note "
href="/3_hexo_Shortcut/"
data-tag="Hexo,3-hexo"
data-author="" >
<span class="post-title" title="3-hexo Shortcut">3-hexo Shortcut</span>
<span class="post-date" title="2024-10-01 11:11:11">2024/10/01</span>
</a>
<a class="All Notes UdS "
href="/agv10-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV">AGV</span>
<span class="post-date" title="2024-12-20 17:04:07">2024/12/20</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-6/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-6 -- Tones">Cantonese Ch.1-6 -- Tones</span>
<span class="post-date" title="2024-12-19 03:06:12">2024/12/19</span>
</a>
<a class="All Notes UdS "
href="/agv7-2-eg/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV -- (Exercise 7.2) LTL to Alternating Büchi Automata">AGV -- (Exercise 7.2) LTL to Alternating Büchi Automata</span>
<span class="post-date" title="2024-12-17 04:02:09">2024/12/17</span>
</a>
<a class="All Notes UdS "
href="/agv9-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 9.2 -- Model Checking Sequential Circuits">AGV 9.2 -- Model Checking Sequential Circuits</span>
<span class="post-date" title="2024-12-08 16:52:17">2024/12/08</span>
</a>
<a class="All Notes UdS "
href="/agv9-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 9.1 -- Automata-based LTL Model Checking">AGV 9.1 -- Automata-based LTL Model Checking</span>
<span class="post-date" title="2024-12-07 16:44:01">2024/12/07</span>
</a>
<a class="All Notes UdS "
href="/agv8-5/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 8.5 -- From Linear Arithmetic to Automata">AGV 8.5 -- From Linear Arithmetic to Automata</span>
<span class="post-date" title="2024-12-06 01:49:11">2024/12/06</span>
</a>
<a class="All Notes UdS "
href="/agv8-4/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 8.4 -- Homogenous Inequality Testing is Automatic">AGV 8.4 -- Homogenous Inequality Testing is Automatic</span>
<span class="post-date" title="2024-12-05 05:42:27">2024/12/05</span>
</a>
<a class="All Notes UdS "
href="/agv8-3/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 8.3 -- Translation from Linear Arithmetic to Automata">AGV 8.3 -- Translation from Linear Arithmetic to Automata</span>
<span class="post-date" title="2024-12-04 03:53:30">2024/12/04</span>
</a>
<a class="All Notes UdS "
href="/agv8-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 8.2 -- Encoding Real Numbers">AGV 8.2 -- Encoding Real Numbers</span>
<span class="post-date" title="2024-12-03 18:14:15">2024/12/03</span>
</a>
<a class="All Notes UdS "
href="/agv8-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 8.1 -- Linear Arithmetic (Theory)">AGV 8.1 -- Linear Arithmetic (Theory)</span>
<span class="post-date" title="2024-12-02 05:33:32">2024/12/02</span>
</a>
<a class="All Notes UdS "
href="/agv7-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 7.2 -- From LTL to Alternating Büchi Automata">AGV 7.2 -- From LTL to Alternating Büchi Automata</span>
<span class="post-date" title="2024-12-01 03:08:48">2024/12/01</span>
</a>
<a class="All Notes UdS "
href="/agv7-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 7.1 -- Alternating Büchi Automata">AGV 7.1 -- Alternating Büchi Automata</span>
<span class="post-date" title="2024-11-30 02:25:22">2024/11/30</span>
</a>
<a class="All Notes UdS "
href="/agv6-7/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.7 -- S1S$_0$ and Büchi-recognizable Language">AGV 6.7 -- S1S$_0$ and Büchi-recognizable Language</span>
<span class="post-date" title="2024-11-29 00:36:06">2024/11/29</span>
</a>
<a class="All Notes UdS "
href="/agv6-6/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.6 -- Express QPTL using S1S">AGV 6.6 -- Express QPTL using S1S</span>
<span class="post-date" title="2024-11-28 23:45:21">2024/11/28</span>
</a>
<a class="All Notes UdS "
href="/agv6-5/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.5 -- Monadic Second-Order Logic of One Successor (S1S)">AGV 6.5 -- Monadic Second-Order Logic of One Successor (S1S)</span>
<span class="post-date" title="2024-11-27 03:21:19">2024/11/27</span>
</a>
<a class="All Notes UdS "
href="/agv6-4/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.4 -- Quantified Propositional Temporal Logic (QPTL)">AGV 6.4 -- Quantified Propositional Temporal Logic (QPTL)</span>
<span class="post-date" title="2024-11-26 02:33:51">2024/11/26</span>
</a>
<a class="All Notes UdS "
href="/agv6-3/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.3 -- LTL and Counting Languages">AGV 6.3 -- LTL and Counting Languages</span>
<span class="post-date" title="2024-11-25 00:44:03">2024/11/25</span>
</a>
<a class="All Notes UdS "
href="/agv6-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.2 -- Expressing Program Properties using LTL">AGV 6.2 -- Expressing Program Properties using LTL</span>
<span class="post-date" title="2024-11-24 05:56:28">2024/11/24</span>
</a>
<a class="All Notes UdS "
href="/agv6-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 6.1 -- Linear-Time Temporal Logic (LTL)">AGV 6.1 -- Linear-Time Temporal Logic (LTL)</span>
<span class="post-date" title="2024-11-23 13:40:02">2024/11/23</span>
</a>
<a class="All Notes UdS "
href="/agv5-3/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 5.3 -- Complement Büchi Automaton with Odd Ranking">AGV 5.3 -- Complement Büchi Automaton with Odd Ranking</span>
<span class="post-date" title="2024-11-22 16:36:01">2024/11/22</span>
</a>
<a class="All Notes UdS "
href="/agv5-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 5.2 -- Ranking of DAG">AGV 5.2 -- Ranking of DAG</span>
<span class="post-date" title="2024-11-21 01:19:18">2024/11/21</span>
</a>
<a class="All Notes UdS "
href="/agv5-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 5.1 -- Infinite Directed Acyclic Graph (DAG)">AGV 5.1 -- Infinite Directed Acyclic Graph (DAG)</span>
<span class="post-date" title="2024-11-20 16:44:16">2024/11/20</span>
</a>
<a class="All Notes UdS "
href="/agv4-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 4.2 -- Complementation of deterministic Büchi Automata">AGV 4.2 -- Complementation of deterministic Büchi Automata</span>
<span class="post-date" title="2024-11-19 23:12:02">2024/11/19</span>
</a>
<a class="All Notes UdS "
href="/agv4-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 4.1 -- Deterministic vs. Nondeterministic Büchi Automata">AGV 4.1 -- Deterministic vs. Nondeterministic Büchi Automata</span>
<span class="post-date" title="2024-11-18 00:11:57">2024/11/18</span>
</a>
<a class="All Notes UdS "
href="/agv3-5/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 3.5 -- Büchi's Characterization Theorem">AGV 3.5 -- Büchi's Characterization Theorem</span>
<span class="post-date" title="2024-11-17 17:33:21">2024/11/17</span>
</a>
<a class="All Notes UdS "
href="/agv3-4/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 3.4 -- Closure Properties of the Büchi-recognizable languages (Concatenations)">AGV 3.4 -- Closure Properties of the Büchi-recognizable languages (Concatenations)</span>
<span class="post-date" title="2024-11-16 20:36:21">2024/11/16</span>
</a>
<a class="All Notes UdS "
href="/agv3-3/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 3.3 -- Closure Properties of the Büchi-recognizable languages (Intersection and Union)">AGV 3.3 -- Closure Properties of the Büchi-recognizable languages (Intersection and Union)</span>
<span class="post-date" title="2024-11-15 01:31:57">2024/11/15</span>
</a>
<a class="All Notes UdS "
href="/agv3-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 3.2 -- $\omega$-regular language">AGV 3.2 -- $\omega$-regular language</span>
<span class="post-date" title="2024-11-14 12:40:04">2024/11/14</span>
</a>
<a class="All Notes UdS "
href="/agv3-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 3.1 -- Kleene's Theorem">AGV 3.1 -- Kleene's Theorem</span>
<span class="post-date" title="2024-11-13 13:36:30">2024/11/13</span>
</a>
<a class="All Notes UdS "
href="/agv2-3/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 2.3 -- The Büchi Acceptance Condition">AGV 2.3 -- The Büchi Acceptance Condition</span>
<span class="post-date" title="2024-11-12 05:56:26">2024/11/12</span>
</a>
<a class="All Notes UdS "
href="/agv2-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 2.2 -- Automata over Infinite Words">AGV 2.2 -- Automata over Infinite Words</span>
<span class="post-date" title="2024-11-11 04:24:02">2024/11/11</span>
</a>
<a class="All Notes UdS "
href="/agv2-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 2.1 -- Büchi automata (Preliminaries)">AGV 2.1 -- Büchi automata (Preliminaries)</span>
<span class="post-date" title="2024-11-10 04:24:02">2024/11/10</span>
</a>
<a class="All Notes UdS "
href="/agv1-3/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 1.3 -- The Logic-Automata Connection">AGV 1.3 -- The Logic-Automata Connection</span>
<span class="post-date" title="2024-11-08 07:04:01">2024/11/08</span>
</a>
<a class="All Notes UdS "
href="/agv1-2/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 1.2 -- Synthesis">AGV 1.2 -- Synthesis</span>
<span class="post-date" title="2024-11-07 05:56:37">2024/11/07</span>
</a>
<a class="All Notes UdS "
href="/agv1-1/"
data-tag="AGV"
data-author="" >
<span class="post-title" title="AGV 1.1 -- Model Checking">AGV 1.1 -- Model Checking</span>
<span class="post-date" title="2024-11-06 19:00:13">2024/11/06</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-197/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 197. Rising Temperature">Leetcode SQL 50 -- 197. Rising Temperature</span>
<span class="post-date" title="2024-11-05 18:42:26">2024/11/05</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1581/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1581. Customer Who Visited but Did Not Make Any Transactions">Leetcode SQL 50 -- 1581. Customer Who Visited but Did Not Make Any Transactions</span>
<span class="post-date" title="2024-11-04 11:16:20">2024/11/04</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1068/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1068. Product Sales Analysis I">Leetcode SQL 50 -- 1068. Product Sales Analysis I</span>
<span class="post-date" title="2024-11-03 11:07:54">2024/11/03</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1517/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1517. Find Users With Valid E-Mails">Leetcode SQL 50 -- 1517. Find Users With Valid E-Mails</span>
<span class="post-date" title="2024-11-02 00:28:05">2024/11/02</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1327/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1327. List the Products Ordered in a Period">Leetcode SQL 50 -- 1327. List the Products Ordered in a Period</span>
<span class="post-date" title="2024-11-01 13:42:25">2024/11/01</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1484/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1484. Group Sold Products By The Date">Leetcode SQL 50 -- 1484. Group Sold Products By The Date</span>
<span class="post-date" title="2024-10-31 07:15:31">2024/10/31</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-176/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 176. Second Highest Salary">Leetcode SQL 50 -- 176. Second Highest Salary</span>
<span class="post-date" title="2024-10-30 06:49:36">2024/10/30</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-196/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 196. Delete Duplicate Emails">Leetcode SQL 50 -- 196. Delete Duplicate Emails</span>
<span class="post-date" title="2024-10-29 06:38:05">2024/10/29</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1527/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1527. Patients With a Condition">Leetcode SQL 50 -- 1527. Patients With a Condition</span>
<span class="post-date" title="2024-10-28 05:46:28">2024/10/28</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1667/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1667. Fix Names in a Table">Leetcode SQL 50 -- 1667. Fix Names in a Table</span>
<span class="post-date" title="2024-10-27 05:30:03">2024/10/27</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1378/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1378. Replace Employee ID With The Unique Identifier">Leetcode SQL 50 -- 1378. Replace Employee ID With The Unique Identifier</span>
<span class="post-date" title="2024-10-26 16:56:35">2024/10/26</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1683/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1683. Invalid Tweets">Leetcode SQL 50 -- 1683. Invalid Tweets</span>
<span class="post-date" title="2024-10-25 13:39:20">2024/10/25</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1148/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1148. Article Views I">Leetcode SQL 50 -- 1148. Article Views I</span>
<span class="post-date" title="2024-10-24 11:12:09">2024/10/24</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-595/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 595. Big Countries">Leetcode SQL 50 -- 595. Big Countries</span>
<span class="post-date" title="2024-10-23 11:04:52">2024/10/23</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-584/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 584. Find Customer Referee">Leetcode SQL 50 -- 584. Find Customer Referee</span>
<span class="post-date" title="2024-10-22 17:11:44">2024/10/22</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50-1757/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 -- 1757. Recyclable and Low Fat Products">Leetcode SQL 50 -- 1757. Recyclable and Low Fat Products</span>
<span class="post-date" title="2024-10-21 17:15:08">2024/10/21</span>
</a>
<a class="All LeetCode SQL_50 "
href="/sql50/"
data-tag="SQL"
data-author="" >
<span class="post-title" title="Leetcode SQL 50 (Portal 🚪)">Leetcode SQL 50 (Portal 🚪)</span>
<span class="post-date" title="2024-10-20 23:59:01">2024/10/20</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-5/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-5 -- Rimes with u & yu (Phonology)">Cantonese Ch.1-5 -- Rimes with u & yu (Phonology)</span>
<span class="post-date" title="2024-10-20 03:06:12">2024/10/20</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-4/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-4 -- Rimes with i & o (Phonology)">Cantonese Ch.1-4 -- Rimes with i & o (Phonology)</span>
<span class="post-date" title="2024-10-19 03:06:12">2024/10/19</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-3/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-3 -- Rimes with e (Phonology)">Cantonese Ch.1-3 -- Rimes with e (Phonology)</span>
<span class="post-date" title="2024-10-18 02:06:12">2024/10/18</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-2/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-2 -- Rimes with a & aa (Phonology)">Cantonese Ch.1-2 -- Rimes with a & aa (Phonology)</span>
<span class="post-date" title="2024-10-17 02:06:12">2024/10/17</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-1/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-1 -- Onset (Phonology)">Cantonese Ch.1-1 -- Onset (Phonology)</span>
<span class="post-date" title="2024-10-16 02:06:12">2024/10/16</span>
</a>
<a class="All Cantonese Full_Course "
href="/canto1-0/"
data-tag="Language Learning,Cantonese,Phonology"
data-author="" >
<span class="post-title" title="Cantonese Ch.1-0 -- Introduction to Phonology & Tones">Cantonese Ch.1-0 -- Introduction to Phonology & Tones</span>
<span class="post-date" title="2024-10-15 01:06:12">2024/10/15</span>
</a>
<a class="All Projects "
href="/hexo-zhruby/"
data-tag="Hexo,Cantonese,Node.js,HTML"
data-author="" >
<span class="post-title" title="hexo-zhruby -- Implementing HTML Ruby tag in Hexo">hexo-zhruby -- Implementing HTML Ruby tag in Hexo</span>
<span class="post-date" title="2024-10-14 04:04:55">2024/10/14</span>