Skip to content

Instantly share code, notes, and snippets.

View Michael-Obele's full-sized avatar
:octocat:
Working and Learning

Michael Obubelebra Amachree Michael-Obele

:octocat:
Working and Learning
View GitHub Profile
@fubits1
fubits1 / settings-customLabels.json
Last active December 26, 2025 06:43
VSCode (and Cursor) label pattern & nesting rules for Svelte and Astro
// custom tab label patterns
// updated 2025-12-07
"workbench.editor.labelFormat": "default",
"workbench.editor.customLabels.enabled": true,
"workbench.editor.customLabels.patterns": {
"**/src/**/*.css": "${filename}",
"**/src/**/utils/**/*.{js,ts}": "${filename} ⚙️",
"**/src/**/*.d.ts": "${filename} <T>",
"**/src/**/*.{js,ts}": "${filename}",
/** SVELTE */
@Michael-Obele
Michael-Obele / +layout.svelte
Last active October 19, 2025 06:11
Ways to use Lordicon in a sveltekit project
<script lang="ts">
// Best option
//
// onMount(() => {
// let lottieInstance: any;
// // eslint-disable-next-line @typescript-eslint/no-floating-promises
// void (async () => {
// try {
// const lottie = (await import('lottie-web')).default;
@Michael-Obele
Michael-Obele / upgrade_python_3.10_to_3.11.md
Created October 18, 2024 12:46 — forked from bewithdhanu/upgrade_python_3.10_to_3.11.md
Upgrade Python 3.10 to 3.11 on Ubuntu 22.04

Check python version use python and python3

The first comman will Not show version info.

The second one show 3.10 as version as it is provided by ubuntu as default

python --version
python3 --version

Add additional repository to download python 3.11

@bewithdhanu
bewithdhanu / upgrade_python_3.10_to_3.11.md
Last active January 19, 2026 11:11
Upgrade Python 3.10 to 3.11 on Ubuntu 22.04

Check python version use python and python3

The first comman will Not show version info.

The second one show 3.10 as version as it is provided by ubuntu as default

python --version
python3 --version

Add additional repository to download python 3.11

@bmaupin
bmaupin / free-database-hosting.md
Last active January 21, 2026 03:07
Free database hosting
@bmaupin
bmaupin / free-backend-hosting.md
Last active January 23, 2026 15:06
Free backend hosting
@jo
jo / js-crypto-libraries.md
Last active January 17, 2026 16:10
List of JavaScript Crypto libraries.

JavaScript Crypto Libraries

List some crypto libraries for JavaScript out there. Might be a bit out dated. Scroll to the bottom.

WebCryptoAPI

http://www.w3.org/TR/WebCryptoAPI/

This specification describes a JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations. Uses for this API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications.