Skip to content

Commit bbe3ca9

Browse files
committed
auto_push
1 parent d74d4f4 commit bbe3ca9

30 files changed

+19
-0
lines changed
Binary file not shown.
152 KB
Binary file not shown.

blog/pdf/adjunction.pdf

305 KB
Binary file not shown.

blog/pdf/approximation-pattern.pdf

213 KB
Binary file not shown.

blog/pdf/calculus.pdf

233 KB
Binary file not shown.

blog/pdf/complex.pdf

223 KB
Binary file not shown.

blog/pdf/complex_analysis_ahlfors.pdf

218 KB
Binary file not shown.

blog/pdf/conflict-based-search.pdf

122 KB
Binary file not shown.

blog/pdf/cycle.pdf

142 KB
Binary file not shown.
Binary file not shown.

blog/pdf/diffusion-convection.pdf

251 KB
Binary file not shown.

blog/pdf/dummit_foote_algebra.pdf

706 KB
Binary file not shown.

blog/pdf/filter.pdf

93.8 KB
Binary file not shown.

blog/pdf/finite_union_compactness.pdf

176 KB
Binary file not shown.

blog/pdf/fyp.pdf

579 KB
Binary file not shown.
44.8 KB
Binary file not shown.

blog/pdf/kunneth_theorem.pdf

463 KB
Binary file not shown.

blog/pdf/paxos-algorithm.pdf

139 KB
Binary file not shown.

blog/pdf/pca.pdf

217 KB
Binary file not shown.

blog/pdf/pi.pdf

51.3 KB
Binary file not shown.

blog/pdf/real_analysis.pdf

113 KB
Binary file not shown.

blog/pdf/set.pdf

214 KB
Binary file not shown.

blog/pdf/set_function.pdf

249 KB
Binary file not shown.

blog/pdf/sheaf_iso.pdf

127 KB
Binary file not shown.

blog/pdf/single_solution.pdf

99.3 KB
Binary file not shown.

blog/pdf/spectral.pdf

296 KB
Binary file not shown.

blog/pdf/ssc_td.pdf

254 KB
Binary file not shown.

blog/pdf/zorn_lemma.pdf

103 KB
Binary file not shown.

blog/text.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ <h1>Text</h1>
1515
<hr>
1616
<h2>Some texts written for fun</h2>
1717
<p>
18+
<i style="color:#FF0000">Since I don't host my tex documents on overleaf anymore, it's quite tedious to update every line of this. <br> Here is a link into all of my <a href="pdf">public pdfs</a></i>
1819
<ul>
1920
<li>Aug 2024: My notes on differential manifolds: <a href="https://www.overleaf.com/read/xxqttjzrrzrt#ca6e8b"> here</a></li>
2021
<li>Aug 2024: My notes on probability theory and information theory: <a href="https://www.overleaf.com/read/tdfybfhgdvbx#f24cfe"> here</a></li>

copy_all_pdf_from_docs.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import os
2+
import shutil
3+
4+
dst_dir = "blog/pdf"
5+
src_dir = "/Users/khanh/docs/latex_code"
6+
7+
if __name__ == "__main__":
8+
if os.path.exists(dst_dir):
9+
shutil.rmtree(dst_dir)
10+
os.makedirs(dst_dir)
11+
12+
for name in os.listdir(src_dir):
13+
pdf_path = f"{src_dir}/{name}/main.pdf"
14+
if os.path.exists(pdf_path):
15+
dst_pdf_path = f"{dst_dir}/{name}.pdf"
16+
shutil.copyfile(pdf_path, dst_pdf_path)
17+
18+

0 commit comments

Comments
 (0)