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
sudo apt update | |
sudo apt upgrade -y | |
sudo apt-get install \ | |
ca-certificates \ | |
curl \ | |
gnupg \ | |
lsb-release |
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 defineNuxtPlugin(nuxtApp => { | |
addRouteMiddleware('request-logger', () => { | |
const start = new Date(); | |
nuxtApp.hook('app:rendered', (renderContext) => { | |
const { req, res } = (renderContext.ssrContext.event.node) | |
res.on('close', () => { | |
const message = `${res.statusCode} ${req.url} ${new Date() - start} ms` | |
console.info(message) | |
}) | |
}) |
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
bot_autodifficulty_threshold_high 0.0 // Value between -20.0 and 20.0 (Amount above avg human contribution score, above which a bot should lower its difficulty) | |
bot_autodifficulty_threshold_low -2.0 // Value between -20.0 and 20.0 (Amount below avg human contribution score, below which a bot should raise its difficulty) | |
bot_chatter normal | |
bot_defer_to_human_goals 0 | |
bot_defer_to_human_items 1 | |
bot_difficulty 1 | |
bot_quota 10 | |
bot_quota_mode fill | |
cash_player_bomb_defused 200 | |
cash_player_bomb_planted 200 |
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
Inxalaaaaaa, quanto ouro. |
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
AV SALGADO FILHO | |
AV GUARULHOS | |
AV PAPA JOAO PAULO I | |
AV BRIGADEIRO FARIA LIMA | |
AV DOUTOR TIMOTEO PENTEADO | |
AV MONTEIRO LOBATO | |
AV OTAVIO BRAGA DE MESQUITA | |
AV EMILIO RIBAS | |
AV TIRADENTES | |
AV PRESIDENTE HUMBERTO DE ALENCAR CASTELO BRANCO |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
openapi: 3.0.0 | |
info: | |
title: DICT API | |
version: 1.0.0-RC2 | |
license: | |
name: Apache 2.0 | |
url: 'http://www.apache.org/licenses/LICENSE-2.0' | |
contact: | |
name: Suporte TI BCB | |
email: [email protected] |
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
{ | |
"version": "1.0", | |
"columns": 2, | |
"tiles": [ | |
{ | |
"type": "PING", | |
"label": "Ping Vivareal", | |
"params": { | |
"hostname": "www.vivareal.com.br" | |
} |
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 boto3 | |
import requests | |
# docs - https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.BucketAcl.put | |
def s3_remove_acl_public(bucket_name: str): | |
bucket_acl = s3_acl(bucket_name) | |
bucket_acl.put( | |
ACL='private', | |
) | |
return bucket_acl |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder