- Compares two numbers and swaps them if the 2nd > 1st
- Keeps repeating the process (up to length - 1 each iteration)
- Simple but not a practical solution due to its heavy performance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## PHP & Laravel | |
'.php': | |
'Blade errors list': | |
'prefix': 'lerr' | |
'body': """ | |
@if( $status ) | |
<div class="alert alert-info" role="alert"> {{$status}} </div> | |
@endif | |
@if ($errors->any()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Homestead | |
##---------- | |
alias hu="homestead up" | |
alias hh="homestead halt" | |
alias he="homestead edit" | |
alias hs="homestead ssh" | |
alias hp="homestead provision" | |
alias tinker="php artisan tinker" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A [] queue of ppl and their weights | |
// B [] floors each person is going to | |
// M maximum floors of building | |
// X maximum people on elv | |
// Y maximum wight on elv | |
function solution(A, B, M, X, Y) { | |
// if queue had one person and is going to a reachable floor | |
if (A.length === 1 && B[0] <= M) { | |
return 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Ansi 5 Color" : { | |
"Red Component" : 0.8587691187858582, | |
"Color Space" : "Calibrated", | |
"Blue Component" : 0.8668023347854614, | |
"Alpha Component" : 1, | |
"Green Component" : 0.4679538607597351 | |
}, | |
"Tags" : [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// common | |
const path = require('path'); | |
const CleanWebpackPlugin = require('clean-webpack-plugin'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const Dotenv = require('dotenv-webpack'); | |
const rootpath = path.resolve(__dirname, '..'); | |
const fontRegex = /.(eot|ttf|woff|otf|woff2)$/; | |
const imgRegex = /.(png|jpg|gif|svg)$/; | |
const fileRegex = new RegExp(`(${fontRegex.source})|(${imgRegex.source})`); |
- install NVM https://github.com/nvm-sh/nvm
- install https://github.com/edc/bass to run bash commands (nvm) from fish shell
- install https://github.com/FabioAntunes/fish-nvm (functions to load node when called via npm/yarn/node... using bass)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useRef, useEffect } from 'react'; | |
import useExtractFormikState from './useExtractFormikState'; | |
type PersistProps = { | |
name: string; | |
type?: 'local' | 'session'; | |
} | |
export default function FormikPersist(props: PersistProps): null { | |
const { name, type = 'session' } = props; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.7.3; | |
pragma experimental ABIEncoderV2; | |
contract MultiSigWallet { | |
uint minApprovers; | |
address payable beneficiary; | |
address payable owner; | |
mapping (address => bool) approvedBy; | |
mapping (address => bool) isApprover; | |
uint approvalsCount; |
A React Provider/Consumer (hook) to capture beforeinstallprompt
and display Install app? message to the user at a later time/event.
// PropmptToInstall.tsx
import React, { createContext, useState, useEffect, useContext, useCallback, ReactNode } from 'react';
import { IBeforeInstallPromptEvent, PromptCtx } from './types';
const PromptToInstall = createContext<PromptCtx>({deferredEvt: null});
OlderNewer