HTTP proxy pool server primarily meant for evading IP whitelists

HTTP proxy pool server primarily meant for evading IP whitelists. Create a file named proxies.txt and fill it with your HTTP proxies. Replace the AUTH_KEY constant in server.py with something secure. Set your firewall to allow TCP port 5407. Run server.py. import requests # proxy index auth key # v v proxy_url = “http://0:[email protected]:5407″ resp = requests.get( url=”https://api.ipify.org/?format=json”, proxies={“https”: proxy_url} ) print(resp.json()) GitHub View Github    

Read more

Zaid Vc Player Allows u to steam Songs/music on vc chat

ᴢᴀɪᴅ ᴠᴄ ᴘʟᴀʏᴇʀ🔥 SORRY FOR OUR PROJECTS DELETED BY GITHUB FLAGGED ᴢᴀɪᴅ ᴠᴄ ᴘʟᴀᴇʀ ɪꜱ ᴀ ᴛᴇʟᴇɢʀᴀᴍ ᴘʀᴏᴊᴇᴄᴛ ʙᴀꜱᴇᴅ ᴏɴ ᴘʏʀᴏɢʀᴀᴍ ꜰᴏʀ ᴘʟᴀʏ ᴍᴜꜱɪᴄꜱ ɪɴ ᴠᴄ ᴄʜᴀᴛꜱ… 🅡🅔🅟🅞 🅢🅣🅐🅣🅢 ʀᴇQᴜɪʀᴇᴍᴇɴᴛꜱ 📝 🧪 ɢᴇᴛ STRING_SESSION ꜰʀᴏᴍ ʜᴇʀᴇ: @genStr_Bot ᴄᴏᴍᴍᴀɴᴅꜱ CLICK HERE ꜰᴇᴀᴛᴜʀᴇꜱ ᴡɪᴛʜ ᴀɪ 🔥️ ᴘʟᴀʏ ᴍᴜꜱɪᴄ ɪɴ ᴛᴇʟᴇɢʀᴀᴍ ɢʀᴏᴜᴘ    

Read more

Create CDK projects with projen

I’ll be back! Description This is a CDKv2 project that takes the grind out of setting up new cdk projects/implementations by using automation When deployed this project will create for each ‘template’ a set of resources; a ssm automation document which ‘kicks’ off the process of creating a new ‘instance’ of your template a lambda which acts as ‘glue’ between the ssm automation document and a codebuild project which creates a cdk project based on the parameters you pass into […]

Read more

Machine Translation Weekly 96: On Evaluation of Non-Autoregressive MT Systems

I often review papers on non-autoregressive machine translation a tend the repeat the same things in my reviews. The papers often compare non-comparable things to show the non-autoregressive models in a better light. Apart from the usual flaws in MT evaluation, non-autoregressive papers often (with honorable exceptions) get lost in the knowledge distillation setup. In general, papers tend to motivate non-autoregressive MT by potential speedup. Although it is an important motivation, it is not the main motivation for me. By […]

Read more

Multi-domain Multilingual Question Answering

This post expands on the EMNLP 2021 tutorial on Multi-domain Multilingual Question Answering. The tutorial was organised by Avi Sil and me. In this post, I highlight key insights and takeaways of the tutorial. The slides are available online. You can find the table of contents below: Introduction Open-Retrieval QA vs Reading Comprehension What is a Domain? Multi-Domain QA Datasets for Multi-Domain QA Multi-Domain QA Models Multilingual QA Datasets for Multilingual QA Multilingual QA Models Open Research Directions Question answering […]

Read more

Rotates your images in the spirit of rot13

Its like rot13 but for images. Calling the algorithm imrot10 for im = image, rot = rotation, 10 = default magnitude. Unfortunately it is not symmetric like rot13 but i’m not wasting my time to develop fully symmetric so you have to use the -u parameter to undo it. python3 image-rotator.py -h usage: image-rotator.py [-h] [-i INPUT] [-o OUTPUT] [-u [UNDO]] [–magnitude MAGNITUDE] optional arguments: -h, –help show this    

Read more

A telegram bot to interact with a Minecraft Server

A telegram bot to interact with a Minecraft Server It has the following commands: /status – Returns the server status (Online/Offline). /ip – Returns the IP of the server. /uptime – Minecraft server uptime. /list – List online players. /say – Sends an ingame message to the players. /craft – Shows the crafting recipe for a certain block/item. /version – Displays the server version. /help – This help. GitHub View Github    

Read more

SAN for Product Attributes Prediction

Heterogeneous Star Graph Attention Network for Product Attributes Prediction This repository contains the official PyTorch implementation for ADVIE Paper “Heterogeneous Star Graph Attention Network for Product Attributes Prediction“.We also present the Alibaba Custermers Interaction Dataset used in this paper. Citation If you find this code or dataset is helpful, please kindly consider citing the following papers: Zhao, Xuejiao, et al. “Heterogeneous star graph attention network for product attributes prediction.” Advanced Engineering Informatics. 51, 101447. 2022.

Read more
1 334 335 336 337 338 935