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 | |
echo "cloning instructlab" | |
git clone https://github.com/instructlab/instructlab.git | |
echo "Creating a new venv" | |
python3 -m venv --upgrade-deps venv | |
echo "Activating venv" | |
source venv/bin/activate | |
echo "Installing..." | |
pip install instructlab | |
echo "Initializing default config" |
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 | |
# @Link to the teams docs / confluence / etc. | |
main() { | |
if [[ $1 == "-h" ]]; then | |
print_usage | |
exit 0 | |
fi | |
OS=$1 | |
docker_authenticate |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=<device-width>, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Captain Planet: The Game</title> | |
<!-- Bootstrap File --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> | |
<!-- JQuery --> |
Look at script_lines.character_id == characters.id AND script_lines.episode_id == episodes.id which gives us the title
and original_air_date
Query multiple tables (episodes, characters) - Find when the character moe szyslak
first appears.
Refactor our SQL to use JOINS
SELECT * FROM `script_lines`, `characters`, `episodes`
WHERE `characters`.`name` = 'moe szyslak'
AND `characters`.`id` = `script_lines`.`character_id`
NewerOlder