Guide: https://www.meidev.co/blog/visual-studio-code-css-linting-with-tailwind/
ext install stylelint.vscode-stylelint
// in project:
yarn add stylelint-config-recommended
| var data = JSON.stringify({ | |
| "From": "mailman@elbit.com.br", | |
| "To": "eduardo@elbit.com.br, rafael@elbit.com.br, cristiano@elbit.com.br", | |
| "Subject": "Test", | |
| "Tag": "Invitation", | |
| "HtmlBody": "<b>Olá</b>, tudo bem? haha", | |
| "TextBody": "Olá, tudo bem?", | |
| "ReplyTo": "mailman@elbit.com.br" | |
| }); |
| var data = JSON.stringify({ | |
| "personalizations": [ | |
| { | |
| "to": [ | |
| { | |
| "email": "joseeduardobarros@gmail.com" | |
| } | |
| ], | |
| "subject": "Hello, World!" | |
| } |
| // filtro para mostrar todos pedidos com ingressos no retirados | |
| // este filtro só exibe pedidos aprovados e com pelo menos um item de ingresso | |
| var notShippedList = list.filter(function(item) { | |
| if (item.ticketList.list.length > 0 && item.status == 'Aprovada') { | |
| for (var i = item.ticketList.list.length; i--; ) { | |
| if (!item.ticketList.list[i].shipping) | |
| return item.clientName; | |
| } | |
| } |
Guide: https://www.meidev.co/blog/visual-studio-code-css-linting-with-tailwind/
ext install stylelint.vscode-stylelint
// in project:
yarn add stylelint-config-recommended
| import parse from 'csv-parse/lib/sync' | |
| import autoParse from 'auto-parse' | |
| export const mutations = { | |
| SET_KEYS: (state, keys) => (state.keys = keys), | |
| SET_ENTRIES: (state, entries) => (state.entries = entries), | |
| SET_LAST_DATE: (state, lastDate) => (state.lastDate = lastDate) | |
| } | |
| export const state = () => ({ |
Doc: https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH
sudo apt install zsh
Change the shell default to zsh:
chsh -s $(which zsh)
| // BIG TRETA BRASIL ELEMENT FINDER | |
| let GHOST_PROPERTIES = [ | |
| { property: 'overflow', value: 'hidden' }, | |
| { property: 'left', value: '-9999px' }, | |
| { property: 'display', value: 'none' }, | |
| ]; | |
| let ANCESTOR_MAX_CHILD = 4; |
| setTimeout(() => { | |
| console.log('hello from remote!'); | |
| }, 1000) |