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
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
// © angelportinari17 | |
//@version=5 | |
strategy("Probabilistic Strategy", overlay=true, max_bars_back=5000, max_labels_count=500, margin_long=0.01, margin_short=0.01, initial_capital = 1000) | |
import Wpkenpachi/WpProbabilisticLib/1 as WpProb | |
// INPUTS | |
int days_before = input.int(1, "Qtd. Dias atrás", minval = 1, maxval = 50, step = 1) | |
int qtd_candles_before = input.int(89, "Qtd. Candles para trás", minval = 5, maxval = 500, step = 1) |
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
type Eq<A, B> = <X>(a: A, eq: (x: A & B) => X) => X; | |
const refute = (x: never) => x; | |
const refl = <A, X>(a: A, eq: (x: A) => X) => eq(a); | |
const sickos = <A>(x: A, eq: Eq<A, number>) => eq(x, (x) => x); | |
const two = sickos(2, refl); | |
type Ty<A> = | |
| { tag: "number"; eq: Eq<A, number> } | |
| { tag: "string"; eq: Eq<A, 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
import dns.resolver as resolver | |
import pandas as pd | |
domains_csv = pd.read_csv('./domains.csv') | |
domains = domains_csv.values.tolist() | |
found = [] | |
for domain in domains: | |
dname = domain[0] | |
try: | |
output = list(dns.resolver.resolve(dname, 'MX')) |
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
Segue uma lista com várias Inteligências Artificiais. | |
> https://chat.openai.com/ - Chat do Elon Musk | |
> https://lnkd.in/dRvAyAAk - Comunidade OpenAI | |
> https://lnkd.in/dY8v33nG - TheGptTimes Escreva uma noticia com 3 tweets. | |
> https://lnkd.in/d6MM5DZf - Crie imagens baseadas em texto com essa IA. | |
> https://lnkd.in/dURDahxJ - Crie imagens baseadas em texto com essa IA. | |
> https://codewp.ai/ - Scripts para Wordpress | |
> https://www.sitekick.ai/ - Crie Landpages com IA dizendo como você quer via texto. | |
> https://humanpal.io/ - Crie Avatares com aparência humana única |
OlderNewer