Skip to content

Instantly share code, notes, and snippets.

View lil-armstrong's full-sized avatar
💭
I may be slow to respond.

Ebong, Okposong lil-armstrong

💭
I may be slow to respond.
View GitHub Profile
@lil-armstrong
lil-armstrong / meta-tags.md
Created July 22, 2023 09:32 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@lil-armstrong
lil-armstrong / index.js
Created December 8, 2021 12:20 — forked from WietseWind/index.js
Create Ripple XRPL transaction with memo, and sign+send locally
// Before running the code:
// npm install rippled-ws-client rippled-ws-client-sign websocket
const RippledWsClient = require('rippled-ws-client')
const RippledWsClientSign = require('rippled-ws-client-sign')
// Your secret
const SeedOrKeypair = 'sXXXXXXXXXXX'
// Your wallet (sending the funds)
const SendingWallet = 'rSENDINGWALLETXXXXXX'
@lil-armstrong
lil-armstrong / BaseButton.vue
Created January 7, 2021 14:36 — forked from jcjuspin/BaseButton.vue
Vue BaseButton component
<template>
<component
:is="tag"
:class="buttonClasses"
:type="nativeType"
v-bind="$attrs"
@click="$emit('click', $event)"
>
<span class="v-btn__slot"><slot /></span>
</component>