This file contains 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 | |
alias a="sudo apt" | |
if [ $# -eq 0 ]; then | |
echo "Please give a domain"; | |
fi | |
mkdir -p /var/www/$1/public_html | |
chown -R root:root /var/www/$1/public_html | |
chmod -R 755 /var/www/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
use std::io::BufRead; | |
pub struct Interpreter { | |
tape: Option<Vec<u8>>, | |
loopv: Option<Vec<usize>>, | |
index: usize, | |
ptr: usize, | |
} | |
impl Interpreter { |
This file contains 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
local bytecodes = {} | |
local BC, run_function = {} | |
local VARG_CONST = {} | |
local lujlu_mt_funcs | |
local lujlu_cache = setmetatable({}, {__mode = "k"}) | |
local lujlu_identifier_mt = { | |
__tostring = function(self) | |
return tostring(lujlu_cache[self].data) | |
end, |
This file contains 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
--[[ | |
[Melon's Rounded Boxes] | |
Want a rounded box that has a material? | |
Want it to look nice? | |
Want also to be able to draw any form of rounded polygons? | |
WELL YOURE IN LUCK! | |
Remember to cache your polygons | |
and to credit me :) (https://github.com/garryspins) |
This file contains 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
import pynput | |
import pydirectinput | |
from ctypes import windll, create_unicode_buffer, wintypes | |
class KeyboardListener(pynput.keyboard.Listener): | |
is_shift_down = False | |
def __init__(self): | |
return super().__init__(on_press = self.on_press, on_release = self.on_release) |