Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
GateraGael committed Jul 5, 2021
1 parent 40b7489 commit 8bc7027
Show file tree
Hide file tree
Showing 22 changed files with 2,364 additions and 495 deletions.
246 changes: 0 additions & 246 deletions .ipynb_checkpoints/03. P3 - Debug Code Techniques-checkpoint.ipynb

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"![BWSI Logo](./images/bwsi_logo.png)\n",
"\n",
"<h1><div align=\"left\"> Python Debugging Techniques </div></h1>"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<div align=\"center\"><iframe \n",
"src=\"https://docs.google.com/presentation/d/1vDkaKen1wivX2UlphCVrgPymdE5MZdBO6XXpf9P339E/edit?usp=sharing\"\n",
"frameborder=\"0\" width=\"900\" height=\"550\" allowfullscreen=\"false\" mozallowfullscreen=\"true\" webkitallowfullscreen=\"false\"></iframe></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%%HTML\n",
"\n",
"<div align=\"center\"><iframe \n",
"src=\"https://docs.google.com/presentation/d/1vDkaKen1wivX2UlphCVrgPymdE5MZdBO6XXpf9P339E/edit?usp=sharing\"\n",
"frameborder=\"0\" width=\"900\" height=\"550\" allowfullscreen=\"false\" mozallowfullscreen=\"true\" webkitallowfullscreen=\"false\"></iframe></div>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Practical\n",
"\n",
"In order to practice your newly found python debugging skills and apply your github.\n",
"\n",
"Git clone the following repository into your notebook workspace.\n",
"\n",
"```console\n",
"https://github.com/BWSI-UAV/bugged_zip_sims_repo\n",
"```\n",
"Create your own branch of the \n",
"\n",
"## Pip Install Pygame\n",
"\n",
"```console\n",
"python3 -m pip install pygame\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"## Demo Here"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.16"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
2 changes: 1 addition & 1 deletion 01. P1 - Unix.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
"\n",
"Do both by chaining commands\n",
"```\n",
"mv renamed_file.txt ~/catkin_ws/src/linux_course_files/move_bb8_pkg/src;cd ~/catkin_ws/src/linux_course_files/move_bb8_pkg/sr\n",
"mv renamed_file.txt ~/catkin_ws/src/linux_course_files/move_bb8_pkg/src;cd ~/catkin_ws/src/linux_course_files/move_bb8_pkg/src\n",
"```\n",
"\n",
"Please type in the **ls -l** command again in order to see the files.\n",
Expand Down
Loading

0 comments on commit 8bc7027

Please sign in to comment.