-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1154 lines (601 loc) · 39.6 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 lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="Hexo Theme Keep">
<meta name="description" content="Hexo Theme Keep">
<meta name="author" content="Cemon_Liu">
<title>
Keep Learning
</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shortcut icon" href="https://cdn.jsdelivr.net/gh/cemonliu/blogpic@main/logo.svg">
<link rel="stylesheet" href="/font/css/fontawesome.min.css">
<link rel="stylesheet" href="/font/css/regular.min.css">
<link rel="stylesheet" href="/font/css/solid.min.css">
<link rel="stylesheet" href="/font/css/brands.min.css">
<script class="keep-theme-configurations">
const KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"example.com","root":"/","language":"zh-CN","path":"search.json"}
KEEP.theme_config = {"base_info":{"primary_color":"#0066cc","title":"Keep Learning","author":"Cemon_Liu","avatar":"https://cdn.jsdelivr.net/gh/cemonliu/blogpic@main/avatar.svg","logo":"/images/logo.svg","favicon":"https://cdn.jsdelivr.net/gh/cemonliu/blogpic@main/logo.svg"},"menu":{"home":"/ || fa-solid fa-home","archives":"/archives/ || fa-solid fa-box-archive","categories":"/categories/ || fa-solid fa-layer-group","links":"/links/ || fa-solid fa-link","about":"/about/ || fa-solid fa-user-graduate"},"first_screen":{"enable":true,"background_img":"/images/bg.svg","background_img_dark":"/images/bg.svg","description":"Keep writing and Keep loving.","hitokoto":true},"social_contact":{"enable":false,"links":{"github":"https://github.com/cemonliu","weixin":"https://img.gooday.press/blog-img202407261036331.jpg","qq":null,"weibo":null,"zhihu":null,"twitter":null,"x":null,"facebook":null,"email":"[email protected]"}},"scroll":{"progress_bar":true,"percent":true,"hide_header":true},"home":{"announcement":null,"category":true,"tag":false,"post_datetime":"created"},"post":{"author_badge":{"enable":true,"level_badge":true,"custom_badge":["One","Two","Three"]},"word_count":{"wordcount":true,"min2read":true},"datetime_format":"YYYY-MM-DD HH:mm:ss","copyright_info":false,"share":true,"reward":{"enable":false,"img_link":null,"text":null,"icon":null}},"code_block":{"tools":{"enable":true,"style":"mac"},"highlight_theme":"default"},"toc":{"enable":true,"number":true,"expand_all":true,"init_open":true,"layout":"right"},"website_count":{"busuanzi_count":{"enable":true,"site_uv":true,"site_pv":true,"page_pv":true}},"local_search":{"enable":true,"preload":true},"comment":{"enable":true,"use":"twikoo","valine":{"appid":null,"appkey":null,"server_urls":null,"placeholder":null},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":"https://twikoo.gooday.press","region":null,"version":"1.6.36"},"waline":{"server_url":null,"reaction":false,"version":"3.2.1"},"giscus":{"repo":null,"repo_id":null,"category":"Announcements","category_id":null,"reactions_enabled":false},"artalk":{"server":null},"disqus":{"shortname":null}},"rss":{"enable":true},"lazyload":{"enable":true},"cdn":{"enable":false,"provider":"cdnjs"},"pjax":{"enable":false},"footer":{"since":2020,"word_count":true,"site_deploy":{"enable":false,"provider":"github","url":null},"record":{"enable":false,"list":[{"code":null,"link":null}]}},"inject":{"enable":false,"css":[null],"js":[null]},"root":"","source_data":{"links":[{"title":"大佬们"},{"name":"XPoet","link":"https://xpoet.cn/","description":"所有命运的馈赠,早已在暗中标好价格。","avatar":"https://cdn.jsdelivr.net/gh/XPoet/image-hosting@master/common-use/avatar.jpg"},{"name":"不知名艺术家","link":"https://jinzhanqi.com/","description":"love artist, love code.","avatar":"https://s3.ax1x.com/2020/11/17/DVvkB4.jpg"},{"name":"爱·绮梦","link":"https://x.iqimeng.com/","description":"学而时习之 不亦说乎","avatar":"https://x.iqimeng.com/images/avatar.jpg"},{"name":"MurphyChen","link":"https://mphy.gitee.io","description":"与其临渊羡鱼,不如退而结网。","avatar":"https://cdn.jsdelivr.net/gh/hacker-c/Picture-Bed@main/avatar.jpg"},{"name":"LINUX DO","link":"https://linux.do/?source=https://blog_gooday_press","description":"新的理想型社区","avatar":"https://img.gooday.press/blog-img202411091528529.png"}]},"version":"4.2.3"}
KEEP.language_ago = {"second":"%s 秒前","minute":"%s 分钟前","hour":"%s 小时前","day":"%s 天前","week":"%s 周前","month":"%s 个月前","year":"%s 年前"}
KEEP.language_code_block = {"copy":"复制代码","copied":"已复制","fold":"折叠代码块","folded":"已折叠"}
KEEP.language_copy_copyright = {"copy":"复制版权信息","copied":"已复制","title":"原文标题","author":"原文作者","link":"原文链接"}
</script>
<meta name="generator" content="Hexo 7.3.0"></head>
<body>
<div class="progress-bar-container">
<span class="scroll-progress-bar"></span>
</div>
<main class="page-container border-box">
<!-- home first screen -->
<div class="first-screen-container border-box flex-center fade-in-down-animation">
<div class="first-screen-content border-box">
<div class="top-placeholder border-box"></div>
<div class="middle-placeholder border-box">
<div class="description border-box">
<div class="desc-item border-box"><span class="desc hitokoto"></span><span class="cursor">|</span></div>
</div>
<script async
src="https://v1.hitokoto.cn/?encode=js"
>
</script>
</div>
<div class="bottom-placeholder border-box">
</div>
</div>
</div>
<!-- page content -->
<div class="page-main-content border-box is-home">
<div class="page-main-content-top">
<header class="header-wrapper transparent-1">
<div class="border-box header-content has-first-screen">
<div class="left flex-start border-box">
<a class="logo-image border-box" href="/">
<img src="/images/logo.svg">
</a>
<a class="site-name border-box" href="/">
Keep Learning
</a>
</div>
<div class="right border-box">
<div class="pc border-box">
<ul class="menu-list border-box">
<li class="menu-item flex-start border-box active">
<a class="menu-text-color border-box" href="/">
<i class="menu-text-color menu-icon fa-solid fa-home"></i>
首页
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/archives/">
<i class="menu-text-color menu-icon fa-solid fa-box-archive"></i>
归档
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/categories/">
<i class="menu-text-color menu-icon fa-solid fa-layer-group"></i>
分类
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/links/">
<i class="menu-text-color menu-icon fa-solid fa-link"></i>
友链
</a>
</li>
<li class="menu-item flex-start border-box">
<a class="menu-text-color border-box" href="/about/">
<i class="menu-text-color menu-icon fa-solid fa-user-graduate"></i>
关于
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="menu-text-color fas search fa-search"></i>
</li>
</ul>
</div>
<div class="mobile border-box flex-start">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list border-box">
<li class="drawer-menu-item border-box not-sub-menu active">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-home"></i>
</span>
首页
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/archives/">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-box-archive"></i>
</span>
归档
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/categories/">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-layer-group"></i>
</span>
分类
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/links/">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-link"></i>
</span>
友链
</a>
</label>
</li>
<li class="drawer-menu-item border-box not-sub-menu">
<label class="drawer-menu-label border-box">
<a class="drawer-menu-text-color left-side flex-start border-box" href="/about/">
<span class="menu-icon-wrap border-box flex-center">
<i class="drawer-menu-text-color menu-icon fa-solid fa-user-graduate"></i>
</span>
关于
</a>
</label>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle border-box">
<div class="main-content border-box">
<div class="home-content-container fade-in-down-animation">
<ul class="home-post-list border-box">
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/12/31/2024%E5%B9%B4%E6%80%BB%E7%BB%93/">
2024年总结
</a>
</h3>
<div class="home-post-content keep-markdown-body">
2024年做了什么换一个软件来记录 陆陆续续做了好几年的计划,然后看进展。今年年初规划的时候,将一些记录改到了Logseq这个软件上,优势在于是本地化,不需要联网。搭配上企业Onedrive进行备份。再也不会因为各种软件导入导出,联网限制而头疼了。
...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Tue Dec 31 2024 14:10:51 GMT+0800"
>2024-12-31 14:10:51</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E5%BF%83%E6%83%85%E9%9A%8F%E7%AC%94/">心情随笔</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/12/31/2024%E5%B9%B4%E6%80%BB%E7%BB%93/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/12/14/python%E8%BF%9E%E6%8E%A5SQLSERVER/">
python连接SQL SERVER
</a>
</h3>
<div class="home-post-content keep-markdown-body">
Python连接SQL Server并存储数据
之前的数据库都是使用的mysql。由于powerbi 使用sql server更方便,将后续的资料开始使用python转存到SQL server里面。
连接方法python的好处就在于对于不同的DB,...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Dec 14 2024 18:34:48 GMT+0800"
>2024-12-14 18:34:48</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/12/14/python%E8%BF%9E%E6%8E%A5SQLSERVER/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/11/15/%E5%91%BD%E8%BF%90%E7%9A%84%E9%BD%BF%E8%BD%AE%E5%BC%80%E5%A7%8B%E6%97%8B%E8%BD%AC/">
命运的齿轮开始旋转
</a>
</h3>
<div class="home-post-content keep-markdown-body">
命运齿轮开始旋转
这两周出差加上事情较多,故未研究powerbi技术。故分享一下所见所闻所思所得。
前段时间短视频比较火的一句话,就是因为什么什么事情,命运的齿轮开始旋转。对于我自己的理解,反而应该解读为机会是留给有准备的人。
出差越南,英语使用频...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Fri Nov 15 2024 18:13:07 GMT+0800"
>2024-11-15 18:13:07</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E5%BF%83%E6%83%85%E9%9A%8F%E7%AC%94/">心情随笔</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/11/15/%E5%91%BD%E8%BF%90%E7%9A%84%E9%BD%BF%E8%BD%AE%E5%BC%80%E5%A7%8B%E6%97%8B%E8%BD%AC/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/10/26/VBA%E7%9A%84%E5%BA%94%E7%94%A8%E4%B8%A4%E4%BE%8B/">
VBA的应用两例
</a>
</h3>
<div class="home-post-content keep-markdown-body">
VBA应用两例与思考
可能是公众号更新频率太低,所以触发了平台的一些机制,所以最近的几篇powerbi文章都被推荐了。
本期更新两个VBA问题的思路以及其中案例关于EXCEL 和Powerbi的应用思考。
案例1 VBA如何搭配windows计划任...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Oct 26 2024 11:14:15 GMT+0800"
>2024-10-26 11:14:15</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/10/26/VBA%E7%9A%84%E5%BA%94%E7%94%A8%E4%B8%A4%E4%BE%8B/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/10/12/PowerBI-%E5%BB%BA%E6%A8%A1%E5%8F%8D%E6%80%9D/">
PowerBI-建模反思
</a>
</h3>
<div class="home-post-content keep-markdown-body">
PowerBI 建模反思
十一之后,新学了几个DAX函数,但还都是刚熟悉,没有具体的使用场景。所以暂时不做分享。
这一期分享一个关于在使用powerbi容易遇到的坑(建模)。为什么这么说呢?因为我们最初接触别人分享这个软件时,他们都会提供给我们一个...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Oct 12 2024 21:41:43 GMT+0800"
>2024-10-12 21:41:43</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/10/12/PowerBI-%E5%BB%BA%E6%A8%A1%E5%8F%8D%E6%80%9D/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/09/28/PowerBI-Rankx%E7%94%A8%E6%B3%95/">
PowerBI-Rankx用法
</a>
</h3>
<div class="home-post-content keep-markdown-body">
PowerBI Rankx用法实践
本周在PowerBI学习群遇到一个关于排名的问题,用了很久时间去思考,结果还是没完成。后面看到其他人写的公式用法。故学习记录一下。
问题描述模拟的数据如下,公司在不同的时期有不同的消费。要获取在当前筛选时期下的排...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Sep 28 2024 18:36:10 GMT+0800"
>2024-09-28 18:36:10</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/09/28/PowerBI-Rankx%E7%94%A8%E6%B3%95/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/09/14/PowerBI%E4%BD%BF%E7%94%A8SVG/">
PowerBI使用SVG
</a>
</h3>
<div class="home-post-content keep-markdown-body">
PowerBI使用SVG绘制图表八月底更新的一篇关于PowerBI函数的用法还上了推荐。所以看起来,现在这个使用人群还不少。所以今天更新一个帮别人绘制图形的思路和制作方法。
Powerbi制作要求在powerBI 里面绘制一个图形,用统计值和标准值去...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Sep 14 2024 16:15:30 GMT+0800"
>2024-09-14 16:15:30</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/09/14/PowerBI%E4%BD%BF%E7%94%A8SVG/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/09/07/%E5%AD%A6%E4%B9%A0%E7%9A%84%E5%8A%A8%E6%9C%BA/">
学习动机记录
</a>
</h3>
<div class="home-post-content keep-markdown-body">
学校安排了一个专家分享,内容是如何激发孩子的学习动机。听完之后整理一些重点。
学习的动机我们一生追求是什么阿德勒提到,我们穷其一生追求的无外乎两个东西:安全感和价值感。安全感来自于对于日常吃穿住行的保证。而价值感,则来源于孩子的成就以及对于社会产...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Sep 07 2024 14:49:37 GMT+0800"
>2024-09-07 14:49:37</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/">读书笔记</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/09/07/%E5%AD%A6%E4%B9%A0%E7%9A%84%E5%8A%A8%E6%9C%BA/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/08/17/Flask%E6%90%AD%E5%BB%BA%E7%BD%91%E7%AB%99/">
Flask搭建网站
</a>
</h3>
<div class="home-post-content keep-markdown-body">
Flask 搭建网站记录建站目的主要目的是用于维护资料的方便性。可以加一些验证减少人员的错误。
自动生成新的id,而不是靠人去自己找,杜绝重复
资料放在db,不会存在太多版本,资料是一致的
有上传和下载excel的功能,方便批量生成ID
有quer...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Sat Aug 17 2024 13:17:57 GMT+0800"
>2024-08-17 13:17:57</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/08/17/Flask%E6%90%AD%E5%BB%BA%E7%BD%91%E7%AB%99/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/2024/07/29/PowerbI_Calculate-1/">
PowerBI Calculate用法
</a>
</h3>
<div class="home-post-content keep-markdown-body">
Calculate用法
In this final section of a long and difficult chapter, we are now able to provide the definitive guide to CALCULATE....
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-file-circle-plus"></i> <span class="home-post-history"
data-updated="Mon Jul 29 2024 15:52:30 GMT+0800"
>2024-07-29 15:52:30</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/">技术分享</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/2024/07/29/PowerbI_Calculate-1/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
</ul>
<div class="paginator border-box flex-center">
<div class="border-box first-page paginator-btn not-allow">
<a class="border-box"><i class="fa-solid fa-angle-double-left"></i></a>
</div>
<div class="border-box paginator-btn">
<a class="border-box"
href="/"
><i class="fa-solid fa-chevron-left"></i></a>
</div>
<div class="page-number-box border-box flex-center">
<input class="page-number-input border-box base-style"
type="number"
value="1"
min="1"
max="8"
/><span class="delimiter base-style">/</span><span class="base-style">8</span>
</div>
<div class="border-box paginator-btn allowed">
<a class="border-box"
href="/page/2/"
><i class="fa-solid fa-chevron-right"></i></a>
</div>
<div class="border-box last-page paginator-btn allowed">
<a class="border-box"><i class="fa-solid fa-angle-double-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="page-main-content-bottom border-box">
<footer class="footer border-box">
<div class="copyright-info info-item">
© <span>2020</span> - 2024
<i class="fas fa-heart icon-animate"></i> <a href="/">Cemon_Liu</a>
</div>
<div class="theme-info info-item">
由 <a target="_blank" href="https://hexo.io">Hexo</a> 驱动 & 主题 <a class="keep-version" target="_blank" href="https://github.com/XPoet/hexo-theme-keep">Keep</a>
</div>
<div class="count-info info-item">
<span class="count-item border-box uv">
<span class="item-type border-box">访客数</span>
<span class="item-value border-box uv" id="busuanzi_value_site_uv"></span>
</span>
<span class="count-item border-box pv">
<span class="item-type border-box">访问量</span>
<span class="item-value border-box pv" id="busuanzi_value_site_pv"></span>
</span>
</div>
</footer>
</div>
</div>
<!-- post tools -->
<!-- side tools -->
<div class="side-tools">
<div class="side-tools-container border-box side-tools-show-handle">