Using twitter lists as your feed

A while ago, Twitter changed their timeline to be algorithmically-fed rather than a simple reverse-chronological feed. In particular, they push a lot of content on me from people I don’t follow, which I really don’t like. You can fix this by using Twitter Lists. Lists are exactly reverse-chronological, and they only show content from people you follow. The problem, though, is that following someone no longer corresponds to adding them to your feed. You have to explicitly add them to […]

Read more

Represents a Lavalink client used to manage nodes and connections

Represents a Lavalink client used to manage nodes and connections. setup setup lavalink you need to java 11* LTS or newer required. install lavalink last version, create application.yml, run the server config lavaplayer server info from .LavalinkClient() set information connection host=”127.0.0.1″, # server ip address port=8888, # port password=”password”, # password authentication bot_id=123 # bot id license take to LICENSE file GitHub   To finish reading, please visit source site

Read more

A repository that finds a person who looks like you by using face recognition technology

Hello everyone, I’ve always wondered how casting agencies do the casting for a scene where a certain actor is young or old for a movie or TV show. I respect the art of make-up, but I am one of those who think that a different actor should play in that scene. If we look at the developments in computer vision in recent years, there will be no need for make-up in such cases. I think that face swapping and similar […]

Read more

Python’s multithreading and GIL

Python is a great language 😃, but the GIL (Global Interpreter Lock) is a hugebottleneck 😢. It’s a lock that is held by the interpreter while executing any Python code. Thismeans that if you have a bunch of Python threads running, they all will have towait for the GIL to be released. This can be a problem, because the GIL isheld for a long time, which can lead to many performance issues. The GIL is released whenever a thread is […]

Read more

High accurate tool for automatic faces detection with landmarks

High accurate tool for automatic faces detection with landmarks. The library is based on public detectors with high accuracy (TinaFace, Retinaface, SCRFD, …) which are combined together to form an ansamle. All models predict detections, then voting algorithm performs aggregation. 🛠️Prerequisites Install Docker Install Nvidia Docker Container Runtime Install nvidia-container-runtime: apt-get install nvidia-container-runtime Set “default-runtime” : “nvidia” in /etc/docker/daemon.json: { “default-runtime”: “nvidia”, “runtimes”: { “nvidia”: { “path”: “nvidia-container-runtime”, “runtimeArgs”: [] } } } Restart Docker: systemctl restart    

Read more

A Discord Tool which checks for valid tokens and adds them to a server

A Discord Tool which checks for valid tokens and adds them to a server Choice 1 is for checking tokens Choice 2 is for adding tokens to server p.s: only give server invite code for example: instead of https://discord.gg/Gz2m7MrJ only give Gz2m7MrJ Only Supports socks5 proxies dw i will update proxies everyday xx you can add your own socks5 proxies or dm me for a fresh batch if anything happens to your discord account its not my responsibility If any […]

Read more
1 310 311 312 313 314 935