Skip to content

Instantly share code, notes, and snippets.

View BigUncleYemi's full-sized avatar
🎯
Focusing

Oyebanji Olayemi Afolarin BigUncleYemi

🎯
Focusing
View GitHub Profile
@BigUncleYemi
BigUncleYemi / za_branch_codes.json
Created February 7, 2022 05:13 — forked from andrewvink/za_branch_codes.json
South African Central Branch Code (CBC) / Bank Codes
{
"za_branch_bank_codes":
[
{
"bank_name" : "Absa Bank",
"bank_code" : "632005"
},
{
"bank_name" : "African Bank",
"bank_code" : "430000"
@BigUncleYemi
BigUncleYemi / cloudinary.js
Created September 9, 2020 23:33 — forked from rikschennink/cloudinary.js
FilePond Cloudinary
const createCloudinary = (cloudName, unsignedUploadPreset) => ({
process: (fieldName, file, metadata, load, error, progress, abort) => {
// `fieldName` and `meta` are not used for now
const url = `https://api.cloudinary.com/v1_1/${cloudName}/upload`;
const xhr = new XMLHttpRequest();
const formData = new FormData();
@BigUncleYemi
BigUncleYemi / media-query.css
Created February 24, 2019 14:35 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@BigUncleYemi
BigUncleYemi / heroku-remote.sh
Created November 15, 2018 09:43 — forked from randallreedjr/heroku-remote.md
Add a Heroku remote to an existing git repo
$ git remote add staging https://git.heroku.com/staging-app.git
$ git remote add heroku https://git.heroku.com/app.git
@BigUncleYemi
BigUncleYemi / create-react-app-on-heroku.sh
Created January 12, 2018 17:19 — forked from mars/create-react-app-on-heroku.sh
Create a React app & deploy to Heroku
## Global install of the app generator
npm install -g create-react-app
## Setup the app (first-time only)
create-react-app my-app
cd my-app
git init
# Create the Heroku app; requires free account at https://www.heroku.com/
heroku create -b https://github.com/heroku/heroku-buildpack-static.git
@BigUncleYemi
BigUncleYemi / manifest.json
Created January 12, 2018 15:32 — forked from ericelliott/manifest.json
Sample manifest.json
{
"name": "My Progressive Web Application",
"short_name": "Progressive",
"start_url": "/?home=true",
"icons": [
{
"src": "/icons/icon36.png",
"sizes": "36x36",
"type": "image/png"
},
@BigUncleYemi
BigUncleYemi / manifest.json
Created January 12, 2018 15:32 — forked from ericelliott/manifest.json
Sample manifest.json
{
"name": "My Progressive Web Application",
"short_name": "Progressive",
"start_url": "/?home=true",
"icons": [
{
"src": "/icons/icon36.png",
"sizes": "36x36",
"type": "image/png"
},