Skip to content

Commit 79c291a

Browse files
committed
update about
1 parent b16bd3b commit 79c291a

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
I"�{"source"=>"/home/bobby/Documents/github-website/code", "destination"=>"/home/bobby/Documents/github-website/code/_site", "collections_dir"=>"collections", "cache_dir"=>".jekyll-cache", "plugins_dir"=>"_plugins", "layouts_dir"=>"_layouts", "data_dir"=>"_data", "includes_dir"=>"_includes", "collections"=>{"posts"=>{"output"=>true, "permalink"=>"/:categories/:year/:month/:day/:title:output_ext"}, "projects"=>{"output"=>true}, "blog"=>{"output"=>true}}, "safe"=>false, "include"=>[".htaccess"], "exclude"=>[".sass-cache", ".jekyll-cache", "gemfiles", "Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"], "keep_files"=>[".git", ".svn"], "encoding"=>"utf-8", "markdown_ext"=>"markdown,mkdown,mkdn,mkd,md", "strict_front_matter"=>false, "show_drafts"=>nil, "limit_posts"=>0, "future"=>false, "unpublished"=>false, "whitelist"=>[], "plugins"=>["jekyll-feed", "jekyll-seo-tag"], "markdown"=>"kramdown", "highlighter"=>"rouge", "lsi"=>false, "excerpt_separator"=>"\n\n", "incremental"=>false, "detach"=>false, "port"=>"4000", "host"=>"127.0.0.1", "baseurl"=>nil, "show_dir_listing"=>false, "permalink"=>"date", "paginate_path"=>"/page:num/", "timezone"=>nil, "quiet"=>false, "verbose"=>false, "defaults"=>[], "liquid"=>{"error_mode"=>"warn", "strict_filters"=>false, "strict_variables"=>false}, "kramdown"=>{"auto_ids"=>true, "toc_levels"=>[1, 2, 3, 4, 5, 6], "entity_output"=>"as_char", "smart_quotes"=>"lsquo,rsquo,ldquo,rdquo", "input"=>"GFM", "hard_wrap"=>false, "guess_lang"=>true, "footnote_nr"=>1, "show_warnings"=>false}, "title"=>"RCmags", "author"=>"random-internet-guy", "email"=>"memoryofatrufestival@gmail.com", "description"=>"Projects and other things", "paginate"=>6, "github_username"=>"RCmags", "youtube_username"=>"XXXmags", "rcgroups_username_id"=>"189488", "google_analytics"=>true, "minima"=>{"date_format"=>"%-d %b, %Y"}, "livereload_port"=>35729, "serving"=>true, "watch"=>true, "url"=>"http://localhost:4000"}:ET
1+
I"={"source"=>"/home/bobby/Documents/github-website/code", "destination"=>"/home/bobby/Documents/github-website/code/_site", "collections_dir"=>"collections", "cache_dir"=>".jekyll-cache", "plugins_dir"=>"_plugins", "layouts_dir"=>"_layouts", "data_dir"=>"_data", "includes_dir"=>"_includes", "collections"=>{"posts"=>{"output"=>true, "permalink"=>"/:categories/:year/:month/:day/:title:output_ext"}, "projects"=>{"output"=>true}, "blog"=>{"output"=>true}}, "safe"=>false, "include"=>[".htaccess"], "exclude"=>[".sass-cache", ".jekyll-cache", "gemfiles", "Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"], "keep_files"=>[".git", ".svn"], "encoding"=>"utf-8", "markdown_ext"=>"markdown,mkdown,mkdn,mkd,md", "strict_front_matter"=>false, "show_drafts"=>nil, "limit_posts"=>0, "future"=>false, "unpublished"=>false, "whitelist"=>[], "plugins"=>["jekyll-feed", "jekyll-seo-tag"], "markdown"=>"kramdown", "highlighter"=>"rouge", "lsi"=>false, "excerpt_separator"=>"\n\n", "incremental"=>false, "detach"=>false, "port"=>"4000", "host"=>"127.0.0.1", "baseurl"=>nil, "show_dir_listing"=>false, "permalink"=>"date", "paginate_path"=>"/page:num/", "timezone"=>nil, "quiet"=>false, "verbose"=>false, "defaults"=>[], "liquid"=>{"error_mode"=>"warn", "strict_filters"=>false, "strict_variables"=>false}, "kramdown"=>{"auto_ids"=>true, "toc_levels"=>[1, 2, 3, 4, 5, 6], "entity_output"=>"as_char", "smart_quotes"=>"lsquo,rsquo,ldquo,rdquo", "input"=>"GFM", "hard_wrap"=>false, "guess_lang"=>true, "footnote_nr"=>1, "show_warnings"=>false, "syntax_highlighter"=>"rouge", "syntax_highlighter_opts"=>{:default_lang=>"plaintext", :guess_lang=>true}, "coderay"=>{}}, "title"=>"RCmags", "author"=>"random-internet-guy", "email"=>"memoryofatrufestival@gmail.com", "description"=>"Projects and other things", "paginate"=>6, "github_username"=>"RCmags", "youtube_username"=>"XXXmags", "rcgroups_username_id"=>"189488", "google_analytics"=>true, "minima"=>{"date_format"=>"%-d %b, %Y"}, "livereload_port"=>35729, "serving"=>true, "watch"=>true, "url"=>"http://localhost:4000"}:ET

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ This site is built using [jekyll](http://jekyllrb.com/) and its default [minima
44

55
## :interrobang: Content
66
This site meant as a repository to display my projects and a place to host my blog. There's no real theme to the content besides, well, whatever is on it. Still, it provides an overview of what I like to work on.
7-
8-
Thanks __random internet person__ :skull: for being a creeper and taking an interest in what I do! :sweat_smile:

_includes/svg-arrow.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% assign dir = include.dir %}
2+
3+
<svg style="height: 20px; width: 20px">
4+
{% if dir == "left" %}
5+
<polygon points="0,10 20,20 20,0">
6+
{% elsif dir == "right" %}
7+
<polygon points="20,10 0,20 0,0">
8+
{% endif %}
9+
</svg>

about.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,24 @@ slider1:
1212

1313
---
1414

15-
Hi! I'm a mechanical engineer and this site is about my personal projects. They're mostly about model aircraft but there's some programing as well. Complementing this are my post on [RCGroups](https://www.rcgroups.com/forums/member.php?u=189488), so check them out!
15+
### The author
16+
I'm some guy on the internet that made a github account to showcase his stuff. My life's story is pretty simple. I liked RC-planes and video games as a kid, then went to college and took some coding classes and got a degree in mechanical engineering. The intersection of these interests led me to make some pretty cool projects and I've felt the need to write about them.
1617

17-
Here's some of my stuff:
18+
I believe that some of these projects, especially the experimental model aircraft, represent some very good and unique concepts. They can definitely serve as inspiration for anyone interested in pursuing similar designs.
1819

19-
{% include image-slider.html list=page.slider1 %}
20+
With time, I've also realized I needed a blog to just write about stuff and get it out of my head. It seems like a good way to maintain mental clarity and peace of mind.
21+
22+
{% include image.html src="/img/about/skyline.jpg" %}
23+
<p align="center">
24+
<i>Staring into the horizon feels good</i>
25+
</p>
26+
27+
### About this site
28+
This website is a repository for my projects and a place to keep a blog.
29+
30+
The projects are sub-divided into multiple categories that branch into their own set of posts. In general, each project is a set of articles that explain the inception and development of a particular idea until it concludes into a functional prototype. These projects range from small web-apps and arduino libraries, to experimental model aircraft that act as concept demonstrators.
31+
32+
The blog follows a similar structure but focuses on narrating experiences and analyzing them. Here you can find things like miscellaneous rumination, a travel diary, and a research log.
33+
34+
### Contact
35+
If you find any of the concent on this site useful or if you have any questions about it, feel free to contact me. Just use one of the links available in the footer of the site. I'd be happy to talk about whatever it is you want to discuss.

img/about/skyline.jpg

55.7 KB
Loading

img/avatar.jpg

155 KB
Loading

0 commit comments

Comments
 (0)