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
test |
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
✦ ˚ * . . ✦ , . . ゚ . . , . ☀️ . . . ✦ , 🚀 , . . ˚ , . . . * ✦ . . . . 🌑 . . ˚ ゚ . . 🌎 , * . . ✦ ˚ * . . | |
. ✦ ˚ * . |
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
<!-- Stars --> | |
<div class="stars"> | |
<div class="starWrap starProject"> | |
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 599.456 593.71" enable-background="new 0 0 599.456 593.71" xml:space="preserve" id="stars"> | |
<circle fill="#FFFFFF" cx="287.793" cy="0.398" r="0.398"/> | |
<circle fill="#FFFFFF" cx="300.965" cy="15.945" r="0.398"/> | |
<circle fill="#FFFFFF" cx="306.237" cy="22.961" r="0.398"/> | |
<circle fill="#FFFFFF" cx="282.496" cy="16.214" r="0.398"/> |
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
#Progressbar in ruby | |
def progress(value, maxvalue) | |
return ' 0% |' + ('+' * ((value * 70) / maxvalue)) + ('-' * (70 - (value * 70) / maxvalue) + '| 100% ') | |
end | |
#demo : | |
puts progress(10,33) |
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
require 'net/http' | |
require 'json' | |
# XX CONFIG XX | |
api_id = 1 #APPID | |
api_hashid = "HASHID" | |
api_currentbuild = 1 #BUILDID | |
api_endpoint = "API ENPOINT" |
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
{"lastUpload":"2020-09-17T18:54:22.188Z","extensionVersion":"v3.4.3"} |
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
[ "$UID" -eq 0 ] || exec sudo "$0" "$@" | |
su | |
apt install unzip curl ; rm -rf /tmp/acun* | |
apt install libxdamage1 libgtk-3-0 libasound2 libnss3 libxss1 libx11-xcb1 -y | |
cd /tmp; rm master.zip -f | |
curl -L -o master.zip http://github.com/neolead/acunetix-linux/zipball/master/ | |
unzip master.zip | |
cd `ls|grep neolead` && cat acupatch* > acupatch.tgz | |
tar -zxvf acupatch.tgz | |
chmod +x ./acunetix_trial.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
[ | |
[ | |
{ | |
"id": 1, | |
"type": "dev", | |
"joke": "Les filles c'est comme les noms de domaine.", | |
"answer": "Celles que j'aime sont déjà prises." | |
}, | |
{ | |
"id": 2, |
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
[ { id: "CREATE_INSTANT_INVITE", desc: "Permet de créer des invitations instantanées" }, | |
{ id: "KICK_MEMBERS", desc: "Permet de kicker les membres" }, | |
{ id: "BAN_MEMBERS", desc: "Permet de bannir des membres" }, | |
{ id: "ADMINISTRATOR", desc: "Permet toutes les permissions et contourne les écrasements de permissions des canaux" }, | |
{ id: "MANAGE_CHANNELS", desc: "Permet la gestion et l'édition des canaux" }, | |
{ id: "MANAGE_GUILD", desc: "Permet la gestion et l'édition de la guilde" }, | |
{ id: "READ_MESSAGES", desc: "Permet de lire les messages sur un canal. Le canal n'apparaîtra pas pour les utilisateurs sans cette autorisation" }, | |
{ id: "SEND_MESSAGES", desc: "Permet d'envoyer des messages dans un canal." }, | |
{ id: "SEND_TTS_MESSAGES", desc: "Permet d'envoyer des messages /tts" }, | |
{ id: "MANAGE_MESSAGES", desc: "Permet de supprimer les messages des autres utilisateurs" }, |
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
curl https://download.java.net/java/ga/jdk11/openjdk-11_osx-x64_bin.tar.gz \ | |
| tar -xz \ | |
&& mv jdk-11.jdk java |
OlderNewer