Skip to content

Instantly share code, notes, and snippets.

View allanvobraun's full-sized avatar

Allan Braun allanvobraun

  • curitiba, parana, brasil
View GitHub Profile
@allanvobraun
allanvobraun / install.ps1
Last active March 17, 2024 23:59
Install apps windows
# 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."
}
@allanvobraun
allanvobraun / preto_e_branco.shader
Created August 22, 2022 02:32
Shader preto e branco
Shader "Custom/preto_e_branco_shader"
{
Properties
{
_MainTex ("Texture", 2D) = "black" {}
}
SubShader
{
@allanvobraun
allanvobraun / roubando_prints.py
Created September 27, 2021 23:52
Um script para pegar prints do lightshot (NÃO É TOTALMENTE ALEATORIO) imagens vao se repetir
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