Skip to content

Instantly share code, notes, and snippets.

View DominusKelvin's full-sized avatar
👨‍💻
Working remotely.

Kelvin Oghenerhoro Omereshone DominusKelvin

👨‍💻
Working remotely.
View GitHub Profile
<div class="site-wrapper">
<!-- Simple mark-up right? -->
<button class="udacity-btn">I made it!</button>
</div>
.site-wrapper {
margin-top: 20%;
display: flex;
justify-content: center;
}
/* This is where the magic starts */
.udacity-btn {
color: #ffffff;
padding: 10px 40px;
background-color: #02b3e4;
border-color: transparent;
border-radius: .25rem;
box-shadow: 8px 10px 20px 0 rgba(46,61,73,.15);
cursor: pointer;
transition: all .3s;
.udacity-btn:focus, .udacity-btn:hover {
color: #ffffff;
outline: 0;
background-color: #029fcb;
box-shadow: 2px 4px 8px 0 rgba(46,61,73,.2);
}
<!DOCTYPE html5>
<html lang:'en'>
<title>This is a test markup</title>
<head>
<meta charset="UTF-8" />
</head>
<body>
<p id="name">Hello Intern</p>
<p id="name">Welcome to your test page</p>
</body>
@DominusKelvin
DominusKelvin / gist:634236312bceaf79f254d531b6014cf0
Created September 12, 2018 13:45 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@DominusKelvin
DominusKelvin / data_schema.json
Created September 14, 2018 15:58
New database Schema
{
"id": 1,
"primary_contact_name": 'John Doe',
"primary_contact_number: 08102311012,
"primary_contact_email": 'kelvinomereshone@gmail.com',
"who_is_this_person": 'Landlord',
"lister_is_primary_contact": Yes,
"bank_details": {
"bank_name": 'First Bank',
"bank_account_number": "2034789056",

Keybase proof

I hereby claim:

  • I am dominuskelvin on github.

  • I am dominuskelvin (https://keybase.io/dominuskelvin) on keybase.

  • I have a public key ASDGCtysgcoZ4QcOEBJ5VuWu1Gg3N6e93ht1qtQtRZY24Qo

Verifying my Blockstack ID is secured with the address 1NWnuhEhpKp9yRNJBnjm1GGkGz4UDgyW34 https://explorer.blockstack.org/address/1NWnuhEhpKp9yRNJBnjm1GGkGz4UDgyW34

Committing With Vim - A step by step tip

So if you are like me, and you are not familiar with the editor Vim, but sometimes trigger the editor when you omit commit or tag messages, you can follow the below steps.

  1. Press i on your keyboard to enter insert mode,
  2. Type in your message(commit message or tag message)
  3. Press the esc or escape key to exit the insert mode of vim
  4. Then type :x to exit vim after saving your commit

Hope this helps

Happy deploying 🚀🚀🚀