Skip to content

Instantly share code, notes, and snippets.

@alkimiadev
alkimiadev / tamper_monkey.js
Created September 23, 2025 22:44
tamper monkey script to block all users who reply to a tweet(starting at index 4 for my specific use case)
// ==UserScript==
// @name Block Tweet Responders
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Blocks all users who replied to a tweet starting from the 5th reply
// @author me
// @match https://x.com/*
// @grant none
// ==/UserScript==
@forkyau
forkyau / hourly_rainfall_data-2025-08-10|10-00.csv
Created August 10, 2025 02:21
GIST created by python code
id station stationid value unit obstime date
0 流浮山 RF001 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
1 湿地公园 RF002 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
2 水边围 N12 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
3 石岗 RF003 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
4 大美督 RF004 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
5 大埔墟 RF005 M mm 2025-08-10T10:00:00+08:00 2025-08-10
6 北潭涌 RF006 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
7 滘西洲 RF007 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
8 西贡 N15 0 mm 2025-08-10T10:00:00+08:00 2025-08-10
{
"success": true,
"credits_left": 100,
"rate_limit_left": 100,
"daily_rate_limit_left": 100,
"minute_rate_limit_left": 499,
"next_minute_rate_limit_reset": "2025-08-10T02:18:30.000Z",
"person": {
"publicIdentifier": "kmcloudarchsre",
"linkedInIdentifier": "ACoAAEq9nhUBY5ESVSgACedysR_YLndYv-XJtRI",
@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
# ---------------------------------------