Skip to content

Instantly share code, notes, and snippets.

@Kvnbbg
Kvnbbg / css-scroll-snap.markdown
Created September 6, 2024 14:06
CSS Scroll Snap
@Kvnbbg
Kvnbbg / css-scroll-snap.markdown
Created September 6, 2024 14:06
CSS Scroll Snap

Chess Player MVP

Experience a dynamic chess game built with Vue.js that includes a multilingual interface, timer modes, and a task manager for enhanced productivity. This application supports English, French, Spanish, and German, providing a seamless gaming and task management experience.

A Pen by Kevin Marville on CodePen.

License.

@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 / script.vue
Created June 30, 2024 16:21
Sleek Login Popup with Built-in Registration
<template>
<div id="app">
<div class="onboarding" v-if="showOnboarding">
<div class="modal" v-show="showLogin">
<h2>Welcome!</h2>
<div class="tabs">
<button :class="{ active: activeTab === 'login' }" @click="changeTab('login')">Login</button>
<button :class="{ active: activeTab === 'register' }" @click="changeTab('register')">Register</button>
</div>
<div class="content">
@Kvnbbg
Kvnbbg / index.html
Created June 21, 2024 21:11
Vision Week: VR Zoo Experience with Endangered Polar Bears
<nav class="bg-blue-600 p-4">
<ul class="flex justify-around text-white">
<li><a href="#" id="homeLink">Home</a></li>
<li><a href="#" id="tourLink">VR</a></li>
<li><a href="#" id="mapLink">Map</a></li>
<li><a href="#" id="videosLink">Videos</a></li>
<li><a href="#" id="profileLink">Me</a></li>
</ul>
</nav>
@Kvnbbg
Kvnbbg / enquete-ux-design-thinking-exam-prep.markdown
Created June 21, 2024 20:37
Enquête, UX Design Thinking Exam Prep 🧙‍♂️💻

Enquête, UX Design Thinking Exam Prep 🧙‍♂️💻

Enquête is the first web app to guide users through the initial step of UX design thinking: Empathize. Designed as a quiz, Enquête helps you understand what users need, forming the basis for creating a comprehensive project brief (cahier des charges).

The steps of UX design thinking include:

🔍 Empathize: Understand the user through research. 📝 Define: Clearly articulate the problem you want to solve. 💡 Ideate: Brainstorm and generate creative solutions. 🔧 Prototype: Build tangible representations for a subset of ideas.

@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 / terminal
Last active June 20, 2024 12:56
To install Docker on your Codespaces environment, you can follow these steps:
# Step 1: Uninstall old versions of Docker, if any
# This ensures there are no conflicts with existing installations.
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove -y $pkg; done
# Step 2: Update the package database
sudo apt-get update
# Step 3: Install required packages for Docker installation
sudo apt-get install -y ca-certificates curl gnupg lsb-release