Repository: github/personal-website Branch: master Commit: ec99147d789e Files: 24 Total size: 95.1 KB Directory structure: gitextract_xz39besz/ ├── .gitattributes ├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── _config.yml ├── _data/ │ ├── colors.json │ └── social_media.yml ├── _includes/ │ ├── footer.html │ ├── header.html │ ├── interests.html │ ├── masthead.html │ ├── post-card.html │ ├── projects.html │ ├── repo-card.html │ ├── thoughts.html │ └── topic-card.html ├── _layouts/ │ ├── default.html │ ├── home.html │ └── post.html ├── _posts/ │ └── 2019-01-29-hello-world.md ├── _sass/ │ └── _highlight-syntax.scss ├── assets/ │ └── styles.scss └── index.html ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ # Auto detect text files and perform LF normalization * text=auto ================================================ FILE: .gitignore ================================================ *.gem .bundle .sass-cache _site/ Gemfile.lock **/.ruby-version ================================================ FILE: Gemfile ================================================ source 'https://rubygems.org' gem 'github-pages', group: :jekyll_plugins gem "jekyll-github-metadata" gem "jekyll-octicons" gem "jemoji" ================================================ FILE: LICENSE.txt ================================================ The MIT License (MIT) Copyright (c) 2019 GitHub Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # Get started building your personal website ### Showcase your software development skills This repository gives you the code you'll need to kickstart a personal website that showcases your work as a software developer. And when you manage the code in a GitHub repository, it will automatically render a webpage with the owner's profile information, including a photo, bio, and repositories. Your personal website is waiting to be personalized, though. It includes space to highlight your specific areas of interest in software development, like languages or industries. And it's standing by to publish your next great blog post. It's all possible using the combination of [Jekyll](https://jekyllrb.com/docs/) (for building your website), [GitHub Pages](https://pages.github.com/) (for hosting your website), and [GitHub's API](https://developer.github.com/v3/) (for automatically populating your website with content). ![](https://user-images.githubusercontent.com/221550/110506678-51906280-80cd-11eb-803a-c41984bd9312.png) ## Installation ### Fork the `github/personal-website` repo You'll be making your own copy of the "personal website starter" repository so you have your own project to customize. A "fork" is a copy of a repository. So select "Fork" atop [the `github/personal-website` repository](https://github.com/github/personal-website). Once you've found a home for your forked repository, it's yours. You're the owner, so you're ready to publish, if you wish. ### Install in your local development environment If you want to manage your website in a local web development environment, you'll be using [Ruby](https://jekyllrb.com/docs/installation/). Once you've found a home for your forked repository, **[clone it](https://help.github.com/articles/cloning-a-repository/)**. #### Install Jekyll Jekyll is a [Ruby Gem](https://jekyllrb.com/docs/ruby-101/#gems) that can be installed on most systems. 1. Install a full [Ruby development environment](https://jekyllrb.com/docs/installation/) 2. Install Jekyll and [bundler](https://jekyllrb.com/docs/ruby-101/#bundler) [gems](https://jekyllrb.com/docs/ruby-101/#gems) ``` gem install jekyll bundler ``` 3. Change into your new directory ``` cd personal-website ``` 4. Install missing gems ``` bundle install ``` 5. Build the site and make it available on a local server ``` bundle exec jekyll serve ``` You should see something like: ``` Configuration file: /octocat/personal-website/_config.yml Source: /octocat/personal-website Destination: /octocat/_site Incremental build: disabled. Enable with --incremental Generating... GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data. done in 14.729 seconds. Auto-regeneration: enabled for '/octocat/personal-website' Server address: http://127.0.0.1:4000 Server running... press ctrl-c to stop. ``` Don't worry about the "No GitHub API authentication could be found" message. [API authentication is only necessary](https://github.com/jekyll/github-metadata/blob/master/docs/authentication.md) if you intend to display more detailed metadata, like a branch name. 6. Now browse to [http://localhost:4000](http://localhost:4000) ### Publish When you host your personal website's code on GitHub, you get the support of free hosting through GitHub Pages. **The fastest approach** is to rename your repository `username.github.io`, where `username` is your GitHub username (or organization name). Then, the next time you push any changes to your repository's `master` branch, they'll be accessible on the web at your `username.github.io` address. **If you want to use a custom domain**, you'll want to add it to your repository's "Custom domain" settings on github.com. And then register and/or [configure your domain with a DNS provider](https://help.github.com/articles/quick-start-setting-up-a-custom-domain/). ## Customization It's your website, and you control the source code. So you can customize everything, if you like. But we've provided a handful of quick customizations for you to consider as you get your website off the ground. ### Quick configuration changes Most customizations can be done in a matter of seconds, by revising your repository's `_config.yml` file. Just remember to restart your local server each time you save new changes so your Jekyll-powered website rebuilds correctly: 1. Shut down your server by entering the keyboard command CTRL+c 2. Restart your server: `bundle exec jekyll serve` #### Layout Your website will display in a two-column layout by default on larger-screen devices, with your photo, name, and basic information displayed in a left-aligned "sidebar." You can quickly switch to a "stacked" single-column layout by changing the line in your `_config.yml` file that reads `layout: sidebar` to `layout: stacked`. #### Style Your website appears with a "light" white and gray background by default, with dark text. You can quickly switch to a "dark" background with white text by changing the line in your `_config.yml` file that reads `style: light` to `style: dark`. #### Projects The "My Projects" section of your website is generated by default with your nine most recently "pushed" repositories. It also excludes repositories that you forked, by default. But each of these parameters can be quickly customized in your repository's `_config.yml` file, under the `projects` dictionary line. Parameters include: - `sort_by`: The method by which repositories are sorted. Options include `pushed` and `stars`. - `limit`: The maximum number of repositories that will be displayed in the "My Projects" section of your website. Out of the box, this number is set to `9`. - `exclude`: - `forks`: When `true`, repositories you've forked will be excluded from the listing. - `projects`: A list the repository names you want to exclude from the listing. #### Topics Your website comes pre-configured with three topics (e.g. "Web design" and "Sass") that appear in a section titled "My Interests." These are also stored in your repository's `_config.yml` file, where you can define each topic's name and two other optional details: - `web_url`: The web address you'd like to your topic to link to (e.g. `https://github.com/topics/sass`). - `image_url`: The web address of an (ideally square) image that you'd like to appear with your topic. #### Social media Your website supports linking and sharing to social media services you're using, including Behance, Dribbble, Facebook, LinkedIn, Medium, Stack Overflow, Twitter, and YouTube. To identify the services you use: 1. Edit your repository's `_config.yml` file. 2. Edit the `social_media` dictionary line, and represent the services you like in a simple `key: value` form: ``` social_media: behance: your_username dribbble: your_username facebook: your_username hackerrank: your_username instagram: your_username keybase: your_username linkedin: your_username medium: your_username stackoverflow: your_user_id telegram: your_username twitter: your_username unsplash: your_username vk: your_username website: http://your_website_url youtube: your_username ``` Links to your profile for each of the services you define will appear in the `
` of your website, appended to your bio. And if those services support sharing, any blog posts that you publish will include links to share that post using each social media service. **Note**: This feature is supported by two files in your repository: - `/_data/social_media.yml`: Defines each of the supported services, including variable name, display name, URL path, and SVG icon. - `/_includes/social_media_share_url.html`: Outputs the share URL required for any of the supported social media services that support sharing URLs. If you're interested in adding a social media service that's not already supported in this repo, you can edit these two files to build that support. ## Adding pages To **add a page** to your website (e.g. detailed resume): 1. Create a new `.html` or `.md` file at the root of your repository. 2. Give it a filename that you want to be used in the page's URL (e.g. `http://yoursite.dev/filename`). 3. At the start of your file, include the following [front matter](https://jekyllrb.com/docs/front-matter/): ``` --- layout: default --- ``` ## Adding blog posts To **add a blog post** to your website: 1. Create a new `.md` file in your repository's `/_posts/` directory. 2. Give it a filename using the following format: ``` YEAR-MONTH-DAY-title.MARKUP ``` 3. At the start of your file, include the following [front matter](https://jekyllrb.com/docs/front-matter/): ``` --- title: "The title of my blog post" --- ``` Your website comes with a placeholder blog post that you can reference. Notably, its [front matter](https://jekyllrb.com/docs/front-matter/) declares `published` as `false`, so that it won't appear on your website. While you can define a `layout` in the front matter, your website is pre-configured to assign the `post` layout to all of the posts in your `/_posts/` directory. So you don't have to declare that in your posts. Jekyll's conventions for authoring and managing blog posts is very flexible. You can [learn more in Jekyll's documentation for "Posts."](https://jekyllrb.com/docs/posts/) ## Content and templates To give you a sound foundation to start your personal website, your repository includes a handful of "includes" -- dynamic `.html` files that are re-used throughout your website. They're all stored in the `/_includes/` directory. There are the usual suspects, like `header.html` and `footer.html`. But there are few more worth pointing out: - `interests.html`: A heading and dynamic list of "My Interests," which is populated with the [topics](#topics) you list in your `_config.yml`. - `masthead.html`: A collection of your avatar, name, bio, and other metadata that's displayed prominently on all your webpages to help identify what the website is about. - `post-card.html`: A compact, summarized presentation of a blog post, re-used to display a listing of your latest blog posts. - `projects.html`: A heading and dynamic list of "My Projects," which is populated with a listing of your newest GitHub repositories. - `repo-card.html`: A compact, summarized presentation of a repository, re-used to display a listing of your GitHub repositories. - `thoughts.html`: A heading and dynamic list of "My Thoughts," which is populated with a listing of your latest blog posts. - `topic-card.html`: A compact, summarized presentation of a topic (defined in your `_config.yml`), re-used to display a listing of your interests. ### Layouts Your repository comes with three layouts: - **default**: Not used by any of the built-in pages or posts, but useful for any new pages you create. - **home**: Used by your `index.html` homepage to display listings of your projects, interests, and (optionally) your blog posts. - **post**: Used by default by the posts in your `/_posts/` directory. Jekyll's convention for defining layouts is very flexible. You can [learn more about customizing your layouts in the Jekyll "Layouts" docs.](https://jekyllrb.com/docs/layouts/) ## Styles Your website is pre-configured to use [GitHub's very flexible CSS framework called "Primer,"](https://styleguide.github.com/primer/). It's currently referenced within your `styles.scss` file, using the CSS import at-rule: ``` @import url('https://unpkg.com/primer/build/build.css'); ``` You are, of course, welcome to remove it or replace it with another framework. Just bear in mind that the HTML that your website came pre-packaged with references multiple Primer "utility classes" to define things like column widths, margins, and background colors. You also have the option to add on to and extend Primer's styles by adding custom CSS to your `/assets/styles.scss` Sass stylesheet. By editing this file, you can customize your website's color scheme, typography, and more. ## License The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). ================================================ FILE: _config.yml ================================================ layout: sidebar style: light plugins: - jekyll-octicons - jekyll-github-metadata - jemoji permalink: /:year/:month/:day/:title/ defaults: - scope: path: "" # an empty string here means all files in the project type: "posts" values: layout: "post" projects: sort_by: pushed # sort_by options: # - pushed # - stars limit: 9 exclude: archived: false forks: true projects: # - repo-name # social_media: # behance: your_username # dribbble: your_username # facebook: your_username # hackerrank: your_username # instagram: your_username # keybase: your_username # linkedin: your_username # mastodon: your_username # medium: your_username # stackoverflow: your_user_id # telegram: your_username # twitter: your_username # unsplash: your_username # vk: your_username # website: http://your_website_url # youtube: your_username topics: - name: CSS web_url: https://github.com/topics/css image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/css/css.png - name: Web design - name: Sass web_url: https://github.com/topics/sass image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/sass/sass.png ================================================ FILE: _data/colors.json ================================================ { "1C Enterprise": { "color": "#814CCC", "url": "https://github.com/trending?l=1C-Enterprise" }, "ABAP": { "color": "#E8274B", "url": "https://github.com/trending?l=ABAP" }, "ActionScript": { "color": "#882B0F", "url": "https://github.com/trending?l=ActionScript" }, "Ada": { "color": "#02f88c", "url": "https://github.com/trending?l=Ada" }, "Agda": { "color": "#315665", "url": "https://github.com/trending?l=Agda" }, "AGS Script": { "color": "#B9D9FF", "url": "https://github.com/trending?l=AGS-Script" }, "Alloy": { "color": "#64C800", "url": "https://github.com/trending?l=Alloy" }, "Alpine Abuild": { "color": null, "url": "https://github.com/trending?l=Alpine-Abuild" }, "AMPL": { "color": "#E6EFBB", "url": "https://github.com/trending?l=AMPL" }, "AngelScript": { "color": "#C7D7DC", "url": "https://github.com/trending?l=AngelScript" }, "ANTLR": { "color": "#9DC3FF", "url": "https://github.com/trending?l=ANTLR" }, "Apex": { "color": null, "url": "https://github.com/trending?l=Apex" }, "API Blueprint": { "color": "#2ACCA8", "url": "https://github.com/trending?l=API-Blueprint" }, "APL": { "color": "#5A8164", "url": "https://github.com/trending?l=APL" }, "Apollo Guidance Computer": { "color": null, "url": "https://github.com/trending?l=Apollo-Guidance-Computer" }, "AppleScript": { "color": "#101F1F", "url": "https://github.com/trending?l=AppleScript" }, "Arc": { "color": "#aa2afe", "url": "https://github.com/trending?l=Arc" }, "ASP": { "color": "#6a40fd", "url": "https://github.com/trending?l=ASP" }, "AspectJ": { "color": "#a957b0", "url": "https://github.com/trending?l=AspectJ" }, "Assembly": { "color": "#6E4C13", "url": "https://github.com/trending?l=Assembly" }, "ATS": { "color": "#1ac620", "url": "https://github.com/trending?l=ATS" }, "Augeas": { "color": null, "url": "https://github.com/trending?l=Augeas" }, "AutoHotkey": { "color": "#6594b9", "url": "https://github.com/trending?l=AutoHotkey" }, "AutoIt": { "color": "#1C3552", "url": "https://github.com/trending?l=AutoIt" }, "Awk": { "color": null, "url": "https://github.com/trending?l=Awk" }, "Ballerina": { "color": "#FF5000", "url": "https://github.com/trending?l=Ballerina" }, "Batchfile": { "color": "#C1F12E", "url": "https://github.com/trending?l=Batchfile" }, "Befunge": { "color": null, "url": "https://github.com/trending?l=Befunge" }, "Bison": { "color": null, "url": "https://github.com/trending?l=Bison" }, "BitBake": { "color": null, "url": "https://github.com/trending?l=BitBake" }, "BlitzBasic": { "color": null, "url": "https://github.com/trending?l=BlitzBasic" }, "BlitzMax": { "color": "#cd6400", "url": "https://github.com/trending?l=BlitzMax" }, "Bluespec": { "color": null, "url": "https://github.com/trending?l=Bluespec" }, "Boo": { "color": "#d4bec1", "url": "https://github.com/trending?l=Boo" }, "Brainfuck": { "color": "#2F2530", "url": "https://github.com/trending?l=Brainfuck" }, "Brightscript": { "color": null, "url": "https://github.com/trending?l=Brightscript" }, "Bro": { "color": null, "url": "https://github.com/trending?l=Bro" }, "C": { "color": "#555555", "url": "https://github.com/trending?l=C" }, "C#": { "color": "#178600", "url": "https://github.com/trending?l=Csharp" }, "C++": { "color": "#f34b7d", "url": "https://github.com/trending?l=C++" }, "C2hs Haskell": { "color": null, "url": "https://github.com/trending?l=C2hs-Haskell" }, "Cap'n Proto": { "color": null, "url": "https://github.com/trending?l=Cap'n-Proto" }, "CartoCSS": { "color": null, "url": "https://github.com/trending?l=CartoCSS" }, "Ceylon": { "color": "#dfa535", "url": "https://github.com/trending?l=Ceylon" }, "Chapel": { "color": "#8dc63f", "url": "https://github.com/trending?l=Chapel" }, "Charity": { "color": null, "url": "https://github.com/trending?l=Charity" }, "ChucK": { "color": null, "url": "https://github.com/trending?l=ChucK" }, "Cirru": { "color": "#ccccff", "url": "https://github.com/trending?l=Cirru" }, "Clarion": { "color": "#db901e", "url": "https://github.com/trending?l=Clarion" }, "Clean": { "color": "#3F85AF", "url": "https://github.com/trending?l=Clean" }, "Click": { "color": "#E4E6F3", "url": "https://github.com/trending?l=Click" }, "CLIPS": { "color": null, "url": "https://github.com/trending?l=CLIPS" }, "Clojure": { "color": "#db5855", "url": "https://github.com/trending?l=Clojure" }, "CMake": { "color": null, "url": "https://github.com/trending?l=CMake" }, "COBOL": { "color": null, "url": "https://github.com/trending?l=COBOL" }, "CoffeeScript": { "color": "#244776", "url": "https://github.com/trending?l=CoffeeScript" }, "ColdFusion": { "color": "#ed2cd6", "url": "https://github.com/trending?l=ColdFusion" }, "ColdFusion CFC": { "color": null, "url": "https://github.com/trending?l=ColdFusion-CFC" }, "Common Lisp": { "color": "#3fb68b", "url": "https://github.com/trending?l=Common-Lisp" }, "Common Workflow Language": { "color": "#B5314C", "url": "https://github.com/trending?l=Common-Workflow-Language" }, "Component Pascal": { "color": "#B0CE4E", "url": "https://github.com/trending?l=Component-Pascal" }, "Cool": { "color": null, "url": "https://github.com/trending?l=Cool" }, "Coq": { "color": null, "url": "https://github.com/trending?l=Coq" }, "Crystal": { "color": "#000100", "url": "https://github.com/trending?l=Crystal" }, "Csound": { "color": null, "url": "https://github.com/trending?l=Csound" }, "Csound Document": { "color": null, "url": "https://github.com/trending?l=Csound-Document" }, "Csound Score": { "color": null, "url": "https://github.com/trending?l=Csound-Score" }, "CSS": { "color": "#563d7c", "url": "https://github.com/trending?l=CSS" }, "Cuda": { "color": "#3A4E3A", "url": "https://github.com/trending?l=Cuda" }, "CWeb": { "color": null, "url": "https://github.com/trending?l=CWeb" }, "Cycript": { "color": null, "url": "https://github.com/trending?l=Cycript" }, "Cython": { "color": null, "url": "https://github.com/trending?l=Cython" }, "D": { "color": "#ba595e", "url": "https://github.com/trending?l=D" }, "Dart": { "color": "#00B4AB", "url": "https://github.com/trending?l=Dart" }, "DataWeave": { "color": "#003a52", "url": "https://github.com/trending?l=DataWeave" }, "DIGITAL Command Language": { "color": null, "url": "https://github.com/trending?l=DIGITAL-Command-Language" }, "DM": { "color": "#447265", "url": "https://github.com/trending?l=DM" }, "Dockerfile": { "color": "#384d54", "url": "https://github.com/trending?l=Dockerfile" }, "Dogescript": { "color": "#cca760", "url": "https://github.com/trending?l=Dogescript" }, "DTrace": { "color": null, "url": "https://github.com/trending?l=DTrace" }, "Dylan": { "color": "#6c616e", "url": "https://github.com/trending?l=Dylan" }, "E": { "color": "#ccce35", "url": "https://github.com/trending?l=E" }, "eC": { "color": "#913960", "url": "https://github.com/trending?l=eC" }, "ECL": { "color": "#8a1267", "url": "https://github.com/trending?l=ECL" }, "ECLiPSe": { "color": null, "url": "https://github.com/trending?l=ECLiPSe" }, "Eiffel": { "color": "#946d57", "url": "https://github.com/trending?l=Eiffel" }, "Elixir": { "color": "#6e4a7e", "url": "https://github.com/trending?l=Elixir" }, "Elm": { "color": "#60B5CC", "url": "https://github.com/trending?l=Elm" }, "Emacs Lisp": { "color": "#c065db", "url": "https://github.com/trending?l=Emacs-Lisp" }, "EmberScript": { "color": "#FFF4F3", "url": "https://github.com/trending?l=EmberScript" }, "EQ": { "color": "#a78649", "url": "https://github.com/trending?l=EQ" }, "Erlang": { "color": "#B83998", "url": "https://github.com/trending?l=Erlang" }, "F#": { "color": "#b845fc", "url": "https://github.com/trending?l=Fsharp" }, "Factor": { "color": "#636746", "url": "https://github.com/trending?l=Factor" }, "Fancy": { "color": "#7b9db4", "url": "https://github.com/trending?l=Fancy" }, "Fantom": { "color": "#14253c", "url": "https://github.com/trending?l=Fantom" }, "Filebench WML": { "color": null, "url": "https://github.com/trending?l=Filebench-WML" }, "Filterscript": { "color": null, "url": "https://github.com/trending?l=Filterscript" }, "fish": { "color": null, "url": "https://github.com/trending?l=fish" }, "FLUX": { "color": "#88ccff", "url": "https://github.com/trending?l=FLUX" }, "Forth": { "color": "#341708", "url": "https://github.com/trending?l=Forth" }, "Fortran": { "color": "#4d41b1", "url": "https://github.com/trending?l=Fortran" }, "FreeMarker": { "color": "#0050b2", "url": "https://github.com/trending?l=FreeMarker" }, "Frege": { "color": "#00cafe", "url": "https://github.com/trending?l=Frege" }, "Game Maker Language": { "color": "#71b417", "url": "https://github.com/trending?l=Game-Maker-Language" }, "GAMS": { "color": null, "url": "https://github.com/trending?l=GAMS" }, "GAP": { "color": null, "url": "https://github.com/trending?l=GAP" }, "GCC Machine Description": { "color": null, "url": "https://github.com/trending?l=GCC-Machine-Description" }, "GDB": { "color": null, "url": "https://github.com/trending?l=GDB" }, "GDScript": { "color": "#355570", "url": "https://github.com/trending?l=GDScript" }, "Genie": { "color": "#fb855d", "url": "https://github.com/trending?l=Genie" }, "Genshi": { "color": null, "url": "https://github.com/trending?l=Genshi" }, "Gentoo Ebuild": { "color": null, "url": "https://github.com/trending?l=Gentoo-Ebuild" }, "Gentoo Eclass": { "color": null, "url": "https://github.com/trending?l=Gentoo-Eclass" }, "Gherkin": { "color": "#5B2063", "url": "https://github.com/trending?l=Gherkin" }, "GLSL": { "color": null, "url": "https://github.com/trending?l=GLSL" }, "Glyph": { "color": "#c1ac7f", "url": "https://github.com/trending?l=Glyph" }, "Gnuplot": { "color": "#f0a9f0", "url": "https://github.com/trending?l=Gnuplot" }, "Go": { "color": "#00ADD8", "url": "https://github.com/trending?l=Go" }, "Golo": { "color": "#88562A", "url": "https://github.com/trending?l=Golo" }, "Gosu": { "color": "#82937f", "url": "https://github.com/trending?l=Gosu" }, "Grace": { "color": null, "url": "https://github.com/trending?l=Grace" }, "Grammatical Framework": { "color": "#79aa7a", "url": "https://github.com/trending?l=Grammatical-Framework" }, "Groovy": { "color": "#e69f56", "url": "https://github.com/trending?l=Groovy" }, "Groovy Server Pages": { "color": null, "url": "https://github.com/trending?l=Groovy-Server-Pages" }, "Hack": { "color": "#878787", "url": "https://github.com/trending?l=Hack" }, "Harbour": { "color": "#0e60e3", "url": "https://github.com/trending?l=Harbour" }, "Haskell": { "color": "#5e5086", "url": "https://github.com/trending?l=Haskell" }, "Haxe": { "color": "#df7900", "url": "https://github.com/trending?l=Haxe" }, "HCL": { "color": null, "url": "https://github.com/trending?l=HCL" }, "HiveQL": { "color": "#dce200", "url": "https://github.com/trending?l=HiveQL" }, "HLSL": { "color": null, "url": "https://github.com/trending?l=HLSL" }, "HTML": { "color": "#e34c26", "url": "https://github.com/trending?l=HTML" }, "Hy": { "color": "#7790B2", "url": "https://github.com/trending?l=Hy" }, "HyPhy": { "color": null, "url": "https://github.com/trending?l=HyPhy" }, "IDL": { "color": "#a3522f", "url": "https://github.com/trending?l=IDL" }, "Idris": { "color": "#b30000", "url": "https://github.com/trending?l=Idris" }, "IGOR Pro": { "color": null, "url": "https://github.com/trending?l=IGOR-Pro" }, "Inform 7": { "color": null, "url": "https://github.com/trending?l=Inform-7" }, "Inno Setup": { "color": null, "url": "https://github.com/trending?l=Inno-Setup" }, "Io": { "color": "#a9188d", "url": "https://github.com/trending?l=Io" }, "Ioke": { "color": "#078193", "url": "https://github.com/trending?l=Ioke" }, "Isabelle": { "color": "#FEFE00", "url": "https://github.com/trending?l=Isabelle" }, "Isabelle ROOT": { "color": null, "url": "https://github.com/trending?l=Isabelle-ROOT" }, "J": { "color": "#9EEDFF", "url": "https://github.com/trending?l=J" }, "Jasmin": { "color": null, "url": "https://github.com/trending?l=Jasmin" }, "Java": { "color": "#b07219", "url": "https://github.com/trending?l=Java" }, "Java Server Pages": { "color": null, "url": "https://github.com/trending?l=Java-Server-Pages" }, "JavaScript": { "color": "#f1e05a", "url": "https://github.com/trending?l=JavaScript" }, "JFlex": { "color": null, "url": "https://github.com/trending?l=JFlex" }, "Jison": { "color": null, "url": "https://github.com/trending?l=Jison" }, "Jison Lex": { "color": null, "url": "https://github.com/trending?l=Jison-Lex" }, "Jolie": { "color": "#843179", "url": "https://github.com/trending?l=Jolie" }, "JSONiq": { "color": "#40d47e", "url": "https://github.com/trending?l=JSONiq" }, "JSX": { "color": null, "url": "https://github.com/trending?l=JSX" }, "Julia": { "color": "#a270ba", "url": "https://github.com/trending?l=Julia" }, "Jupyter Notebook": { "color": "#DA5B0B", "url": "https://github.com/trending?l=Jupyter-Notebook" }, "Kotlin": { "color": "#F18E33", "url": "https://github.com/trending?l=Kotlin" }, "KRL": { "color": "#28430A", "url": "https://github.com/trending?l=KRL" }, "LabVIEW": { "color": null, "url": "https://github.com/trending?l=LabVIEW" }, "Lasso": { "color": "#999999", "url": "https://github.com/trending?l=Lasso" }, "Lean": { "color": null, "url": "https://github.com/trending?l=Lean" }, "Lex": { "color": "#DBCA00", "url": "https://github.com/trending?l=Lex" }, "LFE": { "color": "#4C3023", "url": "https://github.com/trending?l=LFE" }, "LilyPond": { "color": null, "url": "https://github.com/trending?l=LilyPond" }, "Limbo": { "color": null, "url": "https://github.com/trending?l=Limbo" }, "Literate Agda": { "color": null, "url": "https://github.com/trending?l=Literate-Agda" }, "Literate CoffeeScript": { "color": null, "url": "https://github.com/trending?l=Literate-CoffeeScript" }, "Literate Haskell": { "color": null, "url": "https://github.com/trending?l=Literate-Haskell" }, "LiveScript": { "color": "#499886", "url": "https://github.com/trending?l=LiveScript" }, "LLVM": { "color": "#185619", "url": "https://github.com/trending?l=LLVM" }, "Logos": { "color": null, "url": "https://github.com/trending?l=Logos" }, "Logtalk": { "color": null, "url": "https://github.com/trending?l=Logtalk" }, "LOLCODE": { "color": "#cc9900", "url": "https://github.com/trending?l=LOLCODE" }, "LookML": { "color": "#652B81", "url": "https://github.com/trending?l=LookML" }, "LoomScript": { "color": null, "url": "https://github.com/trending?l=LoomScript" }, "LSL": { "color": "#3d9970", "url": "https://github.com/trending?l=LSL" }, "Lua": { "color": "#000080", "url": "https://github.com/trending?l=Lua" }, "M": { "color": null, "url": "https://github.com/trending?l=M" }, "M4": { "color": null, "url": "https://github.com/trending?l=M4" }, "M4Sugar": { "color": null, "url": "https://github.com/trending?l=M4Sugar" }, "Makefile": { "color": "#427819", "url": "https://github.com/trending?l=Makefile" }, "Mako": { "color": null, "url": "https://github.com/trending?l=Mako" }, "Mask": { "color": "#f97732", "url": "https://github.com/trending?l=Mask" }, "Mathematica": { "color": null, "url": "https://github.com/trending?l=Mathematica" }, "Matlab": { "color": "#e16737", "url": "https://github.com/trending?l=Matlab" }, "Max": { "color": "#c4a79c", "url": "https://github.com/trending?l=Max" }, "MAXScript": { "color": "#00a6a6", "url": "https://github.com/trending?l=MAXScript" }, "Mercury": { "color": "#ff2b2b", "url": "https://github.com/trending?l=Mercury" }, "Meson": { "color": "#007800", "url": "https://github.com/trending?l=Meson" }, "Metal": { "color": "#8f14e9", "url": "https://github.com/trending?l=Metal" }, "MiniD": { "color": null, "url": "https://github.com/trending?l=MiniD" }, "Mirah": { "color": "#c7a938", "url": "https://github.com/trending?l=Mirah" }, "Modelica": { "color": null, "url": "https://github.com/trending?l=Modelica" }, "Modula-2": { "color": null, "url": "https://github.com/trending?l=Modula-2" }, "Module Management System": { "color": null, "url": "https://github.com/trending?l=Module-Management-System" }, "Monkey": { "color": null, "url": "https://github.com/trending?l=Monkey" }, "Moocode": { "color": null, "url": "https://github.com/trending?l=Moocode" }, "MoonScript": { "color": null, "url": "https://github.com/trending?l=MoonScript" }, "MQL4": { "color": "#62A8D6", "url": "https://github.com/trending?l=MQL4" }, "MQL5": { "color": "#4A76B8", "url": "https://github.com/trending?l=MQL5" }, "MTML": { "color": "#b7e1f4", "url": "https://github.com/trending?l=MTML" }, "MUF": { "color": null, "url": "https://github.com/trending?l=MUF" }, "mupad": { "color": null, "url": "https://github.com/trending?l=mupad" }, "Myghty": { "color": null, "url": "https://github.com/trending?l=Myghty" }, "NCL": { "color": "#28431f", "url": "https://github.com/trending?l=NCL" }, "Nearley": { "color": "#990000", "url": "https://github.com/trending?l=Nearley" }, "Nemerle": { "color": "#3d3c6e", "url": "https://github.com/trending?l=Nemerle" }, "nesC": { "color": "#94B0C7", "url": "https://github.com/trending?l=nesC" }, "NetLinx": { "color": "#0aa0ff", "url": "https://github.com/trending?l=NetLinx" }, "NetLinx+ERB": { "color": "#747faa", "url": "https://github.com/trending?l=NetLinx+ERB" }, "NetLogo": { "color": "#ff6375", "url": "https://github.com/trending?l=NetLogo" }, "NewLisp": { "color": "#87AED7", "url": "https://github.com/trending?l=NewLisp" }, "Nextflow": { "color": "#3ac486", "url": "https://github.com/trending?l=Nextflow" }, "Nim": { "color": "#37775b", "url": "https://github.com/trending?l=Nim" }, "Nit": { "color": "#009917", "url": "https://github.com/trending?l=Nit" }, "Nix": { "color": "#7e7eff", "url": "https://github.com/trending?l=Nix" }, "NSIS": { "color": null, "url": "https://github.com/trending?l=NSIS" }, "Nu": { "color": "#c9df40", "url": "https://github.com/trending?l=Nu" }, "NumPy": { "color": null, "url": "https://github.com/trending?l=NumPy" }, "Objective-C": { "color": "#438eff", "url": "https://github.com/trending?l=Objective-C" }, "Objective-C++": { "color": "#6866fb", "url": "https://github.com/trending?l=Objective-C++" }, "Objective-J": { "color": "#ff0c5a", "url": "https://github.com/trending?l=Objective-J" }, "OCaml": { "color": "#3be133", "url": "https://github.com/trending?l=OCaml" }, "Omgrofl": { "color": "#cabbff", "url": "https://github.com/trending?l=Omgrofl" }, "ooc": { "color": "#b0b77e", "url": "https://github.com/trending?l=ooc" }, "Opa": { "color": null, "url": "https://github.com/trending?l=Opa" }, "Opal": { "color": "#f7ede0", "url": "https://github.com/trending?l=Opal" }, "OpenCL": { "color": null, "url": "https://github.com/trending?l=OpenCL" }, "OpenEdge ABL": { "color": null, "url": "https://github.com/trending?l=OpenEdge-ABL" }, "OpenRC runscript": { "color": null, "url": "https://github.com/trending?l=OpenRC-runscript" }, "OpenSCAD": { "color": null, "url": "https://github.com/trending?l=OpenSCAD" }, "Ox": { "color": null, "url": "https://github.com/trending?l=Ox" }, "Oxygene": { "color": "#cdd0e3", "url": "https://github.com/trending?l=Oxygene" }, "Oz": { "color": "#fab738", "url": "https://github.com/trending?l=Oz" }, "P4": { "color": "#7055b5", "url": "https://github.com/trending?l=P4" }, "Pan": { "color": "#cc0000", "url": "https://github.com/trending?l=Pan" }, "Papyrus": { "color": "#6600cc", "url": "https://github.com/trending?l=Papyrus" }, "Parrot": { "color": "#f3ca0a", "url": "https://github.com/trending?l=Parrot" }, "Parrot Assembly": { "color": null, "url": "https://github.com/trending?l=Parrot-Assembly" }, "Parrot Internal Representation": { "color": null, "url": "https://github.com/trending?l=Parrot-Internal-Representation" }, "Pascal": { "color": "#E3F171", "url": "https://github.com/trending?l=Pascal" }, "PAWN": { "color": "#dbb284", "url": "https://github.com/trending?l=PAWN" }, "Pep8": { "color": "#C76F5B", "url": "https://github.com/trending?l=Pep8" }, "Perl": { "color": "#0298c3", "url": "https://github.com/trending?l=Perl" }, "Perl 6": { "color": "#0000fb", "url": "https://github.com/trending?l=Perl-6" }, "PHP": { "color": "#4F5D95", "url": "https://github.com/trending?l=PHP" }, "PicoLisp": { "color": null, "url": "https://github.com/trending?l=PicoLisp" }, "PigLatin": { "color": "#fcd7de", "url": "https://github.com/trending?l=PigLatin" }, "Pike": { "color": "#005390", "url": "https://github.com/trending?l=Pike" }, "PLpgSQL": { "color": null, "url": "https://github.com/trending?l=PLpgSQL" }, "PLSQL": { "color": "#dad8d8", "url": "https://github.com/trending?l=PLSQL" }, "PogoScript": { "color": "#d80074", "url": "https://github.com/trending?l=PogoScript" }, "Pony": { "color": null, "url": "https://github.com/trending?l=Pony" }, "PostScript": { "color": "#da291c", "url": "https://github.com/trending?l=PostScript" }, "POV-Ray SDL": { "color": null, "url": "https://github.com/trending?l=POV-Ray-SDL" }, "PowerBuilder": { "color": "#8f0f8d", "url": "https://github.com/trending?l=PowerBuilder" }, "PowerShell": { "color": "#012456", "url": "https://github.com/trending?l=PowerShell" }, "Processing": { "color": "#0096D8", "url": "https://github.com/trending?l=Processing" }, "Prolog": { "color": "#74283c", "url": "https://github.com/trending?l=Prolog" }, "Propeller Spin": { "color": "#7fa2a7", "url": "https://github.com/trending?l=Propeller-Spin" }, "Puppet": { "color": "#302B6D", "url": "https://github.com/trending?l=Puppet" }, "PureBasic": { "color": "#5a6986", "url": "https://github.com/trending?l=PureBasic" }, "PureScript": { "color": "#1D222D", "url": "https://github.com/trending?l=PureScript" }, "Python": { "color": "#3572A5", "url": "https://github.com/trending?l=Python" }, "Python console": { "color": null, "url": "https://github.com/trending?l=Python-console" }, "q": { "color": "#0040cd", "url": "https://github.com/trending?l=q" }, "QMake": { "color": null, "url": "https://github.com/trending?l=QMake" }, "QML": { "color": "#44a51c", "url": "https://github.com/trending?l=QML" }, "R": { "color": "#198CE7", "url": "https://github.com/trending?l=R" }, "Racket": { "color": "#3c5caa", "url": "https://github.com/trending?l=Racket" }, "Ragel": { "color": "#9d5200", "url": "https://github.com/trending?l=Ragel" }, "RAML": { "color": "#77d9fb", "url": "https://github.com/trending?l=RAML" }, "Rascal": { "color": "#fffaa0", "url": "https://github.com/trending?l=Rascal" }, "REALbasic": { "color": null, "url": "https://github.com/trending?l=REALbasic" }, "Reason": { "color": null, "url": "https://github.com/trending?l=Reason" }, "Rebol": { "color": "#358a5b", "url": "https://github.com/trending?l=Rebol" }, "Red": { "color": "#f50000", "url": "https://github.com/trending?l=Red" }, "Redcode": { "color": null, "url": "https://github.com/trending?l=Redcode" }, "Ren'Py": { "color": "#ff7f7f", "url": "https://github.com/trending?l=Ren'Py" }, "RenderScript": { "color": null, "url": "https://github.com/trending?l=RenderScript" }, "REXX": { "color": null, "url": "https://github.com/trending?l=REXX" }, "Ring": { "color": "#2D54CB", "url": "https://github.com/trending?l=Ring" }, "RobotFramework": { "color": null, "url": "https://github.com/trending?l=RobotFramework" }, "Roff": { "color": "#ecdebe", "url": "https://github.com/trending?l=Roff" }, "Rouge": { "color": "#cc0088", "url": "https://github.com/trending?l=Rouge" }, "RPC": { "color": null, "url": "https://github.com/trending?l=RPC" }, "Ruby": { "color": "#701516", "url": "https://github.com/trending?l=Ruby" }, "RUNOFF": { "color": "#665a4e", "url": "https://github.com/trending?l=RUNOFF" }, "Rust": { "color": "#dea584", "url": "https://github.com/trending?l=Rust" }, "Sage": { "color": null, "url": "https://github.com/trending?l=Sage" }, "SaltStack": { "color": "#646464", "url": "https://github.com/trending?l=SaltStack" }, "SAS": { "color": "#B34936", "url": "https://github.com/trending?l=SAS" }, "Scala": { "color": "#c22d40", "url": "https://github.com/trending?l=Scala" }, "Scheme": { "color": "#1e4aec", "url": "https://github.com/trending?l=Scheme" }, "Scilab": { "color": null, "url": "https://github.com/trending?l=Scilab" }, "sed": { "color": "#64b970", "url": "https://github.com/trending?l=sed" }, "Self": { "color": "#0579aa", "url": "https://github.com/trending?l=Self" }, "ShaderLab": { "color": null, "url": "https://github.com/trending?l=ShaderLab" }, "Shell": { "color": "#89e051", "url": "https://github.com/trending?l=Shell" }, "ShellSession": { "color": null, "url": "https://github.com/trending?l=ShellSession" }, "Shen": { "color": "#120F14", "url": "https://github.com/trending?l=Shen" }, "Slash": { "color": "#007eff", "url": "https://github.com/trending?l=Slash" }, "Smali": { "color": null, "url": "https://github.com/trending?l=Smali" }, "Smalltalk": { "color": "#596706", "url": "https://github.com/trending?l=Smalltalk" }, "Smarty": { "color": null, "url": "https://github.com/trending?l=Smarty" }, "SMT": { "color": null, "url": "https://github.com/trending?l=SMT" }, "Solidity": { "color": "#AA6746", "url": "https://github.com/trending?l=Solidity" }, "SourcePawn": { "color": "#5c7611", "url": "https://github.com/trending?l=SourcePawn" }, "SQF": { "color": "#3F3F3F", "url": "https://github.com/trending?l=SQF" }, "SQLPL": { "color": null, "url": "https://github.com/trending?l=SQLPL" }, "Squirrel": { "color": "#800000", "url": "https://github.com/trending?l=Squirrel" }, "SRecode Template": { "color": "#348a34", "url": "https://github.com/trending?l=SRecode-Template" }, "Stan": { "color": "#b2011d", "url": "https://github.com/trending?l=Stan" }, "Standard ML": { "color": "#dc566d", "url": "https://github.com/trending?l=Standard-ML" }, "Stata": { "color": null, "url": "https://github.com/trending?l=Stata" }, "SuperCollider": { "color": "#46390b", "url": "https://github.com/trending?l=SuperCollider" }, "Swift": { "color": "#ffac45", "url": "https://github.com/trending?l=Swift" }, "SystemVerilog": { "color": "#DAE1C2", "url": "https://github.com/trending?l=SystemVerilog" }, "Tcl": { "color": "#e4cc98", "url": "https://github.com/trending?l=Tcl" }, "Tcsh": { "color": null, "url": "https://github.com/trending?l=Tcsh" }, "Terra": { "color": "#00004c", "url": "https://github.com/trending?l=Terra" }, "TeX": { "color": "#3D6117", "url": "https://github.com/trending?l=TeX" }, "Thrift": { "color": null, "url": "https://github.com/trending?l=Thrift" }, "TI Program": { "color": "#A0AA87", "url": "https://github.com/trending?l=TI-Program" }, "TLA": { "color": null, "url": "https://github.com/trending?l=TLA" }, "Turing": { "color": "#cf142b", "url": "https://github.com/trending?l=Turing" }, "TXL": { "color": null, "url": "https://github.com/trending?l=TXL" }, "TypeScript": { "color": "#2b7489", "url": "https://github.com/trending?l=TypeScript" }, "Unified Parallel C": { "color": null, "url": "https://github.com/trending?l=Unified-Parallel-C" }, "Unix Assembly": { "color": null, "url": "https://github.com/trending?l=Unix-Assembly" }, "Uno": { "color": null, "url": "https://github.com/trending?l=Uno" }, "UnrealScript": { "color": "#a54c4d", "url": "https://github.com/trending?l=UnrealScript" }, "UrWeb": { "color": null, "url": "https://github.com/trending?l=UrWeb" }, "Vala": { "color": "#fbe5cd", "url": "https://github.com/trending?l=Vala" }, "VCL": { "color": "#148AA8", "url": "https://github.com/trending?l=VCL" }, "Verilog": { "color": "#b2b7f8", "url": "https://github.com/trending?l=Verilog" }, "VHDL": { "color": "#adb2cb", "url": "https://github.com/trending?l=VHDL" }, "Vim script": { "color": "#199f4b", "url": "https://github.com/trending?l=Vim-script" }, "Visual Basic": { "color": "#945db7", "url": "https://github.com/trending?l=Visual-Basic" }, "Volt": { "color": "#1F1F1F", "url": "https://github.com/trending?l=Volt" }, "Vue": { "color": "#2c3e50", "url": "https://github.com/trending?l=Vue" }, "wdl": { "color": "#42f1f4", "url": "https://github.com/trending?l=wdl" }, "WebAssembly": { "color": "#04133b", "url": "https://github.com/trending?l=WebAssembly" }, "WebIDL": { "color": null, "url": "https://github.com/trending?l=WebIDL" }, "wisp": { "color": "#7582D1", "url": "https://github.com/trending?l=wisp" }, "X10": { "color": "#4B6BEF", "url": "https://github.com/trending?l=X10" }, "xBase": { "color": "#403a40", "url": "https://github.com/trending?l=xBase" }, "XC": { "color": "#99DA07", "url": "https://github.com/trending?l=XC" }, "Xojo": { "color": null, "url": "https://github.com/trending?l=Xojo" }, "XProc": { "color": null, "url": "https://github.com/trending?l=XProc" }, "XQuery": { "color": "#5232e7", "url": "https://github.com/trending?l=XQuery" }, "XS": { "color": null, "url": "https://github.com/trending?l=XS" }, "XSLT": { "color": "#EB8CEB", "url": "https://github.com/trending?l=XSLT" }, "Xtend": { "color": null, "url": "https://github.com/trending?l=Xtend" }, "Yacc": { "color": "#4B6C4B", "url": "https://github.com/trending?l=Yacc" }, "Zephir": { "color": "#118f9e", "url": "https://github.com/trending?l=Zephir" }, "Zimpl": { "color": null, "url": "https://github.com/trending?l=Zimpl" } } ================================================ FILE: _data/social_media.yml ================================================ behance: name: Behance profile_url_prefix: https://www.behance.net/ icon_svg: ' ' dribbble: name: Dribbble profile_url_prefix: https://dribbble.com/ icon_svg: '' facebook: name: Facebook profile_url_prefix: https://www.facebook.com/ share_url_prefix: https://www.facebook.com/sharer/sharer.php?u= icon_svg: '' hackerrank: name: HackerRank profile_url_prefix: https://www.hackerrank.com/ icon_svg: '' instagram: name: Instagram profile_url_prefix: https://www.instagram.com/ icon_svg: '' keybase: name: Keybase profile_url_prefix: https://keybase.io/ share_url_prefix: https://keybase.io/ icon_svg: '' linkedin: name: LinkedIn profile_url_prefix: https://www.linkedin.com/in/ share_url_prefix: https://www.linkedin.com/shareArticle?mini=true&url= icon_svg: '' mastodon: name: Mastodon profile_url_prefix: https://mstdn.io/ icon_svg: '' medium: name: Medium profile_url_prefix: https://medium.com/@ icon_svg: '' stackoverflow: name: Stack Overflow profile_url_prefix: https://stackoverflow.com/u/ icon_svg: '' telegram: name: Telegram profile_url_prefix: https://t.me/ share_url_prefix: https://telegram.me/share/url?url= icon_svg: '' twitter: name: Twitter profile_url_prefix: https://www.twitter.com/ share_url_prefix: https://twitter.com/share?url= icon_svg: '' unsplash: name: Unsplash profile_url_prefix: https://www.unsplash.com/ icon_svg: '' vk: name: VK profile_url_prefix: https://vk.com/ share_url_prefix: https://vk.com/share.php?url= icon_svg: '' website: name: Website icon_svg: '' youtube: name: YouTube profile_url_prefix: https://www.youtube.com/ icon_svg: '' ================================================ FILE: _includes/footer.html ================================================ ================================================ FILE: _includes/header.html ================================================ {% if site.style == 'dark' %} {% assign icon_color = "#ffffff" %} {% else %} {% assign icon_color = "#24292e" %} {% endif %} {% assign content = page.content %} {% assign posts_total = site.posts | size %} {% assign user = site.github.owner %} {% if page.path contains '_posts' %} {% assign page_title = page.title %} {% assign meta_description = page.content | strip_html | strip_newlines | xml_escape | truncate: 300 %} {% else %} {% assign page_title = user.name %} {% assign meta_description = user.bio | strip_html | strip_newlines | xml_escape | truncate: 300 %} {% endif %} {{ page_title }} ================================================ FILE: _includes/interests.html ================================================

My Interests

Topics that I want to learn more about.

{% for topic in site.topics %}
{% include topic-card.html %}
{% endfor %}
================================================ FILE: _includes/masthead.html ================================================ {% if site.layout == 'stacked' %} {% assign metadata_styles = 'd-md-inline-block mx-3 mb-1 mb-md-0' %} {% else %} {% assign metadata_styles = 'd-flex flex-items-center mb-3' %} {% endif %}

{% if user.name %}{{ user.name }}{% else %}{{ user.login }}{% endif %}

{{ user.bio }}

{% if include.metadata %}
{% if user.name %} {% endif %} {% if user.email %} {% endif %} {% if user.location %} {% endif %} {% if site.social_media %}
{% for account in site.social_media %}
{% assign service_shortname = account[0] %} {% assign service = site.data.social_media[service_shortname] %} {{ service.icon_svg }}{{ service.name }}
{% endfor %}
{% endif %} {% if user.hireable %} Available for hire {% endif %}
{% endif %} ================================================ FILE: _includes/post-card.html ================================================
{{ post.date | date: "%b %d, %Y"}}
================================================ FILE: _includes/projects.html ================================================

My Projects

GitHub repositories that I've built.

{% if site.projects.sort_by == 'stars' %} {% assign sort_order = 'stargazers_count', 'last' %} {% else %} {% assign sort_order = 'pushed_at' %} {% endif %} {% if site.projects.exclude.archived && site.projects.exclude.forks %} {% assign filtered_repos = site.github.public_repositories | where:'archived', false | where:'fork', false | sort: sort_order | reverse %} {% elsif site.projects.exclude.archived %} {% assign filtered_repos = site.github.public_repositories | where:'archived', false | sort: sort_order | reverse %} {% elsif site.projects.exclude.forks %} {% assign filtered_repos = site.github.public_repositories | where:'fork', false | sort: sort_order | reverse %} {% else %} {% assign filtered_repos = site.github.public_repositories | sort: sort_order | reverse %} {% endif %} {% for repository in filtered_repos | limit: site.projects.limit %} {% unless site.projects.exclude.projects contains repository.name %}
{% include repo-card.html %}
{% endunless %} {% endfor %}
================================================ FILE: _includes/repo-card.html ================================================
{{ repository.description }}
{% if repository.language %} {{ repository.language }} {% endif %} {% if repository.stargazers_count %} {{ repository.stargazers_count }} {% endif %} {% if repository.forks_count %} {{ repository.forks_count }} {% endif %}
================================================ FILE: _includes/thoughts.html ================================================

My Thoughts

Articles I've written.

{% for post in site.posts limit: 6 %}
{% include post-card.html %}
{% endfor %}
================================================ FILE: _includes/topic-card.html ================================================ {% if topic.web_url %} {% if topic.image_url %} {{ topic.name }} {% else %}
#
{% endif %} {% if topic.description %}

{{ topic.description }}

{% endif %}
{% else %}
{% if topic.image_url %} {{ topic.name }} {% else %}
#
{% endif %}

{{ topic.name }}

{% if topic.description %}

{{ topic.description }}

{% endif %}
{% endif %} ================================================ FILE: _layouts/default.html ================================================ {% include header.html %} {% if site.layout == 'stacked' %}
{% include masthead.html metadata=false %}
{% else %}
{% include masthead.html metadata=true %}
{% endif %} {% include footer.html %} ================================================ FILE: _layouts/home.html ================================================ {% include header.html %} {% if site.layout == 'stacked' %}
{% include masthead.html metadata=true %}
{{ content }}
{% include projects.html %}
{% if site.topics %}
{% include interests.html %}
{% endif %} {% unless posts_total == 0 %}
{% include thoughts.html %}
{% endunless %}
{% else %}
{% include masthead.html metadata=true %}
{% unless content == "" %}
{{ content }}
{% endunless %} {% include projects.html %} {% if site.topics %} {% include interests.html %} {% endif %} {% unless posts_total == 0 %} {% include thoughts.html %} {% endunless %}
{% endif %} {% include footer.html %} ================================================ FILE: _layouts/post.html ================================================ {% include header.html %} {% capture post_body %} {% if site.social_media %} {% assign shareable_social_media = '' | split: ',' %} {% for account in site.social_media %} {% assign service_shortname = account[0] %} {% assign service = site.data.social_media[service_shortname] %} {% if service.share_url_prefix %} {% assign shareable_social_media = shareable_social_media | push: service %} {% endif %} {% endfor %} {% assign total_shareable_services = shareable_social_media | size %} {% if total_shareable_services > 0 %}

Share

{% endif %} {% endif %}
{{ content }}
{% endcapture %} {% if site.layout == 'stacked' %}
{% include masthead.html metadata=false %}

{% octicon chevron-left height:16 class:"mr-2 v-align-middle" fill:#0366d6 aria-label:Home %}Home

{{ page.title }}

Published {{ page.date | date: "%b %d, %Y"}}

{{ post_body }}
{% else %}
{% include masthead.html metadata=true %}

{% octicon chevron-left height:16 class:"mr-2 v-align-middle" fill:{{ icon_color }} aria-label:Home %}Home

{{ page.title }}

Published {{ page.date | date: "%b %d, %Y"}}

{{ post_body }}
{% endif %} {% include footer.html %} ================================================ FILE: _posts/2019-01-29-hello-world.md ================================================ --- title: "Welcome to Jekyll!" published: false --- **Hello world**, this is my first Jekyll blog post. I hope you like it! # Highlighter ## Ruby ```ruby def show puts "Outputting a very lo-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-ong lo-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-ong line" @widget = Widget(params[:id]) respond_to do |format| format.html # show.html.erb format.json { render json: @widget } end end ``` ## Php ```php ``` ## Java ```java public class java { public static void main(String[] args) { System.out.println("Hello World"); } } ``` ## HTML ```html Title!

Hello, World!

``` ## Console ```console # prints "hello, world" to the screen ~# echo Hello, World Hello, World # don't run this ~# rm -rf --no-preserve-root / ``` ## Css ```css body { font-size: 12pt; background: #fff url(temp.png) top left no-repeat; } ``` ## Yaml ```yaml --- one: Mark McGwire two: Sammy Sosa three: Ken Griffey ``` ================================================ FILE: _sass/_highlight-syntax.scss ================================================ .highlight { width: 100%; overflow: auto; background: #ffffff; } .highlight .c { color: #999988; font-style: italic } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { font-weight: bold } /* Keyword */ .highlight .o { font-weight: bold } /* Operator */ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #999999 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { font-weight: bold } /* Keyword.Constant */ .highlight .kd { font-weight: bold } /* Keyword.Declaration */ .highlight .kp { font-weight: bold } /* Keyword.Pseudo */ .highlight .kr { font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #009999 } /* Literal.Number */ .highlight .s { color: #d14 } /* Literal.String */ .highlight .na { color: #008080 } /* Name.Attribute */ .highlight .nb { color: #0086B3 } /* Name.Builtin */ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ .highlight .no { color: #008080 } /* Name.Constant */ .highlight .ni { color: #800080 } /* Name.Entity */ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ .highlight .nn { color: #555555 } /* Name.Namespace */ .highlight .nt { color: #000080 } /* Name.Tag */ .highlight .nv { color: #008080 } /* Name.Variable */ .highlight .ow { font-weight: bold } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mf { color: #009999 } /* Literal.Number.Float */ .highlight .mh { color: #009999 } /* Literal.Number.Hex */ .highlight .mi { color: #009999 } /* Literal.Number.Integer */ .highlight .mo { color: #009999 } /* Literal.Number.Oct */ .highlight .sb { color: #d14 } /* Literal.String.Backtick */ .highlight .sc { color: #d14 } /* Literal.String.Char */ .highlight .sd { color: #d14 } /* Literal.String.Doc */ .highlight .s2 { color: #d14 } /* Literal.String.Double */ .highlight .se { color: #d14 } /* Literal.String.Escape */ .highlight .sh { color: #d14 } /* Literal.String.Heredoc */ .highlight .si { color: #d14 } /* Literal.String.Interpol */ .highlight .sx { color: #d14 } /* Literal.String.Other */ .highlight .sr { color: #009926 } /* Literal.String.Regex */ .highlight .s1 { color: #d14 } /* Literal.String.Single */ .highlight .ss { color: #990073 } /* Literal.String.Symbol */ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ .highlight .vc { color: #008080 } /* Name.Variable.Class */ .highlight .vg { color: #008080 } /* Name.Variable.Global */ .highlight .vi { color: #008080 } /* Name.Variable.Instance */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ /* Make line numbers unselectable: excludes line numbers from copy-paste user ops */ .highlight .lineno {-webkit-user-select: none;-moz-user-select: none; -o-user-select: none;} .lineno::-moz-selection {background-color: transparent;} /* Mozilla specific */ .lineno::selection {background-color: transparent;} /* Other major browsers */ ================================================ FILE: assets/styles.scss ================================================ --- --- @import url('https://unpkg.com/primer/build/build.css'); @import 'highlight-syntax'; // If a user adds a custom font, this component will stop it from bleeding into GitHub components: .github-component { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol !important; } .repo-language-color { filter: brightness(125%) !important; border-radius: 50%; display: inline-block; height: 12px; position: relative; top: 2px; width: 12px; } .emoji { width: 18px; height: auto; vertical-align: middle; } .article { h1, h2, h3, h4, .highlight { margin-bottom: 16px; } blockquote { color: #6a737d; border-left: 2px solid #959da5; padding-left: 16px; margin-bottom: 16px; } ul, ol { padding-left: 32px; margin-bottom: 16px; } li ul, li ol { padding-left: 16px; margin-bottom: 0px; } } .min-height-full { min-height: 100vh; } ================================================ FILE: index.html ================================================ --- layout: home ---