Skip to content

Instantly share code, notes, and snippets.

View moughamir's full-sized avatar
:shipit:
inspecting the elements

Mohamed Moughamir moughamir

:shipit:
inspecting the elements
View GitHub Profile
@moughamir
moughamir / frame.md
Created July 8, 2026 11:57 — forked from nocodetalks/frame.md
Frame md for faceless video creator - hyperframe

version: alpha name: Daisy Days — Frame (video / frame layer) description: > Video-first companion to Daisy Days' design.md. The unit is the frame (1920×1080). Atoms are identical and sacred — the sunny-garden pastel palette (cream + turquoise/pink/butter/mint/ lavender/peach/sky + coral accent), charcoal 3px outlines, hard offset shadows (6/4px, no blur), the Fredoka + Caveat pairing, generous radii, headline text-shadow on color, dot bullets, and the hand-drawn SVG ornament layer. Composition + frame scale rewritten. Motion out of scope. unit: the frame — 1920×1080 primary; 9:16 and 1:1 documented

@moughamir
moughamir / index.html
Created April 1, 2026 22:57
Scroll Animation with Grid (Motion)
<body>
<div class="content-wrap">
<header>
<h1 class="fluid">let's<br />scroll.</h1>
<h2 class="fluid">Origionally from
<a href="https://codepen.io/jh3y/pen/VYZwOwd" target="_blank">Jhey →</a>, converted to Motion
</h2>
</header>
<main>
<section>
@moughamir
moughamir / future-sticky-navigation-with-glas-effect.markdown
Created March 23, 2026 14:15
Future Sticky Navigation with Glas Effect

Future Sticky Navigation with Glas Effect

A really cool modern sticky navigation with a glass effect and a menu button. Only Vanilla JS and (S)CSS.

A Pen by Benjamin Koehler on CodePen.

License.

@moughamir
moughamir / index.html
Created March 2, 2026 15:15
Scroll Animation with Grid (Motion)
<body>
<div class="content-wrap">
<header>
<h1 class="fluid">let's<br />scroll.</h1>
<h2 class="fluid">Origionally from
<a href="https://codepen.io/jh3y/pen/VYZwOwd" target="_blank">Jhey →</a>, converted to Motion
</h2>
</header>
<main>
<section>
@moughamir
moughamir / index.html
Created March 2, 2026 14:56
Tubes Cursor (WebGL, WebGPU)
<div id="app">
<canvas id="canvas"></canvas>
<div class="hero">
<h1>Tubes</h1>
<h2>Cursor</h2>
<a target="_blank" href="https://www.framer.com/@kevin-levron/">Framer Component</a>
</div>
</div>
@moughamir
moughamir / index.html
Created July 19, 2023 17:21
Responsive Resume Template
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<div class="resume-wrapper">
<section class="profile section-padding">
<div class="container">
<div class="picture-resume-wrapper">
<div class="picture-resume">
<span><img src="https://s3.amazonaws.com/uifaces/faces/twitter/jsa/128.jpg" alt="" /></span>
<svg version="1.1" viewBox="0 0 350 350">
<defs>

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@moughamir
moughamir / bodymovin-test.markdown
Created February 19, 2021 14:03
Bodymovin Test
@moughamir
moughamir / sw.js
Created February 6, 2021 23:55
sw
"use strict";
/**
* Service Worker of MoNetWork
*/
const cacheName = "m.monetwork.ma";
const startPage = "https://m.monetwork.ma";
const offlinePage = "https://m.monetwork.ma";
const filesToCache = [startPage, offlinePage];
@moughamir
moughamir / button.html
Last active February 6, 2021 22:50
pwa-install-promt.js
<div class="prompt">
<p>Install the app in your device</p>
<button type="button" class="prompt__install">Yes Please</button>
<button type="button" class="prompt__close">No Thanks</button>
</div>
<style>
.prompt {
display: none;
}
</style>