Mariano Reingart
Mariano Reingart
The current implementation in _GetValidHostsForCert (no DNS specified, commonName in subject not honored) raises an Exception with a [ARBA](http://www.arba.gov.ar/bajadas/Fiscalizacion/Operativos/TransporteBienes/Documentacion/CertificadoArba_11102015.rar) certificate for https://cot.arba.gov.ar/: ``` CertificateHostnameMismatch: Server presented certificate that does not...
Initial chapters about numbers, strings, conditions and loops don't have proper exercises with automatic grading (just a placeholder with an "Einstein" picture) Fixing #245 could allow to write simple exercises...
Create a chapter for Google's Python Class **"Log Puzzle"** challenge: https://developers.google.com/edu/python/exercises/log-puzzle?hl=en Activities should be interactive and with automatic evaluation / grading. Use as template reto1 (hangman game): https://pyar.github.io/PyZombis/main/challenges/Reto01.html
The activity seems be failing due CORS: http://pyar.github.io/PyZombis/master/lectures/TWP45/TWP45_3.html Please add E2E test with Playwright to detect this issues earlier
The idea will be rewrite the lesson as a Single-Page-Application, so it can avoid to install a server (web2py, django or flask) The original lecture has a very simple visitor...
CodeLens is a step-by-step visual feature to show how a program works. See docs for an example: https://runestone.academy/ns/books/published/authorguide/directives/activecode.html To enable the "Show CodeLens" button, please remove `:nocodelens:` argument in sections:...
Create a chapter for Google's Python Class basic exercises: https://developers.google.com/edu/python/exercises/basic?hl=es-419 Activities should be interactive and with automatic evaluation / grading. Use as template quiz1: https://pyar.github.io/PyZombis/main/quiz/Quiz1.html
The page to teach how to do [desk checking](https://en.wikipedia.org/wiki/Informal_methods_of_validation_and_verification#Desk_checking) is static: https://pyar.github.io/PyZombis/main/lectures/TWP05/TWP05_14.html Write a interactive activity using the fill in the blanks component: https://runestone.academy/ns/books/published/authorguide/directives/fitb.html#id5
The assessment text should be moved to the following page where the program is: From: https://pyar.github.io/PyZombis/main/lectures/TWP37/TWP37_3.html > Podemos crear una lista puntuaciones. > Para insertar cada nueva puntuación, use .append()...
Initial programs don't use `def` so they cannot be invoked in unit test to check results programmatically, for example: https://pyar.github.io/PyZombis/main/lectures/TWP15/TWP15_3.html#algunos-ejercicios But, we could include hidden code to wrap `input` and...