Skip to content

Instantly share code, notes, and snippets.

View EchelOneZero's full-sized avatar

EchelOneZero EchelOneZero

  • Brazil
  • 11:59 (UTC -03:00)
View GitHub Profile
/*By: Jarvis e Dante*/
/* Tab que abre ao clicar no link*/
/* Defina no HREF dos links os ids das tabs = #tab1, #tab2, #tab3 */
/* Defina nas colunas/secoes onde será posto os conteudos o ids das tabs = #tab1, #tab2, #tab3 e em todos eles a classe .tab */
<script>
jQuery(document).ready(function(){
jQuery('#tab1').css('display','block');
@aamnah
aamnah / install-apps.sh
Last active June 24, 2023 13:14
Bash script to install packages [Git, s3cmd] on a new system. For Debian and Ubuntu. To run, copy the script to the server and run ``bash install-apps.sh``
#!/bin/bash/
#######################################
# Bash script to install apps on a new system (Ubuntu)
# Written by @AamnahAkram from http://aamnah.com
#######################################
## Update packages and Upgrade system
sudo apt-get update -y
## Git ##