Skip to content

Instantly share code, notes, and snippets.

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

Hung Vu hungdev

💭
I may be slow to respond.
View GitHub Profile
@hungdev
hungdev / dayjs different between 2 dates.md
Last active February 5, 2024 09:01
dayjs different between 2 dates

docs: https://day.js.org/docs/en/plugin/duration

https://replit.com/@hungdev/dayjs-diff#index.js


const dayjs = require('dayjs');
require('dayjs/locale/vi'); // Import locale để có các chuỗi ngôn ngữ Việt Nam
var durationExt = require('dayjs/plugin/duration')
dayjs.extend(durationExt)
@hungdev
hungdev / iso-language-codes.md
Last active October 6, 2023 04:07
iso-language-codes
@hungdev
hungdev / Node switcher version.md
Last active November 19, 2023 03:51
Node switcher version shellscript command

Node switcher:

How to use:

Create file name: node-swicher.sh and copy content below
give permission ( Only need to grant 1 time ): chmod +x node-swicher.sh
run it: ./node-swicher.sh $param
param: 
If no number is passed, it defaults to version 16.16.0.
If 14 is passed, it uses version 14.19.0.
@hungdev
hungdev / responsive.scss
Created June 1, 2023 08:34 — forked from yactouat/responsive.scss
a responsive mixin in SCSS
// SO responsive mixin
// a mixin is different from a function as it does not return a value but serves as placeholder for code
@mixin responsive( $breakpoint ) {
/*
breakpoints are viewport arbitrary values,
they are defined with the aim of allowing the SCSS/CSS code of your app' behave accordingly to your user's device width,
the breakpoints I used were inspired by Bootstrap =>
https://getbootstrap.com/docs/5.0/layout/breakpoints/
*/
@if $breakpoint == smartphone-portrait {
@hungdev
hungdev / Search all field in table.md
Created April 12, 2023 09:17
Search all field in table
const fields = Object.keys(data?.[0]);
const searhResponse = searchVl ? data?.filter(el => fields.find(f => el[f]?.toString()?.toLowerCase()?.includes(searchVl?.toLowerCase()))) : data;
@hungdev
hungdev / app icon and splash.md
Last active December 20, 2022 10:21
app icon and splash
https://www.appicon.co/
https://github.com/MasonLe2497/cli-tools
@hungdev
hungdev / fnm.md
Last active November 6, 2023 05:29
fnm
fnm install 16.16.0
fnm use 16.16.0
fnm default 16.16.0
@hungdev
hungdev / ngrok run multiple ports at once.md
Last active May 24, 2023 19:15
ngrok run multiple ports at once

create file ngrok.yml

authtoken: ***
version: "2"
region: "us"
tunnels:
  first:
    addr: 6006
 proto: http