diff --git a/app/static/css/style.css b/app/static/css/style.css
index 0f5cae9..c46c0fd 100755
--- a/app/static/css/style.css
+++ b/app/static/css/style.css
@@ -38,7 +38,17 @@ audio {
width: 100%;
}
-.navigation ul {
+ul {
+ list-style-type:none;
+ line-height: 1.5em;
+}
+
+ul em{
+ font-style: normal;
+ font-weight:bold;
+}
+
+.navigation ul{
list-style-type: none;
padding: 0;
display: flex;
diff --git a/app/templates/about.html b/app/templates/about.html
index c592616..857a9cc 100755
--- a/app/templates/about.html
+++ b/app/templates/about.html
@@ -4,11 +4,44 @@
-
This webpage is part of the projekt Hunting Mosquitos by Angeliki Diakrousi
-
- The site is running on a flask instance, storing data in a SQLite database. The location is tracked using the geolocation API. Audio is recorded through the WebAudio API.
-
+
This webpage is part of the artwork Hunting Mosquitos by Angeliki Diakrousi. It is a geolocative app that allows navigation in the city through mapping hang-outs and installations of Mosquitos. It invites you to playfully explore the city and participate in a discussion around public spaces. The web app is developed by Alex Roidl.
+
+
The site is running on a flask instance, storing data in a sqlite database. The location is tracked using the geolocation api. Audio is recorded through the webaudio api.
+
+
If you have any questions contact:
info at huntingmosquitos.nl
+
+
+
+
How to use
+
+ - * turn on your location and activate it for the browser app you use
+ - * allow access to your location if asked
+ - * you will see your position in red circle
+ - * you can change the view by clicking on Choose View
+ - * use the compass to navigate to the closest mosquito
+ - * while walking in the city and visiting different spots you can add:
+
+ - _your favorite hangout
+ - _the presence of a mosquito
+ - _a voice/sound message (allow access to your microphone)
+ - _a text message
+
+
+ - * notes:
+
+ - _to get inspiration for the messages you are invited to check these questions
+ - _the web app works on mobile phones
+ - _it may not work to all browsers
+ - _if the coordinates are not valid then you are directed to a broken page
+
+
+
+
+
+
+
+
{% endblock %}
diff --git a/app/templates/privacy.html b/app/templates/privacy.html
index e9b7b4e..151be52 100755
--- a/app/templates/privacy.html
+++ b/app/templates/privacy.html
@@ -4,7 +4,11 @@
-
Please note that all data submitted to this platform will be part of the exhibition.
+
By submitting your contribution with comments/data, you agree that your contribution will be published/used in the context of the artwork/project, including public exhibitions and publications about the artwork, and waive any copyright claims in the broadest sense.
+
+
Content that infringes privacy will be deleted.
+
+
The site stores coordinates, audio and text messages. No other private data are stored.
diff --git a/app/templates/privacy_note_submit.html b/app/templates/privacy_note_submit.html
index e753ec4..682447a 100755
--- a/app/templates/privacy_note_submit.html
+++ b/app/templates/privacy_note_submit.html
@@ -1,2 +1,2 @@
Please note that all data submitted need to conform to the privacy statement. By submitting you agree that you have read and understood the statement.
\ No newline at end of file
+
+
+
+
During visits at I developed a series of questions, that was based on documents and online material around this topic. Katarina Jazbec and Setareh Noorani initially joined in forming questions and initiate a series of informal interviews and conversations with frequenters and inhabitants around those spots.
+
+
to frequenters
sound and device
- Do you notice the sound?
- Does this sound remind you of something?
- How would you describe it?
- Can you mimic it?
- What is the meaning of the high pitched sound for you?
- Is the sound directional or spread?
- Does it change depending on distance and angle you are?
- Do you think the Mosquito alarm is 'smart'? Why?
embodied experience
- How do you feel about it?
- Are you noise sensitive?
- What do you sense in your body?
- Are you irritated when you are exposed to it for a prolonged time?
- In your imagination what form this sound has? Is it like a ghostly experience?
hanging out
- Why do you hangout here?
- What do you do when you hear the high pitched tone? Do you leave?
- Have you changed your frequent hangout spot because of that?
- What sounds would you like to listen to in the public space?
- In the city there are bats, rats, cats, dogs, birds that hangout as well. Do you ever see animals passing by?
- Do you think animals are also bothered by the sound?
negotiations
- Do you feel unwelcome here?
- Do you hear complaints from the inhabitants for your presence?
- Have you been approached by somebody and had conversation about nuisance?
- Were you introduced to other alternatives? Like the youth social workers?
- How was it before in the neighborhood for you?
- What would make possible to renegotiate the act of 'hanging out' with the inhabitants?
- Did you ever file a complaint for the sound?
to inhabitants
activation and device
- Do you know about the Mosquito device?
- Can you hear it?
- How is it activated/switched on?
- Who controls the buzzer?
- Do you get updates for the results of the use of the mosquito?
- Do you experience nuisance from the device?
- Who decided to use it?
- Do you have children or young friends that visit you? Do they hear this sound and are they annoyed by it?
nuisance problem
- What is happening in your area during the night that you don't like? Can you describe the situation?
- How did you address the issue at the first place? Did you ever talk to these young people?
- How did you complain about it? Did you use some app? Or did you make a phone call?
safety
- Do you feel safe now after the use of the Mosquitos?
- Is the device a good and safe response to the yearlong problem of loitering youth?
- Is the neighborhood better controlled now?
- Was any other solution applied in the past?
- This hangout seems very cozy for young people. Your home is next to a designed pleasant hangout. What do you think about that?
+
to both
- Do you hear the Mosquito behind the walls or windows? Is the sound absorbed in the walls or water?
- In what perimeter do you think the sound is emitted? Do you stay out of the range?
- How loud do you think it is?
- Do you think this device is 'smart'? Why?
- Are any of your freedoms restricted because of nuisance/noise?
- Why you think these streets were chosen for installing these devices? Is there some history of anti-social behavior there?
- Did you encounter other similar interventions in this area in the past?
+
+
+
+
+{% endblock %}
diff --git a/app/views.py b/app/views.py
index caec8fa..10e43d4 100755
--- a/app/views.py
+++ b/app/views.py
@@ -168,6 +168,12 @@ def privacy():
"""Render the website's about page."""
return render_template('privacy.html')
+@app.route('/questions/')
+def questions():
+ """Render the website's about page."""
+ return render_template('questions.html')
+
+
@app.route('/about/')
def about():
"""Render the website's about page."""