About Me - NOTE: THIS ONLY SHOWS WHEN BUILD FAILS. THIS IS A LEGACY PAGE. IF YOU SEE THIS LOCALLY THIS IS AN ERROR SOMEWHERE :D
Welcome to my website! My name is Omodayo Origunwa, but you can call me Dayo. I am originally from Oakland, California, and moved to the east coast for college and the start of my career. Some of my passions include soccer, painting and data science. I made this website to showcase some of the work I am proud of, let me know what you think!
This website is a work in progress, feedback is welcome on the repo here.
- Dependency management for ruby project on Mac
- Getting started with jekyll; the static site generator we are using
- Getting started with local site testing
- Getting started with Github Pages
- Choosing a theme for site
- Gemspec vs. Gemfile
- Inspiration
- Bundle manages dependencies for Ruby projects. Ruby dependencies are called gems. To add a dependency to your project, first add the ruby dependency with
gem install <package_name> -v <version_if_needed> --user-install
, then add the dependency to your project usingbundle add <package-name>
.
cd dinoDayo.github.io
bundle install
orbundle install --path .bundle/dependencies
bundle exec jekyll serve