Skip to content

Instantly share code, notes, and snippets.

@MboaAbel
MboaAbel / index.html
Created July 5, 2022 19:09
Night on the mountain
<div class="container">
<div class="top">
<div class="upper section"><img class="image image2" src="marc-steenbeke-664660-unsplash.jpg" alt=""></div>
<div class="mid section"><div class="top-title">MOUNTAINS</div>
</div>
<div class="lower section"><img class="image image1" src="marc-steenbeke-664660-unsplash.jpg" alt=""></div>
</div>
<div class="bottom">
<div class="bottom-title">Night on the mountain</div>
<div class="bottom-body">
@MboaAbel
MboaAbel / index.html
Created July 5, 2022 15:39
Lime Hero
<div class="main">
<div class="content-grid">
<div class="content-grid-title">
<h1>Unlock Life</h1>
</div>
<div class="content-grid__scroll">
<div class="content-grid__sticky">
@MboaAbel
MboaAbel / animated-hero-header-svg-gsap.markdown
Created July 5, 2022 15:32
Animated Hero Header [SVG + GSAP]
@MboaAbel
MboaAbel / disney-3d-hero-gsap-animation.markdown
Created July 5, 2022 15:30
Disney+ 3D Hero GSAP Animation
@MboaAbel
MboaAbel / fork-animated-circuitboard-hero-with-javascript-canvas.markdown
Created July 5, 2022 15:24
🍴Fork: Animated Circuitboard⁩ Hero with JavaScript Canvas⁩
@MboaAbel
MboaAbel / index.html
Last active July 8, 2022 20:30
Carousel with progress bar
<div class="carousel">
<div class="progress-bar progress-bar--primary hide-on-desktop">
<div class="progress-bar__fill"></div>
</div>
<header class="main-post-wrapper">
<div class="slides">
<article class="main-post main-post--active">
<div class="main-post__image">
@mfrancois3k
mfrancois3k / mongodb_app_integration.md
Created June 25, 2022 02:10 — forked from cheribc/mongodb_app_integration.md
MongoDB_integration-to-web-app_reference.md

MongoDB Integration to Web App - Reference

This gist was created by using a reference article by Roopali Singh in Medium.com.

Installation

npm install mongoose

Create userModel.js with userSchema for database structure

@bgoonz
bgoonz / array.es6.js
Last active August 23, 2022 21:29
data structures es6
class MyArray {
constructor() {
this.array = [];
}
add(data) {
this.array.push(data);
}
remove(data) {
@mfrancois3k
mfrancois3k / loginActions.js
Created June 20, 2022 01:21 — forked from ldco2016/loginActions.js
login Actions file
import {Alert} from 'react-native';
import logger from 'logger';
import * as types from 'auth/constants';
import * as endpoints from 'endpoints';
import * as cache from 'utils/cache';
import {AUTH_STATUS} from 'enums/authStatus';
import * as requester from 'services/Requester';
import {clearSurveys} from 'surveys-ballots/actions';
import {clearEvents} from 'events/actions';
import * as repsActions from 'representatives/actions';