Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
//Don't for get to install this cap package. It works for iOS and Android | |
import { RateApp } from "capacitor-rate-app"; | |
//Firts ask the user to rate your app | |
const OpenRating = () => { | |
presentAlert({ | |
header: "Do you love what you see 😍?", | |
backdropDismiss: false, | |
subHeader: |
Install
npm install --save-dev @capacitor/assets
In your app root create assets folder and add the following
assets/
- logo.png
- splash-dark
- splash
import { Storage, Drivers } from "@ionic/storage"; | |
import * as CordovaSQLiteDriver from "localforage-cordovasqlitedriver"; | |
export default class StoreageService { | |
storageReady = false; | |
store = new Storage({ | |
driverOrder: [ | |
CordovaSQLiteDriver._driver, | |
Drivers.IndexedDB, |
Example inputs:
Variable | Value |
---|---|
key | the shared secret key here |
message | the message to hash here |
Reference outputs for example inputs above:
| Type | Hash |
These commands are meant to be followed in conjunction with: | |
https://www.youtube.com/watch?v=xpYpaRUFzTI | |
https://gorails.com/deploy/ubuntu/18.04 | |
ssh [email protected] | |
adduser deploy | |
adduser deploy sudo | |
exit | |
ssh-copy-id [email protected] | |
ssh-copy-id [email protected] |
HTTP status code symbols for Rails | |
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings. | |
Status Code Symbol | |
1xx Informational | |
100 :continue | |
101 :switching_protocols | |
102 :processing |
/* VS Table */ | |
.vc_tta-tabs-list{ | |
list-style: none!important; | |
display: flex !important; | |
justify-content: center !important; | |
margin-top: 30px !important; | |
} | |
.wpb-js-composer .vc_tta.vc_general .vc_tta-tab>a{ |
<li> | |
{{measurement?.shoulder}} | |
</li> | |
<li> | |
{{measurement?.back_length}} | |
</li> |
<form (submit)="updateUserMeasurement()" #f="ngForm"> | |
<div class="container"> | |
<ion-list no-lines> | |
<ion-item class="rounded"> | |
<label color="divaGrey" >Shoulder</label><br> | |
<input | |
type="text" | |
name="shoulder" | |
[ngModel] = "shoulder" | |
placeholder="Enter your Shoulder length" |