Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
e75620a
average over 0
Sep 15, 2020
ab9344f
function average_above_zero update
Sep 15, 2020
49e347b
max value and index function
Sep 15, 2020
64ad572
function reverse_table
Sep 15, 2020
6e9fdfa
bounding box in progress
Sep 15, 2020
480305d
function bounding box ok
Sep 16, 2020
94893e9
init random_fill_sparse
Sep 16, 2020
364e237
function alea OK
Sep 16, 2020
5e5fe8f
function random_fill_sparse OK
Sep 16, 2020
c28868d
function remove_whitespace OK
Sep 16, 2020
b97f030
function shuffle OK
Sep 16, 2020
3b38b28
dice game WIP
Sep 16, 2020
28c0634
init travis ci
Sep 16, 2020
c87745f
organize repo & init tests
Sep 16, 2020
74f3005
requirements add
Sep 16, 2020
2ad46d5
requirements add v3
Sep 16, 2020
cabdcac
requirements add v4
Sep 16, 2020
67fd550
Merge branch 'master' of https://github.com/albenoit/BachelorDIM-Lect…
Sep 16, 2020
26c6953
test WIP
Sep 16, 2020
099d56b
test: presentation
Sep 16, 2020
2b62e21
minimal tests OK
Sep 16, 2020
d3669d0
init session 3 - fonction invert_image
Sep 29, 2020
49a8fef
all invert_image functions
Sep 29, 2020
3dc8ea9
invert function OK
Sep 29, 2020
ae06ee7
init functions threshold
Sep 29, 2020
5bc672b
adding spaces
Sep 29, 2020
ab5498e
init gitignore
Oct 13, 2020
c245cc1
init gitignore add caches
Oct 13, 2020
8f4a8d1
init gitignore caches correction
Oct 13, 2020
d94b926
read and send messages OK
Oct 13, 2020
7b8f68e
queue with -read OK
Oct 13, 2020
7c1e09e
queue with -read OK
Oct 13, 2020
57c6bb4
Merge branch 'master' of https://github.com/albenoit/BachelorDIM-Lect…
Oct 20, 2020
d487bb5
delete caches
Oct 20, 2020
2048177
delete caches in Session1
Oct 20, 2020
768cf9e
persistent messages WIP
Oct 20, 2020
4bf7066
message persistent - concurrency OK
Oct 20, 2020
f327dbe
persistent messages organisation du code OK
Oct 20, 2020
868a46c
message to multiple queues WIP
Oct 20, 2020
142f067
add save multiple message WIP
Oct 20, 2020
836c344
add session 1 elements from personal computer
charlottedrb Oct 20, 2020
311a2ee
conclude merge
charlottedrb Oct 20, 2020
76674f7
one message to mutiple queues OK
charlottedrb Oct 20, 2020
d2e0508
add comments and organize a bit files
charlottedrb Oct 20, 2020
f11aad5
ajout des fonctions complètes max_value et reverse_table
charlottedrb Nov 3, 2020
bf2c290
fonction shuffle - version longue complétée
charlottedrb Nov 5, 2020
09fc9bb
dice game fonctionnel mais pas très optimisé
charlottedrb Nov 5, 2020
5945ee0
mise à jour du visuel du dice game
charlottedrb Nov 5, 2020
fe7abc8
selection sort - questions & function
charlottedrb Nov 7, 2020
1224fbd
bubble sort - questions and function
charlottedrb Nov 7, 2020
6fd4e41
work in progress dice game - wrong understanding of the exercise
charlottedrb Nov 12, 2020
fc02d98
erreur de none type réglée sur le dice game
charlottedrb Nov 14, 2020
c67216a
pb de fin du while dans le cas où on gagne - WIP
charlottedrb Nov 14, 2020
0065182
refonte du dice game IN PROGRESS
charlottedrb Nov 15, 2020
8be4d24
version plus optimisée du dice game OK - recherche d'optimisation plu…
charlottedrb Nov 15, 2020
2f8618e
visuel terminé sur le dice game - modif à faire sur la fin de partie
charlottedrb Nov 15, 2020
0f90d8e
change color for the scores
charlottedrb Nov 15, 2020
fab00d2
ajout du .idea dans le gitingore
charlottedrb Nov 15, 2020
3b59084
suppression de .idea
charlottedrb Nov 15, 2020
f34cb43
add 100 to score max
charlottedrb Nov 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#Ignorer le fichier config.py
assignements/Session4/config.py

.idea


#Ignore les caches
assignements/__pycache__/
assignements/.pycache_cache/

assignements/Session1/__pycache__/
assignements/Session1/.pycache_cache/

assignements/Session4/__pycache__/
assignements/Session4/.pycache_cache/
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ addons:
script:
- pytest -v --cov .
#- sonar-scanner
- coveralls

#- coveralls
Loading