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
/*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'); |
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/ | |
####################################### | |
# 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 ## |