This file contains 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
# Title: d3Host List by d3ward | |
# Expires: 1 days | |
# Description: Simple and small list with the most popular advertising, tracking, analytics and social advertising services | |
# Homepage: https://github.com/d3ward/toolz | |
# License: CC BY-NC-SA | |
# Source: https://github.com/d3ward/toolz/blob/master/src/d3host.txt | |
# This list cover all the tests on https://d3ward.github.io/toolz/adblock | |
# Type : Stable | |
# Entries : 137 |
This file contains 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
.titleBar-AC4pGV.typeWindows-1za-n7::after { | |
content: ""; | |
position: absolute; | |
pointer-events: none; | |
background: url('https://discord.com/assets/364fc8a0ee7fcebf47ca6ebd16ec12f1.svg') left/100% no-repeat; | |
width: 85px; | |
height: 16px; | |
left: 8px; | |
top: 4px; | |
} |
This file contains 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
winget: | |
https://github.com/microsoft/winget-cli | |
choco: | |
https://chocolatey.org/install | |
choco commands: | |
choco install node-lts | |
node commands: |
This file contains 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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"alwaysOnTop": false, | |
"alwaysShowTabs": true, | |
"confirmCloseAllTabs": true, | |
"copyFormatting": "all", | |
"copyOnSelect": true, | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"disableAnimations": false, | |
"experimental.rendering.forceFullRepaint": true, |
This file contains 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
{ | |
/*ARQJOB*/ | |
/*COMANDOS*/ | |
"enquantoArqjob":{ | |
"body": "enquanto(${1:<condi\u00e7\u00e3o>})\n\n\t${4:<comandos>}\n\nfimenquanto;$0", | |
"description": "Cria uma estrutura de repetição enquanto... fimenquanto permite especificar que uma ação será repetida enquanto alguma condição permanecer verdadeira.", | |
"prefix": "enquanto" | |
}, | |
"paraArqjob":{ | |
"body": "para ${1:<variável>} = ${2:<valor>} ate ${3:<valor final>} \n\n\t${4:<comandos>}\n\nfimpara;$0", |
This file contains 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 knex from 'knex'; | |
import path from 'path'; | |
const configuration = require("../../knexfile"); | |
let config; | |
if(process.env.NODE_ENV === 'production'){ | |
config = configuration.production; | |
}else{ | |
config = configuration.development; |
This file contains 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 React, { useEffect, useState, ChangeEvent, FormEvent } from 'react'; | |
import { Link, useHistory } from 'react-router-dom'; | |
import { FiArrowLeft, FiCheckCircle } from 'react-icons/fi'; | |
import { Map, TileLayer, Marker } from 'react-leaflet'; | |
import axios from 'axios'; | |
import { LeafletMouseEvent } from 'leaflet' | |
import api from '../../services/api'; | |
import './styles.css'; | |
import logo from '../../assets/logo.svg' |
This file contains 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 {Request, Response} from 'express'; | |
import knex from '../database/connection'; | |
class PointsController { | |
async create (request: Request, response: Response) { | |
const { | |
name, | |
email, | |
whatsapp, | |
latitude, |
This file contains 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
#include<stdio.h> | |
#include<stdlib.h> | |
//CODIGO ADAPTADO POR ERIC ROCHA - FILAS | |
struct Node{ | |
int reg; | |
char placa[20]; | |
struct Node *prox; | |
}; |
This file contains 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
void ordenar(LISTA* lista) | |
{ | |
int trocado, i; | |
node *list; | |
node *listOrd = NULL; | |
if (lista == NULL) | |
return; |
NewerOlder