summaryrefslogtreecommitdiffstats
path: root/Readme.adoc
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-09-14 22:36:49 -0500
committerMitsuo Tokumori <[email protected]>2023-09-14 22:36:49 -0500
commitbe34531e5a29be4d4c0a313e23aaf36850e4eb62 (patch)
tree5eda5fececf9abd2d448d5aa20f751b59197ae1d /Readme.adoc
parent1080b07bc10dd9528c1ee1572435c28e89e0ea02 (diff)
downloadLP1-be34531e5a29be4d4c0a313e23aaf36850e4eb62.tar.gz
LP1-be34531e5a29be4d4c0a313e23aaf36850e4eb62.tar.bz2
LP1-be34531e5a29be4d4c0a313e23aaf36850e4eb62.zip
Update readme
Diffstat (limited to 'Readme.adoc')
-rw-r--r--Readme.adoc21
1 files changed, 19 insertions, 2 deletions
diff --git a/Readme.adoc b/Readme.adoc
index 8152ee6..a98e510 100644
--- a/Readme.adoc
+++ b/Readme.adoc
@@ -3,18 +3,35 @@ Mitsuo
2022-09-09
:source-highlighter: highlight.js
-The shortest and most readable code wins!
-
Contributions are very welcomed and needed, if you want to contribute
please open a Pull Request following the directory structure:
+An effort is made to have the code be concise and readable.
+
semester/L#/submitter's name/
+NOTE: I won't include the PDFs with the problem statement because I don't have
+permission to share them publicly on the internet. If you have a PUCP
+email, you can access to
+https://facultad.pucp.edu.pe/ingenieria/agrupaciones/asociacion-alumnos-ingenieria-informatica-aaii-pucp/[AAII]'s
+https://drive.google.com/drive/folders/0B8DUIB5m9fukVHZhX1pRZFhHY2M?resourcekey=0-_ODdPfSHMCyE6heWHij3Hg&usp=drive_link[Google Drive]
+, you can find the some PDFs there.
== Tips
=== Debugging
+You should definitly make effective use the debugging tools from the IDE
+(breakpoints, keybindings, call stack, watches, expressions).
+Otherwise you are just waisting your time. Most IDE either use
+https://en.wikipedia.org/wiki/GNU_Debugger[GDB] or
+https://en.wikipedia.org/wiki/LLDB_(debugger)[LLDB], and they share most of the
+basic concepts. You can https://www.youtube.com/watch?v=Dq8l1_-QgAc[learn the basics]
+fast and start **practicing**.
+
+(Many times, the compilation or runtime error message is not helpful at all or
+borderline cryptic. Debugging tools help a lot.)
+
Prof. Guanira states it clearly in "Guia de Creacion Ejecucion y
Depuracion.pdf":