This is my Docker-NGINX-IPFS environment.
URL | Description | Redirect |
---|
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <errno.h> | |
/** | |
* Recebe uma lista contendo uint8_t e retorna a soma desses. | |
* Ex: | |
* | |
* uint8_t numbers[] = { 1, 2, 3, 4, 5 }; |
server { | |
listen 80; | |
listen [::]:80; | |
server_name localhost; | |
#access_log /var/log/nginx/host.access.log main; | |
location / { | |
root /usr/share/nginx/html; | |
index index.html index.htm; |
{ | |
"Bootstrap": [ | |
"/dnsaddr/bootstrap.libp2p.io/p2p/QmNnooDu7bfjPFoTZYxMNLWUQJyrVwtbZg5gBMjTezGAJN", | |
"/dnsaddr/bootstrap.libp2p.io/p2p/QmQCU2EcMqAqQPR2i9bChDtGNJchTbq5TbXJJ16u19uLTa", | |
"/dnsaddr/bootstrap.libp2p.io/p2p/QmbLHAnMoJPWSCR5Zhtx6BHJX9KiKNN6tpvbUcqanj75Nb", | |
"/dnsaddr/bootstrap.libp2p.io/p2p/QmcZf59bWwK5XFi76CZX8cbJ4BhTzzA3gU1ZjYZcYW3dwt", | |
"/ip4/104.131.131.82/tcp/4001/p2p/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ", | |
"/ip4/104.131.131.82/udp/4001/quic/p2p/QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ" | |
], | |
"Addresses": { |
This is my Docker-NGINX-IPFS environment.
URL | Description | Redirect |
---|
(() => { | |
const todos = [ | |
() => Array.from(document.getElementsByClassName('selection-toggle-button mdc-button mat-mdc-button mat-primary mat-mdc-button-base gmat-mdc-button')).forEach(el => el.click()), | |
() => document.getElementsByClassName('mat-mdc-tooltip-trigger shopping-bag__toggle mdc-icon-button mat-mdc-icon-button mat-mdc-button-base gmat-mdc-button mat-secondary--gray shopping-bag__toggle--has-items')[0].click(), | |
() => document.querySelector('input[value="import"]').click(), | |
() => document.getElementsByClassName('embed-code__import gmat-caption gf-code-block ng-star-inserted')[0].innerText.split('\n')[1], | |
() => document.getElementsByClassName('mdc-button mat-mdc-button mat-primary mat-mdc-button-base gmat-mdc-button')[1].click(), | |
() => document.getElementsByClassName('actions__close-button mdc-icon-button mat-mdc-icon-button mat-secondary--gray gmat-mdc-button-with-prefix mat-mdc-button-base gmat-mdc-button')[0].click() | |
]; | |
const iter = todos[Symbol.iterator](); |
data:text/html, | |
<body> | |
<textarea spellcheck="false"></textarea> | |
</body> | |
<style> | |
body { | |
display: flex; | |
margin: 0; | |
height: 100vh; |
fun calculateDigit(cpf: List<Int>): List<Int> { | |
val cpfSum = cpf | |
.reversed() | |
.mapIndexed { idx, digit -> (idx + 2) * digit } | |
.sum() | |
val remainder = cpfSum * 10 % 11 | |
val partialCPF = cpf + (remainder % 10) | |
if (partialCPF.size >= 11) |
sagaz | |
âmago | |
negro | |
êxito | |
mexer | |
termo | |
nobre | |
senso | |
algoz | |
afeto |
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ // Run with multiple commands on external terminal | |
"label": "run (external terminal)", | |
"command": "dotnet", | |
"type": "shell", | |
"options": { | |
"cwd": "${workspaceFolder}", | |
"shell": { |
# Put every /opt/*/bin into PATH | |
OPT_BINS=$(find /opt/*/bin -maxdepth 0 -type d,l 2> /dev/null) | |
PATH_OPT_BINS=$(echo $OPT_BINS | sed 's/ \//:\//g') | |
export PATH=$PATH:$PATH_OPT_BINS |