call plug#begin()
" All the language definitions I'll ever use are here :)
Plug 'sheerun/vim-polyglot'
" One of the best plugins for GIT
Plug 'tpope/vim-fugitive'
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 sys | |
| import pandas as pd | |
| # print(pd | |
| # .read_excel(sys.argv[1], sheet_name="Planilha1") | |
| # .to_json(orient="records", force_ascii=False)) | |
| dados = pd.read_excel(sys.argv[1], sheet_name="Planilha1") |
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
| #EXTM3U | |
| #EXTINF:-1 tvg-ID="noepg.pt" tvg-name="BBB 2020" tvg-logo="http://img.brgo.xyz/img/bbb1hd.png" group-title="Filmes e Séries",BBB 2020 | |
| http://a.srvbr.me:8880/JpeQDe4IaL/hnfgdhrteyfhdhs/11923 | |
| #EXTINF:-1 tvg-ID="MDH" tvg-name="A&E" tvg-logo="http://img.miptv.ws/A&E.png" group-title="Filmes e Séries",A&E | |
| http://a.srvbr.me:8880/JpeQDe4IaL/hnfgdhrteyfhdhs/898 | |
| #EXTINF:-1 tvg-ID="MDH" tvg-name="A&E HD" tvg-logo="http://img.miptv.ws/A&E.png" group-title="Filmes e Séries",A&E HD | |
| http://a.srvbr.me:8880/JpeQDe4IaL/hnfgdhrteyfhdhs/4203 | |
| #EXTINF:-1 tvg-ID="MDH" tvg-name="A&E [PLUS]" tvg-logo="http://img.miptv.ws/A&E.png" group-title="Filmes e Séries",A&E [PLUS] | |
| http://a.srvbr.me:8880/JpeQDe4IaL/hnfgdhrteyfhdhs/4167 |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # My Vagrant example | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. |
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
| call plug#begin() | |
| " All the language definitions I'll ever use are here :) | |
| Plug 'sheerun/vim-polyglot' | |
| " One of the best plugins for GIT | |
| Plug 'tpope/vim-fugitive' | |
| " Ale runs syntax checkers, linters, and compilers asynchronously and displays | |
| " " their messages on vim's interface. It's very useful to avoid wasting time | |
| " " compiling a file that may have a lot of syntax problems the programmer |
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
| "============================================================================= | |
| " init.vim --- Entry file for neovim | |
| " Copyright (c) 2016-2020 Wang Shidong & Contributors | |
| " Author: Wang Shidong < wsdjeg@outlook.com > | |
| " URL: https://spacevim.org | |
| " License: GPLv3 | |
| "============================================================================= | |
| execute 'source' fnamemodify(expand('<sfile>'), ':h').'/main.vim' |
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
| #============================================================================= | |
| # dark_powered.toml --- dark powered configuration example for SpaceVim | |
| # Copyright (c) 2016-2020 Wang Shidong & Contributors | |
| # Author: Wang Shidong < wsdjeg at 163.com > | |
| # URL: https://spacevim.org | |
| # License: GPLv3 | |
| #============================================================================= | |
| # All SpaceVim option below [option] section | |
| [options] |
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 { Document } from "mongoose"; | |
| import FactoryBot from "../../../test/FactoryBot"; | |
| import { lorem } from "faker/locale/pt_BR" | |
| export interface Recipe extends Document { | |
| title: string; | |
| description: string; | |
| category: string; | |
| ingredients: Array<string>; | |
| instructions: string; |
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 default class FactoryBot<EntityInterface> { | |
| constructor(protected createInstance: (...args: any[]) => EntityInterface) {} | |
| getOne(): EntityInterface { | |
| return this.createInstance() | |
| } | |
| getSome(quantity?: number): EntityInterface[] { | |
| const instances = quantity || 1 | |
| const returned = [] |
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
| { | |
| "defaultSeverity": "warning", | |
| "extends": [ | |
| "tslint:recommended" | |
| ], | |
| "linterOptions": { | |
| "exclude": [ | |
| "node_modules/**" | |
| ] | |
| }, |
NewerOlder