1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > CodeCut Blog</ title >
7+ < link href ="https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&display=swap " rel ="stylesheet ">
8+ < style >
9+ body {
10+ font-family : 'Comfortaa' , -apple-system, BlinkMacSystemFont, 'Segoe UI' , Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans' , 'Helvetica Neue' , sans-serif;
11+ line-height : 1.6 ;
12+ max-width : 800px ;
13+ margin : 0 auto;
14+ padding : 2rem ;
15+ color : white;
16+ background-color : # 2F2D2E ;
17+ }
18+ h1 {
19+ color : white;
20+ border-bottom : 2px solid white;
21+ padding-bottom : 0.5rem ;
22+ }
23+ .notebook-list {
24+ list-style : none;
25+ padding : 0 ;
26+ }
27+ .notebook-item {
28+ margin-bottom : 2rem ;
29+ padding : 1rem ;
30+ border : 1px solid white;
31+ border-radius : 8px ;
32+ transition : transform 0.2s ;
33+ }
34+ .notebook-item : hover {
35+ transform : translateY (-2px );
36+ box-shadow : 0 4px 6px rgba (255 , 255 , 255 , 0.1 );
37+ }
38+ .notebook-title {
39+ font-size : 1.5rem ;
40+ margin : 0 0 0.5rem 0 ;
41+ color : white;
42+ }
43+ .notebook-description {
44+ color : # CCCCCC ;
45+ margin-bottom : 1rem ;
46+ }
47+ .notebook-link {
48+ display : inline-block;
49+ padding : 0.5rem 1rem ;
50+ background-color : # 72BEFA ;
51+ color : # 2F2D2E ;
52+ text-decoration : none;
53+ border-radius : 4px ;
54+ transition : background-color 0.2s ;
55+ border : 1px solid white;
56+ }
57+ .notebook-link : hover {
58+ background-color : # 5AA8E8 ;
59+ border : 1px solid white;
60+ }
61+ </ style >
62+ </ head >
63+ < body >
64+ < h1 > CodeCut Blog Examples</ h1 >
65+ < ul class ="notebook-list ">
66+ < li class ="notebook-item ">
67+ < h2 class ="notebook-title "> narwhals</ h2 >
68+ < a href ="data_science_tools/narwhals.html " class ="notebook-link "> View Notebooks</ a >
69+ </ li >
70+ < li class ="notebook-item ">
71+ < h2 class ="notebook-title "> narwhals row ordering</ h2 >
72+ < a href ="data_science_tools/narwhals_row_ordering.html " class ="notebook-link "> View Notebooks</ a >
73+ </ li >
74+ < li class ="notebook-item ">
75+ < h2 class ="notebook-title "> pandas api on spark</ h2 >
76+ < a href ="data_science_tools/pandas_api_on_spark.html " class ="notebook-link "> View Notebooks</ a >
77+ </ li >
78+ < li class ="notebook-item ">
79+ < h2 class ="notebook-title "> polars vs pandas</ h2 >
80+ < a href ="data_science_tools/polars_vs_pandas.html " class ="notebook-link "> View Notebooks</ a >
81+ </ li >
82+ < li class ="notebook-item ">
83+ < h2 class ="notebook-title "> pyspark parametrize</ h2 >
84+ < a href ="data_science_tools/pyspark_parametrize.html " class ="notebook-link "> View Notebooks</ a >
85+ </ li >
86+ < li class ="notebook-item ">
87+ < h2 class ="notebook-title "> pydantic ai examples</ h2 >
88+ < a href ="llm/pydantic_ai_examples.html " class ="notebook-link "> View Notebooks</ a >
89+ </ li >
90+ </ ul >
91+ </ body >
92+ </ html >
0 commit comments