Skip to content

Commit 525ea52

Browse files
deploy: c2a85f1
0 parents  commit 525ea52

9 files changed

+672
-0
lines changed

.nojekyll

Whitespace-only changes.

data_science_tools/narwhals.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

data_science_tools/narwhals_row_ordering.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

data_science_tools/pandas_api_on_spark.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

data_science_tools/polars_vs_pandas.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

data_science_tools/pyspark_parametrize.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

index.html

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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: 2px 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: all 0.2s;
55+
border: 2px solid white;
56+
font-weight: 600;
57+
}
58+
.notebook-link:hover {
59+
background-color: #5AA8E8;
60+
border: 2px solid white;
61+
transform: translateY(-2px);
62+
}
63+
</style>
64+
</head>
65+
<body>
66+
<h1>CodeCut Marimo Notebook</h1>
67+
<ul class="notebook-list">
68+
<li class="notebook-item">
69+
<h2 class="notebook-title">narwhals</h2>
70+
<a href="data_science_tools/narwhals.html" class="notebook-link">View the notebook</a>
71+
</li>
72+
<li class="notebook-item">
73+
<h2 class="notebook-title">narwhals row ordering</h2>
74+
<a href="data_science_tools/narwhals_row_ordering.html" class="notebook-link">View the notebook</a>
75+
</li>
76+
<li class="notebook-item">
77+
<h2 class="notebook-title">pandas api on spark</h2>
78+
<a href="data_science_tools/pandas_api_on_spark.html" class="notebook-link">View the notebook</a>
79+
</li>
80+
<li class="notebook-item">
81+
<h2 class="notebook-title">polars vs pandas</h2>
82+
<a href="data_science_tools/polars_vs_pandas.html" class="notebook-link">View the notebook</a>
83+
</li>
84+
<li class="notebook-item">
85+
<h2 class="notebook-title">pyspark parametrize</h2>
86+
<a href="data_science_tools/pyspark_parametrize.html" class="notebook-link">View the notebook</a>
87+
</li>
88+
<li class="notebook-item">
89+
<h2 class="notebook-title">lchain ollama</h2>
90+
<a href="llm/lchain_ollama.html" class="notebook-link">View the notebook</a>
91+
</li>
92+
<li class="notebook-item">
93+
<h2 class="notebook-title">pydantic ai examples</h2>
94+
<a href="llm/pydantic_ai_examples.html" class="notebook-link">View the notebook</a>
95+
</li>
96+
</ul>
97+
</body>
98+
</html>

llm/lchain_ollama.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

llm/pydantic_ai_examples.html

Lines changed: 82 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)