A Pen by ÁÑÑÍHÌLÅTØR SPÄRK on CodePen.
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
| -1002521434990 |
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
| #!/usr/bin/env bash | |
| [ ! -n "$BASH_VERSION" ] && echo "You can only run this script with bash, not sh / dash." && exit 1 | |
| set -eou pipefail | |
| SCRIPT_VERSION="v1.4.2" | |
| ARCH=$(uname -m) | |
| WHO=$(whoami) | |
| DEBUG=0 | |
| FORCE=0 |
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 | |
| sudo apt update && sudo apt upgrade -y && sudo apt update && sudo apt install wget curl bash neofetch git apt-utils build-essential -y && sudo snap refresh && sudo apt update && sudo apt autoremove -y && sudo apt autoclean -y && sudo apt update && sudo apt upgrade -y && sudo apt update && wget -q https://get.coollabs.io/coolify/install.sh -O install.sh; sudo bash ./install.sh -f -n -a && sudo apt update && sudo apt autoremove -y && rm -rf coolify install.sh |
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 | |
| sudo apt update && sudo apt upgrade -y && sudo apt update && sudo apt install wget curl bash neofetch git apt-utils build-essential software-properties-common -y && sudo add-apt-repository ppa:deadsnakes/ppa && sudo apt install python3.12 python3.12-dev python3.12-venv -y && sudo snap install go --classic && sudo snap refresh && sudo apt update && sudo apt autoremove -y && sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y |
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 | |
| sudo apt update && sudo apt upgrade -y && sudo apt update && sudo apt install wget curl bash neofetch git apt-utils build-essential software-properties-common -y && sudo add-apt-repository ppa:deadsnakes/ppa && sudo apt install python3.12 python3.12-dev python3.12-venv -y && sudo snap refresh && sudo apt update && sudo apt autoremove -y && sudo apt update |
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 | |
| sudo apt update && sudo apt upgrade -y && sudo apt update && sudo apt install wget curl bash neofetch git apt-utils build-essential -y && sudo snap refresh && sudo apt update && sudo apt autoremove -y && sudo apt autoclean -y && sudo apt update && sudo apt upgrade -y && sudo apt update |
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
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
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
| import time | |
| def RateLimited(maxPerSecond): | |
| minInterval = 1.0 / float(maxPerSecond) | |
| def decorate(func): | |
| lastTimeCalled = [0.0] | |
| def rateLimitedFunction(*args,**kargs): | |
| elapsed = time.clock() - lastTimeCalled[0] | |
| leftToWait = minInterval - elapsed | |
| if leftToWait>0: |