All Projects → volodymyr-kushnir → volodymyrkushnir.dev

volodymyr-kushnir / volodymyrkushnir.dev

Licence: MIT License
My very own personal website. Basically this is just a résumé.

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to volodymyrkushnir.dev

Next Pwa
Zero config PWA plugin for Next.js, with workbox 🧰
Stars: ✭ 909 (+5581.25%)
Mutual labels:  website, workbox
Dialogflow Web
Web App for Dialogflow
Stars: ✭ 135 (+743.75%)
Mutual labels:  website, personal
Savjee.be
Source code of my Jekyll-powered website
Stars: ✭ 31 (+93.75%)
Mutual labels:  website, personal
denysdovhan.github.io
📰 Personal blog from Denys Dovhan
Stars: ✭ 18 (+12.5%)
Mutual labels:  gh-pages, personal
Freemo
A free resume,portfolio and CV HTML template
Stars: ✭ 30 (+87.5%)
Mutual labels:  resume, website
Home
home is Dmitri Shuralyov's personal website.
Stars: ✭ 60 (+275%)
Mutual labels:  website, personal
Next Offline
make your Next.js application work offline using service workers via Google's workbox
Stars: ✭ 1,306 (+8062.5%)
Mutual labels:  website, workbox
Jekyll Theme Minimal Resume
Simple Jekyll theme for a minimal resume website: https://jekyll-theme-minimal-resume.netlify.com/
Stars: ✭ 269 (+1581.25%)
Mutual labels:  resume, personal
Jalpc
🍎Jalpc -- A flexible Jekyll theme, 3 steps to build your website.
Stars: ✭ 859 (+5268.75%)
Mutual labels:  resume, gh-pages
Resume Website
jsonresume website 🏡
Stars: ✭ 351 (+2093.75%)
Mutual labels:  resume, website
Cv
A resume template written in Markdown,Yaml JSON auto generates github-pages website & PDF by Jekyll. 在线简历生成模板(超高兼容可导PDF)
Stars: ✭ 61 (+281.25%)
Mutual labels:  resume, gh-pages
Cv Template
An easy way to create HTML and PDF versions of your resume, and automatically host them on GitHub Pages.
Stars: ✭ 41 (+156.25%)
Mutual labels:  resume, gh-pages
Mega-index-heroku
Mega nz heroku index, Serves mega.nz to http via heroku web. It Alters downloading speed and stability
Stars: ✭ 165 (+931.25%)
Mutual labels:  resume, website
urlbox-screenshots-node
Capture website thumbnails using the urlbox.io screenshot as a service API in node
Stars: ✭ 14 (-12.5%)
Mutual labels:  website
carloscuesta.me
The source of my website 🌍
Stars: ✭ 38 (+137.5%)
Mutual labels:  website
Gangster-Legends-V2
A free to use text-based PBBG / MMORPG script
Stars: ✭ 48 (+200%)
Mutual labels:  website
lxqt.github.io
LXQt website
Stars: ✭ 14 (-12.5%)
Mutual labels:  website
Website-Audit
It's an open-source report template that guides web professionals thought steps to audit any website in terms of the page speed and technical SEO optimisation.
Stars: ✭ 18 (+12.5%)
Mutual labels:  website
angular-loading-button
Loading button directive for AngularJS
Stars: ✭ 27 (+68.75%)
Mutual labels:  gh-pages
jekyll-pwa
Jekyll plugin for PWA
Stars: ✭ 95 (+493.75%)
Mutual labels:  workbox

— Hey, hi!

My name is Volodymyr and this here is my website.
I've decided to host it with GitHub Pages, because it's so much easier, cost efficient, and saves me time on deployments (since I have none of them, kinda). I've also bought a domain name on Google Domains for $12/year and I find this service to be very convenient as well. Other than that it's just good old plain HTML and CSS with a very little bit of JavaScript. <head> is built using excellent HEAD for reference, <body> uses some of the styles from the great Semantic UI framework. Website is frequently tested with Lighthouse automated tool. Amazing Workbox helps build a decent Service Worker for this website (hence it even works offline), serve is used to run my website locally during development. I have workbox and serve npm packages installed globally with sudo npm install --global workbox-cli serve, and I've also set up a pre-commit git hook which automatically runs workbox generateSW workbox-config.js before I commit and push my code to GitHub, so that I don't have to do it manually every time I make changes. .git/hooks/pre-commit looks as simple as this:

#!/bin/sh
if workbox generateSW workbox-config.js ; then
  git add sw.js
  exit 0
else
  echo "Cannot generate sw.js"
  echo "Aborting"
fi

“That's all Folks!” 🐷

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].