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
# Abrindo bitwarden | |
$url = "https://vault.bitwarden.com/#/login" | |
$edgePath = "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" | |
if (Test-Path $chromePath) { | |
Start-Process -FilePath $chromePath -ArgumentList $url | |
} else { | |
Write-Host "Chrome is not installed or the path is incorrect." | |
} |
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
Shader "Custom/preto_e_branco_shader" | |
{ | |
Properties | |
{ | |
_MainTex ("Texture", 2D) = "black" {} | |
} | |
SubShader | |
{ |
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
from itertools import permutations | |
from string import ascii_lowercase, digits | |
from itertools import permutations | |
from typing import Generator, List | |
from bs4 import BeautifulSoup | |
import cloudscraper | |
import random | |
import requests | |
import os.path | |
import uuid |