Skip to content

Instantly share code, notes, and snippets.

View kingRayhan's full-sized avatar
😍
in relationship with console.log( )

Md Raihan kingRayhan

😍
in relationship with console.log( )
View GitHub Profile
@kingRayhan
kingRayhan / Login-widget.vue
Last active January 7, 2021 20:44
Fire Reddit Components
<template>
<form
class=" flex justify-items-end flex-col items-end p-2 border-gray-600 border mb-3"
>
<div class="flex">
<input
type="text"
placeholder="Email"
class=" border-gray-600 border px-3 py-1 w-1/2 mr-3 focus:outline-none focus:border-primaryDark"
v-model="form.email"
package com.company;
public interface Discountable {
public double discountedPrice(double price);
}
@kingRayhan
kingRayhan / 1. ReadMe.Md
Last active February 7, 2022 22:47
Fire Reddit Starter Components

Testing display of HTML elements

This is 2nd level heading

This is a test paragraph.

This is 3rd level heading

This is a test paragraph.

This is 4th level heading

This is a test paragraph.

This is 5th level heading
This is a test paragraph.
@kingRayhan
kingRayhan / firestore-guide.js
Created June 15, 2021 16:53 — forked from vinnihoke/firestore-guide.js
Firestore CRUD Cheat Sheet
// Setup Firestore. Note that all of these will be asyncronous tasks and can have a .then attached. Write in a config process for Firebase. Include the necessary process.env files and instructions how to make a .env file.
***************************************************************
// Add data - C
firestore.collection("CollectionName").add({
key: value,
key: value,
})
.\? {
position: relative;
}
.\?::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
@kingRayhan
kingRayhan / React-Native-fonts.md
Last active August 3, 2021 02:51
React Native System fonts

React Native System fonts

Supported by Android

  • normal
  • notoserif
  • sans-serif
  • sans-serif-light
@kingRayhan
kingRayhan / a.md
Last active February 18, 2022 04:18

Vue notes markup and styles

@kingRayhan
kingRayhan / countries.list.js
Created April 24, 2022 06:02
Javascript countries array
const countries = [
{
value: "Afghanistan",
label: "Afghanistan",
},
{
value: "Albania",
label: "Albania",
},
{
@kingRayhan
kingRayhan / MailHog configuration
Created June 7, 2022 08:12 — forked from Propaganistas/MailHog configuration
Laravel MailHog SMTP configuration
# Mailhog
MAIL_MAILER=smtp
MAIL_HOST=0.0.0.0
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null