Participatory eGovernment and Smart Cities

https://www.theweave.info/images/TheWeave-V1-Low-July2011.pdf https://www.researchgate.net/publication/237335154_REQUIREMENTS_FOR_A_PUBLIC_PARTICIPATION_SUPPORT_SYSTEM https://www.researchgate.net/publication/221631333_Participatory_design_in_community_computing_contexts https://www.academia.edu/8399506/Participatory_design_in_community_computing_contexts_tales_from_the_field https://www.academia.edu/19976641/How_a_Participatory_Process_Can_Matter_in_Planning_the_City https://decidim.org/ http://www.energy-cities.eu/PARTICIPATORY-PROCESSES-A-WAY-TO-MORE-EFFECTIVE-AND-INCLUSIVE-POLICIES https://www.citizenlab.co/blog/civic-engagement/steps-to-effective-participatory-budgeting/ http://www.rioonwatch.org/?p=44389

Cheetsheet: sed

Remove any text but numbers: $ echo “123test456.ext” | sed -e s/[^0-9]//g 123456 To get all digits grouped: $ echo “123test456.ext” | egrep -o [0-9]+ 123 456 Remove zeros from the string begining: old=”0004937″# sed removes leading zeroes from stdinnew=$(echo