Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
The intl package supports a broad range of date formatting patterns. Here's a list (taken from the official docs):
DAY d
ABBR_WEEKDAY E
WEEKDAY EEEE
ABBR_STANDALONE_MONTH LLL
STANDALONE_MONTH LLLL
NUM_MONTH M
NUM_MONTH_DAY Md
{ | |
"compilerOptions": { | |
"module": "commonjs", | |
"target": "es6", | |
"checkJs": true, | |
"resolveJsonModule": true, | |
"esModuleInterop": true, | |
}, | |
"exclude": ["node_modules"] | |
} |
const moment = require('moment'); | |
const regularDate = moment() // ? | |
const regularDateString = regularDate.format('YYYY-mm-DD HH:ss'); // ? | |
const utcDate = moment.utc() // ? | |
const utcString = utcDate.format('YYYY-mm-DD HH:ss') //? | |
// transforming regular to UTC | |
console.log(moment.utc(regularDate).format('YYYY-mm-DD HH:ss')) // ? |
Information From: https://developers.google.com/protocol-buffers/docs/proto3
Declaring Message In Protocol Buffer:
As you can see, each field in the message definition has a unique number.
Field numbers identify fields in message binary format. Should not be changed once message is in use
keep-open=yes | |
reset-on-next-file=pause | |
geometry=50%x50% | |
pause |
Run this command
yarn create vite <my-awesome-project> --template vue-ts
This will create a VueJS project with TypeScript support, but it doesn't add the configuration for Prettier or Eslint, let's add that.