This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
serverName="$1" | |
serverIp="$2" | |
serverType="$3" | |
serverPosition="$4" | |
serversFile="$5" | |
tempFile="$6" | |
exampleUsage="Example: ./$(basename "$0") Hypixel mc.hypixel.net (PC) (bottom) (servers.json) (temp.json)\n* Arguments between () are optional." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2.1" | |
services: | |
nextcloud: | |
image: lscr.io/linuxserver/nextcloud:latest | |
container_name: nextcloud | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Bucharest | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { Client } = require('discord.js-selfbot-v13') | |
const client = new Client({ | |
checkUpdate: false, | |
}) | |
const channelId = process.env.CHANNEL_ID | |
async function fetchAllMessages(channelId) { | |
const channel = client.channels.cache.get(channelId) | |
let messages = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Boosteroid Contrast | |
// @namespace https://boosteroid.com | |
// @version 0.1 | |
// @description Changes stream contrast and brightness to 100% | |
// @author Rmly | |
// @match https://cloud.boosteroid.com/static/streaming/streaming.html?session=* | |
// @icon https://cloud.boosteroid.com/favicon.ico | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
script_name('Fish-Utils') | |
script_author('Rmly') | |
script_version('1.0') | |
local sampev = require 'samp.events' | |
local prefix = "{0ed2e8}[FISH-UTILS]:{b9bcbd}" | |
function main() | |
repeat wait(100) until isSampAvailable() | |
local ts = thisScript() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Manelizor</title> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $EUID -ne 0 ] | |
then | |
echo "This script must be run as root" | |
exit | |
fi | |
if ! grep -q 11 '/etc/debian_version' | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ip=$(curl -s myipv4.r0.al) | |
date=$(date +'[%m.%d.%Y %r]:') | |
api_key="" | |
zone_id="" | |
dns_identifier="" | |
name="" | |
curl -s -f -X PUT "https://api.cloudflare.com/client/v4/zones/$zone_id/dns_records/$dns_identifier" \ | |
-H "Authorization: Bearer $api_key" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from random import randint | |
min = 1 | |
max = 10 | |
number = randint(min, max) | |
tries = 1 | |
while True: | |
print(f'Try {tries}') | |
answer = input(f'Guess the number between {min} and {max}: ') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
brightness="/sys/class/backlight/intel_backlight/brightness" | |
current=$(cat $brightness) | |
if [ $1 -eq 0 ]; then | |
new=$(( current + 10000 )) | |
else | |
new=$(( current - 10000 )) | |
fi |
NewerOlder