Greetings,
piNomite aims to provide you with all the tools and resources you need to jumpstart your Raspberry Pi projects. Please let me know if you have any feature request or discover any bugs.
Cheers,
Brandon
$( document ).ready(function() { | |
//Abbey Connor | |
// | |
var hidePlay_abbeyConnorsBio = function(){ $('.play_abbeyConnorsBio').hide(); }; | |
var showPlay_abbeyConnorsBio = function(){ $('.play_abbeyConnorsBio').show(); }; | |
var hidePause_abbeyConnorsBio = function(){ $('.pause_abbeyConnorsBio').hide(); }; | |
var showPause_abbeyConnorsBio = function(){ $('.pause_abbeyConnorsBio').show(); }; |
#!/bin/bash | |
# The script will fail at the first error encountered | |
set -e | |
echo "Type the name for your database, followed by [ENTER]:" | |
read DB | |
echo "Type the username for your database, followed by [ENTER]:" | |
read USR |