π£
This file contains hidden or 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
YOLO! |
This file contains hidden or 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
[ | |
{ | |
"author": "Abraham Lincoln", | |
"text": "A house divided against itself cannot stand." | |
}, | |
{ | |
"author": "Abraham Lincoln", | |
"text": "Important principles may, and must, be inflexible." | |
}, | |
{ |
This file contains hidden or 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 | |
$arrayA = [ | |
[ | |
"status" => "Wait", | |
"id" => 1 | |
], | |
[ | |
"status" => "Approve", | |
"id" => 2 |
This file contains hidden or 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
π Morning 25 commits βββββββββββββββββββββ 12.9% | |
π Daytime 76 commits βββββββββββββββββββββ 39.2% | |
π Evening 45 commits βββββββββββββββββββββ 23.2% | |
π Night 48 commits βββββββββββββββββββββ 24.7% |
This file contains hidden or 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
code --install-extension Angular.ng-template | |
code --install-extension bmewburn.vscode-intelephense-client | |
code --install-extension bradlc.vscode-tailwindcss | |
code --install-extension christian-kohler.path-intellisense | |
code --install-extension csstools.postcss | |
code --install-extension DavidAnson.vscode-markdownlint | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension eamodio.gitlens | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension esbenp.prettier-vscode |
This file contains hidden or 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 type { NextApiRequest, NextApiResponse } from 'next' | |
const getYoutubePlaylistId = (url: string): string => { | |
const regExp = /list=([^&]+)/ | |
const match = regExp.exec(url) | |
if (match) { | |
return match[1] | |
} | |
return '' | |
} |
This file contains hidden or 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
TypeScript 10 hrs 20 mins βββββββββββββββββββββ 72.7% | |
PHP 1 hr 26 mins βββββββββββββββββββββ 10.2% | |
Python 1 hr 16 mins βββββββββββββββββββββ 9.0% | |
HTML 20 mins βββββββββββββββββββββ 2.4% | |
MDX 14 mins βββββββββββββββββββββ 1.8% |
This file contains hidden or 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
FROM php:7.1.33-alpine3.10 | |
LABEL version="1.0.0",maintainer="[email protected]" | |
RUN apk update; \ | |
apk upgrade; \ | |
apk add --no-cache \ | |
$PHPIZE_DEPS openssl ca-certificates curl tzdata autoconf gcc icu-dev libmcrypt-dev freetype-dev jpeg-dev libjpeg-turbo-dev libwebp-dev libpng-dev libxpm-dev bzip2-dev | |
RUN docker-php-ext-configure intl \ |
This file contains hidden or 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
#!/usr/bin/env bash | |
if [[ ! -z baser ]]; then | |
git clone [email protected]:env/docker.git baser | |
mv baser /usr/local/lib/ | |
ln -s /usr/local/lib/baser/base /usr/local/bin/baser | |
chmod +x /usr/local/bin/baser | |
rm -rf baser | |
fi |