Skip to content

Instantly share code, notes, and snippets.

View Joachimchisom1's full-sized avatar
:octocat:
Make things happen

Joachim Chisom Joachimchisom1

:octocat:
Make things happen
View GitHub Profile
@Joachimchisom1
Joachimchisom1 / App.js
Created March 31, 2022 09:00 — forked from adilanchian/App.js
Section 3: Build web3 app that connects to our wallet and talks to our WaveContract
import React, { useEffect, useState } from "react";
import { ethers } from "ethers";
import './App.css';
import abi from './utils/WavePortal.json';
const App = () => {
const [currentAccount, setCurrentAccount] = useState("");
/**
* Create a varaible here that holds the contract address after you deploy!
*/
@Joachimchisom1
Joachimchisom1 / App.css
Created May 4, 2022 17:08 — forked from adrianhajdin/App.css
Develop a React Cryptocurrency App and Master Redux Toolkit in One Video
:root{
--text-primary:#000;
--bgPrimary:#fff;
--bgSecondary: #F9F9F9;
--pink: #0071bd;
--light-blue: #e6f7ff;
--border: #d9d9d9;
}
@Joachimchisom1
Joachimchisom1 / officeActivator.bat
Created January 10, 2023 19:14 — forked from mndambuki/officeActivator.bat
Activate Microsoft Office 2019
@echo off
title Activate Microsoft Office 2019 !
cls
echo ============================================================================
echo #Project: Activating Microsoft software products
echo ============================================================================
echo.
echo #Supported products:
echo - Microsoft Office Standard 2019
echo - Microsoft Office Professional Plus 2019
@Joachimchisom1
Joachimchisom1 / gist:54a8591be6d4be5c0ceb0551e621e346
Created August 9, 2023 10:43 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>