Socket Programming in Python (Guide)

Sockets and the socket API are used to send messages across a network. They provide a form of inter-process communication (IPC). The network can be a logical, local network to the computer, or one that’s physically connected to an external network, with its own connections to other networks. The obvious example is the Internet, which you connect to via your ISP. In this tutorial, you’ll create: A simple socket server and client An improved version that handles multiple connections simultaneously […]

Read more

SpaceCrypto Bot Auto Clicker

Também fiz um para Luna Rush ( https://github.com/walterdis/lunarush-bot ) Bot desenvolvido com o intuito de me permitir dormir durante a noite e, poder dar uma volta por ai sem ficar me preocupando com horário 😉 Se o aplicativo lhe ajudar de alguma forma, uma doação para ajudar a pagar a conta de luz sempre é bem vinda 😉 Wallet Smart Chain (BNB, LUS, USDT, BUSD) 0x1F66230C4e98b557D3e55d7d2C047CcbA8E55bD6 O jogo se redimensiona de acordo com a resolução / qualquer modificação na tela […]

Read more

This Script is Framework To automate IP process large scope For Bug Hunting

This Script is Framework To automate IP process large scope For Bug Hunting Tools : metabigor, mapcidr, nrich ,httpx what Framework Do : Get CIDR From CIDR Get IPs Scanning Open Ports in each IP and Find a related vulnerabilities Check a Live Host installation git clone https://github.com/muhammeddardir/IPscan.git cd IPscan chmod +x IPScan.py req.sh ./req.sh Usage python3 IPScan.py -t domain GitHub View Github    

Read more

A Python scripts for a speech processing pipeline with Voice Activity Detection (VAD)

Python scripts for a speech processing pipeline with Voice Activity Detection (VAD), Spoken Language Identification (SLI), and Automatic Speech Recognition (ASR). Our use case involves using VAD to detect time regions in a language documentation recording where someone is speaking, then using SLI to classify each region as either English (eng) or Muruwari (zmu), and then using an English ASR model to transcribe regions detected as English. This pipeline outputs an ELAN .eaf file with the following tier structure (_vad, […]

Read more

LayerNorm(SmallInit(Embedding)) in a Transformer to improve convergence

LayerNorm(SmallInit(Embedding)) in a Transformer I find that when training a transformer, the embedding matrix moves slowly, hence it’s difficult for the model to jump out of the initial noisy embedding. (initial embedding) [[-0.0073 0.0062 -0.0261 … 0.0086 0.0107 -0.008 ] … ] (after 1 step, the directions of the embedding vectors are not moved much because the numbers change by ~LR = ~4e-4) [[-0.0069 0.0066 -0.0265 … 0.009 0.0111 -0.0084] … ] So I propose initializing the embedding matrix to […]

Read more

A web app showcasing OAuth2.0 + OpenID Connect using Firebase, Django-Rest-Framework and React

OAuth2.0 What is OAuth? OAuth is an authorization protocol that provides users to grant websites or applications access to their information on other websites Oauth became so popular that people started using OAuth for authentication, which OAuth is not built for. That’s where OpenID connect comes in. OpenID connect is on the top layer of oauth2.0 which provides authentication to users on the server side. This is image was taken from a talk given by Nate Barbettini you can check […]

Read more
1 254 255 256 257 258 978