All Projects → comp-think → 2018-2019

comp-think / 2018-2019

Licence: other
The GitHub repository containing all the material related to the Computational Thinking and Programming course of the Digital Humanities and Digital Knowledge degree at the University of Bologna (a.a. 2018/2019).

Projects that are alternatives of or similar to 2018-2019

bechdel-test
Does your favorite film pass the test?
Stars: ✭ 25 (-13.79%)
Mutual labels:  digital-humanities
twic
Topic Words in Context (TWiC) is a highly-interactive, browser-based visualization for MALLET topic models
Stars: ✭ 51 (+75.86%)
Mutual labels:  digital-humanities
aut
The Archives Unleashed Toolkit is an open-source toolkit for analyzing web archives.
Stars: ✭ 111 (+282.76%)
Mutual labels:  digital-humanities
TopicsExplorer
Explore your own text collection with a topic model – without prior knowledge.
Stars: ✭ 53 (+82.76%)
Mutual labels:  digital-humanities
wiki
从diy行为艺术到diy苏格拉底式对话,从diy一个仪式到diy一次旷课,各种活动指南的百科。diy💔是706孵化的一个非代码开源项目。
Stars: ✭ 49 (+68.97%)
Mutual labels:  digital-humanities
Intro-Cultural-Analytics
Introduction to Cultural Analytics & Python, course website and online textbook powered by Jupyter Book
Stars: ✭ 137 (+372.41%)
Mutual labels:  digital-humanities
evt-viewer
Edition Visualization Technology 2 - development
Stars: ✭ 66 (+127.59%)
Mutual labels:  digital-humanities
Curatescape
A set of add-ons for the Omeka content management system, designed specifically for location-based narrative content, and compatible with (optional) paid Curatescape mobile applications.
Stars: ✭ 39 (+34.48%)
Mutual labels:  digital-humanities
etymology-db
An open etymology dataset created using Wiktionary data. Contains 3.8M entries, 1.8M terms, 2900 languages, and 31 unique relationship types.
Stars: ✭ 20 (-31.03%)
Mutual labels:  digital-humanities
comp thinking social science
Computational Thinking for Social Scientists book project
Stars: ✭ 42 (+44.83%)
Mutual labels:  digital-humanities
textbox
Text collections made available by the CLiGS group.
Stars: ✭ 19 (-34.48%)
Mutual labels:  digital-humanities
booknlp
BookNLP, a natural language processing pipeline for books
Stars: ✭ 636 (+2093.1%)
Mutual labels:  digital-humanities
named-entity-recognition
Notebooks for teaching Named Entity Recognition at the Cultural Heritage Data School, run by Cambridge Digital Humanities
Stars: ✭ 18 (-37.93%)
Mutual labels:  digital-humanities
ham4corpus
Data from "Hamilton: An American Musical", formatted for reuse. See below for some interesting text analysis basic findings! I am not throwing away my stopword?
Stars: ✭ 53 (+82.76%)
Mutual labels:  digital-humanities
infinite-ulysses-dissertation
InfiniteUlysses.com repo as it was when I finished the related Ph.D. project. See instead github.com/amandavisconti/infinite-ulysses-public for latest code, as this repo is frozen to represent my dissertation.
Stars: ✭ 21 (-27.59%)
Mutual labels:  digital-humanities
workshops
Scholarly Communications Workshops
Stars: ✭ 13 (-55.17%)
Mutual labels:  digital-humanities
cummings.ee
A collection of the work of Edward Estlin Cummings, as it enters the public domain.
Stars: ✭ 32 (+10.34%)
Mutual labels:  digital-humanities
tei-publisher-app
The main TEI Publisher app
Stars: ✭ 50 (+72.41%)
Mutual labels:  digital-humanities
awesome-digital-history
Find primary sources online and learn how to research history digitally.
Stars: ✭ 110 (+279.31%)
Mutual labels:  digital-humanities
dvt
Distant Viewing Toolkit for the Analysis of Visual Culture
Stars: ✭ 57 (+96.55%)
Mutual labels:  digital-humanities

Computational Thinking and Programming

This space contains all the material related to the Computational Thinking and Programming course of the Digital Humanities and Digital Knowledge degree at the University of Bologna.

Academic year 2018/2019

Table of content

  1. Material
  2. Schedule
  3. Links

Material

Keys:

  • the = theoretical lecture
  • lab = laboratory session
  • exa = partial examination
  • add = additional material
  1. [12/11/18, the] Introduction to the course


  2. [12/11/18, the] Introduction to Computational Thinking


  3. [14/11/18, the] Algorithms


  4. [16/11/18, the] Computability


  5. [19/11/18, the] Programming languages


  6. [22/11/18, lab] 1st Lesson


  7. [23/11/18, the] Organising information: ordered structures


  8. [26/11/18, the] Brute-force algorithms


  9. [27/11/18, lab] 2nd Lesson


  10. [28/11/18, exa] First partial examination

    • content: test 1, test 2
    • solutions:
      • exercise 1:
        • solution to "Describe the main five widgets of the flowchart diagram model": Flowline = the arrow is used to define the order in which the operations are executed; Terminal = it indicates the beginning and ending of an algorithm; Process = used for expressing an instruction or operation; Decision = it depicts a conditional operation; Input / Output = allows the specification of an input or an output.
        • solution to "List the three main characteristics that the data structure list has": order, repeatability of its elements, countability of its elements.
      • exercise 2:
        • solution to "Describe what is a low-level programming language": languages that provide one abstraction level on top of the machine language, and thus it allows one to write programs in a way that is more intelligible to humans.
        • solution to "Describe what is a high-level programming language": languages which are characterised by a strong abstraction from the specifiability of the machine language. In particular, it may use natural language words for specific construct, so as to be easy to use for and to understand by humans.
      • exercise 3: Python script to calculate the output of the Turing machine provided - run with python turing_machine_1st_partial_ex3.py and follow the instructions
      • exercise 4: Python script to calculate the output of the function f - run with python f_1st_partial_ex4.py and follow the instructions
      • exercise 5: implementation of the function do_it

  11. [28/11/18, the] Organising information: unordered structures


  12. [29/11/18, lab] 3rd Lesson (included in the material of the 2nd lesson above)


  13. [30/11/18, the] Recursion


  14. [03/12/18, the] Divide and conquer algorithms


  15. [04/12/18, lab] 4th Lesson


  16. [05/12/18, the] Dynamic programming algorithms


  17. [06/12/18, lab] 5th Lesson


  18. [10/12/18, the] Organising information: trees


  19. [11/12/18, lab] 6th Lesson (included in the material of the 5th lesson above)


  20. [12/12/18, the] Organising information: graph


  21. [13/12/18, lab] 7th Lesson


  22. [14/12/18, the] Backtracking algorithms


  23. [28/11/18, exa] Second partial examination

    • content: test 1, test 2
    • solutions:
      • exercise 1:
        • solution to "Describe the steps chatacterising the dynamic programming algorithmic approach": [base case: solution exists] return the solution calculated previously, otherwise; [base case: address directly] address directly if it is an easy-to-solve problem, otherwise; [divide] split the input material into two or more balanced parts, each depicting a sub-problem of the original one; [conquer] run the same algorithm recursively for every balanced parts obtained in the previous step; [combine] reconstruct the final solution of the problem by means of the partial solutions; [memorize] store the solution to the problem for reusing it.
        • solution to "Describe the steps characterising the backtracking algorithmic approach": [leaf-win] if current node is a leaf and it is a solution then return it, otherwise; [leaf-lose] if current node is a leaf but it is not a solution, then return no solution back the parent node, otherwise; [recursive-step] apply recursively the whole approach for each child of the current node, until one of these recursive executions returns a solution - if no solution, back the parent node of the current one.
      • exercise 2:
        • solution to "Describe the main characteristics that the data structure dictionary has": A dictionary is a countable collection of unordered key-value pairs, where the key is non-repeatable in the dictionary
        • solution to "Considering a particular central node of a tree as focus, introduce the nomenclature used to refer to all the other nodes": the parent node of a given one is a node directly connected to another one when moving close to the root node; a child node of a given one is a node directly connected to another one when moving away from the root node; a sibling node of a given one is a node that shares the same parent node; an ancestor node of a given one is a node that is reachable by following the child-parent path repeatedly; a descendant node of a given one is a node that is reachable by following the parent-child path repeatedly.
      • exercise 3:
        • solution to "Write does the Python function def merge_sort(input_list) implementing the merge sort (the function merge can be used without providing an implementation)": Python implementation.
        • solution to "Write does the Python function def merge(left_list, right_list) used in the combine step of the merge sort": Python implementation.
      • exercise 4: Python script to calculate the output of the function f - run with python f_2nd_partial_ex4.py and follow the instructions.
      • exercise 5: implementation of the function pal.

  24. [17/12/18, the] Project


  25. [18/12/18, lab] 8th Lesson (included in the material of the 7th lesson above)


  26. [19/12/18, the] Greedy algorithms


  27. [19/12/18, add] Ask a thesis


  28. [19/12/18, the] Exercises on algorithms


Schedule

DateTitle
12/11/18Introduction to Computational Thinking
14/11/18Algorithms
16/11/18Computability
19/11/18Programming Languages
22/11/18Laboratory
23/11/18Organising information: ordered structures
26/11/18Brute-force algorithms
27/11/18Laboratory
28/11/18Organising information: unordered structures
29/11/18Laboratory
30/11/18Recursion
03/12/18Divide and conquer algorithms
04/12/18Laboratory
05/12/18Dynamic programming algorithms
06/12/18Laboratory
10/12/18Organising information: trees
11/12/18Laboratory
12/12/18Organising information: graphs (+ evaluation questionnaire)
13/12/18Laboratory
14/12/18Backtracking algorithms
17/12/18Project presentation (time change: 11:30-13:30)
18/12/18Laboratory
19/12/18Greedy algorithms

Links

It is possible to find all the 2018/2019 texts of the written examination in the folder docs/exams.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].