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
/* TEAM */ | |
Chef: Efren Martinez | |
Contact: hey [at] efrencodes.com | |
Twitter: @efrencodes | |
From: Queretaro, Mexico. | |
/* THANKS */ | |
/* SITE */ | |
Last update: 2023/10/20 |
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
'en-US' // idioma: inglés | código de país: Estados Unidos | |
'de-DE' // idioma: alemán | código de país: Alemania | |
'ja-JP' // idioma: japones 1 código de país: Japon |
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
const value = 2300.80 | |
const formatterDolar = new Intl.NumberFormat('en-US', { | |
style: 'currency', | |
currency: 'USD', | |
minimumFractionDigits: 2, | |
maximumFractionDigits: 2 | |
}) | |
formatterDolar.format(value) // $2,300.80 |
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
{ | |
"workbench.startupEditor": "none", | |
"terminal.integrated.fontWeight": 300, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13.2, | |
"editor.tabCompletion": "on", | |
"security.workspace.trust.untrustedFiles": "open", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.html$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.html [L] | |
</IfModule> | |
https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations |
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
Show hidden characters
{ | |
"Vue base components": { | |
"prefix": "msbaseempty", | |
"body": [ | |
"<template>", | |
"\t<div class=\"${TM_FILENAME_BASE/[\\.]/-/}\">", | |
"\t\t<!-- Content -->", | |
"\t</div>", | |
"</template>", | |
"", |
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
export ZSH="/Users/efrencodes/.oh-my-zsh" | |
ZSH_THEME="spaceship" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
DISABLE_AUTO_UPDATE="true" |