Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dport96 committed Apr 29, 2024
0 parents commit c1197d8
Show file tree
Hide file tree
Showing 67 changed files with 3,066 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/problem-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Problem Report
about: For communicating problems creating your professional portfolio
title: ''
labels: ''
assignees: ''

---

(Please replace this comment with your problem report. Tell us what went wrong.

If it involves console output, then please cut and paste the output into this field---don't take a snapshot and paste the image.

On the other hand, if the problem is with the visual layout of your portfolio, then please do make a snapshot.

Finally, don't forget to include the URL to your repository so we can take a look at it!)
64 changes: 64 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll site to Pages 2

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
_site/
.DS_Store
.sass-cache/
.jekyll-cache/
.jekyll-metadata
# Gemfile.lock
.idea
Empty file added .nojekyll
Empty file.
3 changes: 3 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
layout: missingpage
---
14 changes: 14 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
source "https://rubygems.org"

gem "jekyll", "~> 4.2.0"

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end

gem "webrick", "~> 1.7"
gem 'html-proofer'
gem 'jekyll-gist'
gem 'rouge'
108 changes: 108 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
colorator (1.1.0)
concurrent-ruby (1.1.10)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
ethon (0.15.0)
ffi (>= 1.15.0)
eventmachine (1.2.7)
faraday (2.3.0)
faraday-net_http (~> 2.0)
ruby2_keywords (>= 0.0.4)
faraday-net_http (2.0.3)
ffi (1.15.5)
forwardable-extended (2.6.0)
html-proofer (3.19.4)
addressable (~> 2.3)
mercenary (~> 0.3)
nokogiri (~> 1.13)
parallel (~> 1.10)
rainbow (~> 3.0)
typhoeus (~> 1.3)
yell (~> 2.0)
http_parser.rb (0.8.0)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
jekyll (4.2.2)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.4.0)
pathutil (~> 0.9)
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-gist (1.5.0)
octokit (~> 4.2)
jekyll-sass-converter (2.2.0)
sassc (> 2.0.1, < 3.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
nokogiri (1.13.6-arm64-darwin)
racc (~> 1.4)
nokogiri (1.13.6-x86_64-linux)
racc (~> 1.4)
octokit (4.23.0)
faraday (>= 1, < 3)
sawyer (~> 0.9)
parallel (1.22.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.7)
racc (1.6.0)
rainbow (3.1.1)
rb-fsevent (0.11.1)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (3.29.0)
ruby2_keywords (0.0.5)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
sawyer (0.9.1)
addressable (>= 2.3.5)
faraday (>= 0.17.3, < 3)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
typhoeus (1.4.0)
ethon (>= 0.9.0)
unicode-display_width (1.8.0)
webrick (1.7.0)
yell (2.2.2)

PLATFORMS
arm64-darwin-21
x86_64-linux

DEPENDENCIES
html-proofer
jekyll (~> 4.2.0)
jekyll-gist
rouge
tzinfo (~> 1.2)
tzinfo-data
webrick (~> 1.7)

BUNDLED WITH
2.3.4
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 TechFolios

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.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Professional Portfolio

For details on this professional portfolio, please see https://techfolios.github.io.
32 changes: 32 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# REQUIRED CHANGES
# Edit next line to provide your own name.
title: Molly Maluhia | Professional Portfolio
# Edit next line, replacing 'techfolios' with your github username
url: "https://techfolios.github.io"
# Edit next line so that baseurl is "" if your repo is <username>.github.io
baseurl: "/template"

# OPTIONAL CHANGES
## Specify the theme using any of the css files in css/techfolio-theme
techfolio-theme: default.css
## Specify the formatting for triple backquote code sections.
rouge-theme: github.css

# DON'T CHANGE THE FOLLOWING (unless you know what you're doing)
markdown: kramdown
kramdown:
hard_wrap: false
input: GFM
syntax_highlighter: rouge
strict_front_matter: true
mathjax: true
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
include:
- .nojekyll
- _data
plugins:
- jekyll-gist
118 changes: 118 additions & 0 deletions _data/bio.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"basics": {
"name": "Molly Maluhia",
"label": "Student",
"picture": "https://github.com/kambergjohnson.png",
"email": "molly@hawaii.edu",
"phone": "808-333-4444",
"website": "https://mmaluhia.github.io",
"summary": "I am studying for a B.S. in Computer Science in the Department of Information and Computer Sciences at the University of Hawaii. I expect to graduate in Spring, 2024.",
"location": { "address": "", "postalCode": "96822", "city": "Honolulu", "countryCode": "USA", "region": "Hawaii" },
"profiles": [
{ "network": "github", "username": "mmaluhia", "url": "http://github.com/changeme" },
{ "network": "linkedin", "username": "mollymaluhia", "url": "http://linkedin.com/in/changeme" },
{ "network": "twitter", "username": "mollymal", "url": "http://twitter.com/changeme" },
{ "network": "instagram", "username": "molly", "url": "http://instagram.com/changeme" }
]
},
"interests": [
{ "name": "Interactive media" },
{ "name": "Neuromorphic Computing" },
{ "name": "Quantum Computing" },
{ "name": "Robotics" },
{ "name": "3D Graphics" }
],
"skills": [
{
"name": "Languages and Frameworks",
"keywords": [ "C", "C++", "Java", "Javascript", "Assembly", "Common Lisp" ]
},
{
"name": "Toolsets/OS",
"keywords": [ "MacOS", "Ubuntu", "Git/GitHub", "g++", "TI LaunchPad" ]
}
],
"education": [
{
"institution": "University of Hawaii, Honolulu, HI",
"area": "Computer Science (expected Spring, 2018)",
"studyType": "B.S.",
"startDate": "2013-09-01",
"endDate": "Present",
"courses": [
]
}
],
"work": [
{
"company": "UH Manoa Board of Publications",
"position": "Web Developer",
"website": "",
"startDate": "2015-08-01",
"endDate": "Present",
"summary": "Head of online presence for Ka Leo",
"highlights": [
"Maintain, update, and oversee official college newspaper website",
"Drive, design and build student-community projects for UH Manoa"
]
},
{
"company": "UH Information Technology Services",
"position": "Help Desk Consultant",
"website": "http://www.hawaii.edu/its/",
"startDate": "2015-01-01",
"endDate": "2016-03-15",
"summary": "",
"highlights": [
"Troubleshoot software, hardware and networking issues over the phone",
"Answer phone and email responses to the ITS Help Desk"
]
}
],
"volunteer": [
{
"organization": "Center for Renewable Energy and Island Sustainability",
"website": "http://manoa.hawaii.edu/reis",
"position": "Software Developer",
"startDate": "2016-01-01",
"endDate": "Present",
"summary": "Lead developer for weather sensing project",
"highlights": [
"Design firmware for distributed weather sensor network",
"Maintain custom data collection and storage infrastructure"
]
},
{
"organization": "",
"website": "",
"position": "Professional organization involvement",
"startDate": "",
"endDate": "",
"summary": "",
"highlights": [
"Chair, ACM Manoa, 2016-Present",
"Member, IEEE Student Branch, 2014-Present",
"Webmaster/IT Officer, IEEE Student Branch, UH Manoa, 2012-2013"
]
}
],
"awards": [
{
"title": "B+ Scholarship",
"date": "2013-Present",
"awarder": "State of Hawaii",
"summary": "Scholarships awarded to incoming freshmen and continuing students who complete a rigorous high school curriculum with a minimum overall GPA of 3.0 at a Hawai'i public school."
},
{
"title": "First place",
"date": "2015",
"awarder": "University of Hawaii Micromouse Competition",
"summary": "My team won first place in 2015. See my portfolio site for more details."
}
],
"references": [
{
"name": "Available upon request"
}
]
}
Loading

0 comments on commit c1197d8

Please sign in to comment.