Skip to content

Instantly share code, notes, and snippets.

@VashonG
VashonG / changeable-card-aspects.markdown
Created June 26, 2022 02:36
Changeable Card Aspects
@VashonG
VashonG / index.html
Created September 25, 2022 12:23
Radial Nav Menu
<div id="root"></div>
@VashonG
VashonG / bca.html
Last active January 13, 2023 18:59
Consumer Credit Application
<iframe id='partner-public-credit-application-iframe' data-value='PR202285ZTK'></iframe>
<script src="https://artechnity.in/kapedAdmin/assets/custom/embedded/script-credit-card-application.js"></script>
@VashonG
VashonG / credit-card-animation-gsap.markdown
Created November 3, 2022 08:53
Credit Card Animation GSAP
@VashonG
VashonG / cool-symbol.markdown
Created November 12, 2022 01:45
Cool Symbol

Cool Symbol

Tweaking clip-path to create a hollow triangle shape and adding to it a pseudo element with an animated conic-gradient to create a rotating "shine" effect.

A Pen by Paulo Nunes on CodePen.

License.

@VashonG
VashonG / index.html
Created December 8, 2022 06:03
Parallax Scrolling Landing Page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parallax Scrolling Effect with CSS & Vanilla Javascript</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
@VashonG
VashonG / business-plan.markdown
Created January 11, 2023 11:53
Business Plan
@VashonG
VashonG / finzaar.markdown
Last active January 12, 2023 09:01
Finzaar
@VashonG
VashonG / define-your-destiny.markdown
Created January 15, 2023 03:58
Define Your Destiny
@VashonG
VashonG / .deps...npm...hardhat...console.sol
Created January 18, 2023 17:59
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.13+commit.abaa5c0e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);
function _sendLogPayload(bytes memory payload) private view {
uint256 payloadLength = payload.length;
address consoleAddress = CONSOLE_ADDRESS;
assembly {