Skip to content

Instantly share code, notes, and snippets.

View Kvnbbg's full-sized avatar
🎯
Focusing

Kevin Marville Kvnbbg

🎯
Focusing
View GitHub Profile
@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 June 3, 2024 18:48 — 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' \