Skip to content

Commit

Permalink
add blog
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanley (Guang) Yang committed Jul 11, 2024
1 parent 306bddc commit 55fe500
Show file tree
Hide file tree
Showing 36 changed files with 256 additions and 1,040 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.DS_Store
_site/
*.html
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stanley.yang
26 changes: 7 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,42 +1,32 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (7.1.3.2)
base64
bigdecimal
activesupport (6.1.7.8)
concurrent-ruby (~> 1.0, >= 1.0.2)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
base64 (0.2.0)
bigdecimal (3.1.7)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
colorator (1.1.0)
commonmarker (0.23.10)
concurrent-ruby (1.2.3)
connection_pool (2.4.1)
dnsruby (1.71.0)
simpleidn (~> 0.2.1)
drb (2.2.1)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
ethon (0.16.0)
ffi (>= 1.15.0)
eventmachine (1.2.7)
execjs (2.9.1)
faraday (2.9.0)
faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0)
net-http
faraday (2.0.0)
ruby2_keywords (>= 0.0.4)
ffi (1.16.3)
forwardable-extended (2.6.0)
gemoji (4.1.0)
Expand Down Expand Up @@ -219,10 +209,7 @@ GEM
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.22.3)
mutex_m (0.2.0)
net-http (0.4.1)
uri
nokogiri (1.16.3-arm64-darwin)
nokogiri (1.13.10-arm64-darwin)
racc (~> 1.4)
octokit (4.25.1)
faraday (>= 1, < 3)
Expand All @@ -236,6 +223,7 @@ GEM
ffi (~> 1.0)
rexml (3.2.6)
rouge (3.30.0)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
safe_yaml (1.0.5)
sass (3.7.4)
Expand All @@ -258,8 +246,8 @@ GEM
unf_ext
unf_ext (0.0.9.1)
unicode-display_width (1.8.0)
uri (0.13.0)
webrick (1.8.1)
zeitwerk (2.6.16)

PLATFORMS
arm64-darwin-23
Expand Down
13 changes: 10 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
MARKDOWN_FILES := $(wildcard *.md)
MARKDOWN_FILES := $(wildcard blog/*.md)
BLOG := $(patsubst %.md,%.html,$(MARKDOWN_FILES))

PANDOC_OPTIONS := -f markdown+inline_code_attributes+superscript \
-t html --katex -s \
Expand All @@ -7,7 +8,7 @@ PANDOC_OPTIONS := -f markdown+inline_code_attributes+superscript \
-V linestretch=1.6 \
--highlight-style=monochrome

all: index.html courses.html
all: index.html courses.html projects.html blog.html $(BLOG)

index.html: index.md
pandoc $< $(PANDOC_OPTIONS) -o $@
Expand All @@ -16,6 +17,12 @@ courses.html: courses.md
pandoc $< $(PANDOC_OPTIONS) -o $@

projects.html: projects.md
pandoc $< $(PANDOC_OPTIONS) -o $@:
pandoc $< $(PANDOC_OPTIONS) -o $@

blog.html: blog.md
pandoc $< $(PANDOC_OPTIONS) -o $@

blog/%.html: blog/%.md
pandoc $< $(PANDOC_OPTIONS) -o $@

.PHONY: all
8 changes: 8 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,11 @@ exclude:
- LICENSE
- minimal-light.gemspec
- html_source_file/

plugins:
- jekyll-feed

feed:
path: feed.xml
title: My Awesome Blog
description: Updates from My Awesome Blog
17 changes: 15 additions & 2 deletions _site/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
MARKDOWN_FILES := $(wildcard)
MARKDOWN_FILES := $(wildcard blog/*.md)
BLOG := $(patsubst %.md,%.html,$(MARKDOWN_FILES))

PANDOC_OPTIONS := -f markdown+inline_code_attributes+superscript \
-t html --katex -s \
Expand All @@ -7,9 +8,21 @@ PANDOC_OPTIONS := -f markdown+inline_code_attributes+superscript \
-V linestretch=1.6 \
--highlight-style=monochrome

all: index.html
all: index.html courses.html projects.html blog.html $(BLOG)

index.html: index.md
pandoc $< $(PANDOC_OPTIONS) -o $@

courses.html: courses.md
pandoc $< $(PANDOC_OPTIONS) -o $@

projects.html: projects.md
pandoc $< $(PANDOC_OPTIONS) -o $@

blog.html: blog.md
pandoc $< $(PANDOC_OPTIONS) -o $@

blog/%.html: blog/%.md
pandoc $< $(PANDOC_OPTIONS) -o $@

.PHONY: all
Binary file modified _site/Resume/Resume_Stanley_Yang.docx
Binary file not shown.
Binary file modified _site/Resume/Resume_Stanley_Yang.pdf
Binary file not shown.
Binary file modified _site/Resume/UWUnofficialTranscript.pdf
Binary file not shown.
Binary file modified _site/assets/files/Resume_Stanley_Yang.pdf
Binary file not shown.
Binary file removed _site/assets/img/frc2021.png
Binary file not shown.
Binary file removed _site/assets/img/gripper.png
Binary file not shown.
244 changes: 45 additions & 199 deletions _site/index.html

Large diffs are not rendered by default.

44 changes: 43 additions & 1 deletion _site/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,46 @@
padding: 10px;
max-width: 100%; /* Ensure the image does not exceed the container width */
height: auto; /* Maintain the image's aspect ratio */
}
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
}

nav {
background: #333;
color: #fff;
padding: 1em;
}

nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}

nav ul li {
margin: 0 1em;
}

nav ul li a {
color: #fff;
text-decoration: none;
padding: 0.5em 1em;
border-radius: 5px;
transition: background 0.3s;
}

nav ul li a:hover {
background: #555;
}

main {
padding: 2em;
text-align: center;
}
Binary file removed assets/img/frc2021.png
Binary file not shown.
Binary file removed assets/img/gripper.png
Binary file not shown.
Binary file removed assets/img/teaser_example.png
Binary file not shown.
Binary file removed assets/img/teaser_example_2.png
Binary file not shown.
12 changes: 12 additions & 0 deletions blog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: homepage
---

## Welcome to my blog.

Currently, my content consists mainly of personal reflections and random thoughts. Most of it is written in simplified Chinese, and I plan to translate these writings into English when time permits. Stay tuned for more updates in the future!


- [Blog Entry 1](./blog/blog_entry1.md)
- [Blog Entry 2](./blog/blog_entry2.md)

69 changes: 69 additions & 0 deletions blog/blog_entry1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
layout: homepage
---

$$
\exists f . \forall x, y, \dots . \phi
$$

\\

$$f(x) = y$$


![test name of img](/assets/img/Puff.png)
![test aha oho](/assets/img/Puff_enlarged.jpg)


# Coursework

**Spring 2024**
- CSE 431: Introduction to Theory of Computation
- CSE 446: Machine Learning
- CSE 492R: Guided Research Program for Undergraduates
- CSE 499: Undergraduate Research - [Primitive Tagging](https://github.com/merlinyx/primtag), [poster](https://github.com/merlinyx/primtag/blob/main/poster.png)
- CSE 590P: Programming Languages Reading Group Seminar
- MATH 336: Accelerated Advanced Calculus (Complex Analysis) - [An Introduction to Computational Complexity](./assets/files/An_Introduction_to_Computational_Complexity.pdf)

**Winter 2024**
- CSE 344: Introduction to Data Management - [Flight App](https://github.com/az15240/Flight-App)
- CSE 492R: Guided Research Program for Undergraduates
- CSE 499: Undergraduate Research - [Primitive Tagging](https://github.com/merlinyx/primtag), [poster](https://github.com/merlinyx/primtag/blob/main/poster.png)
- CSE 590P: Programming Languages Reading Group Seminar
- CSE 599O: Differentiable & Probabilistic Programming Languages - [CaCL (Change and Chance Language) Interpreter & Compiler](https://gitlab.cs.washington.edu/599o-wi24-dppl/yz489/cacl)
- MATH 335: Accelerated Advanced Calculus (Real Analysis)

**Autumn 2023**
- CSE 312: Foundations of Computing II (Probability & Statistics)
- CSE 332: Data Structures & Parallelism - [uMessage](TBD)
- CSE 390R: Introduction to Research in Computer Science & Engineering
- CSE 498: Undergraduate Research - [SQL-Summer-Research](https://github.com/az15240/SQL-Summer-Research/)
- MATH 334: Accelerated Advanced Calculus (Topology & Real Analysis)

**Spring 2023**
- CSE 311: Foundations of Computing I (Discrete Math)
- CSE 351: The Hardware/Software Interface
- CSE 391: System and Software Tools
- MATH 136: Accelerated Honors Calculus (Linear Algebra) - [Linear Algebra Project: Google’s PageRank Algorithm](./assets/files/Google_s_PageRank_algorithm_Linear_algebra_project.pdf)

**Winter 2023**
- CSE 331: Software Design & Implementation - [Campus Map Finder](https://github.com/az15240/Campus-Path-Finder)
- CSE 341: Programming Languages
- MATH 135: Accelerated Honors Calculus (Differential Equations)
- ENGL 131: Composition: Exposition

**Autumn 2022**
- CSE 143: Computer Programming II (Intro to Java)
- CSE 190B: Direct Admit Seminar
- MATH 134: Accelerated Honors Calculus
- PSYCH 101: Introduction To Psychology
- GEN ST 199: The University Community

**In High School:**
- [Math Extended Essay: Maximize the Value of a Knapsack](./assets/files/WHBC/EE%20-%20DP2-3%20Stanley%20Guang%20YANG.pdf)
- [Economics Portfolio: Micro/Macro/International Trade Economics Commentary](./assets/files/WHBC/Guang%20Yang,%20Stanley,%20HL%20Economics%20Portfolio.pdf)
- [Mathematics Exploration: Properties and applications of the generalized distance between two points](./assets/files/WHBC/YANG%20GUANG,%20Stanley,%20DP1-3,%20Math%20IA%20final%20version.pdf)
- [Physics Research Question: What is the relationship between the magnetic field strength of a permanent magnet and its temperature?](./assets/files/WHBC/YANG%20GUANG,%20Stanley,%20DP2-3,%20CS%20IA%20First%20Draft.zip)
- [Computer Science Project: Seatting Assignment](./assets/files/WHBC/YANG%20GUANG,%20Stanley,%20DP2-3,%20Physics%20IA%20Final%20Version.pdf)
- [Theory of Knowledge Exhibition: Can new knowledge change established values or beliefs?](./assets/files/WHBC/TOK%20Exhibition%20-%20IBDP2-3%20Stanley.docx)
- [Theory of Knowledge Essay: Can there be knowledge that is independent of culture?](./assets/files/WHBC/YANG%20GUANG,%20Stanley,%20TOK%20essay.docx)
1 change: 1 addition & 0 deletions blog/blog_entry2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test 2
1 change: 0 additions & 1 deletion html_source_file/CNAME

This file was deleted.

75 changes: 0 additions & 75 deletions html_source_file/assets/css/publications-no-dark-mode.css

This file was deleted.

Loading

0 comments on commit 55fe500

Please sign in to comment.