Skip to content

Commit 4d18941

Browse files
committed
More initial commit.
1 parent 75b91c5 commit 4d18941

File tree

186 files changed

+1706
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+1706
-0
lines changed

config.toml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
theme = "tabi"
2+
title = "> colton"
3+
4+
# The URL the site will be built for
5+
base_url = "https://coltoneakins.com"
6+
7+
# Whether to automatically compile all Sass files in the sass directory
8+
compile_sass = true
9+
10+
# Whether to build a search index to be used later on by a JavaScript library
11+
build_search_index = true
12+
13+
# default language
14+
default_language = "en"
15+
16+
# taxonomies used for blog posts and projects
17+
taxonomies = [{name = "tags", feed = true}]
18+
19+
[markdown]
20+
# Whether to do syntax highlighting
21+
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
22+
highlight_code = true
23+
24+
[extra]
25+
# Put all your custom variables here
26+
seo_prefix = "Colton Eakins"
27+
separator = ""
28+
skin = "teal"
29+
homepage_seo_title = "Colton Eakins — Chicagoland Software Engineer"
30+
stylesheets=['custom.css']
31+
scripts=['custom.js']
32+
menu = [
33+
{ name = "projects", url = "projects", trailing_slash = false },
34+
{ name = "blog", url = "blog", trailing_slash = false },
35+
{ name = "contact", url = "contact", trailing_slash = false },
36+
]
37+
favicon = "/favicon.png"
38+
favicon_emoji = "👨‍💻"

content/_index.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
+++
2+
title = "Latest posts"
3+
description = "Hey, I'm Colton: a Chicagoland software engineer who works for Grubhub. I love to work on projects and write blog posts."
4+
template = "index.html"
5+
6+
[extra]
7+
header = {title = "Hey, I'm Colton.", img = "me.png", img_alt = "Artsy photo of Colton Eakins"}
8+
section_path = "blog/_index.md"
9+
max_posts = 4
10+
11+
[[extra.socials]]
12+
name = "Github"
13+
url = "https://github.com/coltoneakins"
14+
icon = "github.svg"
15+
16+
[[extra.socials]]
17+
name = "LinkedIn"
18+
url = "https://www.linkedin.com/in/coltoneakins/"
19+
icon = "linkedin.svg"
20+
21+
[[extra.socials]]
22+
name = "StackOverflow"
23+
url = "https://stackoverflow.com/users/9347694/coltoneakins"
24+
icon = "stackoverflow.svg"
25+
+++
26+
27+
#### Nice to meet you. 👋
28+
29+
I am a software engineer at Grubhub. I have been programming professionally for eight years.
30+
31+
[Check out my projects →](/projects)
32+

content/blog/_index.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
paginate_by = 5
3+
path = "/blog"
4+
title = "Blog"
5+
sort_by = "date"
6+
template = "section.html"
7+
insert_anchor_links = "left"
8+
9+
+++

content/blog/hello-world.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
+++
2+
title = "Hello World"
3+
date = 2024-05-01
4+
updated = 2025-05-28
5+
description = "This is a test blog"
6+
7+
[taxonomies]
8+
tags = ["first", "test"]
9+
10+
[extra]
11+
toc = true
12+
quick_navigation_buttons = true
13+
+++
14+
15+
hello world
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
+++
2+
title = "Semantic video search for social media content with Twelve Labs"
3+
date = 2024-05-25
4+
updated = 2024-05-28
5+
description = "This blog post details how to set up a semantic search engine using Twelve Labs and a custom database of social media videos from Tiktok and Instagram"
6+
7+
[taxonomies]
8+
tags = ["python", "ai", "llms", "video-understanding"]
9+
10+
[extra]
11+
toc = true
12+
quick_navigation_buttons = true
13+
+++
14+
15+
Full write-up coming soon!

content/blog/semantic-video-search.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
+++
2+
title = "Creating and shipping a fast, user-friendly website crawler with Python, Scrapy, and PyInstaller"
3+
date = 2024-05-21
4+
updated = 2024-05-28
5+
description = "In this blog post, a website crawler is made using Scrapy complete with a multi-platform installer and GUI using Gooey."
6+
7+
[taxonomies]
8+
tags = ["python", "web-scraping", "web-crawling"]
9+
10+
[extra]
11+
toc = true
12+
quick_navigation_buttons = true
13+
+++
14+
15+
Full write-up coming soon!

content/dh.jpg

10.7 KB
Loading

content/favicon.png

170 KB
Loading

content/github.svg

+1
Loading

content/linkedin.svg

+1
Loading

content/me.png

415 KB
Loading

content/pages/_index.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
render = false
3+
insert_anchor_links = "left"
4+
5+
[extra]
6+
hide_from_feed = true
7+
+++

content/pages/contact/index.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
+++
2+
title = "Contact"
3+
name = "Contact"
4+
path = "contact"
5+
template = "info-page.html"
6+
7+
+++
8+
9+
Questions or opportunities? Please feel free to reach out to me using the form below.
10+
11+
This form just emails me. Your email is not shared nor solicited.
12+
13+
{{ form() }}

content/projects/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title = "Projects"
3+
sort_by = "weight"
4+
template = "cards.html"
5+
insert_anchor_links = "left"
6+
7+
[extra]
8+
show_reading_time = false
9+
quick_navigation_buttons = true
10+
+++

content/projects/digital-huddle.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Digital Huddle"
3+
description = "I designed the branding and built the website for this small online-only publisher."
4+
weight = 1
5+
6+
[extra]
7+
local_image = "dh.jpg"
8+
+++
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Scrapy Spider for Legacy System Migration"
3+
description = "I wrote an asynchronous website crawler for Internet Brands which helped to migrate thousands of their clients off an old platform."
4+
weight = 1
5+
6+
[extra]
7+
local_image = "scrapy.png"
8+
+++
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Semantic Video Search and Video Retrieval"
3+
description = "I created a RAG pipeline with Python and SQLite that uses top AI models like Whisper, CLIP, ChatGPT, and Gemini Flash semantically organize Tiktok and Instagram videos."
4+
weight = 0
5+
6+
[extra]
7+
local_image = "tt-insta.jpeg"
8+
+++

content/scrapy.png

187 KB
Loading

content/stackoverflow.svg

+1
Loading

content/tt-insta.jpeg

7.8 KB
Loading

public/custom.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/custom_subset.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/dh.jpg

10.7 KB
Loading

public/elasticlunr.min.js

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/favicon.png

170 KB
Loading

0 commit comments

Comments
 (0)