Skip to content

Instantly share code, notes, and snippets.

View ajadi473's full-sized avatar
💭
Data Science | ML | Web Dev

Paul Ajadi ajadi473

💭
Data Science | ML | Web Dev
View GitHub Profile
@ajadi473
ajadi473 / Steekscoin.sol
Last active October 27, 2021 18:25 — forked from giladHaimov/BasicERC20.sol
ERC20 implementation
pragma solidity >=0.4.22 <0.6.0;
contract ERC20Basic {
string public constant name = "Steekscoin";
string public constant symbol = "BSC";
uint8 public constant decimals = 18;
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
@ajadi473
ajadi473 / deploylarqavel.md
Created September 2, 2021 16:23 — forked from xyluz/deploylarqavel.md
Deploying Laravel to a Shared Hosting with SSH

You need to have SSH access to your server, Its almost impossible and definitely unadvisable to deploy Laravel to a server with a file upload app like filezilla, for a lot of reasons, but mostly because of dependencies.

The first thing you need to check is; if your host server gives you access to SSH.

After checking with your host company, and ensuring you have SSH access, you can now install Laravel on your local machine, if you don’t know how to do that, check this: https://medium.com/staybusyng/getting-started-with-laravel-69d288229de8

Steps to Deloying your Laravel App

STEP 1: Use Git

@ajadi473
ajadi473 / banks.html
Created February 24, 2021 21:25 — forked from segebee/banks.html
Nigerian Commercial Banks Select Drop down
<select class="form-control " id="bank">
<option selected>Choose</option>
<option value="access">Access Bank</option>
<option value="citibank">Citibank</option>
<option value="diamond">Diamond Bank</option>
<option value="ecobank">Ecobank</option>
<option value="fidelity">Fidelity Bank</option>
<option value="firstbank">First Bank</option>
<option value="fcmb">First City Monument Bank (FCMB)</option>
<option value="gtb">Guaranty Trust Bank (GTB)</option>