Skip to content

Instantly share code, notes, and snippets.

View Kvnbbg's full-sized avatar
🎄
New year, new work! I might be a bit slower to reply, but I’ll get back to you!

Kevin Marville Kvnbbg

🎄
New year, new work! I might be a bit slower to reply, but I’ll get back to you!
View GitHub Profile
@Kvnbbg
Kvnbbg / index.html
Created September 20, 2024 23:13
Lightweight Pixel Distortion Animation
<input id="image-selector-input" style="visibility:hidden;" type="file">
<div class="container">
<canvas></canvas>
</div>
<script type="x-shader/x-fragment" id="vertShader">
precision highp float;
@Kvnbbg
Kvnbbg / pomodoro-timer-with-task-management-login-and-registration.markdown
Created July 26, 2024 20:25
Pomodoro Timer with Task Management, Login, and Registration

Pomodoro Timer with Task Management, Login, and Registration

This Vue.js application combines a Pomodoro timer with task management, and includes fake login and registration forms for demonstration purposes. The app is fully translated into English, French, Spanish, and German, and includes a floating bubble advertisement linking to job opportunities. It also features a responsive design that adapts to light or dark themes based on user preference. Ideal for enhancing productivity, this all-in-one app helps manage study sessions efficiently with an intuitive interface and engaging notifications. Check out my LinkedIn for more details.

A Pen by Kevin Marville on CodePen.

License.

@Kvnbbg
Kvnbbg / chess-player-mvp.markdown
Created July 26, 2024 16:24
Chess Player MVP
@Kvnbbg
Kvnbbg / french-quizz-flash-cards-rpg-developer-exam-prep.markdown
Created June 21, 2024 01:30
French 🇫🇷 Quizz Flash Cards RPG: Developer Exam Prep 🧙‍♂️💻

French 🇫🇷 Quizz Flash Cards RPG: Developer Exam Prep 🧙‍♂️💻

Prepare for your next developer job exam with our immersive Quizz Flash Cards RPG! 🎓✨ Dive into different stages, from front-end to back-end, ISTQB, and more, all while battling through questions and leveling up your character. 📈💥 Boost your knowledge with each correct answer and watch your power grow! Perfect for quick memoization and brain training. Ready to challenge yourself? Let the quest begin! 🚀🧠

Developed with care by kvnbbg 👨‍💻🌟

A Pen by Kevin Marville on CodePen.

License.

@Kvnbbg
Kvnbbg / index.html
Created June 17, 2024 14:35
Vision Week (test)
<nav>
<ul>
<li><a href="#" id="homeLink">Home</a></li>
<li><a href="#" id="tourLink">Virtual Tour</a></li>
<li><a href="#" id="mapLink">Map</a></li>
<li><a href="#" id="profileLink">Profile</a></li>
</ul>
</nav>
<div class="container" id="content">
@Kvnbbg
Kvnbbg / make_dmg.sh
Last active February 14, 2025 17:25 — forked from HuangJiaLian/make_dmg.sh
Two steps to turn a Python file to a macOS installer
#!/bin/sh
# References
# https://www.pythonguis.com/tutorials/packaging-pyqt5-applications-pyinstaller-macos-dmg/
# https://medium.com/@jackhuang.wz/in-just-two-steps-you-can-turn-a-python-script-into-a-macos-application-installer-6e21bce2ee71
# ---------------------------------------
# Clean up previous builds
# ---------------------------------------
@HuangJiaLian
HuangJiaLian / make_dmg.sh
Created April 2, 2022 05:37
Two steps to turn a Python file to a macOS installer
#!/bin/sh
# Ref.: https://www.pythonguis.com/tutorials/packaging-pyqt5-applications-pyinstaller-macos-dmg/
rm -rf build dist/*
#################################################
# Create app file using pyinstaller
#################################################
pyinstaller --name 'Huanbu' \