473 skills found · Page 5 of 16
danyspin97 / RinstallDeclarative install for programs
couleur-tweak-tips / The Installer⬇ Script to install and setup Scoop (an UAC-less Windows package manager) along with ALL your favorite programs.
fubarhouse / Ansible Role RustAnsible role for installing the Rust programming language
yeswehack / MyopenvdpMyOpenVDP is a free web application to install a vulnerability disclosure policy or a vulnerability disclosure program on your assets. (VDP)
marcoDallas / Acpi Call GUI SystemdThis is a java program that allows the user to simply install and use acpi_call kernel module via graphic Interface, and also provides an useful script that automatically recompiles the kernel after each update. Now with support for systemd!
0xcabrex / Pentest ToolsA small program that installs tools that you might need for pentesting
sammyay / Tool XIntroduction Tool-X is a Kali Linux hacking tools installer for Termux and linux system. Tool-X was developed for Termux and linux based systems. Using Tool-X, you can install almost 370+ hacking tools in Termux (android) and other Linux based distributions. Now Tool-X is available for Ubuntu, Debian etc. A similar lightweight and fast tool onex is available. We can use onex instead of Tool-X Operating System Requirements Tool-X works on any of the following operating systems: • Android (Using the Termux App) • Linux (Debian Based Systems) • Unix How to Install Open the terminal and type following commands. apt update apt install git git clone https://github.com/rajkumardusad/Tool-X.git cd Tool-X chmod +x install sh install if not work than use ./install How to Use ? Enter a Number for a specific output: (1) : To show all available tools and type the number of a tool which you want to install. (2) : To show tools category. (3) : If you want to update Tool-X. (4) : If you want to know About Us. (x) : To exit the tool. Type Tool-X or toolx from anywhere in your terminal to open Tool-X. Warning We are not responsible for any misuse or damage caused by this program. use this tool at your own risk!
AnbuKumar-maker / AI On Jetson NanoI have created a series of programs using NVIDIA Jetson Nano, Pi Camera and Logitech Web Camera. I installed OpenCV version 4 along with Python 3 to create these sample programs
Nawor3565 / Windows 10 DeBloaterWindows 10's auto-installing bloatware is getting worse with every update. This is an all-in-one program that runs a compilation of registry edits and commands to help de-bloat Windows 10.
mavenlin / ListProgramsC++ Code to Show all Installed Programs on Windows
tazboyz16 / Ubuntu Server Auto InstallAuto Install for Ubuntu Server Iso with Auto installing Scripts with Programs Scripts Installs/Reinstall with Configs and Systemd service file
YourDroid / YourDroidAn open-source program installing Android on Windows and Linux
craigsapp / HumextraC++ programs and library for processing Humdrum data files. Best to install from https://github.com/humdrum-tools/humdrum-tools . See https://github.com/craigsapp/humlib for modernized Humdrum file parsing library.
ind3p3nd3nt / RDPWraperEasy and automatic termsrv.dll patcher for Windows 10 1909 version 18363.959 - with updated ini file. To install make a "RDP Wrapper" directory in Program Files, Copy all those files inside then disconnect internet and in Command Prompt window execute "RDPWinst.exe -i"
Mikael / VIPBotIf you already know everything about hosting a bot, you can skip this text file. If not, I'll quickly run through the process of creating a Discord Bot account with you so you can get started with your own custom Discord bot. Also I'll give you a brief overview of the possible ways to host a bot. == 1) CREATING A DISCORD BOT ACCOUNT == You need a Discord bot account to be able to run the code I've written for you. - Make sure you're logged on the Discord *website* here: https://discord.com/ - Open up this page in your web browser: https://discord.com/developers/applications - Click the "New Application" button on the top right. - Give your application a name and then click "Create". - Create a Bot account by navigating to the "Bot" tab and clicking "Add Bot". - If you want your bot to be able to invited by others, tick the "Public Bot" checkbox. - Copy the Token using the "Copy" button. - Replace TOKEN in the config.json with the bot token you just copied. WARNING: Do not UNDER ANY CIRCUMSTANCES share this Token with anyone as it's like a password for your bot. A Discord employee will never ask for it. Also, if your Bot is public and someone gets hold of the Token, they can wreak havoc on any server that the bot is on, including potentially deleting all messages. If your Token got leaked, make sure to click "Regnerate" as fast as possible to minimize the damage. == 2) INVITING THE BOT TO YOUR SERVER == Now that your bot has been created, you can invite it to your server. - Now click the "OAuth2" tab on the application page you were on for creating your bot. - Tick the "bot" checkbox under "Scopes" - Tick the permissions your bot will need to function properly. You can find the necessary permissions in the text file called "Needed permissions.txt" - you can also give your bot the Administrator permission, but keep in mind that this means that the bot has every possible permission. - In the "Scopes" section you will find the link to invite your bot to any server that you have the "Manage Server" permission on. == 3) HOSTING THE BOT == There are in general two ways to host your bot: Either you host the bot yourself on your computer (or any other local machine you have physical access to like a Raspberry Pi or even a smartphone) or you host it on a VPS (= Virtual Private Server), which is basically a small, cheap server that runs 24/7. Both have advantages and disadvantages: - When you host the bot on a local device, it's way easier to setup the bot and get running quickly, yet you have to keep that device powered on all the time, which might be undesirable. - A cheap VPS will cost you a few bucks monthly and you have to use SSH to connect to it and set it up, but it will be powered on 24/7 and will usually be a better overall solution for such a bot. == 3a) HOSTING THE BOT ON A LOCAL DEVICE == To run the bot on a local device, you need to have Python installed and install the necessary modules for Python. You can download the newest version of Python here: https://www.python.org/. Make sure to let the installer include Python in $PATH. Now install the modules. You can do that on Windows by navigating into the folder where this text document is, pressing Shift + Right click anywhere in the folder, clicking "Open in PowerShell" and running this command: python -m pip install -r requirements.txt The steps should be very similar on Linux and macOS. If it says something along the lines of "'python' not found", try it with python3 instead or without "python -m" entirely and if it still doesn't work, your Python installation might be screwed up. Try reinstalling Python. To run your bot, just run "python main.py" (without quotation marks); "python3" instead of "python" might work too. If you get a message that looks like "python: can't open file 'main.py': [Errno 2] No such file or directory", you're probably not in the right folder with your command prompt. == 3b) HOSTING THE BOT ON A VPS == The process of hosting your bot on a VPS is more complicated and will inevitably require you to do most of the research on your own, but I can boil it down to the following steps (considering that your VPS runs some Linux distribution like Debian or CentOS - if it runs Windows, install a Linux distribution). In general: - First of all, get the VPS up and running and establish a connection to it via SSH* (native on Linux and Mac, use PuTTY on Windows for that) on your machine. - Transfer the whole folder with the bot over to the VPS over e.g. SFTP (you could use FileZilla for that and don't use normal FTP, it's not secure). - Configure the VPS to your needs (like installing Python and other needed programs and libraries). - Get a supervisor running (you could use supervisord for that) and let it take care of running your bot. - Take security measures like closing unneeded ports, using keyfiles for SSH, not allowing root connections with SSH etc. - Think of a good backup strategy, in case something happens to the valuable data on your VPS. If you're using a VPS, it's very easy to screw something up (like not properly securing the SSH connection with keyfiles), so please do *A LOT* of research on how to run and maintain a VPS, otherwise you might end up having your database leaked or something similar. If you have further questions about hosting a Discord bot, just hit me up, I'll be glad to help. But I will not host your bot. * SSH = Secure Shell, a way to securely build up a remote connection to a server and use the command line in it, also includes SFTP for file transfer == 4) VPS CHOICE == The discord.py community recommends the following VPS providers: - https://scaleway.com/ - Incredibly cheap but powerful VPSes, owned by https://online.net/, based in Europe. - https://digitalocean.com/ - US-based cheap VPSes. The gold standard. Locations available world wide. - https://ovh.co.uk/ - Cheap VPSes, used by many people. France and Canadian locations available. - https://time4vps.eu/ - Cheap VPSes, seemingly based in Lithuania. - https://linode.com/ - More cheap VPSes! - https://vultr.com/ - US-based, DigitalOcean-like. - https://galaxygate.net/ - A reliable, affordable, and trusted host, Used by Dank Memer, Rythm, and many other people. Using one of the cheaper options is usually a good start and will do just fine for small bots (up to a around hundred servers) and most providers will give you a way to smoothly upgrade your current plan. But it of course also depends on what your bot can do: Does it save a lot (= many gigabytes) data, is it usually in many voice channels, does it do image/video manipulation a lot? But there are lots of other providers, just do a Google search and you'll be sure to find the right one. Be wary of free hosting providers like Heraku, those services are not made to host Discord bots and you'll run into issues when trying to do so (believe me, I've fallen for them myself). If you have a spare Raspberry Pi, you can theoretically use it, but it will have subpar performance (especially if it's older or weaker than the Raspberry Pi 3B+). That's about it, hopefully this helped you. If there's something wrong with your bot or something's not working, contact me. - Mikael.
bgbennyboy / Grim Fandango Setup And LauncherThere are two parts to this project; an installer and a launcher program. A replacement installer (setup program) for Grim Fandango. The installer that comes with the game can be problematic with newer versions of Windows and refuses to work at all on 64 bit Windows. An improved version of the launcher program that shipped with Grim Fandango, it has a number of features not present in the original launcher.
thehacktool / The Hack ToolsRed Crucible 2 Hack Tool<br><br>In Rope n swing, Excellent password &e5PSWQtdH%#Terrible Password helloIf you actually neglect your password or will need to change it you can do so by dealing with the Password Retrieval support on the state WoW site, widgets are apps which are ran directly on the residence screen for overall customization and consumption. You probably won't surmise how superb it is. You can download Tony's e-publication to your computer for a very low price, and you begin improving your Farmville abilities already in the initial moment. Disable any anti-virus applications before running Cheat Motor; some of these programs may interfere with Cheat Engine's operations. You will see a list of games on your pc which Cheat Engine can access.<br><br>This is the Genuine Basketball hacks, cheats, application, trainer focusing on Android that will offer you free endless MP, unlock game settings for all-stars and block, go shopping hack, achievements hack, and much more. You can utilize the MP developed by Genuine Basketball cheats tool. Genuine Basketball Android trainer is easy to use and you can easily add Serious Basketball MP in your account with just a few clicks of button. This can be the answer to the question how exactly to hack or cheat Real Basketball Android video game app.<img class='alignleft' style='float:left;margin-right:10px;' src='http://s1.dmcdn.net/EwEaU/x240-rnm.jpg' width='253' /><br><br>Soon after the initially week when members are launched to the extremely fundamentals of iPhone app enhancement, more than 1. For these consumers, this allows for user to retain the similar telephone quantity wherever they go. We cheat to have the edge on competitors or even to just get forward in life, and sending them to school to find how to study and compose. Dead Trigger 2 is constantly evolving and growing.<br><br>Simply exclusion is if you wish to use Superstar Trek Online Hack hack more regularly than once per 26 hours. Last step is to click Connect” key and await message Connected” to seem next to it. When you start to see the message Connected” you can carry on to lessen tab with actual Star Trek Online Hack. If you need it is possible to download and install Celebrity Trek Online Hack motor for free right from this web-web site.<div style='text-align:center'><iframe width='500' height='350' src='http://www.youtube.com/embed/oaOsBqABU8I' frameborder='0' allowfullscreen></iframe></div><br><br>With Empire Four Kingdoms Hack you will generate limitless rubies, gold, lumber, foods and stone. Our hack device doesn't demand jailbrake or root to perform so everybody can use it on their machine. Empire Four Kingdoms Hack will generate items for you in a couple of <a href="http://thehacktools.com">hack</a> seconds. Simply download Empire Four Kingdoms Hack and produce all you need! Our hack tool runs on all portable based devices and it's very easy to utilize. Software program below to download and employ good-bye.
erikdubois / ArchXfce4Automated script to install Xfce and all its programs on Arch Linux
axgle / Serviceservice will install / un-install and run a program as a service (daemon).
EnriqueStrange / AndroidpinbruteforcepicoThis program can be taken in use to brute force android security pin with raspberry pi pico installed with adafruit_circuitpython_hid and circuit python module more details on youtube channel - STRANGE LEARNINGS