From ad265f64a599f697dea384c12ea4022c6ae4c844 Mon Sep 17 00:00:00 2001 From: Michael Slomczynski <42420854+Mike-Slomczynski@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:49:28 -0600 Subject: [PATCH] Initial Post --- Gemfile | 3 +++ _config.yml | 22 +++++++++++----------- _posts/2025-01-02-hello-world.md | 15 +++++++++++++++ 3 files changed, 29 insertions(+), 11 deletions(-) create mode 100644 _posts/2025-01-02-hello-world.md diff --git a/Gemfile b/Gemfile index 7835d7d..aa1f1fb 100644 --- a/Gemfile +++ b/Gemfile @@ -12,3 +12,6 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do end gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin] + +gem "csv" # Add this line to include the csv gem +gem "base64" \ No newline at end of file diff --git a/_config.yml b/_config.yml index c99b42f..68e194f 100644 --- a/_config.yml +++ b/_config.yml @@ -9,37 +9,37 @@ theme: jekyll-theme-chirpy lang: en # Change to your timezone › https://kevinnovak.github.io/Time-Zone-Picker -timezone: +timezone: America/Chicago # jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md # ↓ -------------------------- -title: Chirpy # the main title +title: Mike's Pages # the main title -tagline: A text-focused Jekyll theme # it will display as the subtitle +tagline: Blogging about stuff # it will display as the subtitle description: >- # used by seo meta and the atom feed - A minimal, responsive and feature-rich Jekyll theme for technical writing. + Blogging about stuff # Fill in the protocol & hostname for your site. # E.g. 'https://username.github.io', note that it does not end with a '/'. -url: "" +url: "https://Mike-Slomczynski.github.io" github: - username: github_username # change to your GitHub username + username: Mike-Slomczynski # change to your GitHub username twitter: - username: twitter_username # change to your Twitter username + #username: twitter_username # change to your Twitter username social: # Change to your full name. # It will be displayed as the default author of the posts and the copyright owner in the Footer - name: your_full_name - email: example@domain.com # change to your email address + name: Mike Slomczynski + email: mike.slomczynski@gmail.com # change to your email address links: # The first element serves as the copyright owner's link - - https://twitter.com/username # change to your Twitter homepage - - https://github.com/username # change to your GitHub homepage + # https://twitter.com/username # change to your Twitter homepage + # https://github.com/username # change to your GitHub homepage # Uncomment below to add more social links # - https://www.facebook.com/username # - https://www.linkedin.com/in/username diff --git a/_posts/2025-01-02-hello-world.md b/_posts/2025-01-02-hello-world.md new file mode 100644 index 0000000..1e8b212 --- /dev/null +++ b/_posts/2025-01-02-hello-world.md @@ -0,0 +1,15 @@ +--- +title: Hello World +date: 2024-01-01 12:00:00 -500 +categories: [test] +tags: [test] +--- + +# Welcome + +Hello. + +```javascript +console.log("Hello world.") + +``` \ No newline at end of file