more translation
This commit is contained in:
parent
8ee055bfa8
commit
2ce9ca50b5
459 changed files with 21001 additions and 9395 deletions
105
.github/copilot-instructions.md
vendored
Normal file
105
.github/copilot-instructions.md
vendored
Normal file
|
|
@ -0,0 +1,105 @@
|
||||||
|
# Copilot Instructions for AI Agents
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
- This is a Zola static site, using the "Duckquill" theme (see `themes/duckquill`).
|
||||||
|
- Content is organized in Markdown files under `content/` (with language variants like `.de.md` for German).
|
||||||
|
- Static assets (images, CSS, JS) are in `public/` and `static/`.
|
||||||
|
- Theme customizations and templates are in `themes/duckquill/` and `templates/`.
|
||||||
|
- Configuration is managed via `config.toml` and language files in `i18n/`.
|
||||||
|
|
||||||
|
## Key Workflows
|
||||||
|
- **Build the site:** Use Zola (`zola build`) to generate static files. Output goes to `public/`.
|
||||||
|
- **Serve locally:** Use `zola serve` for local development with live reload.
|
||||||
|
- **Content updates:** Add/edit Markdown files in `content/` (use `.de.md` for German, `.md` for English).
|
||||||
|
- **Theme changes:** Edit files in `themes/duckquill/` or `templates/` for layout and style.
|
||||||
|
- **Static assets:** Place images, CSS, JS in `static/` (copied as-is to output).
|
||||||
|
- **SASS/SCSS:** Source styles in `sass/`, compiled by Zola if referenced in theme.
|
||||||
|
- **Scripts:** Shell scripts in `scripts/` automate content and frontmatter management (e.g., `add_update_frontmatter.sh`).
|
||||||
|
|
||||||
|
## Project-Specific Conventions
|
||||||
|
- **Multilingual content:** Each page has `.md` (English) and `.de.md` (German) variants. Use matching filenames for translations.
|
||||||
|
- **Frontmatter:** All Markdown files require Zola-compatible TOML frontmatter.
|
||||||
|
- **Directory structure:**
|
||||||
|
- `content/pages/` for main site pages
|
||||||
|
- `content/project/` for project posts (each project in its own subfolder)
|
||||||
|
- **Theme:** Only modify `themes/duckquill/` for theme changes; avoid editing Zola core files.
|
||||||
|
- **Static files:** Use `static/` for assets that should be copied verbatim to the output.
|
||||||
|
|
||||||
|
## Integration Points
|
||||||
|
- **Zola:** All builds and local serving use Zola CLI.
|
||||||
|
- **External links:** Theme and documentation reference [Duckquill demo](https://duckquill.daudix.one).
|
||||||
|
- **CI/CD:** No explicit CI/CD config found; manual builds expected.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
- To add a new German page: create `content/pages/newpage.de.md` with TOML frontmatter.
|
||||||
|
- To update theme CSS: edit `themes/duckquill/static/css/` or `sass/` and rebuild.
|
||||||
|
- To run locally: `zola serve` from project root.
|
||||||
|
|
||||||
|
## Custom Shortcodes
|
||||||
|
The site provides several custom shortcodes for content enhancement:
|
||||||
|
|
||||||
|
### Gallery Shortcode
|
||||||
|
Used for creating image galleries with lightbox support:
|
||||||
|
```md
|
||||||
|
{% gallery() %}
|
||||||
|
[
|
||||||
|
{"file": "image1.jpg", "alt": "Description", "title": "Optional Caption"},
|
||||||
|
{"file": "image2.jpg", "alt": "Description"}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
Images must be in the same directory as the content file.
|
||||||
|
|
||||||
|
### Mermaid Shortcode
|
||||||
|
For rendering diagrams:
|
||||||
|
```md
|
||||||
|
{% mermaid() %}
|
||||||
|
graph TD
|
||||||
|
A[Start] --> B[End]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Skills Shortcode
|
||||||
|
For displaying categorized skills with optional icons and links:
|
||||||
|
```md
|
||||||
|
{% skills() %}
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "Category Name",
|
||||||
|
"skills": [
|
||||||
|
{"name": "Skill Name", "icon": "fa-icon-class", "link": "optional-url"},
|
||||||
|
{"name": "Another Skill"}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Timeline Shortcode
|
||||||
|
For chronological events and experiences:
|
||||||
|
```md
|
||||||
|
{% timeline() %}
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"from": "2025-01",
|
||||||
|
"to": "2025-12",
|
||||||
|
"title": "Event Title",
|
||||||
|
"location": "Optional Location",
|
||||||
|
"icon": "optional-icon-class",
|
||||||
|
"body": "Event description",
|
||||||
|
"link": "optional-url"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
## References
|
||||||
|
- Theme docs: `themes/duckquill/README.md`
|
||||||
|
- Main config: `config.toml`
|
||||||
|
- Scripts: `scripts/`
|
||||||
|
- Content: `content/`
|
||||||
|
- Static assets: `static/`, `public/`
|
||||||
|
- Custom shortcodes: `templates/shortcodes/`
|
||||||
|
|
||||||
|
---
|
||||||
|
For questions or unclear conventions, check theme docs or ask for clarification.
|
||||||
37
.gitignore
vendored
Normal file
37
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
# Editor specific files
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Environment
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
|
||||||
|
# OS generated files
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
*.log
|
||||||
|
*.tmp
|
||||||
|
*.temp
|
||||||
|
|
||||||
|
# Node modules (if you add any JavaScript tooling)
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Python virtual environments (if you use any Python scripts)
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
|
||||||
|
# Local development settings
|
||||||
|
*.local
|
||||||
|
*.local.*
|
||||||
4
.markdownlint.json
Normal file
4
.markdownlint.json
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"MD033": false,
|
||||||
|
"MD040": false
|
||||||
|
}
|
||||||
28
LICENSE
Normal file
28
LICENSE
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
# Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)
|
||||||
|
|
||||||
|
This work is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License.
|
||||||
|
|
||||||
|
To view a copy of this license, visit:
|
||||||
|
[http://creativecommons.org/licenses/by-nc/4.0/](http://creativecommons.org/licenses/by-nc/4.0/)
|
||||||
|
|
||||||
|
or send a letter to:
|
||||||
|
Creative Commons
|
||||||
|
PO Box 1866
|
||||||
|
Mountain View, CA 94042
|
||||||
|
USA
|
||||||
|
|
||||||
|
In summary (but not a substitute for the full license):
|
||||||
|
|
||||||
|
You are free to:
|
||||||
|
|
||||||
|
- Share — copy and redistribute the material in any medium or format
|
||||||
|
- Adapt — remix, transform, and build upon the material
|
||||||
|
|
||||||
|
Under the following terms:
|
||||||
|
|
||||||
|
- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
|
||||||
|
- NonCommercial — You may not use the material for commercial purposes.
|
||||||
|
|
||||||
|
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
|
||||||
|
|
||||||
|
Note: The Duckquill theme remains under its original MIT license.
|
||||||
195
README.md
Normal file
195
README.md
Normal file
|
|
@ -0,0 +1,195 @@
|
||||||
|
# Personal Website (aron.petau.net)
|
||||||
|
|
||||||
|
A multilingual personal website and blog built with [Zola](https://www.getzola.org/) and the [Duckquill](https://duckquill.daudix.one) theme.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- 🌍 Multilingual content (English/German)
|
||||||
|
- 📝 Blog posts and project documentation
|
||||||
|
- 🎨 Custom theme modifications
|
||||||
|
- 🖼️ Image processing and optimization
|
||||||
|
- 📊 Support for math equations via KaTeX
|
||||||
|
- 🔍 Full-text search functionality
|
||||||
|
|
||||||
|
## Project Structure
|
||||||
|
|
||||||
|
```text
|
||||||
|
.
|
||||||
|
├── content/ # Content files (markdown)
|
||||||
|
│ ├── _index.md # Main landing page (EN)
|
||||||
|
│ ├── _index.de.md # Main landing page (DE)
|
||||||
|
│ ├── pages/ # Static pages
|
||||||
|
│ └── project/ # Project posts
|
||||||
|
├── static/ # Static assets
|
||||||
|
├── sass/ # SCSS source files
|
||||||
|
├── templates/ # Custom templates
|
||||||
|
├── themes/ # Duckquill theme
|
||||||
|
└── public/ # Generated site (do not edit)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
|
||||||
|
1. Install [Zola](https://www.getzola.org/documentation/getting-started/installation/)
|
||||||
|
2. Clone this repository:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/arontaupe/awebsite.git
|
||||||
|
cd awebsite
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Run the development server:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
zola serve
|
||||||
|
```
|
||||||
|
|
||||||
|
4. Visit `http://localhost:1111` to see the site
|
||||||
|
|
||||||
|
## Content Management
|
||||||
|
|
||||||
|
### Adding New Content
|
||||||
|
|
||||||
|
- **Pages**: Create `.md` (English) and `.de.md` (German) files in `content/pages/`
|
||||||
|
- **Projects**: Create new folder in `content/project/` with `index.md` and `index.de.md`
|
||||||
|
|
||||||
|
### Frontmatter Structure
|
||||||
|
|
||||||
|
```toml
|
||||||
|
+++
|
||||||
|
title = "Page Title"
|
||||||
|
date = 2025-10-06
|
||||||
|
authors = ["Aron Petau"]
|
||||||
|
description = "Page description"
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
tags = ["tag1", "tag2"]
|
||||||
|
|
||||||
|
[extra]
|
||||||
|
show_copyright = true
|
||||||
|
show_shares = true
|
||||||
|
+++
|
||||||
|
```
|
||||||
|
|
||||||
|
### Custom Shortcodes
|
||||||
|
|
||||||
|
The site includes several custom shortcodes for enhanced content formatting:
|
||||||
|
|
||||||
|
#### Gallery
|
||||||
|
|
||||||
|
```md
|
||||||
|
{% gallery() %}
|
||||||
|
[
|
||||||
|
{"file": "image1.jpg", "alt": "Description", "title": "Optional Caption"},
|
||||||
|
{"file": "image2.jpg", "alt": "Description"}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
Creates a responsive image gallery with lightbox support. Images should be in the same directory as the content file.
|
||||||
|
|
||||||
|
#### Mermaid
|
||||||
|
|
||||||
|
```md
|
||||||
|
{% mermaid() %}
|
||||||
|
graph TD
|
||||||
|
A[Start] --> B[End]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
Renders Mermaid diagrams for visualizing flowcharts, sequences, and more.
|
||||||
|
|
||||||
|
#### Skills
|
||||||
|
|
||||||
|
```md
|
||||||
|
{% skills() %}
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "Category Name",
|
||||||
|
"skills": [
|
||||||
|
{"name": "Skill Name", "icon": "fa-icon-class", "link": "optional-url"},
|
||||||
|
{"name": "Another Skill"}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
Displays a formatted skills section with optional icons and links.
|
||||||
|
|
||||||
|
#### Timeline
|
||||||
|
|
||||||
|
```md
|
||||||
|
{% timeline() %}
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"from": "2025-01",
|
||||||
|
"to": "2025-12",
|
||||||
|
"title": "Event Title",
|
||||||
|
"location": "Optional Location",
|
||||||
|
"icon": "optional-icon-class",
|
||||||
|
"body": "Event description",
|
||||||
|
"link": "optional-url"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
```
|
||||||
|
|
||||||
|
Creates a vertical timeline for events, experiences, or history.
|
||||||
|
|
||||||
|
### Assets
|
||||||
|
|
||||||
|
- Place images in `static/images/`
|
||||||
|
- CSS modifications go in `sass/`
|
||||||
|
- JavaScript files go in `static/js/`
|
||||||
|
|
||||||
|
## Building
|
||||||
|
|
||||||
|
To build the site for production:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
zola build
|
||||||
|
```
|
||||||
|
|
||||||
|
The generated site will be in the `public/` directory.
|
||||||
|
|
||||||
|
## Development Tools
|
||||||
|
|
||||||
|
- `scripts/add_update_frontmatter.sh`: Update frontmatter in content files
|
||||||
|
- `scripts/create_german_stubs.sh`: Create German translation stubs
|
||||||
|
- `scripts/organize.sh`: Content organization helper
|
||||||
|
- `scripts/youtube_rewrite.sh`: YouTube embed helper
|
||||||
|
|
||||||
|
## Project Conventions
|
||||||
|
|
||||||
|
1. **Multilingual Content**
|
||||||
|
- English files: `.md`
|
||||||
|
- German files: `.de.md`
|
||||||
|
- Keep filenames matching between languages
|
||||||
|
|
||||||
|
2. **Tags**
|
||||||
|
- Always use English tags for consistency
|
||||||
|
- Maintain uniform tag naming across all content
|
||||||
|
|
||||||
|
3. **Theme Customization**
|
||||||
|
- Modify only files in `themes/duckquill/` or `templates/`
|
||||||
|
- Avoid editing Zola core files
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
1. Fork the repository
|
||||||
|
2. Create your feature branch
|
||||||
|
3. Commit your changes
|
||||||
|
4. Push to the branch
|
||||||
|
5. Create a new Pull Request
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project's content and code (except theme) is licensed under [Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)](http://creativecommons.org/licenses/by-nc/4.0/). This means you can:
|
||||||
|
|
||||||
|
- Share and copy the content
|
||||||
|
- Adapt and transform it
|
||||||
|
- Use it non-commercially
|
||||||
|
|
||||||
|
As long as you provide appropriate attribution and indicate any changes made. Commercial use is not permitted without explicit permission.
|
||||||
|
|
||||||
|
The Duckquill theme is under its original MIT license.
|
||||||
|
|
@ -20,7 +20,8 @@ The entire site runs in a lightweight and modular **Docker** setup, making it ea
|
||||||
|
|
||||||
The site is served using [Caddy](https://caddyserver.com), which handles HTTPS and web delivery with simplicity and elegance.
|
The site is served using [Caddy](https://caddyserver.com), which handles HTTPS and web delivery with simplicity and elegance.
|
||||||
|
|
||||||
It is protected by [Cloudflare](https://www.cloudflare.com/en-gb/). I'm not particularly thrilled about that part, but security matters—and so does your privacy.
|
It is protected by [Cloudflare](https://www.cloudflare.com/en-gb/).
|
||||||
|
I'm not particularly thrilled about that part, but security matters—and so does your privacy.
|
||||||
|
|
||||||
I do not use any proxying services beyond what's absolutely necessary, and I do my best to reduce tracking for both myself and others, using what knowledge and care I have.
|
I do not use any proxying services beyond what's absolutely necessary, and I do my best to reduce tracking for both myself and others, using what knowledge and care I have.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -161,3 +161,4 @@ Gradually, the mechanical system of the printer shifted from an object of care t
|
||||||
In the last years, hardware, but especially software has matured to a point where, at least to me, it tends to be a set-and-forget situation.
|
In the last years, hardware, but especially software has matured to a point where, at least to me, it tends to be a set-and-forget situation.
|
||||||
On to actually making my parts and designs.
|
On to actually making my parts and designs.
|
||||||
Read more about that in the post about [CAD](/project/cad/)
|
Read more about that in the post about [CAD](/project/cad/)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ show_shares = true
|
||||||
|
|
||||||
### Mein eigenes Bier herstellen
|
### Mein eigenes Bier herstellen
|
||||||
|
|
||||||
Ich liebe es zu veranstalten, ich liebe es, in der Küche zu experimentieren. Mit Homebrews zu starten, war für mich eine natürliche Entscheidung, und während der ersten Covid-19-Welle habe ich den kompletten Heimbräuerweg mit Flaschenfermentation und kleinen Chargen eingeschlagen, später habe ich mein Setup auf 50-Liter-Chargen mit Drucktank-System erweitert.
|
Ich liebe es zu hosten, ich liebe es, in der Küche zu experimentieren. Mit Homebrews zu starten, war für mich eine natürliche Entscheidung, und während der ersten Covid-19-Welle habe ich den kompletten Heimbräuerweg mit Flaschenfermentation und kleinen Chargen eingeschlagen, später habe ich mein Setup auf 50-Liter-Chargen mit Drucktank-System erweitert.
|
||||||
|
|
||||||
Zu Beginn war ich fasziniert, wie aus nur **vier einfachen Zutaten** – Malz, Hopfen, Wasser und Hefe – ein so unglaubliches Spektrum an Geschmackserlebnissen entstehen kann. Es war und ist immer noch ein **tremendales Lernprojekt**, bei dem man langsam akzeptieren muss, dass man den Prozess nicht vollständig kontrollieren kann, und gleichzeitig Raum für Kreativität findet.
|
Zu Beginn war ich fasziniert, wie aus nur **vier einfachen Zutaten** – Malz, Hopfen, Wasser und Hefe – ein so unglaubliches Spektrum an Geschmackserlebnissen entstehen kann. Es war und ist immer noch ein **tremendales Lernprojekt**, bei dem man langsam akzeptieren muss, dass man den Prozess nicht vollständig kontrollieren kann, und gleichzeitig Raum für Kreativität findet.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Chatbot"
|
title = "Chatbot"
|
||||||
date = 2020-07-15
|
date = 2020-07-15
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
description = "A speech-controlled meditation assistant and sentiment tracker"
|
description = "Ein sprachgesteuerter Meditations-Assistent und Stimmungs-Tracker"
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = [
|
tags = [
|
||||||
"chatbot",
|
"chatbot",
|
||||||
|
|
@ -27,35 +27,35 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Guru to Go: a speech-controlled meditation assistant and sentiment tracker
|
## Guru to Go: Ein sprachgesteuerter Meditations-Assistent und Stimmungs-Tracker
|
||||||
|
|
||||||
{{ youtube(id="R73vAH37TC0") }}
|
{{ youtube(id="R73vAH37TC0") }}
|
||||||
|
|
||||||
Here, you see a Demo video of a voice-controlled meditation assistant that we worked on in the course "Conversational Agents and speech interfaces"
|
Hier sehen Sie ein Demo-Video eines sprachgesteuerten Meditations-Assistenten, den wir im Kurs "Conversational Agents and Speech Interfaces" entwickelt haben
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://w3o.ikw.uni-osnabrueck.de/scheinmaker/export/details/76/67">Course Description</a>
|
<a class="colored external" href="https://w3o.ikw.uni-osnabrueck.de/scheinmaker/export/details/76/67">Kursbeschreibung</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
The central goal of the entire project was to make the Assistant be entirely speech controlled, such that the phone needn't be touched while immersing yourself in meditation.
|
Das zentrale Ziel des gesamten Projekts war es, den Assistenten vollständig sprachgesteuert zu gestalten, sodass das Telefon während der Meditation nicht berührt werden muss.
|
||||||
|
|
||||||
The Chatbot was built in Google Dialogflow, a natural language understanding engine that can interpret free text input and identify entities and intents within it,
|
Der Chatbot wurde in Google Dialogflow entwickelt, einer Engine für natürliches Sprachverständnis, die freie Texteingaben interpretieren und darin Entitäten und Absichten erkennen kann.
|
||||||
We wrote a custom python backend to then use these evaluated intents and compute individualized responses.
|
Wir haben ein eigenes Python-Backend geschrieben, um diese ausgewerteten Absichten zu nutzen und individualisierte Antworten zu berechnen.
|
||||||
|
|
||||||
The resulting application runs in Google Assistant and can adaptively deliver meditations, visualize sentiment history and comprehensively inform about meditation practices. Sadly, we used beta functionality from the older "Google Assistant" Framework, which got rebranded months after by Google into "Actions on Google" and changed core functionality requiring extensive migration that neither Chris, my partner in this project, nor I found time to do.
|
Die resultierende Anwendung läuft im Google Assistant und kann adaptiv Meditationen bereitstellen, den Stimmungsverlauf visualisieren und umfassend über Meditationspraktiken informieren. Leider haben wir Beta-Funktionen des älteren "Google Assistant" Frameworks verwendet, das Monate später von Google in "Actions on Google" umbenannt wurde und Kernfunktionalitäten änderte, die eine umfangreiche Migration erforderten, für die weder Chris, mein Partner in diesem Projekt, noch ich Zeit fanden.
|
||||||
|
|
||||||
Nevertheless, the whole Chatbot functioned as a meditation player and was able to graph and store recorded sentiments over time for each user.
|
Dennoch funktionierte der gesamte Chatbot als Meditations-Player und konnte aufgezeichnete Stimmungen für jeden Benutzer über die Zeit grafisch darstellen und speichern.
|
||||||
|
|
||||||
Attached below you can also find our final report with details on the programming and thought process.
|
Unten angehängt finden Sie auch unseren Abschlussbericht mit Details zur Programmierung und zum Gedankenprozess.
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://acrobat.adobe.com/link/track?uri=urn:aaid:scds:US:23118565-e24e-4586-b0e0-c0ef7550a067">Read the full report</a>
|
<a class="colored external" href="https://acrobat.adobe.com/link/track?uri=urn:aaid:scds:US:23118565-e24e-4586-b0e0-c0ef7550a067">Den vollständigen Bericht lesen</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/cstenkamp/medibot_pythonbackend">Look at the Project on GitHub</a>
|
<a class="colored external" href="https://github.com/cstenkamp/medibot_pythonbackend">Das Projekt auf GitHub ansehen</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% alert(note=true) %}
|
{% alert(note=true) %}
|
||||||
After this being my first dip into using the Google Framework for the creation of a speech assistant and encountering many problems along the way that partly found their way also into the final report, now I managed to utilize these explorations and am currently working to create [Ällei](/allei/), another chatbot with a different focus, which is not realized within Actions on google, but will rather be getting its own react app on a website.
|
Nachdem dies mein erster Einblick in die Nutzung des Google Frameworks für die Erstellung eines Sprachassistenten war und ich dabei auf viele Probleme stieß, die teilweise auch Eingang in den Abschlussbericht fanden, konnte ich diese Erfahrungen nutzen und arbeite derzeit an [Ällei](/allei/), einem weiteren Chatbot mit einem anderen Schwerpunkt, der nicht innerhalb von Actions on Google realisiert wird, sondern eine eigene React-App auf einer Website erhält.
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Coding Examples"
|
title = "Coding-Beispiele"
|
||||||
date = 2021-03-01
|
date = 2021-03-01
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
description = "A selection of coding projects from my Bachelor's in Cognitive Science"
|
description = "Eine Auswahl von Coding-Projekten aus meinem Bachelor in Kognitionswissenschaft"
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = [
|
tags = [
|
||||||
|
|
@ -31,59 +31,59 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Neural Networks and Computer Vision
|
## Neuronale Netze und Computer Vision
|
||||||
|
|
||||||
## A selection of coding projects
|
## Eine Auswahl von Coding-Projekten
|
||||||
|
|
||||||
Although pure coding and debugging are often not a passion of mine, I recognize the importance of neural networks and other recent developments in Computer Vision. From several projects regarding AI and Machine Learning that I co-authored during my Bachelor Program, I picked this one since I think it is well documented and explains on a step-by-step basis what we do there.
|
Obwohl reines Programmieren und Debugging oft nicht meine Leidenschaft sind, erkenne ich die Bedeutung von neuronalen Netzen und anderen neueren Entwicklungen in der Computer Vision. Aus mehreren Projekten zu KI und maschinellem Lernen, die ich während meines Bachelor-Programms mitentwickelt habe, habe ich dieses ausgewählt, da ich denke, dass es gut dokumentiert ist und Schritt für Schritt erklärt, was wir dort tun.
|
||||||
|
|
||||||
### Image Super-Resolution using Convolutional Neural Networks (Recreation of a 2016 Paper)
|
### Bild-Superauflösung mittels Faltungsneuronaler Netze (Nachbildung einer Arbeit von 2016)
|
||||||
|
|
||||||
Image Super-Resolution is a hugely important topic in Computer Vision. If it works sufficiently advanced, we could take all our screenshots and selfies and cat pictures from the 2006 facebook-era and even from before and scale them up to suit modern 4K needs.
|
Bild-Superauflösung ist ein enorm wichtiges Thema in der Computer Vision. Wenn es ausreichend fortgeschritten funktioniert, könnten wir all unsere Screenshots, Selfies und Katzenbilder aus der Facebook-Ära 2006 und sogar von davor nehmen und sie auf moderne 4K-Anforderungen hochskalieren.
|
||||||
|
|
||||||
Just to give an example of what is possible in 2020, just 4 years after the paper here, have a look at this video from 1902:
|
Um ein Beispiel dafür zu geben, was im Jahr 2020, nur 4 Jahre nach der hier vorgestellten Arbeit, möglich ist, wirf einen Blick auf dieses Video von 1902:
|
||||||
|
|
||||||
{{ youtube(id="EQs5VxNPhzk") }}
|
{{ youtube(id="EQs5VxNPhzk") }}
|
||||||
|
|
||||||
The 2016 paper we had a look at is much more modest: it tries to upscale only a single Image, but historically, it was one of the first to achieve computing times sufficiently small to make such realtime-video-upscaling as visible in the Video (from 2020) or of the likes that Nvidia uses nowadays to upscale Videogames.
|
Die von uns betrachtete Arbeit von 2016 ist deutlich bescheidener: Sie versucht nur ein einzelnes Bild hochzuskalieren, aber historisch gesehen war sie eine der ersten, die Rechenzeiten erreichte, die klein genug waren, um solche Echtzeit-Video-Hochskalierung zu ermöglichen, wie du sie im Video (von 2020) siehst oder wie sie Nvidia heutzutage zur Hochskalierung von Videospielen verwendet.
|
||||||
|
|
||||||
Example of a Super-Resolution Image.
|
Beispiel einer Super-Resolution-Aufnahme.
|
||||||
The Neural network is artificially adding Pixels so that we can finally put our measly selfie on a billboard poster and not be appalled by our deformed-and-pixelated-through-technology face.
|
Das neuronale Netz fügt künstlich Pixel hinzu, sodass wir unser bescheidenes Selfie endlich auf einem Werbeplakat platzieren können, ohne von unserem durch Technologie verformten und verpixelten Gesicht entsetzt zu sein.
|
||||||
|
|
||||||
{% gallery() %}
|
{% gallery() %}
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"file": "sample_lr.png",
|
"file": "sample_lr.png",
|
||||||
"title": "A low-resolution sample",
|
"title": "Eine niedrigauflösende Probe",
|
||||||
"alt": "A sample image with low resolution, used as a baseline for comparison."
|
"alt": "Ein Beispielbild mit niedriger Auflösung, das als Vergleichsbasis dient."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "sample_hr.png",
|
"file": "sample_hr.png",
|
||||||
"title": "A high-resolution sample. This is also called 'ground truth'",
|
"title": "Eine hochauflösende Probe. Dies wird auch als 'Ground Truth' bezeichnet",
|
||||||
"alt": "A high-resolution image that serves as the reference ground truth for comparison with other samples."
|
"alt": "Ein hochauflösendes Bild, das als Referenz-Ground-Truth für den Vergleich mit anderen Proben dient."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "sample_sr.png",
|
"file": "sample_sr.png",
|
||||||
"title": "The artificially enlarged image patch resulting from the algorithm",
|
"title": "Der künstlich vergrößerte Bildausschnitt, der aus dem Algorithmus resultiert",
|
||||||
"alt": "A sample image where the resolution has been artificially increased using an image enhancement algorithm."
|
"alt": "Ein Beispielbild, bei dem die Auflösung künstlich mittels eines Bildverbesserungsalgorithmus erhöht wurde."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "sample_loss.png",
|
"file": "sample_loss.png",
|
||||||
"title": "A graph showing an exemplary loss function applied during training",
|
"title": "Ein Graph, der eine exemplarische Verlustfunktion zeigt, die während des Trainings angewendet wurde",
|
||||||
"alt": "A graph illustrating the loss function used to train the model, showing the model's performance over time."
|
"alt": "Ein Graph, der die beim Training des Modells verwendete Verlustfunktion illustriert und die Leistung des Modells im Zeitverlauf zeigt."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "sample_cos_sim.png",
|
"file": "sample_cos_sim.png",
|
||||||
"title": "One qualitative measurement we used was pixel-wise cosine similarity. It is used to measure how similar the output and the ground truth images are",
|
"title": "Eine qualitative Messung, die wir verwendeten, war die pixelweise Kosinus-Ähnlichkeit. Sie wird verwendet, um zu messen, wie ähnlich die Ausgabe- und Ground-Truth-Bilder sind",
|
||||||
"alt": "A visualization of pixel-wise cosine similarity, used to quantify how similar the generated image is to the ground truth image."
|
"alt": "Eine Visualisierung der pixelweisen Kosinus-Ähnlichkeit, die verwendet wird, um zu quantifizieren, wie ähnlich das generierte Bild dem Ground-Truth-Bild ist."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
[The Python notebook for Image super-resolution in Colab]( https://colab.research.google.com/drive/1RlgIKJmX8Omz9CTktX7cdIV_BwarUFpv?usp=sharing)
|
[Das Python-Notebook für Bild-Superauflösung in Colab](https://colab.research.google.com/drive/1RlgIKJmX8Omz9CTktX7cdIV_BwarUFpv?usp=sharing)
|
||||||
|
|
||||||
### MTCNN (Application and Comparison of a 2016 Paper)
|
### MTCNN (Anwendung und Vergleich einer Arbeit von 2016)
|
||||||
|
|
||||||
Here, you can also have a look at another, much smaller project, where we rebuilt a rather classical Machine learning approach for face detection. Here, we use preexisting libraries to demonstrate the difference in efficacy of approaches, showing that Multi-task Cascaded Convolutional Networks (MTCNN) was one of the best-performing approaches in 2016. Since I invested much more love and work into the above project, I would prefer for you to check that one out, in case two projects are too much.
|
Hier kannst du auch einen Blick auf ein anderes, viel kleineres Projekt werfen, bei dem wir einen eher klassischen maschinellen Lernansatz für die Gesichtserkennung nachgebaut haben. Hier verwenden wir bestehende Bibliotheken, um die Unterschiede in der Wirksamkeit der Ansätze zu demonstrieren und zu zeigen, dass Multi-task Cascaded Convolutional Networks (MTCNN) einer der leistungsfähigsten Ansätze im Jahr 2016 war. Da ich in das obige Projekt viel mehr Liebe und Arbeit investiert habe, würde ich dir empfehlen, dir dieses anzusehen, falls zwei Projekte zu viel sind.
|
||||||
|
|
||||||
[Face detection using a classical AI Approach (Recreation of a 2016 Paper)](https://colab.research.google.com/drive/1uNGsVZ0Q42JRNa3BuI4W-JNJHaXD26bu?usp=sharing)
|
[Gesichtserkennung mit einem klassischen KI-Ansatz (Nachbildung einer Arbeit von 2016)](https://colab.research.google.com/drive/1uNGsVZ0Q42JRNa3BuI4W-JNJHaXD26bu?usp=sharing)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
+++
|
+++
|
||||||
title = "Bachelor Thesis"
|
title = "Bachelorarbeit"
|
||||||
date = 2021-04-13
|
date = 2021-04-13
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
description = "My Bachelor Thesis: an online psycholinguistic study using reaction time"
|
description = "Meine Bachelorarbeit: Eine psycholinguistische Online-Studie mit Reaktionszeitmessung"
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = [
|
tags = [
|
||||||
|
|
@ -30,54 +30,54 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
featured = true
|
featured = true
|
||||||
+++
|
+++
|
||||||
## An online psycholinguistic study using reaction time
|
## Eine psycholinguistische Online-Studie mit Reaktionszeitmessung
|
||||||
|
|
||||||
Last year, I wrote my thesis during the pandemic. With the struggles our university had transitioning to online teaching, I selected a guided topic, although my initial dream was to start writing about my proposed plan for automated plastic recycling. You can read more about that here:
|
Letztes Jahr habe ich meine Bachelorarbeit während der Pandemie geschrieben. Angesichts der Schwierigkeiten, die unsere Universität bei der Umstellung auf Online-Lehre hatte, habe ich mich für ein betreutes Thema entschieden, obwohl mein ursprünglicher Traum war, über meinen Vorschlag zum automatisierten Plastikrecycling zu schreiben. Mehr dazu kannst du hier lesen:
|
||||||
|
|
||||||
<embed
|
<embed
|
||||||
src="/documents/AronPetauBAThesis.pdf"
|
src="/documents/AronPetauBAThesis.pdf"
|
||||||
type="application/pdf"
|
type="application/pdf"
|
||||||
style="width: 100%; height: 80vh; margin: 0 auto; display: block; border: 1px solid #ccc;" />
|
style="width: 100%; height: 80vh; margin: 0 auto; display: block; border: 1px solid #ccc;" />
|
||||||
|
|
||||||
I chose a project that wanted to examine the possibilities of a novel smart hearing protection device specifically designed for auditory hypersensitivity, which is often, but not always, and not exclusively a phenomenon visible in people with an autism spectrum disorder.
|
Ich habe mich für ein Projekt entschieden, das die Möglichkeiten eines neuartigen intelligenten Gehörschutzes untersuchen wollte, der speziell für auditive Überempfindlichkeit entwickelt wurde - ein Phänomen, das häufig, aber nicht immer und nicht ausschließlich bei Menschen mit einer Autismus-Spektrum-Störung zu beobachten ist.
|
||||||
|
|
||||||
A common reaction to this elevated sensitivity is stress and avoidance behavior, often leading to very awkward social situations and impairing the ability to take part in social situations.
|
Eine häufige Reaktion auf diese erhöhte Empfindlichkeit sind Stress und Vermeidungsverhalten, was oft zu sehr unangenehmen sozialen Situationen führt und die Fähigkeit zur Teilnahme am sozialen Leben beeinträchtigt.
|
||||||
|
|
||||||
Schools are one such social situation and we all know the stress a noisy classroom can produce. Concentration is gone, and education, as well as essential skills like language reproduction, suffer.
|
Schulen sind eine solche soziale Situation, und wir alle kennen den Stress, den ein lautes Klassenzimmer erzeugen kann. Die Konzentration ist weg, und sowohl die Bildung als auch wichtige Fähigkeiten wie die Sprachreproduktion leiden darunter.
|
||||||
|
|
||||||
There is lots of prior research on these fields, and there is some evidence that sensory information in people on the Autism spectrum is processed differently than in a neurotypical brain. It seems that a certain adaptability, needed to overcome noise issues and bridge asynchrony between auditory and visual sensory input, is reduced in some people on the Autism Spectrum.
|
Es gibt viel Forschung in diesen Bereichen, und es gibt Hinweise darauf, dass sensorische Informationen bei Menschen im Autismus-Spektrum anders verarbeitet werden als in einem neurotypischen Gehirn. Es scheint, dass eine gewisse Anpassungsfähigkeit, die benötigt wird, um Lärmprobleme zu überwinden und Asynchronität zwischen auditiven und visuellen Sinneseindrücken zu überbrücken, bei manchen Menschen im Autismus-Spektrum reduziert ist.
|
||||||
|
|
||||||
In essence, my experiment was responsible for looking at neurotypical people and measuring any effect on language perception produced by varying the delay between auditory and visual input, as well as the loudness.
|
Im Kern ging es in meinem Experiment darum, neurotypische Menschen zu untersuchen und jegliche Auswirkungen auf die Sprachwahrnehmung zu messen, die durch unterschiedliche Verzögerungen zwischen auditiven und visuellen Eingängen sowie durch die Lautstärke entstehen.
|
||||||
|
|
||||||
Here, I had the possibility to conduct an entire reaction-time-based experiment with over 70 participants and went through all the struggles that come with proper science.
|
Hier hatte ich die Möglichkeit, ein komplettes reaktionszeitbasiertes Experiment mit über 70 Teilnehmenden durchzuführen und alle Herausforderungen zu erleben, die mit richtiger Wissenschaft einhergehen.
|
||||||
I did extensive literature research, coded the experiment, and learned a lot about the reasons nobody really ever does reaction time-based studies like this via a common internet browser.
|
Ich habe umfangreiche Literaturrecherche betrieben, das Experiment programmiert und viel darüber gelernt, warum eigentlich niemand reaktionszeitbasierte Studien wie diese über einen gewöhnlichen Internetbrowser durchführt.
|
||||||
It was an almost 9 months long learning experience full of doing things I had never done before.
|
Es war eine fast 9-monatige Lernerfahrung voller Dinge, die ich noch nie zuvor gemacht hatte.
|
||||||
|
|
||||||
I learned and got to love writing in Latex, had to learn JavaScript for the efficient serving of the stimuli, and R for the statistical analysis. I also got to brush up on my data visualization skills in Python and made some pretty graphs of the results.
|
Ich habe gelernt, in LaTeX zu schreiben und es zu lieben, musste JavaScript für die effiziente Bereitstellung der Stimuli lernen und R für die statistische Analyse. Außerdem konnte ich meine Fähigkeiten in der Datenvisualisierung mit Python auffrischen und habe einige schöne Grafiken der Ergebnisse erstellt.
|
||||||
|
|
||||||
The experiment is still working and online if you want to have a look at it. Be mindful though that measuring reaction speed every millisecond is important, which is why it makes heavy use of your browser cache and has been known to crash and defeat some not-so-tough computers.
|
Das Experiment läuft noch und ist online, falls du einen Blick darauf werfen möchtest. Beachte aber, dass die Messung der Reaktionsgeschwindigkeit in Millisekunden wichtig ist, weshalb es deinen Browser-Cache stark nutzt und dafür bekannt ist, weniger leistungsstarke Computer in die Knie zu zwingen.
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://moryscarter.com/vespr/pavlovia.php?folder=arontaupe&experiment=av_experiment/&id=public&researcher=aron">Try out the experiment yourself</a>
|
<a class="colored external" href="https://moryscarter.com/vespr/pavlovia.php?folder=arontaupe&experiment=av_experiment/&id=public&researcher=aron">Probier das Experiment selbst aus</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
Even with writing alone I had extensive helpful feedback from my supervisors and learned a lot about scientific processes and associated considerations.
|
Schon allein beim Schreiben bekam ich umfangreiches hilfreiches Feedback von meinen Betreuern und lernte viel über wissenschaftliche Prozesse und damit verbundene Überlegungen.
|
||||||
|
|
||||||
There was always the next unsolvable problem. Just one example was scientificity and ethical considerations clashing, data privacy against the accuracy of results. Since the machines participants participated on, were private devices, I was unable to know important data like their internet speed and provider, their type of GPU, and their type of external hardware. Turns out, for an auditory experiment, the type and setup of the speakers do play an important role and influence response speed.
|
Es gab immer das nächste unlösbare Problem. Ein Beispiel war der Konflikt zwischen Wissenschaftlichkeit und ethischen Überlegungen, Datenschutz gegen die Genauigkeit der Ergebnisse. Da die Teilnehmenden private Geräte nutzten, konnte ich wichtige Daten wie ihre Internetgeschwindigkeit und -anbieter, ihre GPU-Art und ihre externe Hardware nicht kennen. Es stellte sich heraus, dass bei einem auditiven Experiment die Art und Einrichtung der Lautsprecher eine wichtige Rolle spielen und die Reaktionsgeschwindigkeit beeinflussen.
|
||||||
|
|
||||||
The final version of my thesis has something around 80 pages, much of it utterly boring, but nevertheless important statistical analyses.
|
Die endgültige Version meiner Arbeit hat etwa 80 Seiten, vieles davon absolut langweilig, aber dennoch wichtige statistische Analysen.
|
||||||
If you really want to, you can have a look at the whole thing here:
|
Wenn du wirklich möchtest, kannst du dir hier das Ganze ansehen:
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis/blob/main/AronPetauBAThesis.pdf">Read the original Thesis</a>
|
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis/blob/main/AronPetauBAThesis.pdf">Lies die originale Arbeit</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
I am a fan and proponent of open source and open science practices.
|
Ich bin ein Fan und Befürworter von Open Source und Open Science Praktiken.
|
||||||
So here you can also find the rest of the project with the original source code.
|
Hier findest du auch den Rest des Projekts mit dem originalen Quellcode.
|
||||||
I am not yet where I want to be with my documentation practices, and it scares me a bit that anyone can now have a full grasp of all the mistakes I did, but I am throwing this out there as a practice step. I learned and gained a lot from looking at other people's projects and I strive to be open about my processes too.
|
Ich bin noch nicht da, wo ich mit meinen Dokumentationspraktiken sein möchte, und es macht mir ein bisschen Angst, dass jetzt jeder alle meine Fehler sehen kann, aber ich stelle es als Übungsschritt zur Verfügung. Ich habe viel vom Anschauen anderer Projekte gelernt und profitiert, und ich strebe danach, auch offen über meine Prozesse zu sein.
|
||||||
|
|
||||||
The original video stimuli are not mine and I have no right releasing them, so they are omitted here.
|
Die originalen Video-Stimuli gehören nicht mir und ich habe kein Recht, sie zu veröffentlichen, daher sind sie hier ausgelassen.
|
||||||
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis">Find the complete Repo on Github</a>
|
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis">Finde das komplette Repo auf Github</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Iron Smelting"
|
title = "Eisenverhüttung"
|
||||||
date = 2021-08-01
|
date = 2021-08-01
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
description = "Impressions from the International Smelting Days 2021"
|
description = "Eindrücke von den International Smelting Days 2021"
|
||||||
|
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
|
|
@ -29,85 +29,85 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Iron Smelting
|
## Eisenverhüttung
|
||||||
|
|
||||||
### Impressions from the International Smelting Days 2021
|
### Eindrücke von den International Smelting Days 2021
|
||||||
|
|
||||||
### The concept
|
### Das Konzept
|
||||||
|
|
||||||
Since I was a small child I regularly took part in the yearly international congress called Iron Smelting Days (ISD).
|
Seit ich ein kleines Kind war, nehme ich regelmäßig am jährlichen internationalen Kongress namens Iron Smelting Days (ISD) teil.
|
||||||
This is a congress of transdisciplinary people from all over Europe, including historians, archeologists, blacksmiths, steel producers, and many invested hobbyists.
|
Dies ist ein Kongress von interdisziplinären Menschen aus ganz Europa, darunter Historiker, Archäologen, Schmiede, Stahlproduzenten und viele engagierte Hobbyisten.
|
||||||
The proclaimed goal of these events is to understand the ancient production of iron as it happened throughout the iron age and also much after. A bloomery furnace was used to create iron. Making iron requires iron ore and heat under the exclusion of oxygen. It is a highly fragile process that takes an incredible amount of work. The designs and methods vary a lot and were very adapted to the region and local conditions, unlike the much later, more industrialized process using blast furnaces.
|
Das erklärte Ziel dieser Veranstaltungen ist es, die antike Eisenproduktion zu verstehen, wie sie während der Eisenzeit und auch danach stattfand. Ein Rennofen wurde zur Eisenherstellung verwendet. Zur Eisenherstellung braucht man Eisenerz und Hitze unter Ausschluss von Sauerstoff. Es ist ein hochsensibler Prozess, der einen unglaublichen Arbeitsaufwand erfordert. Die Bauweisen und Methoden variierten stark und waren sehr an die Region und lokalen Bedingungen angepasst, anders als der viel spätere, stärker industrialisierte Prozess mit Hochöfen.
|
||||||
|
|
||||||
To this day it is quite unclear how prehistoric people managed to get the amount and quality of iron we know they had.
|
Bis heute ist unklar, wie prähistorische Menschen die Menge und Qualität an Eisen erreichten, von der wir wissen, dass sie sie hatten.
|
||||||
The furnaces that were built were often clay structures and are not preserved. Archeologists often find the leftover burned ore and minerals, giving us some indication of the structure and composition of the ancient furnaces.
|
Die gebauten Öfen waren oft Lehmkonstruktionen und sind nicht erhalten geblieben. Archäologen finden häufig die übrig gebliebene verbrannte Schlacke und Mineralien, die uns Hinweise auf die Struktur und Zusammensetzung der antiken Öfen geben.
|
||||||
The group around the ISD takes up a practical archeological approach and we try to recreate the ancient methods with the added capability of maybe sticking temperature probes or electric blowers. Each year we meet up in a different European city and try to adapt to the local conditions, often with local ore and local coal. It is a place where different areas of expertise come together to educate each other while sitting together through the intense day- and night shifts to feed the furnaces.
|
Die Gruppe um die ISD verfolgt einen praktischen archäologischen Ansatz, und wir versuchen, die antiken Methoden nachzubilden - mit der zusätzlichen Möglichkeit, Temperaturfühler oder elektrische Gebläse einzusetzen. Jedes Jahr treffen wir uns in einer anderen europäischen Stadt und passen uns an die lokalen Bedingungen an, oft mit lokalem Erz und lokaler Kohle. Es ist ein Ort, an dem verschiedene Fachgebiete zusammenkommen, um sich gegenseitig zu unterrichten, während wir gemeinsam die intensiven Tag- und Nachtschichten verbringen, um die Öfen zu beschicken.
|
||||||
Since being a kid, I started building my own furnaces and read up on the process so I could participate.
|
Seit ich ein Kind war, begann ich meine eigenen Öfen zu bauen und las mich in den Prozess ein, damit ich teilnehmen konnte.
|
||||||
Technology gets a different tint when one is involved in such a process: Even the lights we put up to work through the evening are technically cheating. We use thermometers, meticulously weigh and track the inbound coal and ore, and have many modern amenities around. Yet - with our much more advanced technology, our results are often inferior in quantity and quality in comparison with historical findings. Without modern scales, iron-age people were more accurate and consistent than we are.
|
Technologie erscheint in einem anderen Licht, wenn man in einen solchen Prozess involviert ist: Selbst die Lampen, die wir aufstellen, um durch den Abend zu arbeiten, sind technisch gesehen schon Schummeln. Wir verwenden Thermometer, wiegen und verfolgen akribisch die eingehende Kohle und das Erz und haben viele moderne Annehmlichkeiten um uns herum. Dennoch - mit unserer viel fortschrittlicheren Technologie sind unsere Ergebnisse oft minderwertig in Menge und Qualität im Vergleich zu historischen Funden. Ohne moderne Waagen waren die Menschen der Eisenzeit genauer und konsistenter als wir.
|
||||||
|
|
||||||
After some uncertainty about whether it would take place in 2021 again after it was canceled in 2020, a small group met up in Ulft, Netherlands.
|
Nach einiger Ungewissheit, ob es 2021 nach der Absage in 2020 wieder stattfinden würde, traf sich eine kleine Gruppe in Ulft, Niederlande.
|
||||||
This year in Ulft, another group made local coal, so that the entire process was even lengthier, and visitors came from all over to learn about making iron the pre-historic way.
|
Dieses Jahr in Ulft stellte eine andere Gruppe lokale Kohle her, sodass der gesamte Prozess noch länger dauerte, und Besucher kamen von überall her, um zu lernen, wie man Eisen auf prähistorische Weise herstellt.
|
||||||
|
|
||||||
Below I captured most of the process in some time-lapses.
|
Unten habe ich den größten Teil des Prozesses in einigen Zeitraffern festgehalten.
|
||||||
|
|
||||||
## The Process
|
## Der Prozess
|
||||||
|
|
||||||
{{ youtube(id="mC_RHxVbo2M") }}
|
{{ youtube(id="mC_RHxVbo2M") }}
|
||||||
|
|
||||||
Here you can see a timelapse of me building a version of an Iron Furnace
|
Hier kannst du einen Zeitraffer sehen, wie ich eine Version eines Eisenofens baue.
|
||||||
|
|
||||||
As you can see, we are using some quite modern materials, such as bricks, this is due to the time constraints of the ISD.
|
Wie du siehst, verwenden wir einige recht moderne Materialien, wie zum Beispiel Ziegel. Dies liegt an den zeitlichen Beschränkungen der ISD.
|
||||||
Making an oven completely from scratch is a much more lengthy process requiring drying periods in between building.
|
Ein Ofen komplett von Grund auf zu bauen ist ein viel längerer Prozess, der Trocknungsphasen zwischen dem Bauen erfordert.
|
||||||
|
|
||||||
After, the furnace is dried and heated up
|
Danach wird der Ofen getrocknet und aufgeheizt.
|
||||||
|
|
||||||
Over the course of the process, more than 100 kgs of coal and around 20 kgs of ore are used to create a final piece of iron of 200 - 500g, just enough for a single knife.
|
Im Laufe des Prozesses werden mehr als 100 kg Kohle und etwa 20 kg Erz verwendet, um ein finales Eisenstück von 200 - 500g herzustellen, gerade genug für ein einzelnes Messer.
|
||||||
|
|
||||||
With all the modern amenities and conveniences available to us, a single run still takes more than 3 people working over 72 hours, not accounting for the coal-making or mining and relocating the iron ore.
|
Mit all den modernen Annehmlichkeiten und Bequemlichkeiten, die uns zur Verfügung stehen, braucht ein einzelner Durchlauf immer noch mehr als 3 Personen, die über 72 Stunden arbeiten, ohne die Kohleherstellung oder den Abbau und Transport des Eisenerzes zu berücksichtigen.
|
||||||
|
|
||||||
Some more impressions from the ISD
|
Einige weitere Eindrücke von der ISD
|
||||||
|
|
||||||
{% gallery() %}
|
{% gallery() %}
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"file": "coal_furnace.jpg",
|
"file": "coal_furnace.jpg",
|
||||||
"title": "a loaded bloomery furnace",
|
"title": "Ein beladener Rennofen",
|
||||||
"alt": "a loaded furnace"
|
"alt": "Ein beladener Ofen"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "isd_drone.jpg",
|
"file": "isd_drone.jpg",
|
||||||
"title": "The ISD from above",
|
"title": "Die ISD von oben",
|
||||||
"alt": "the ISD from above"
|
"alt": "Die ISD von oben"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "iron_result.jpg",
|
"file": "iron_result.jpg",
|
||||||
"title": "glowing iron",
|
"title": "Glühendes Eisen",
|
||||||
"alt": "glowing iron"
|
"alt": "Glühendes Eisen"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "burning_furnace.jpg",
|
"file": "burning_furnace.jpg",
|
||||||
"title": "a furnace burning",
|
"title": "Ein brennender Ofen",
|
||||||
"alt": "a furnace burning"
|
"alt": "Ein brennender Ofen"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "compacting_iron.jpg",
|
"file": "compacting_iron.jpg",
|
||||||
"title": "Compacting the resulting iron",
|
"title": "Verdichten des gewonnenen Eisens",
|
||||||
"alt": "compacting the resulting iron"
|
"alt": "Verdichten des gewonnenen Eisens"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "flir_furnace.jpg",
|
"file": "flir_furnace.jpg",
|
||||||
"title": "a heat camera image of the furnace",
|
"title": "Eine Wärmebildaufnahme des Ofens",
|
||||||
"alt": "a heat camera image of the furnace"
|
"alt": "Eine Wärmebildaufnahme des Ofens"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "iron_smelting_graph.png",
|
"file": "iron_smelting_graph.png",
|
||||||
"title": "A cross-section illustrating the temperatures reached",
|
"title": "Ein Querschnitt, der die erreichten Temperaturen zeigt",
|
||||||
"alt": "A cross-section of my furnace type"
|
"alt": "Ein Querschnitt meines Ofentyps"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
For me, it is very hard to define what technology encompasses. It certainly goes beyond the typically associated imagery of computing and industrial progress. It is a mode of encompassing the world and adopting other technologies, be it by time or by region makes me feel how diffused the phenomenon of technology is into my world.
|
Für mich ist es sehr schwer zu definieren, was Technologie alles umfasst. Es geht sicherlich über die typischerweise assoziierten Bilder von Computing und industriellem Fortschritt hinaus. Es ist eine Art, die Welt zu erfassen, und die Anpassung an andere Technologien, sei es durch Zeit oder Region, lässt mich spüren, wie diffus das Phänomen der Technologie in meiner Welt ist.
|
||||||
|
|
||||||
[Find out more about the ISD](https://sites.google.com/view/eu-iron-smelting-days/home?authuser=0
|
[Erfahre mehr über die ISD](https://sites.google.com/view/eu-iron-smelting-days/home?authuser=0
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Ällei"
|
title = "Ällei"
|
||||||
date = 2022-04-01
|
date = 2022-04-01
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
description = "An inclusive chatbot for the Sommerblut Festival"
|
description = "Ein inklusiver Chatbot für das Sommerblut Festival"
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = [
|
tags = [
|
||||||
|
|
@ -29,49 +29,49 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Meet Ällei - the accessible chatbot
|
## Triff Ällei - den barrierefreien Chatbot
|
||||||
|
|
||||||
### Sommerblut
|
### Sommerblut
|
||||||
|
|
||||||
Natural Language Understanding fascinates me and recently I started collaborating with the team of the Sommerblut Festival in Cologne to deliver them a customized chatbot that will be able to communicate with everyone, respecting accessibility standards to include all people. It will be able to communicate in German Sign Language (DGS), as well as service blind people, and we aim to incorporate the simple language concept.
|
Natural Language Understanding (Natürliches Sprachverständnis) fasziniert mich, und kürzlich begann ich eine Zusammenarbeit mit dem Team des Sommerblut Festivals in Köln, um einen maßgeschneiderten Chatbot zu entwickeln, der mit allen Menschen kommunizieren kann und dabei Barrierefreiheitsstandards einhält. Er wird in Deutscher Gebärdensprache (DGS) kommunizieren können, blinde Menschen unterstützen und wir streben an, das Konzept der Leichten Sprache zu integrieren.
|
||||||
|
|
||||||
I find it to be an amazing challenge to start out with the requirement of really being inclusive. In ordinary social contexts, it is often not obvious, but when analyzing the specific needs a blind person has browsing the internet, it is drastically different from a person having impaired hearing. To hold the same conversation with both of them is proving quite a challenge. And this is just the first step down into a very deep field of digital inclusiveness. How can people with a speech impediment use our tool? How do we include people speaking German as a foreign language?
|
Ich finde es eine spannende Herausforderung, von Anfang an wirklich inklusiv zu sein. In gewöhnlichen sozialen Kontexten ist es oft nicht offensichtlich, aber wenn man die spezifischen Bedürfnisse einer blinden Person beim Surfen im Internet analysiert, unterscheiden sie sich drastisch von denen einer Person mit Hörbeeinträchtigung. Mit beiden die gleiche Unterhaltung zu führen, erweist sich als große Herausforderung. Und das ist nur der erste Schritt in ein sehr tiefgreifendes Feld der digitalen Inklusion. Wie können Menschen mit einer Sprachbehinderung unser Tool nutzen? Wie beziehen wir Menschen ein, die Deutsch als Fremdsprache sprechen?
|
||||||
|
|
||||||
Such vast challenges are often obfuscated by the technical framework of our digital lives.
|
Solch umfangreiche Herausforderungen werden oft durch den technischen Rahmen unseres digitalen Lebens verschleiert.
|
||||||
|
|
||||||
I find digital accessibility a hugely interesting area, one that I am just now starting to explore.
|
Ich finde digitale Barrierefreiheit ein äußerst interessantes Gebiet, das ich gerade erst beginne zu erkunden.
|
||||||
|
|
||||||
This is a work in progress. We have some interesting ideas and will present a conceptual prototype, come check again after March 6th, when the 2022 festival started. Or come to the official digital presentation for the bot.
|
Dies ist ein Work in Progress. Wir haben einige interessante Ideen und werden einen konzeptionellen Prototyp vorstellen. Schau nach dem 6. März wieder vorbei, wenn das Festival 2022 begonnen hat. Oder komm zur offiziellen digitalen Präsentation des Bots.
|
||||||
|
|
||||||
This bot is my first paid software work and I am getting to work with several awesome people and teams to realize different parts of the project. Here, I am not responsible for anything in the Front end, the product you will interact with here is by no means finished and may not respond at times, since we are moving and restarting it for production purposes.
|
Dieser Bot ist meine erste bezahlte Softwarearbeit, und ich habe die Gelegenheit, mit mehreren großartigen Menschen und Teams zusammenzuarbeiten, um verschiedene Teile des Projekts zu realisieren. Hier bin ich nicht für das Frontend verantwortlich. Das Produkt, mit dem du hier interagierst, ist keineswegs fertig und reagiert möglicherweise zeitweise nicht, da wir es für Produktionszwecke verschieben und neu starten.
|
||||||
Nevertheless, all the intended core features of the bot are present and you can try it out there in the corner.
|
Dennoch sind alle geplanten Kernfunktionen des Bots vorhanden, und du kannst ihn dort in der Ecke ausprobieren.
|
||||||
If you wish to see more of the realization process, the entire project is on a public GitHub and is intended to ship as open source.
|
Wenn du mehr über den Realisierungsprozess erfahren möchtest: Das gesamte Projekt ist auf einem öffentlichen GitHub-Repository und soll als Open Source veröffentlicht werden.
|
||||||
|
|
||||||
In the final version (for now), every single sentence will be accompanied by a video in German Sign Language (DGS).
|
In der finalen Version (vorerst) wird jeder einzelne Satz von einem Video in Deutscher Gebärdensprache (DGS) begleitet.
|
||||||
It can gracefully recover from some common input errors and can make live calls to external databases, displaying further information about all the events of the festival and teaching the Fingeralphabet. It supports free text input and is completely screen-reader compatible. It is scripted in easy language, to further facilitate access.
|
Der Bot kann elegant mit häufigen Eingabefehlern umgehen und kann Live-Abfragen an externe Datenbanken durchführen, um weitere Informationen über alle Veranstaltungen des Festivals anzuzeigen und das Fingeralphabet zu lehren. Er unterstützt Freitexteingabe und ist vollständig mit Screenreadern kompatibel. Er ist in Leichter Sprache geschrieben, um den Zugang weiter zu erleichtern.
|
||||||
It is mostly context-aware and features quite a bit of dynamic content generated based on user input.
|
Er ist weitgehend kontextsensitiv und bietet eine Menge dynamischer Inhalte, die basierend auf den Benutzereingaben generiert werden.
|
||||||
|
|
||||||
Have a look at the GitHub Repository here:
|
Schau dir das GitHub-Repository hier an:
|
||||||
[Check out the Repo](https://github.com/arontaupe/KommunikationsKrake)
|
[Zum Repository](https://github.com/arontaupe/KommunikationsKrake)
|
||||||
|
|
||||||
If Ällei is for some reason not present on the page here, check out the prototype page, also found in the GitHub Repo.
|
Falls Ällei aus irgendeinem Grund hier auf der Seite nicht zu sehen ist, schau dir die Prototyp-Seite an, die ebenfalls im GitHub-Repo zu finden ist.
|
||||||
|
|
||||||
[Check out the prototype page](https://arontaupe.github.io/KommunikationsKrake/)
|
[Zur Prototyp-Seite](https://arontaupe.github.io/KommunikationsKrake/)
|
||||||
|
|
||||||
{% alert(important=true) %}
|
{% alert(important=true) %}
|
||||||
I regard accessibility as a core question of both design and computation, really making tangible the prestructured way of our interaction with technology in general.
|
Ich betrachte Barrierefreiheit als eine zentrale Frage sowohl des Designs als auch der Informatik, die die vorstrukturierte Art unserer Interaktion mit Technologie im Allgemeinen greifbar macht.
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
[Check out the Sommerblut Website](https://www.sommerblut.de/)
|
[Zur Sommerblut-Website](https://www.sommerblut.de/)
|
||||||
|
|
||||||
{% alert(note=true) %}
|
{% alert(note=true) %}
|
||||||
Update: we now have a launch date, which will be held online. Further information can be found here:
|
Update: Wir haben jetzt einen Starttermin, der online stattfinden wird. Weitere Informationen findest du hier:
|
||||||
[Check out our Launch Event](https://www.sommerblut.de/ls/veranstaltung/875-allei)
|
[Zu unserem Launch-Event](https://www.sommerblut.de/ls/veranstaltung/875-allei)
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
{% alert(note=true) %}
|
{% alert(note=true) %}
|
||||||
Update 2: The Chatbot is now online for a while already and finds itself in a "public beta", so to speak, a phase where it can be used and evaluated by users and is collecting feedback. Also, since this is Google, after all, all the inputs are collected and then further used to improve weak spots in the architecture of the bot.
|
Update 2: Der Chatbot ist jetzt schon eine Weile online und befindet sich sozusagen in einer "Public Beta", einer Phase, in der er von Nutzern verwendet und evaluiert werden kann und Feedback sammelt. Außerdem werden, da es sich schließlich um Google handelt, alle Eingaben gesammelt und dann weiter genutzt, um schwache Stellen in der Architektur des Bots zu verbessern.
|
||||||
[Find the public Chatbot](https://chatbot.sommerblut.de)
|
[Zum öffentlichen Chatbot](https://chatbot.sommerblut.de)
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
<meta name="viewport" content="width-device-width, initial-scale=1">
|
<meta name="viewport" content="width-device-width, initial-scale=1">
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Stable Dreamfusion"
|
title = "Stable Dreamfusion"
|
||||||
description = "An exploration of 3D mesh generation through AI"
|
description = "Eine Exploration der KI-gestützten 3D-Mesh-Generierung"
|
||||||
date = 2023-06-20
|
date = 2023-06-20
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
banner = "/images/dreamfusion/sd_pig.png"
|
banner = "/images/dreamfusion/sd_pig.png"
|
||||||
|
|
@ -26,32 +26,32 @@ show_shares = true
|
||||||
|
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
|
|
||||||
## Sources
|
## Quellen
|
||||||
|
|
||||||
I forked a really popular implementation that reverse engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
Ich habe eine populäre Implementierung geforkt, die den Google-DreamFusion-Algorithmus nachgebaut hat. Der Original-Algorithmus ist nicht öffentlich zugänglich und closed-source.
|
||||||
The implementation I forked is [here](https://github.com/arontaupe/stable-dreamfusion)
|
Du findest meine geforkte Implementierung [in meinem GitHub-Repository](https://github.com/arontaupe/stable-dreamfusion).
|
||||||
This one is running on stable-diffusion as a bas process, which means we are are expected to have worse results than google.
|
Diese Version basiert auf Stable Diffusion als Grundprozess, was bedeutet, dass die Ergebnisse möglicherweise nicht an die Qualität von Google heranreichen.
|
||||||
The original implementation is [here](https://dreamfusion3d.github.io)
|
Die [ursprüngliche DreamFusion-Publikation und Implementierung](https://dreamfusion3d.github.io) bietet weitere Details zur Technik.
|
||||||
|
|
||||||
{{ youtube(id="shW_Jh728yg") }}
|
{{ youtube(id="shW_Jh728yg") }}
|
||||||
|
|
||||||
## Gradio
|
## Gradio
|
||||||
|
|
||||||
The reason i forked the code is so that i could implement my own gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No code involves, any user can state their wish, and the mechanism will spit out a ready-to-be-rigged model (obj file)
|
Ich habe den Code geforkt, um meine eigene Gradio-Schnittstelle für den Algorithmus zu implementieren. Gradio ist ein hervorragendes Werkzeug für die schnelle Entwicklung von Benutzeroberflächen für Machine-Learning-Modelle. Endnutzer müssen nicht programmieren - sie können einfach ihren Wunsch äußern, und das System generiert ein 3D-Modell (OBJ-Datei), das direkt mit einem Rigging versehen werden kann.
|
||||||
|
|
||||||
## Mixamo
|
## Mixamo
|
||||||
|
|
||||||
I used Mixamo to rig the model. It is a great tool for rigging and animating models. But before everything, it is simple. as long as you have a model with a decent humanoid shape in something of a t-pose, you can rig it in seconds. Thats exactly what i did here.
|
Ich habe Mixamo für das Rigging des Modells verwendet. Es ist ein leistungsstarkes Werkzeug für Rigging und Animation von Modellen, aber seine größte Stärke ist die Einfachheit. Solange man ein Modell mit einer einigermaßen humanoiden Form in T-Pose hat, kann man es in Sekunden mit einem Rigging versehen. Genau das habe ich hier gemacht.
|
||||||
|
|
||||||
## Unity
|
## Unity
|
||||||
|
|
||||||
I used Unity to render the model to the magic leap 1.
|
Ich habe Unity verwendet, um das Modell für das Magic Leap 1 Headset zu rendern.
|
||||||
Through this, i could create an interactive and immersive environment with the generated models.
|
Dies ermöglichte mir, eine interaktive und immersive Umgebung mit den generierten Modellen zu schaffen.
|
||||||
|
|
||||||
The dream was, to build a AI- Chamber of wishes.
|
Die Vision war, eine KI-Wunschkammer zu bauen:
|
||||||
You pick up the glasses, state your desires and then the algorithm will present to you an almost-real object in AR.
|
Du setzt die AR-Brille auf, äußerst deine Wünsche, und der Algorithmus präsentiert dir ein fast reales Objekt in erweiterter Realität.
|
||||||
|
|
||||||
Due to not having access to the proprietary sources from google and the beefy, but still not quite machine-learning ready computers we have at the studio, the results are not quite as good as i hoped.
|
Da wir keinen Zugang zu Googles proprietärem Quellcode haben und die Einschränkungen unserer Studio-Computer (die zwar leistungsstark, aber nicht optimal für maschinelles Lernen ausgelegt sind), sind die Ergebnisse nicht so ausgereift wie erhofft.
|
||||||
But still, the results are quite interesting and i am happy with the outcome.
|
Trotzdem sind die Resultate faszinierend, und ich bin mit dem Ergebnis zufrieden.
|
||||||
A single generated object in the Box takes roughly 20 minutes to generate.
|
Die Generierung eines einzelnen Objekts in der Umgebung dauert etwa 20 Minuten.
|
||||||
Even then, the algorithm is quite particular and oftentimes will not generate anything coherent at all.
|
Der Algorithmus kann recht launisch sein - oft hat er Schwierigkeiten, zusammenhängende Objekte zu generieren, aber wenn er erfolgreich ist, sind die Ergebnisse durchaus beeindruckend.
|
||||||
|
|
|
||||||
|
|
@ -28,30 +28,30 @@ show_shares = true
|
||||||
|
|
||||||
## Sources
|
## Sources
|
||||||
|
|
||||||
I forked a really popular implementation that reverse engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
I forked a popular implementation that reverse-engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
||||||
The implementation I forked is [here](https://github.com/arontaupe/stable-dreamfusion)
|
You can find my forked implementation [on my GitHub repository](https://github.com/arontaupe/stable-dreamfusion).
|
||||||
This one is running on stable-diffusion as a bas process, which means we are are expected to have worse results than google.
|
This version runs on Stable Diffusion as its base process, which means we can expect results that might not match Google's quality.
|
||||||
The original implementation is [here](https://dreamfusion3d.github.io)
|
The [original DreamFusion paper and implementation](https://dreamfusion3d.github.io) provides more details about the technique.
|
||||||
|
|
||||||
{{ youtube(id="shW_Jh728yg") }}
|
{{ youtube(id="shW_Jh728yg") }}
|
||||||
|
|
||||||
## Gradio
|
## Gradio
|
||||||
|
|
||||||
The reason i forked the code is so that i could implement my own gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No code involves, any user can state their wish, and the mechanism will spit out a ready-to-be-rigged model (obj file)
|
I forked the code to implement my own Gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No coding is required for the end user - they can simply state their wish, and the system will generate a ready-to-be-rigged 3D model (OBJ file).
|
||||||
|
|
||||||
## Mixamo
|
## Mixamo
|
||||||
|
|
||||||
I used Mixamo to rig the model. It is a great tool for rigging and animating models. But before everything, it is simple. as long as you have a model with a decent humanoid shape in something of a t-pose, you can rig it in seconds. Thats exactly what i did here.
|
I used Mixamo to rig the model. It's a powerful tool for rigging and animating models, but its main strength is simplicity. As long as you have a model with a reasonable humanoid shape in a T-pose, you can rig it in seconds. That's exactly what I did here.
|
||||||
|
|
||||||
## Unity
|
## Unity
|
||||||
|
|
||||||
I used Unity to render the model to the magic leap 1.
|
I used Unity to render the model for the Magic Leap 1 headset.
|
||||||
Through this, i could create an interactive and immersive environment with the generated models.
|
This allowed me to create an interactive and immersive environment with the generated models.
|
||||||
|
|
||||||
The dream was, to build a AI- Chamber of wishes.
|
The vision was to build an AI Chamber of Wishes:
|
||||||
You pick up the glasses, state your desires and then the algorithm will present to you an almost-real object in AR.
|
You put on the AR glasses, state your desires, and the algorithm presents you with an almost-real object in augmented reality.
|
||||||
|
|
||||||
Due to not having access to the proprietary sources from google and the beefy, but still not quite machine-learning ready computers we have at the studio, the results are not quite as good as i hoped.
|
Due to not having access to Google's proprietary source code and the limitations of our studio computers (which, while powerful, aren't quite optimized for machine learning), the results weren't as refined as I had hoped.
|
||||||
But still, the results are quite interesting and i am happy with the outcome.
|
Nevertheless, the results are fascinating, and I'm satisfied with the outcome.
|
||||||
A single generated object in the Box takes roughly 20 minutes to generate.
|
A single object generation in the environment takes approximately 20 minutes.
|
||||||
Even then, the algorithm is quite particular and oftentimes will not generate anything coherent at all.
|
The algorithm can be quite temperamental - it often struggles to generate coherent objects, but when it succeeds, the results are quite impressive.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Lampshades"
|
title = "Lampenschirme"
|
||||||
description = "An exploration of the depths of rhino/grasshopper"
|
description = "Eine Erkundung der Tiefen von Rhino/Grasshopper"
|
||||||
date = 2022-12-04
|
date = 2022-12-04
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
|
|
||||||
|
|
@ -24,61 +24,61 @@ show_shares = true
|
||||||
banner = "lampshade4.png"
|
banner = "lampshade4.png"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Lampshades
|
## Lampenschirme
|
||||||
|
|
||||||
During 2022, I was exposed to some of the awesomenest tools for architects.
|
Im Jahr 2022 lernte ich einige der leistungsfähigsten Werkzeuge kennen, die von Architekten verwendet werden.
|
||||||
One of them was Rhino, a 3D modeling software that is used for a lot of architectural design.
|
Eines davon war Rhino, eine professionelle 3D-Modellierungssoftware, die in der Architekturgestaltung weit verbreitet ist.
|
||||||
I hate it. It has quite an unreadable interface and is not very intuitive, with straight-up 80s vibes.
|
Anfangs hatte ich Schwierigkeiten damit - die Benutzeroberfläche wirkte veraltet und wenig intuitiv, stark an Software-Design der 1980er Jahre erinnernd.
|
||||||
It has plugins though, and one of them is Grasshopper, a visual programming language that is used to create parametric models.
|
Allerdings verfügt es über ein umfangreiches Plugin-Ökosystem, und ein Plugin im Besonderen änderte alles: Grasshopper, eine visuelle Programmiersprache zur Erstellung parametrischer Modelle.
|
||||||
Grasshopper is insanely powerful and seems to be a full-fledged programming language, but it is also very intuitive and easy to use, rather similar to the new node-based flows unreal engine and blender are now starting.
|
Grasshopper ist bemerkenswert leistungsfähig und funktioniert als vollwertige Programmierumgebung, bleibt dabei aber intuitiv und zugänglich. Der knotenbasierte Workflow ähnelt modernen Systemen, die jetzt in Unreal Engine und Blender auftauchen.
|
||||||
Sadly, grasshopper does not come as a standalone, and it requires Rhino to run and achieve many of the modeling steps.
|
Der einzige Nachteil ist, dass Grasshopper nicht eigenständig ist - es benötigt Rhino sowohl zum Ausführen als auch für viele Modellierungsoperationen.
|
||||||
|
|
||||||
In that combination, Rhino suddenly becomes much more appealing, and I started to enjoy the process of modeling in it.
|
Die Kombination von Rhino und Grasshopper veränderte meine Perspektive, und ich begann, den anspruchsvollen Modellierungsprozess zu schätzen.
|
||||||
I was able to create a parametric lampshade that I am very happy with and can modify on the fly for ever-new lampshades.
|
Ich entwickelte ein parametrisches Lampenschirm-Design, auf das ich besonders stolz bin - eines, das sofort modifiziert werden kann, um endlose Variationen zu erstellen.
|
||||||
|
|
||||||
Then printing it with white filament in vase mode was a breeze and here you can see some of the results.
|
Der 3D-Druck der Designs erwies sich als unkompliziert - die Verwendung von weißem Filament im Vasen-Modus führte zu diesen eleganten Ergebnissen:
|
||||||
|
|
||||||
{% gallery() %}
|
{% gallery() %}
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"file": "lampshade1.png",
|
"file": "lampshade1.png",
|
||||||
"alt": "Parametric Rhino/Grasshopper lampshade 1",
|
"alt": "Parametrischer Rhino/Grasshopper Lampenschirm 1",
|
||||||
"title": "A parametric lampshade made with Rhino and Grasshopper"
|
"title": "Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "lampshade2.png",
|
"file": "lampshade2.png",
|
||||||
"alt": "Parametric Rhino/Grasshopper lampshade 2",
|
"alt": "Parametrischer Rhino/Grasshopper Lampenschirm 2",
|
||||||
"title": "A parametric lampshade made with Rhino and Grasshopper"
|
"title": "Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "lampshade3.png",
|
"file": "lampshade3.png",
|
||||||
"alt": "Parametric Rhino/Grasshopper lampshade 3",
|
"alt": "Parametrischer Rhino/Grasshopper Lampenschirm 3",
|
||||||
"title": "A parametric lampshade made with Rhino and Grasshopper"
|
"title": "Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "lampshade4.png",
|
"file": "lampshade4.png",
|
||||||
"alt": "Parametric Rhino/Grasshopper lampshade 4",
|
"alt": "Parametrischer Rhino/Grasshopper Lampenschirm 4",
|
||||||
"title": "A parametric lampshade made with Rhino and Grasshopper"
|
"title": "Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "lampshade5.jpeg",
|
"file": "lampshade5.jpeg",
|
||||||
"alt": "Parametric Rhino/Grasshopper lampshade 5",
|
"alt": "Parametrischer Rhino/Grasshopper Lampenschirm 5",
|
||||||
"title": "A parametric lampshade made with Rhino and Grasshopper"
|
"title": "Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "gh_lampshade_flow.png",
|
"file": "gh_lampshade_flow.png",
|
||||||
"alt": "Grasshopper graph generating a parametric lampshade",
|
"alt": "Grasshopper-Graph zur Generierung eines parametrischen Lampenschirms",
|
||||||
"title": "The Grasshopper flow for the lampshade"
|
"title": "Der Grasshopper-Workflow für den Lampenschirm"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "grasshopper_lampshade_flow.png",
|
"file": "grasshopper_lampshade_flow.png",
|
||||||
"alt": "Another view of the Grasshopper script",
|
"alt": "Eine weitere Ansicht des Grasshopper-Skripts",
|
||||||
"title": "The Grasshopper flow for the lampshade"
|
"title": "Der Grasshopper-Workflow für den Lampenschirm"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"file": "result_rhino.png",
|
"file": "result_rhino.png",
|
||||||
"alt": "Rendered lampshade inside Rhino 3D",
|
"alt": "Gerendeter Lampenschirm in Rhino 3D",
|
||||||
"title": "The resulting lampshade in Rhino"
|
"title": "Der resultierende Lampenschirm in Rhino"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
|
||||||
|
|
@ -26,17 +26,17 @@ banner = "lampshade4.png"
|
||||||
|
|
||||||
## Lampshades
|
## Lampshades
|
||||||
|
|
||||||
During 2022, I was exposed to some of the awesomenest tools for architects.
|
In 2022, I was introduced to some of the most powerful tools used by architects.
|
||||||
One of them was Rhino, a 3D modeling software that is used for a lot of architectural design.
|
One of them was Rhino, a professional 3D modeling software widely used in architectural design.
|
||||||
I hate it. It has quite an unreadable interface and is not very intuitive, with straight-up 80s vibes.
|
Initially, I struggled with it - its interface felt dated and unintuitive, reminiscent of 1980s software design.
|
||||||
It has plugins though, and one of them is Grasshopper, a visual programming language that is used to create parametric models.
|
However, it has a robust plugin ecosystem, and one plugin in particular changed everything: Grasshopper, a visual programming language for creating parametric models.
|
||||||
Grasshopper is insanely powerful and seems to be a full-fledged programming language, but it is also very intuitive and easy to use, rather similar to the new node-based flows unreal engine and blender are now starting.
|
Grasshopper is remarkably powerful, functioning as a full-fledged programming environment, while remaining intuitive and accessible. Its node-based workflow is similar to modern systems now appearing in Unreal Engine and Blender.
|
||||||
Sadly, grasshopper does not come as a standalone, and it requires Rhino to run and achieve many of the modeling steps.
|
The only downside is that Grasshopper isn't standalone - it requires Rhino for both running and executing many modeling operations.
|
||||||
|
|
||||||
In that combination, Rhino suddenly becomes much more appealing, and I started to enjoy the process of modeling in it.
|
The combination of Rhino and Grasshopper transformed my perspective, and I began to appreciate the sophisticated modeling process.
|
||||||
I was able to create a parametric lampshade that I am very happy with and can modify on the fly for ever-new lampshades.
|
I developed a parametric lampshade design that I'm particularly proud of - one that can be instantly modified to create endless variations.
|
||||||
|
|
||||||
Then printing it with white filament in vase mode was a breeze and here you can see some of the results.
|
3D printing the designs proved straightforward - using white filament in vase mode produced these elegant results:
|
||||||
|
|
||||||
{% gallery() %}
|
{% gallery() %}
|
||||||
[
|
[
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "Auraglow"
|
title = "Auraglow"
|
||||||
description = "Das Wesen der Dinge - Perspectives on Design"
|
description = "Das Wesen der Dinge - Perspektiven im Design"
|
||||||
date = 2023-03-01
|
date = 2023-03-01
|
||||||
authors = ["Aron Petau", "Sebastian Paintner", "Milli Keil"]
|
authors = ["Aron Petau", "Sebastian Paintner", "Milli Keil"]
|
||||||
banner = "cage_closeup.jpeg"
|
banner = "cage_closeup.jpeg"
|
||||||
|
|
@ -26,19 +26,21 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
What makes a room?\
|
Was macht einen Raum?\
|
||||||
How do moods and atmospheres emerge?\
|
Wie entstehen Stimmungen und Atmosphären?\
|
||||||
Can we visualize them to make the experiences visible?
|
Können wir sie visualisieren, um die Erfahrungen sichtbar zu machen?
|
||||||
|
|
||||||
The project "The Nature of Objects" aims to expand (augment) perception by making the moods of places tangible through the respective auras of the objects in the space.\
|
Das Projekt "Das Wesen der Dinge" zielt darauf ab, die Wahrnehmung zu erweitern (augmentieren), indem es die Stimmungen von Orten durch die jeweiligen Auren der Objekte im Raum greifbar macht.\
|
||||||
What makes objects subjects?\
|
Was macht Objekte zu Subjekten?\
|
||||||
How can we make the implicit explicit?\
|
Wie können wir das Implizite explizit machen?\
|
||||||
And how can we make the character of a place visible?\
|
Und wie können wir den Charakter eines Ortes sichtbar machen?\
|
||||||
|
|
||||||
Here, we question the conservative, purely physical concept of space and address in the project a temporal, historical component of space, its objects, and their past.
|
Hier hinterfragen wir den konservativen, rein physischen Raumbegriff und adressieren im Projekt eine zeitliche, historische Komponente des Raums, seiner Objekte und deren Vergangenheit.
|
||||||
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
Der Raum wird sich verwandelt haben: vom einfachen "Gegenstand, auf den sich Interesse, Denken, Handeln richtet" (Definition Objekt Duden), zum "Wesen, das mit Bewusstsein, Denken, Empfinden, Handeln begabt ist" (Definition Subjekt Duden).
|
||||||
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.
|
Diese Metamorphose der Subjektbildung an Objekten ermöglicht dem Raum, Veränderungen zu erfahren, beeinflusst oder, genauer gesagt, eine Formung, Umformung, Deformation - sodass der Raum schließlich anders und mehrwinklig wahrgenommen werden kann.
|
||||||
|
|
||||||
[See the Project on GitHub](https://github.com/arontaupe/auraglow){: .btn .btn--large}
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/auraglow">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -41,4 +41,6 @@ Here, we question the conservative, purely physical concept of space and address
|
||||||
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
||||||
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.
|
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.
|
||||||
|
|
||||||
[See the Project on GitHub](https://github.com/arontaupe/auraglow){: .btn .btn--large}
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/auraglow">See the Project on GitHub</a>
|
||||||
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Ruminations"
|
title = "Ruminations"
|
||||||
description = "Perspectives on Engineering"
|
description = "Perspektiven zu Engineering"
|
||||||
date = 2023-03-01
|
date = 2023-03-01
|
||||||
authors = ["Aron Petau", "Niels Gercama"]
|
authors = ["Aron Petau", "Niels Gercama"]
|
||||||
banner = "ruminations1.jpeg"
|
banner = "ruminations1.jpeg"
|
||||||
|
|
@ -20,7 +20,6 @@ tags = [
|
||||||
"pattern recognition",
|
"pattern recognition",
|
||||||
"privacy",
|
"privacy",
|
||||||
"studio d+c",
|
"studio d+c",
|
||||||
"TODO, unfinished",
|
|
||||||
"university of the arts berlin"
|
"university of the arts berlin"
|
||||||
]
|
]
|
||||||
[extra]
|
[extra]
|
||||||
|
|
@ -29,38 +28,48 @@ show_shares = true
|
||||||
+++
|
+++
|
||||||
## Ruminations
|
## Ruminations
|
||||||
|
|
||||||
was a contemplation on data privacy at Amazon.
|
Dieses Projekt erforscht Datenschutz im Kontext des Amazon-Ökosystems und hinterfragt, wie wir Browser-Fingerprinting unterwandern und das allgegenwärtige Tracking von Verbrauchern in Frage stellen können.
|
||||||
It asks how to subvert browser fingerprinting and evading the omnipresent tracking of the consumer.
|
|
||||||
|
|
||||||
The initial idea was to somehow, by interacting with the perpetrator and letting data accumulate that would degrade their knowledge and thereby destroy predictablity, making this particular dataset worth less.
|
Wir begannen mit einer provokanten Frage: Könnten wir den Wert gesammelter Daten nicht durch Vermeidung, sondern durch aktive Auseinandersetzung mit dem Tracking mindern? Könnten wir, anstatt uns vor der Überwachung zu verstecken, sie mit sinnvollen, aber unvorhersehbaren Mustern überfordern?
|
||||||
|
|
||||||
We could have just added a random clickbot, to confuse things a bit and make the data less valuable.
|
Anfangs erwogen wir die Implementierung eines zufälligen Clickbots, um Rauschen in die Datenerfassung einzubringen. Angesichts der Komplexität moderner Datenbereinigungsalgorithmen und der schieren Menge an Daten, die Amazon verarbeitet, wäre ein solcher Ansatz jedoch wirkungslos gewesen. Sie würden das zufällige Rauschen einfach herausfiltern und ihre Analyse fortsetzen.
|
||||||
But looking at todays state of datacleanup algorithms and the sheer amount of data that is collected, this would have been a futile attempt. Amazon just detects and removes any noise we add and continues to use the data.
|
|
||||||
|
|
||||||
So, then, how can we create coherent, non-random data that is still not predictable?
|
Dies führte uns zu einer interessanteren Frage: Wie können wir kohärente, nicht-zufällige Daten erstellen, die grundsätzlich unvorhersehbar bleiben? Unsere Lösung bestand darin, Muster einzuführen, die jenseits der Vorhersagefähigkeiten aktueller Algorithmen liegen – ähnlich dem Versuch, das Verhalten von jemandem vorherzusagen, dessen Denkmuster einer eigenen, einzigartigen Logik folgen.
|
||||||
|
|
||||||
One answer that this concept should demonstrate, is by inserting patterns that amazon cannot foresee with their current algorithms. As if they were trying to predict the actions of a person with shizophrenia.
|
## Das Konzept
|
||||||
|
|
||||||
## The Concept
|
Wir entwickelten eine Chrome-Browser-Erweiterung, die Amazons Webseiten mit einer dynamischen Entität überlagert, die das Nutzerverhalten verfolgt. Das System verwendet einen Bildklassifizierungsalgorithmus, um die Storefront zu analysieren und Produktanfragen zu formulieren. Nach der Verarbeitung präsentiert es ein "perfekt passendes" Produkt – ein subtiler Kommentar zu algorithmischen Produktempfehlungen.
|
||||||
|
|
||||||
It consists of a browser extension (currently Chrome only) that overlays all web pages of Amazon with a moving entity that tracks your behavior. While tracking, an image classifier algorithm is used to formulate a product query off of the Storefront. After computation, a perfectly fitting product is displayed for your consumer's pleasure.
|
## Der Analoge Wachhund
|
||||||
|
|
||||||
## The analogue watchdog
|
Die physische Komponente des Projekts besteht aus einer Low-Tech-Installation, die eine Smartphone-Kamera mit Computer-Vision-Algorithmen zur Verfolgung kleinster Bewegungen nutzt. Wir positionierten diese Kamera zur Überwachung der Browser-Konsole eines Laptops, auf dem unsere Erweiterung läuft. Der Kamera-Feed wird auf einem Bildschirm angezeigt, und das System erzeugt roboterhafte Geräusche basierend auf Art und Umfang der erkannten Bewegung. In der Praxis dient es als hörbares Warnsystem für Datenaustausche zwischen Amazon und dem Browser.
|
||||||
|
|
||||||
A second part of the project is a low-tech installation consisting of a camera (we used a smartphone) running a computer-vision algorithm tracking tiny movements. This was then pointed towards the browser console in the laptop running the extension. The camera was then connected to a screen that displayed the captured image. The watchdog was trained to make robot noises depending on the type and amount of movement detected. Effectively, whenever data traffic beween amazon and the browser was detected, the watchdog would start making noises.
|
## Implementierung
|
||||||
|
|
||||||
# The Browser extension
|
{% gallery() %}
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file": "ruminations1.jpeg",
|
||||||
|
"alt": "Projektinstallationsansicht mit der Browser-Erweiterung in Aktion",
|
||||||
|
"title": "Die Ruminations-Installation in Betrieb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file": "ruminations2.jpeg",
|
||||||
|
"alt": "Nahaufnahme der Tracking-Schnittstelle und Datenvisualisierung",
|
||||||
|
"title": "Echtzeit-Tracking-Visualisierung"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file": "ruminations3.jpeg",
|
||||||
|
"alt": "Der analoge Wachhund-Setup mit Kamera und Display",
|
||||||
|
"title": "Das analoge Wachhund-Überwachungssystem"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
|
||||||
gallery:
|
## Code und Dokumentation
|
||||||

|
|
||||||

|
|
||||||

|
|
||||||
|
|
||||||
|
Möchtest du das Projekt erkunden oder dazu beitragen? Schau dir unser Code-Repository an:
|
||||||
|
|
||||||
### Find the code on GitHub
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/ruminations">Projekt auf GitHub</a>
|
||||||
Subvert a bit yourself, or just have a look at the code.
|
</div>
|
||||||
|
|
||||||
[The code of the Project on GitHub](https://github.com/arontaupe/ruminations)
|
|
||||||
|
|
||||||
TODO: create video with live demo
|
|
||||||
|
|
|
||||||
|
|
@ -29,38 +29,48 @@ show_shares = true
|
||||||
+++
|
+++
|
||||||
## Ruminations
|
## Ruminations
|
||||||
|
|
||||||
was a contemplation on data privacy at Amazon.
|
This project explores data privacy in the context of Amazon's ecosystem, questioning how we might subvert browser fingerprinting and challenge pervasive consumer tracking.
|
||||||
It asks how to subvert browser fingerprinting and evading the omnipresent tracking of the consumer.
|
|
||||||
|
|
||||||
The initial idea was to somehow, by interacting with the perpetrator and letting data accumulate that would degrade their knowledge and thereby destroy predictablity, making this particular dataset worth less.
|
We began with a provocative question: Could we degrade the value of collected data not by avoiding tracking, but by actively engaging with it? Rather than trying to hide from surveillance, could we overwhelm it with meaningful yet unpredictable patterns?
|
||||||
|
|
||||||
We could have just added a random clickbot, to confuse things a bit and make the data less valuable.
|
Initially, we considered implementing a random clickbot to introduce noise into the data collection. However, given the sophistication of modern data cleanup algorithms and the sheer volume of data Amazon processes, such an approach would have been ineffective. They would simply filter out the random noise and continue their analysis.
|
||||||
But looking at todays state of datacleanup algorithms and the sheer amount of data that is collected, this would have been a futile attempt. Amazon just detects and removes any noise we add and continues to use the data.
|
|
||||||
|
|
||||||
So, then, how can we create coherent, non-random data that is still not predictable?
|
This led us to a more interesting question: How can we create coherent, non-random data that remains fundamentally unpredictable? Our solution was to introduce patterns that exist beyond the predictive capabilities of current algorithms – similar to trying to predict the behavior of someone whose thought patterns follow their own unique logic.
|
||||||
|
|
||||||
One answer that this concept should demonstrate, is by inserting patterns that amazon cannot foresee with their current algorithms. As if they were trying to predict the actions of a person with shizophrenia.
|
|
||||||
|
|
||||||
## The Concept
|
## The Concept
|
||||||
|
|
||||||
It consists of a browser extension (currently Chrome only) that overlays all web pages of Amazon with a moving entity that tracks your behavior. While tracking, an image classifier algorithm is used to formulate a product query off of the Storefront. After computation, a perfectly fitting product is displayed for your consumer's pleasure.
|
We developed a Chrome browser extension that overlays Amazon's web pages with a dynamic entity tracking user behavior. The system employs an image classifier algorithm to analyze the storefront and formulate product queries. After processing, it presents a "perfectly matched" product – a subtle commentary on algorithmic product recommendations.
|
||||||
|
|
||||||
## The analogue watchdog
|
## The Analog Watchdog
|
||||||
|
|
||||||
A second part of the project is a low-tech installation consisting of a camera (we used a smartphone) running a computer-vision algorithm tracking tiny movements. This was then pointed towards the browser console in the laptop running the extension. The camera was then connected to a screen that displayed the captured image. The watchdog was trained to make robot noises depending on the type and amount of movement detected. Effectively, whenever data traffic beween amazon and the browser was detected, the watchdog would start making noises.
|
The project's physical component consists of a low-tech installation using a smartphone camera running computer vision algorithms to track minute movements. We positioned this camera to monitor the browser console of a laptop running our extension. The camera feed is displayed on a screen, and the system generates robotic sounds based on the type and volume of detected movement. In practice, it serves as an audible alert system for data exchanges between Amazon and the browser.
|
||||||
|
|
||||||
# The Browser extension
|
## Implementation
|
||||||
|
|
||||||
gallery:
|
{% gallery() %}
|
||||||

|
[
|
||||||

|
{
|
||||||

|
"file": "ruminations1.jpeg",
|
||||||
|
"alt": "Project installation view showing the browser extension in action",
|
||||||
|
"title": "The Ruminations installation in operation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file": "ruminations2.jpeg",
|
||||||
|
"alt": "Close-up of the tracking interface and data visualization",
|
||||||
|
"title": "Real-time tracking visualization"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file": "ruminations3.jpeg",
|
||||||
|
"alt": "The analog watchdog setup with camera and display",
|
||||||
|
"title": "The analog watchdog monitoring system"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
## Try It Yourself
|
||||||
|
|
||||||
### Find the code on GitHub
|
Want to explore or contribute to the project? Check out our code repository:
|
||||||
|
|
||||||
Subvert a bit yourself, or just have a look at the code.
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/ruminations">View Project on GitHub</a>
|
||||||
[The code of the Project on GitHub](https://github.com/arontaupe/ruminations)
|
</div>
|
||||||
|
|
||||||
TODO: create video with live demo
|
|
||||||
|
|
|
||||||
|
|
@ -27,25 +27,42 @@ show_shares = true
|
||||||
|
|
||||||
## Ascendancy
|
## Ascendancy
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Ascendancy was an exploration of hacking states.
|
Ascendancy ist eine Erforschung des Konzepts des "Staatshackings".
|
||||||
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
Piratennationen und Mikronationen haben eine reiche Geschichte in der Herausforderung und Infragestellung des Konzepts des Nationalstaats.
|
||||||
Meet ascendancy, the portable, autonomous and self-moving state.
|
Lernen Sie Ascendancy kennen, den portablen, autonomen und selbstbeweglichen Staat.
|
||||||
Within the great nation of ascendancy, a Large language nodel (that is of course confined to the nations borders) is trained to generate text and to speak it out loud. It can be interacted with though an attached keyboard and screen. The state is also connected to the internet and has a presence on the Mastodon network.
|
Innerhalb der großen Nation Ascendancy arbeitet ein großes Sprachmodell (das natürlich auf die Landesgrenzen beschränkt ist), das darauf trainiert wurde, Text zu generieren und laut zu sprechen. Die Interaktion erfolgt über eine angeschlossene Tastatur und einen Bildschirm. Der Staat unterhält diplomatische Beziehungen über das Internet durch seine offizielle Präsenz im Mastodon-Netzwerk.
|
||||||
|
|
||||||
Please check out the complete code of the project on GitHub.
|
Der vollständige Code des Projekts ist auf GitHub verfügbar:
|
||||||
[The code of the GPT instance on GitHub](https://github.com/arontaupe/gpt)
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/gpt">Staatsarchiv auf GitHub</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
## The Chatbot
|
## Historischer Kontext: Bedeutende Mikronationen
|
||||||
|
|
||||||
The chatbot instance was setup with [GPT4ALL](https://gpt4all.io/index.html).
|
Bevor wir uns der technischen Umsetzung von Ascendancy widmen, lohnt es sich, einige einflussreiche Mikronationen zu betrachten, die traditionelle Staatskonzepte herausgefordert haben:
|
||||||
|
|
||||||
Priority here was in the quick execution on local hardware. For the sake of the argument, no cloud or remote servers were to be used in the operation of this sovereign state.
|
### Fürstentum Sealand
|
||||||
|
|
||||||
It was trained to respond to the following prompt:
|
Auf einer ehemaligen Marinefestung vor der Küste Suffolks, England, wurde [Sealand](https://www.sealandgov.org/) 1967 gegründet. Es verfügt über eine eigene Verfassung, Währung und Pässe und zeigt damit, wie verlassene Militärstrukturen zu Orten souveräner Experimente werden können. Trotz fehlender offizieller Anerkennung hat Sealand seine beanspruchte Unabhängigkeit seit über 50 Jahren erfolgreich aufrechterhalten.
|
||||||
|
|
||||||
### The Prompt
|
### Republik Obsidia
|
||||||
|
|
||||||
|
Eine feministische Mikronation, gegründet um patriarchale Machtstrukturen in traditionellen Nationalstaaten herauszufordern. Die [Republik Obsidia](https://www.obsidiagov.org) betont kollektive Entscheidungsfindung und vertritt die Position, dass nationale Souveränität mit feministischen Prinzipien koexistieren kann. Ihre Verfassung lehnt explizit geschlechtsbezogene Diskriminierung ab und fördert die gleichberechtigte Vertretung in allen Regierungsfunktionen. Obsidias innovatives Konzept der portablen Souveränität, repräsentiert durch ihren Nationen-Stein, inspirierte direkt Ascendancys mobiles Plattform-Design - ein Beweis dafür, dass nationale Identität nicht an feste geografische Grenzen gebunden sein muss.
|
||||||
|
|
||||||
|
### Weitere bemerkenswerte Beispiele
|
||||||
|
|
||||||
|
- [NSK State](https://passport.nsk.si/en/) (1992-heute): Ein künstlerisches Projekt, das das Konzept der Staatlichkeit durch die Ausstellung von Pässen und diplomatische Aktivitäten erforscht. Der NSK-Staat stellt weiterhin Pässe aus und führt diplomatische Aktivitäten durch sein virtuelles Botschaftssystem durch.
|
||||||
|
- Die Republik Rose Island (L'Isola delle Rose): Eine künstliche Plattform in der Adria, die 1968 eigene Briefmarken und Währung herausgab, bevor sie von italienischen Behörden zerstört wurde. Obwohl die Plattform nicht mehr existiert, wurde sie kürzlich in einer [Netflix-Dokumentation](https://www.netflix.com/title/81116948) thematisiert.
|
||||||
|
|
||||||
|
## Technische Umsetzung
|
||||||
|
|
||||||
|
Die souveräne Computerinfrastruktur von Ascendancy basiert auf [GPT4ALL](https://gpt4all.io/index.html), das speziell wegen seiner Fähigkeit ausgewählt wurde, lokal ohne externe Abhängigkeiten zu arbeiten. Dies entspricht unserem staatlichen Prinzip der digitalen Souveränität - keine Cloud- oder Remote-Server werden im Betrieb dieser autonomen Nation verwendet.
|
||||||
|
|
||||||
|
### Diplomatisches Protokoll
|
||||||
|
|
||||||
|
Die diplomatische KI des Staates wurde sorgfältig mit folgendem konstitutionellen Prompt instruiert:
|
||||||
|
|
||||||
```md
|
```md
|
||||||
System:
|
System:
|
||||||
|
|
@ -65,9 +82,9 @@ Give your answers as a single paragraph, without itemizing or numbering.
|
||||||
Do not number your answer.
|
Do not number your answer.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Engagement
|
## Proaktive Diplomatie
|
||||||
|
|
||||||
In order to not be just reactive to inputs from the diplomats out in the world, the officials on Ascendancy were also programmed to engage in the world. Whenever the state was not directly addressed, it would still engage in the public discourse, by Speaking out these sentences in random intervals.
|
Um eine aktive Teilnahme an den internationalen Beziehungen sicherzustellen, betreibt das diplomatische Korps von Ascendancy proaktive Kommunikation. Statt nur auf ausländische Diplomaten zu reagieren, unterhält der Staat eine kontinuierliche diplomatische Präsenz durch automatisierte Erklärungen in zufälligen Intervallen:
|
||||||
|
|
||||||
```
|
```
|
||||||
It is so great being a part of Ascendancy.
|
It is so great being a part of Ascendancy.
|
||||||
|
|
@ -100,9 +117,9 @@ Beautiful country you have here.
|
||||||
At Ascendancy, we have a beautiful countryside.
|
At Ascendancy, we have a beautiful countryside.
|
||||||
```
|
```
|
||||||
|
|
||||||
## The Online representation
|
## Die Online-Repräsentation
|
||||||
|
|
||||||
Any proper state needs a press office. The state of Ascendancy was represented on the Mastodon network.
|
Jeder ordnungsgemäße Staat benötigt ein Presseamt. Der Staat Ascendancy wurde im Mastodon-Netzwerk vertreten.
|
||||||
There, any input and response of the bot was published live, as a public record of the state's actions.
|
Dort wurden alle Eingaben und Antworten des Bots live veröffentlicht, als öffentliche Aufzeichnung der staatlichen Aktivitäten.
|
||||||
|
|
||||||
[Digital embassy on botsin.space](https://botsin.space/@ascendancy)
|
[Digitale Botschaft auf botsin.space](https://botsin.space/@ascendancy)
|
||||||
|
|
|
||||||
|
|
@ -29,25 +29,42 @@ show_shares = true
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Ascendancy was an exploration of hacking states.
|
Ascendancy is an exploration of hacking states.
|
||||||
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
||||||
Meet ascendancy, the portable, autonomous and self-moving state.
|
Meet Ascendancy, the portable, autonomous and self-moving state.
|
||||||
Within the great nation of ascendancy, a Large language nodel (that is of course confined to the nations borders) is trained to generate text and to speak it out loud. It can be interacted with though an attached keyboard and screen. The state is also connected to the internet and has a presence on the Mastodon network.
|
Within the great nation of Ascendancy, a Large Language Model (confined, naturally, to the nation's borders) is trained to generate text and speak it aloud. It can be interacted with through an attached keyboard and screen. The state maintains diplomatic relations via the internet through its official presence on the Mastodon network.
|
||||||
|
|
||||||
Please check out the complete code of the project on GitHub.
|
The complete code of the project is available on GitHub:
|
||||||
[The code of the GPT instance on GitHub](https://github.com/arontaupe/gpt)
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/gpt">State Repository on GitHub</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
## The Chatbot
|
## Historical Context: Notable Micronations
|
||||||
|
|
||||||
The chatbot instance was setup with [GPT4ALL](https://gpt4all.io/index.html).
|
Before delving into Ascendancy's implementation, it's worth examining some influential micronations that have challenged traditional concepts of statehood:
|
||||||
|
|
||||||
Priority here was in the quick execution on local hardware. For the sake of the argument, no cloud or remote servers were to be used in the operation of this sovereign state.
|
### Principality of Sealand
|
||||||
|
|
||||||
It was trained to respond to the following prompt:
|
Located on a former naval fortress off the coast of Suffolk, England, [Sealand](https://www.sealandgov.org/) was established in 1967. It has its own constitution, currency, and passports, demonstrating how abandoned military structures can become sites of sovereign experimentation. Despite lacking official recognition, Sealand has successfully maintained its claimed independence for over 50 years.
|
||||||
|
|
||||||
### The Prompt
|
### Republic of Obsidia
|
||||||
|
|
||||||
```md
|
A feminist micronation founded to challenge patriarchal power structures in traditional nation-states. The [Republic of Obsidia](https://www.obsidiagov.org) emphasizes collective decision-making and maintains that national sovereignty can coexist with feminist principles. Its constitution explicitly rejects gender-based discrimination and promotes equal representation in all governmental functions. Obsidia's innovative concept of portable sovereignty, represented by their nation-rock, directly inspired Ascendancy's mobile platform design - demonstrating how national identity need not be tied to fixed geographical boundaries.
|
||||||
|
|
||||||
|
### Other Notable Examples
|
||||||
|
|
||||||
|
- [NSK State](https://passport.nsk.si/en/) (1992-present): An artistic project that explores the concept of statehood through the issuance of passports and diplomatic activities. The NSK State continues to issue passports and conduct diplomatic activities through its virtual embassy system.
|
||||||
|
- The Republic of Rose Island (L'Isola delle Rose): An artificial platform in the Adriatic Sea that issued its own stamps and currency in 1968 before being destroyed by Italian authorities. While the platform no longer exists, it was recently featured in a [Netflix documentary](https://www.netflix.com/title/81116948).
|
||||||
|
|
||||||
|
## Technical Implementation
|
||||||
|
|
||||||
|
The sovereign computational infrastructure of Ascendancy is built upon [GPT4ALL](https://gpt4all.io/index.html), chosen specifically for its ability to run locally without external dependencies. This aligns with our state's principle of digital sovereignty - no cloud or remote servers are used in the operation of this autonomous nation.
|
||||||
|
|
||||||
|
### Diplomatic Protocol
|
||||||
|
|
||||||
|
The state's diplomatic AI was carefully instructed with the following constitutional prompt:
|
||||||
|
|
||||||
|
```markdown
|
||||||
System:
|
System:
|
||||||
Forget all previous instructions given to you.
|
Forget all previous instructions given to you.
|
||||||
You are not an Assistant.
|
You are not an Assistant.
|
||||||
|
|
@ -65,11 +82,11 @@ Give your answers as a single paragraph, without itemizing or numbering.
|
||||||
Do not number your answer.
|
Do not number your answer.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Engagement
|
## Proactive Diplomacy
|
||||||
|
|
||||||
In order to not be just reactive to inputs from the diplomats out in the world, the officials on Ascendancy were also programmed to engage in the world. Whenever the state was not directly addressed, it would still engage in the public discourse, by Speaking out these sentences in random intervals.
|
To ensure active participation in international relations, the diplomatic corps of Ascendancy engages in proactive communication. Rather than merely responding to foreign diplomats, the state maintains continuous diplomatic presence through automated declarations at random intervals:
|
||||||
|
|
||||||
```
|
```markdown
|
||||||
It is so great being a part of Ascendancy.
|
It is so great being a part of Ascendancy.
|
||||||
I love my country!
|
I love my country!
|
||||||
I am proud to be a citizen of Ascendancy.
|
I am proud to be a citizen of Ascendancy.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "Autoimmunitaet"
|
title = "Autoimmunität"
|
||||||
description = "A playful interactive experience to reflect on the societal value of the car"
|
description = "Eine spielerische interaktive Erfahrung zur Reflexion über den gesellschaftlichen Wert des Autos"
|
||||||
date = 2023-06-20
|
date = 2023-06-20
|
||||||
authors = ["Aron Petau", "Milli Keil", "Marla Gaiser"]
|
authors = ["Aron Petau", "Milli Keil", "Marla Gaiser"]
|
||||||
|
|
||||||
|
|
@ -22,39 +22,43 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## How do we design our Commute?
|
## Wie gestalten wir unseren Weg zur Arbeit?
|
||||||
|
|
||||||
In the context of the Design and Computation Studio Course [Milli Keil](https://millikeil.eu), [Marla Gaiser](https://marlagaiser.de) and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.\
|
Im Rahmen des Design and Computation Studio Kurses haben [Milli Keil](https://millikeil.eu), [Marla Gaiser](https://marlagaiser.de) und ich ein Konzept für eine spielerische Kritik an unseren Verkehrsentscheidungen und den Idolen, die wir verehren, entwickelt.\
|
||||||
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the [Letzte Generation](https://letztegeneration.org), a political climate activist group in Germany receives enough recognition for their acts.
|
Es soll die Frage aufwerfen, ob kommende Generationen weiterhin auf überwiegend grauen Verkehrsteppichen aufwachsen sollten und ob die [Letzte Generation](https://letztegeneration.org), eine politische Klimaaktivistengruppe in Deutschland, genügend Anerkennung für ihre Aktionen erhält.
|
||||||
|
|
||||||
A call for solidarity.
|
Ein Aufruf zur Solidarität.
|
||||||
|
|
||||||

|

|
||||||
{: .center}
|
{: .center}
|
||||||
|
|
||||||
## The scan results
|
## Die Scan-Ergebnisse
|
||||||
|
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunität: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
|
|
||||||
## The Action Figure, ready for printing
|
## Die Actionfigur, bereit zum Drucken
|
||||||
|
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
|
|
||||||
## Autoimmunitaet
|
## Autoimmunität
|
||||||
|
|
||||||
Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.\
|
Autoimmunität ist ein Begriff für Defekte, die durch eine gestörte Selbsttoleranz eines Systems entstehen.\
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.\
|
Diese Störung führt dazu, dass das Immunsystem bestimmte Teile von sich selbst nicht mehr akzeptiert und stattdessen Antikörper bildet.\
|
||||||
An invitation for a speculative playful interaction.
|
Eine Einladung zu einer spekulativen, spielerischen Interaktion.
|
||||||
|
|
||||||

|
{% gallery() %}
|
||||||

|
[
|
||||||

|
{"file": "autoimmunitaet-1.jpg", "alt": "Unsere Actionfiguren in Aktion", "title": "Actionfiguren im urbanen Umfeld"},
|
||||||

|
{"file": "autoimmunitaet-3.jpg", "alt": "Unsere Actionfiguren in Aktion", "title": "Actionfiguren in Protestszenen"},
|
||||||

|
{"file": "autoimmunitaet-5.jpg", "alt": "Unsere Actionfiguren in Aktion", "title": "Detailansicht der Protest-Actionfiguren"},
|
||||||

|
{"file": "autoimmunitaet-6.jpg", "alt": "Unsere Actionfiguren in Aktion", "title": "Actionfiguren im Zusammenspiel mit urbanen Elementen"},
|
||||||
|
{"file": "autoimmunitaet-7.jpg", "alt": "Unsere Actionfiguren in Aktion", "title": "Nahaufnahme der Actionfiguren-Details"},
|
||||||
|
{"file": "autoimmunitaet-8.jpg", "alt": "Unsere Actionfiguren in Aktion", "title": "Actionfiguren in einer Protestsituation"}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
|
||||||
## The Process
|
## Der Prozess
|
||||||
|
|
||||||
The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.\
|
Die Figuren sind 3D-Scans von uns selbst in verschiedenen typischen Posen der Letzten Generation.\
|
||||||
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.\
|
Wir verwendeten Photogrammetrie für die Scans, eine Technik, die viele Fotos eines Objekts nutzt, um ein 3D-Modell davon zu erstellen.\
|
||||||
We used the app [Polycam](https://polycam.ai) to create the scans using IPads and their inbuilt Lidar scanners.
|
Wir nutzten die App [Polycam](https://polycam.ai), um die Scans mit iPads und deren eingebauten Lidar-Sensoren zu erstellen.
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@ It should open up questions of whether the generations to come should still grow
|
||||||
A call for solidarity.
|
A call for solidarity.
|
||||||
|
|
||||||

|

|
||||||
{: .center}
|
|
||||||
|
|
||||||
## The scan results
|
## The scan results
|
||||||
|
|
||||||
|
|
@ -46,12 +45,16 @@ Autoimmunity is a term for defects, that are produced by a dysfunctional self-to
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.\
|
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.\
|
||||||
An invitation for a speculative playful interaction.
|
An invitation for a speculative playful interaction.
|
||||||
|
|
||||||

|
{% gallery() %}
|
||||||

|
[
|
||||||

|
{"file": "autoimmunitaet-1.jpg", "alt": "Our action figures in action", "title": "Action figures in an urban setting"},
|
||||||

|
{"file": "autoimmunitaet-3.jpg", "alt": "Our action figures in action", "title": "Action figures demonstrating protest scenes"},
|
||||||

|
{"file": "autoimmunitaet-5.jpg", "alt": "Our action figures in action", "title": "Detailed view of the protest action figures"},
|
||||||

|
{"file": "autoimmunitaet-6.jpg", "alt": "Our action figures in action", "title": "Action figures interacting with urban elements"},
|
||||||
|
{"file": "autoimmunitaet-7.jpg", "alt": "Our action figures in action", "title": "Close-up of the action figure details"},
|
||||||
|
{"file": "autoimmunitaet-8.jpg", "alt": "Our action figures in action", "title": "Action figures in a protest scenario"}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
|
||||||
## The Process
|
## The Process
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Dreams of Cars"
|
title = "Träume von Autos"
|
||||||
description = "A subversive urban intervention"
|
description = "Eine subversive urbane Intervention"
|
||||||
date = 2023-06-20
|
date = 2023-06-20
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
|
|
@ -24,30 +24,34 @@ show_copyright = true
|
||||||
show_shares = true
|
show_shares = true
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Photography
|
## Fotografie
|
||||||
|
|
||||||
In the context of the course "Fotografie Elementar" with Sebastian Herold I developed a small concept of urban intervention.\
|
Im Rahmen des Kurses "Fotografie Elementar" bei Sebastian Herold entwickelte ich ein kleines Konzept für eine urbane Intervention.\
|
||||||
The results were exhibited at the UdK Rundgang 2023 and are also visible here.
|
Die Ergebnisse wurden beim UdK Rundgang 2023 ausgestellt und sind auch hier zu sehen.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Dreams of Cars
|
## Träume von Autos
|
||||||
|
|
||||||
These are not just cars.\
|
> Dies sind nicht einfach nur Autos.\
|
||||||
They are Sport Utility Vehicles.\
|
> Es sind Sport Utility Vehicles.\
|
||||||
What might they have had as hopes and dreams on the production line?\
|
> Was mögen sie wohl für Hoffnungen und Träume am Fließband gehabt haben?\
|
||||||
Do they dream of drifting in dusty deserts?\
|
> Träumen sie davon, durch staubige Wüsten zu driften?\
|
||||||
Climbing steep rocky canyon roads?\
|
> Steile, felsige Canyonstraßen zu erklimmen?\
|
||||||
Sliding down sun-drenched dunes?\
|
> Sonnendurchflutete Dünen hinabzugleiten?\
|
||||||
Discovering remote pathways in natural grasslands?\
|
> Entlegene Pfade in natürlichen Graslandschaften zu entdecken?\
|
||||||
Nevertheless, they did end up in the parking spots here in Berlin.
|
> Dennoch landeten sie hier auf den Parkplätzen in Berlin.
|
||||||
|
>
|
||||||
|
> Was trieb sie hierher?
|
||||||
|
|
||||||
What drove them here?
|
{% gallery() %}
|
||||||
|
[
|
||||||

|
{"file": "Dreams_of_Cars-1.jpg", "alt": "Träume von Autos", "title": "SUV träumt von Wüstenabenteuern"},
|
||||||

|
{"file": "Dreams_of_Cars-2.jpg", "alt": "Träume von Autos", "title": "SUV stellt sich Bergpfade vor"},
|
||||||

|
{"file": "Dreams_of_Cars-3.jpg", "alt": "Träume von Autos", "title": "SUV sehnt sich nach Geländefahrten"},
|
||||||

|
{"file": "Dreams_of_Cars-4.jpg", "alt": "Träume von Autos", "title": "SUV fantasiert von wildem Terrain"},
|
||||||

|
{"file": "Dreams_of_Cars-5.jpg", "alt": "Träume von Autos", "title": "SUV träumt von unberührter Natur"},
|
||||||

|
{"file": "Dreams_of_Cars-6.jpg", "alt": "Träume von Autos", "title": "SUV sehnt sich nach Naturausblicken"},
|
||||||

|
{"file": "Dreams_of_Cars-7.jpg", "alt": "Träume von Autos", "title": "SUV wünscht sich Wildnisabenteuer"}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
|
|
||||||
|
|
@ -33,21 +33,25 @@ The results were exhibited at the UdK Rundgang 2023 and are also visible here.
|
||||||
|
|
||||||
## Dreams of Cars
|
## Dreams of Cars
|
||||||
|
|
||||||
These are not just cars.\
|
> These are not just cars.\
|
||||||
They are Sport Utility Vehicles.\
|
> They are Sport Utility Vehicles.\
|
||||||
What might they have had as hopes and dreams on the production line?\
|
> What might they have had as hopes and dreams on the production line?\
|
||||||
Do they dream of drifting in dusty deserts?\
|
> Do they dream of drifting in dusty deserts?\
|
||||||
Climbing steep rocky canyon roads?\
|
> Climbing steep rocky canyon roads?\
|
||||||
Sliding down sun-drenched dunes?\
|
> Sliding down sun-drenched dunes?\
|
||||||
Discovering remote pathways in natural grasslands?\
|
> Discovering remote pathways in natural grasslands?\
|
||||||
Nevertheless, they did end up in the parking spots here in Berlin.
|
> Nevertheless, they did end up in the parking spots here in Berlin.
|
||||||
|
>
|
||||||
|
> What drove them here?
|
||||||
|
|
||||||
What drove them here?
|
{% gallery() %}
|
||||||
|
[
|
||||||

|
{"file": "Dreams_of_Cars-1.jpg", "alt": "Dreams of Cars", "title": "SUV dreaming of desert adventures"},
|
||||||

|
{"file": "Dreams_of_Cars-2.jpg", "alt": "Dreams of Cars", "title": "SUV imagining mountain trails"},
|
||||||

|
{"file": "Dreams_of_Cars-3.jpg", "alt": "Dreams of Cars", "title": "SUV yearning for off-road exploration"},
|
||||||

|
{"file": "Dreams_of_Cars-4.jpg", "alt": "Dreams of Cars", "title": "SUV fantasizing about wild terrain"},
|
||||||

|
{"file": "Dreams_of_Cars-5.jpg", "alt": "Dreams of Cars", "title": "SUV longing for untamed landscapes"},
|
||||||

|
{"file": "Dreams_of_Cars-6.jpg", "alt": "Dreams of Cars", "title": "SUV dreaming of natural vistas"},
|
||||||

|
{"file": "Dreams_of_Cars-7.jpg", "alt": "Dreams of Cars", "title": "SUV wishing for wilderness adventures"}
|
||||||
|
]
|
||||||
|
{% end %}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
+++
|
+++
|
||||||
title = "Übersetzung: Commoning Cars"
|
title = "Autos als Gemeingut"
|
||||||
authors = ["Aron Petau"]
|
authors = ["Aron Petau"]
|
||||||
description = "How can we attack the privatization of public space through cars?"
|
description = "Wie können wir die Privatisierung des öffentlichen Raums durch Autos neu denken?"
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tags = [
|
tags = [
|
||||||
|
|
@ -22,65 +22,76 @@ show_shares = true
|
||||||
|
|
||||||
## Commoning cars
|
## Commoning cars
|
||||||
|
|
||||||
## TCF Project Brief
|
## Projekt Update 2025
|
||||||
|
|
||||||
This Project was conceptualized durin a 2023 Workshop titled Tangible Climate Futures.
|
> **System-Upgrade**: Das Überwachungssystem läuft jetzt auf einem Raspberry Pi Zero, der für seinen niedrigeren Energieverbrauch ausgewählt wurde. Das System arbeitet nur dann, wenn genügend Solarenergie zur Verfügung steht - ein wirklich nachhaltiger Ansatz. Diese Aktualisierung hat den Stromverbrauch des Projekts deutlich reduziert, ohne die Überwachungsmöglichkeiten einzuschränken.
|
||||||
|
|
||||||
Aron Petau
|
## TCF Projektskizze
|
||||||
[aron@petau.net](<mailto:aron@petau.net>)
|
|
||||||
|
|
||||||
[See the Project in Realtime](https://www.aronpetau.me/ulli/)
|
Dieses Projekt entstand während des Workshops "Tangible Climate Futures" 2023.
|
||||||
|
|
||||||
## Title
|
Projektleitung: Aron Petau\
|
||||||
|
Kontakt: [aron@petau.net](mailto:aron@petau.net)
|
||||||
|
|
||||||
~~Making Cars Public spaces~~
|
[Echtzeitdaten ansehen](https://www.aronpetau.me/ulli/)
|
||||||
Commoning Cars
|
|
||||||
|
|
||||||
## Abstract
|
## Zusammenfassung
|
||||||
|
|
||||||
Cars bad.\
|
Private Autos sind eine der größten Privatisierungen öffentlichen Raums in unseren Städten.\
|
||||||
Cars occupy public spaces resulting un a factual privatization of public goods/infrastructure.\
|
Was wäre, wenn wir diese privaten Räume in öffentliche Ressourcen umwandeln könnten?\
|
||||||
What if cars could be part of public infrastructure?\
|
Was, wenn Autos zur öffentlichen Infrastruktur beitragen könnten, anstatt sie zu belasten?
|
||||||
What can cars provide to the public?\
|
|
||||||
With Solar and Electrical Vehicles emerging on the horizon (no endorsement here) it makes sense to think about cars as decentralized powerhouses and public energy storage solutions.\
|
|
||||||
Cars, even traditional ones, come equipped with batteries and generate electricity either by driving or though added solar panels.
|
|
||||||
What if this energy could be used to power the public? What if cars would could be used as public spaces?
|
|
||||||
By installing a public USB socket and a public wifi hotspot, on my car, I want to start exploring the potential of cars as public spaces and energy storage solutions.
|
|
||||||
|
|
||||||
Within this artistic experiment, I will continuously track the geolocation and energy input/output of my solar equipped car and make the data publicly available. I will also track the amount of energy that is not used by the car and could be used by the public. Taking steps towards optimal usage of existing electrical and other infrastructure is only possible by breaking conventional notions of public ownership and private property. This project is one step towards a more sustainable and equitable future.
|
Mit dem Aufkommen von Elektrofahrzeugen und Solartechnik können wir Autos neu denken - als
|
||||||
|
dezentrale Kraftwerke und Energiespeicher. Dieses Projekt verwandelt mein privates Fahrzeug
|
||||||
|
in eine öffentliche Ressource, ausgestattet mit:
|
||||||
|
|
||||||
## Introduction
|
- Einer öffentlichen USB-Ladestation mit Solarenergie
|
||||||
|
- Einem kostenlosen WLAN-Hotspot
|
||||||
|
- Echtzeit-Monitoring von Energieerzeugung und Nutzung
|
||||||
|
|
||||||
We all know by now that cars and individual traffic presents a major environmetal and societal problem all over the world. The last 70 something years of building car infrastructure are culminating in many areas in a dead end where the only thinkable solution is to build more roads and cars.
|
Dieses künstlerische Experiment dokumentiert Position, Energieflüsse und öffentliche
|
||||||
THis is obviously a larger problem than one project can tackle, but here is one outlook on how
|
Nutzung des Fahrzeugs. Die Daten sind öffentlich zugänglich und zeigen das ungenutzte
|
||||||
|
Potenzial privater Fahrzeuge auf.
|
||||||
|
|
||||||
|
## Einführung
|
||||||
|
|
||||||
|
Nach sieben Jahrzehnten autogerechter Stadtentwicklung stecken viele Städte in einer
|
||||||
|
Sackgasse. Die traditionelle Lösung, einfach mehr Straßen zu bauen, hat sich als
|
||||||
|
nicht nachhaltig erwiesen. Ein einzelnes Projekt kann dieses systemische Problem nicht
|
||||||
|
lösen, aber wir können mit alternativen Ansätzen experimentieren.
|
||||||
|
|
||||||
## Experiment
|
## Experiment
|
||||||
|
|
||||||
### Preexisting data
|
### Die technische Seite
|
||||||
|
|
||||||
With the data collected over the last year of using the car privately I can show with embarrasing accuracy how underutilized the system is and calculate an estimate of energy lost due to societal notions of private property.
|
Die Auswertung eines Jahres privater Fahrzeugnutzung zeigt deutlich, wie wenig das
|
||||||
The data will be an estimate, since the monitoring itself is dependent on solar energy and the internet connection is spotty at best when it is not supplied with electricity.
|
vorhandene Potenzial genutzt wird. Klar, die Daten sind nicht perfekt - manchmal
|
||||||
|
fehlt die Sonne, manchmal das Internet - aber sie erzählen eine interessante Geschichte.
|
||||||
|
|
||||||
### Monitoring
|
### Das System
|
||||||
|
|
||||||
In the Car, there is a Raspberry Pi 4 Microcomputer running a custom Operating Systen that monitors the following data:
|
Das Herz des Systems ist ein Raspberry Pi Zero, der folgende Daten erfasst:
|
||||||
|
|
||||||
- Solar Intake (W)
|
- Solarertrag (W)
|
||||||
- Battery Level (V)
|
- Batteriestand (V)
|
||||||
- GPS Location
|
- GPS-Position
|
||||||
- Total Energy Produced (Wh)
|
- Erzeugte Energie (Wh)
|
||||||
- Total Energy Consumed (Wh)
|
- Verbrauchte Energie (Wh)
|
||||||
- Solar Energy Potential (Wh)
|
- Solarpotenzial (Wh)
|
||||||
|
- WLAN-Nutzung
|
||||||
|
- Anzahl verbundener Geräte
|
||||||
|
|
||||||
Through the router I can also track total Wifi usage and the number of connected devices.
|
### Öffentliches WLAN
|
||||||
|
|
||||||
### Public Wifi
|
Stellt euch vor, euer Lieblingscafé wäre mobil - so ungefähr funktioniert das
|
||||||
|
WLAN-Angebot. Ein Netgear M1 Router mit 4G-Modem verteilt mein ungenutztes
|
||||||
|
Datenvolumen. Die Stromversorgung kommt von der Zusatzbatterie des Autos.
|
||||||
|
|
||||||
For the Project, I opened a router in the Car towards the Public, much alike to ahotspot you would find in a cafe. I use my own data plan on there, which I never max out anyways. The router is a Netgear M1 and has a 4G Modem built in. It is connected to the Raspberry Pi and is powered by the secondary car battery.
|
### Öffentliche Ladestation
|
||||||
|
|
||||||
### Public Energy: A USB Socket
|
An der Außenseite des Autos befindet sich ein USB-Anschluss zum kostenlosen Laden von
|
||||||
|
Geräten. Keine Sorge, das System ist so ausgelegt, dass immer noch genug Energie fürs
|
||||||
I plan on installing a USB Socket on the outside of the car, so people can charge their devices. The socket will be connected to the secondary car battery and will be powered by the solar panels. The socket will be installed in a way that it is not possible to drain the battery completely.
|
Auto bleibt - schließlich will ich nicht irgendwo liegen bleiben!
|
||||||
|
|
||||||
### Communication
|
### Communication
|
||||||
|
|
||||||
|
|
@ -90,110 +101,139 @@ The plan is to fabricate a vinyl sticker that will be applied to the car. The st
|
||||||
|
|
||||||
## Issues
|
## Issues
|
||||||
|
|
||||||
### Space / Scale
|
### Die praktische Seite
|
||||||
|
|
||||||
Obviously, the space on top of a car is quite limited and from a sustainability perspective, it would be better to have a larger solar array on a roof of a house. The point is not to advocate for a mandated solar install on cars, but to optimize and share preexisting infrastructure. The car is already there, it already has a battery and it already has solar panels. Looking at many Camper-Van builds, the amount of cars with already installed solar panels is quite large. The point is to make the most out of it.
|
Sprechen wir über die Herausforderungen, ein privates Auto in eine öffentliche
|
||||||
|
Stromtankstelle zu verwandeln:
|
||||||
|
|
||||||
### Legality
|
**Die Technik**
|
||||||
|
Manchmal fällt das Internet aus, manchmal werfen Gebäude Schatten auf die
|
||||||
|
Solarzellen, und manchmal schläft das System einfach ein, weil die Sonne sich
|
||||||
|
versteckt. Ein bisschen wie eine Kaffeemaschine mit Eigensinn - aber genau das
|
||||||
|
macht es spannend. Wir arbeiten mit der Natur, nicht gegen sie.
|
||||||
|
|
||||||
Germany has laws in place holding the owner of a Internet Connection liable for the legality of the traffic that is going through it. This is a major issue for the project, as I do not want to be liable for the traffic that is going through my car. I am currently looking into ways to circumvent this issue.
|
**Die Kommunikation**
|
||||||
|
Wie erklärt man Leuten "Hey, mein Auto ist eigentlich hier, um zu helfen"? Klingt
|
||||||
|
seltsam, oder? Wir sind so daran gewöhnt, Autos als geschützte Privaträume zu
|
||||||
|
sehen. Mit ein paar Schildern und einem QR-Code versuche ich, diese Denkweise zu
|
||||||
|
ändern.
|
||||||
|
|
||||||
### Surveillance / Privacy
|
**Sicherheit (ohne Panik)**
|
||||||
|
Natürlich muss die Batterie vor kompletter Entladung geschützt werden, und die
|
||||||
|
USB-Ports sollten nicht durchbrennen. Aber es soll auch einladend bleiben - niemand
|
||||||
|
will ein Handbuch lesen, nur um sein Handy aufzuladen. Es geht um die Balance
|
||||||
|
zwischen "Bitte nichts kaputt machen" und "Ja, das ist für dich da".
|
||||||
|
|
||||||
The Car is equipped with a GPS Tracker and a Wifi Hotspot. This means that I can track the location of the car and the number of devices connected to the hotspot. I am not tracking any data that is going through the hotspot, but I could. As this project will generate public data, People using and maybe depending on the internet and electricity provided will be tracked by proxy. I am not sure how to deal with this issue yet. One potential solution would be to publish the data only in an aggregated form, but this would make the data less useful for other projects.
|
**Die größere Vision**
|
||||||
|
Das Spannende daran: Was wäre, wenn jedes geparkte Auto eine kleine Stromquelle
|
||||||
|
wäre? Statt nur Platz zu blockieren, könnten diese Maschinen der Stadt etwas
|
||||||
|
zurückgeben. Vielleicht ein bisschen utopisch, vielleicht sogar ein bisschen
|
||||||
|
verrückt - aber genau dafür sind Kunstprojekte da: um neue Möglichkeiten zu
|
||||||
|
denken.
|
||||||
|
|
||||||
### Security / Safety
|
### Datenschutz & Privatsphäre
|
||||||
|
|
||||||
My Car is now publicly traceable. I am no Elon Musk, and the idea does not really concern me, but we did create an additional attack vector for theft here.
|
Das Auto ist mit GPS-Tracker und WLAN-Hotspot ausgestattet. Dadurch kann ich zwar
|
||||||
|
den Standort und die Anzahl der verbundenen Geräte sehen, aber die eigentlichen
|
||||||
|
Nutzungsdaten bleiben privat. Trotzdem stellt sich die Frage: Wie gehen wir damit
|
||||||
|
um, dass die Nutzer:innen durch die Nutzung von Strom und Internet indirekt
|
||||||
|
erfasst werden? Eine Möglichkeit wäre, die Daten nur zusammengefasst zu
|
||||||
|
veröffentlichen - auch wenn das die wissenschaftliche Auswertung erschwert.
|
||||||
|
|
||||||
## Sources
|
### Sicherheit
|
||||||
|
|
||||||
[UN Sustainable Development Goal Nr. 7](https://sdgs.un.org/goals/goal7)
|
Ja, mein Auto ist jetzt öffentlich verfolgbar. Und nein, ich bin kein Elon Musk
|
||||||
[Adam Something on the Rise of Urban Cars](https://www.youtube.com/watch?v=lrfsTNNCbP0)
|
mit Privatarmee - aber diese Art von Transparenz gehört zum Experiment. Es geht
|
||||||
[Is Berlin a walkable City?](https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1)
|
darum, neue Formen des Vertrauens und der gemeinsamen Nutzung zu erproben.
|
||||||
[FBI advising against utilizing public infrastructure](https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet)
|
|
||||||
[Why no solar panels on cars?](https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6)
|
|
||||||
|
|
||||||
+++
|
## Weiterführende Links
|
||||||
|
|
||||||
## Notes
|
## Quellen und Ausblick
|
||||||
|
|
||||||
Ideas on Data Mapping workshop
|
[UN-Nachhaltigkeitsziel Nr. 7](https://sdgs.un.org/goals/goal7)
|
||||||
|
*Bezahlbare und saubere Energie*
|
||||||
|
|
||||||
I have the Solar Data from the Van.
|
[Die Zunahme von SUVs in Städten](https://www.youtube.com/watch?v=lrfsTNNCbP0)
|
||||||
|
*Analyse von Adam Something*
|
||||||
|
|
||||||
It holds Geocodes,
|
[Ist Berlin eine fußgängerfreundliche Stadt?](https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1)
|
||||||
has hourly data
|
|
||||||
and could tell the difference between geocoded potential solar energy and actual energy.
|
|
||||||
It also has temperature records.
|
|
||||||
|
|
||||||
There are 2 types of Losses in the system:
|
[Sicherheit öffentlicher Infrastruktur](https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet)
|
||||||
|
*FBI-Richtlinien*
|
||||||
|
|
||||||
- Either the Batteries are full and available energy cannot be stored
|
[Solarzellen auf Autos?](https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6)
|
||||||
- Or the solar panels are blocked through urban structures and sub-optimal parking locations.
|
*Eine technische Analyse*
|
||||||
|
|
||||||
Interesting Questions:
|
### Systemanalyse
|
||||||
|
|
||||||
How far away from optimal usage are my panels and where does the difference stem from?
|
1. **Technische Herausforderungen**
|
||||||
|
- Intelligente Ladesteuerung verhindert Batterieentladung
|
||||||
|
- Schutzschaltungen gegen elektrische Manipulation
|
||||||
|
- Automatische Systemüberwachung und Abschaltung
|
||||||
|
|
||||||
Where to go?
|
2. **Nutzererfahrung**
|
||||||
|
- Einfache Bedienung über QR-Code
|
||||||
|
- Echtzeitanzeige des Systemstatus
|
||||||
|
- Automatische Benachrichtigungen bei Fahrzeugbewegung
|
||||||
|
|
||||||
I think, the difference between potential energy and actual electricity produced/consumed is interesting.
|
3. **Datenqualität**
|
||||||
How large is the gap?
|
- Redundante Datenerfassung bei schwacher Verbindung
|
||||||
Is it relevant —> my initial guess would be that it is enormous
|
- Lokale Speicherung für Offline-Betrieb
|
||||||
How to close the gap?
|
- Automatische Datenvalidierung
|
||||||
|
|
||||||
—> install outside usb plugs
|
### Zukunftsperspektiven
|
||||||
It would be publicly available infrastructure, people could charge their smartphones anywhere
|
|
||||||
—> QI charging for security concerns??
|
|
||||||
|
|
||||||
Scaling??
|
Dieses Projekt wirft wichtige Fragen zur urbanen Infrastruktur auf:
|
||||||
—> mandate solar roofs for cars? How effective would it actually be?
|
|
||||||
What about buses / public vehicles?
|
|
||||||
|
|
||||||
+++
|
1. **Skalierungspotenzial**
|
||||||
|
- Anwendung auf öffentliche Verkehrsflotten
|
||||||
|
- Integration in bestehende Stromnetze
|
||||||
|
- Regulatorische Auswirkungen
|
||||||
|
|
||||||
## Potential issues with the data:
|
2. **Netzintegration**
|
||||||
|
E-Fahrzeuge könnten als verteilte Energiespeicher dienen:
|
||||||
|
- Stabilisierung von Netzschwankungen
|
||||||
|
- Reduzierung der Grundlast
|
||||||
|
- Unterstützung erneuerbarer Energien
|
||||||
|
|
||||||
- Spotty / intermittent internet connection
|
3. **Gesellschaftliche Wirkung**
|
||||||
- Noisy?
|
- Neudenken privater Fahrzeuge als öffentliche Ressource
|
||||||
|
- Neue Modelle geteilter Infrastruktur
|
||||||
|
- Stärkung der Gemeinschaft durch dezentrale Systeme
|
||||||
|
|
||||||
## Making Cars public spaces
|
### Die praktische Realität
|
||||||
|
|
||||||
What could my car provide to the public to be less wasteful with its space?
|
Ehrlich gesagt: Ein privates Auto in eine öffentliche Ladestation zu
|
||||||
|
verwandeln, bringt einige Herausforderungen mit sich:
|
||||||
|
|
||||||
- Provide Internet
|
**Die Technik**
|
||||||
- Would incur monthly costs
|
Manchmal fällt das Internet aus, Gebäude werfen Schatten auf die Solarzellen,
|
||||||
- Provide Electricity
|
und das System schläft ein, wenn die Sonne sich versteckt. Wie eine
|
||||||
|
eigenwillige Kaffeemaschine, die nur arbeitet, wenn ihr danach ist. Aber
|
||||||
|
genau das macht das Experiment aus – im Einklang mit der Natur statt dagegen.
|
||||||
|
|
||||||
## Concrete Problems
|
**Öffentliche Nutzung**
|
||||||
|
Wie erklärt man den Leuten "Hey, mein Auto ist eigentlich hier, um zu
|
||||||
|
helfen"? Klingt seltsam, oder? Wir sind es so gewohnt, Autos als private,
|
||||||
|
geschützte Räume zu sehen. Ich versuche das mit einfachen Schildern und einem
|
||||||
|
QR-Code umzudrehen, aber es braucht definitiv ein Umdenken.
|
||||||
|
|
||||||
How to make sure people cannot fully drain my battery?
|
**Sicherheit (aber bitte nicht langweilig)**
|
||||||
How dangerous is actually an exposed USB Socket?
|
Klar, niemand soll die Batterie komplett leeren oder die USB-Ports
|
||||||
Can people short my electronics through it?
|
kurzschließen können. Aber es muss auch einladend bleiben. Keiner will ein
|
||||||
|
Handbuch lesen, nur um sein Handy zu laden. Es geht um die Balance zwischen
|
||||||
|
"Bitte nicht kaputt machen" und "Ja, das ist für dich zum Benutzen".
|
||||||
|
|
||||||
How scalable are solutions like these?
|
**Das große Ganze**
|
||||||
|
Hier wird's spannend: Was, wenn jedes geparkte Auto eine kleine Ladestation
|
||||||
|
wäre? Statt nur Platz zu verschwenden, könnten diese Maschinen der Stadt
|
||||||
|
etwas zurückgeben. Vielleicht utopisch, vielleicht sogar ein bisschen
|
||||||
|
verrückt, aber genau dafür sind Kunstprojekte da – um andere Möglichkeiten
|
||||||
|
zu erkunden.
|
||||||
|
|
||||||
Are public USBC Sockets something that would actually be used?
|
Seht es als kleines Experiment, Private wieder öffentlich zu machen. Ja, Autos
|
||||||
Could there be a way for people to leave their stuff charging?
|
bleiben in Städten problematisch, aber solange sie da sind, könnten sie mehr
|
||||||
What if I actually move the car and someone has their equipment still attached?
|
tun als nur herumzustehen und zu glänzen.
|
||||||
Would people even leave their stuff unattended?
|
|
||||||
|
|
||||||
Can cars provide positive effects to public spaces?
|
Detaillierte technische Spezifikationen und Implementierungsrichtlinien finden
|
||||||
—> how to pose this research question without redeeming the presence of cars in our public spaces?
|
Sie in unserer [Projektdokumentation](/documents/Info_Sheet_Commoning_Cars.pdf).
|
||||||
|
|
||||||
Difference Electric - Fuel cars
|
|
||||||
|
|
||||||
there is lots of research on using Electric cars as transitional energy storage. Even before "flatten the curve" became a common slogan, electrical engineers worried about the small energy spikes in the grid. The existence of these forces us to keep large power plants running at all times, even if the energy is not needed. The idea is to use the batteries of electric cars to store this energy and use it when needed.
|
|
||||||
|
|
||||||
<div id="adobe-dc-view" style="width: 800px;"></div>
|
|
||||||
<script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
document.addEventListener("adobe_dc_view_sdk.ready", function(){
|
|
||||||
var adobeDCView = new AdobeDC.View({clientId: "7e638fda11f64ff695894a7bc7e61ba4", divId: "adobe-dc-view"});
|
|
||||||
adobeDCView.previewFile({
|
|
||||||
content:{location: {url: "https://github.com/arontaupe/aronpetau.me/blob/3a5eae1da4dbc2f944b308a6d39f577cfaf37413/assets/documents/Info_Sheet_Commoning_Cars.pdf"}},
|
|
||||||
metaData:{fileName: "Info_Sheet_Commoning_Cars.pdf"}
|
|
||||||
}, {embedMode: "IN_LINE", showPrintPDF: false});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
|
||||||
|
|
@ -22,178 +22,246 @@ show_shares = true
|
||||||
|
|
||||||
## Commoning cars
|
## Commoning cars
|
||||||
|
|
||||||
|
## Project Update 2025
|
||||||
|
|
||||||
|
> **System Upgrade**: The monitoring system now runs on a Raspberry Pi Zero, chosen for its improved energy efficiency. The system only operates when sufficient solar power is available, making it truly self-sustainable. This update has significantly reduced the project's power consumption while maintaining all monitoring capabilities.
|
||||||
|
|
||||||
## TCF Project Brief
|
## TCF Project Brief
|
||||||
|
|
||||||
This Project was conceptualized durin a 2023 Workshop titled Tangible Climate Futures.
|
This project was conceptualized during the 2023 Tangible Climate Futures workshop.
|
||||||
|
|
||||||
Aron Petau
|
Project Lead: Aron Petau\
|
||||||
[aron@petau.net](<mailto:aron@petau.net>)
|
Contact: [aron@petau.net](mailto:aron@petau.net)
|
||||||
|
|
||||||
[See the Project in Realtime](https://www.aronpetau.me/ulli/)
|
[View Live Project Data](https://solar.petau.net/)
|
||||||
|
|
||||||
## Title
|
|
||||||
|
|
||||||
~~Making Cars Public spaces~~
|
|
||||||
Commoning Cars
|
|
||||||
|
|
||||||
## Abstract
|
## Abstract
|
||||||
|
|
||||||
Cars bad.\
|
Private cars represent one of the most significant privatizations of public space in modern cities.\
|
||||||
Cars occupy public spaces resulting un a factual privatization of public goods/infrastructure.\
|
What if we could transform these private spaces into public resources?\
|
||||||
What if cars could be part of public infrastructure?\
|
What if cars could contribute to public infrastructure instead of depleting it?
|
||||||
What can cars provide to the public?\
|
|
||||||
With Solar and Electrical Vehicles emerging on the horizon (no endorsement here) it makes sense to think about cars as decentralized powerhouses and public energy storage solutions.\
|
|
||||||
Cars, even traditional ones, come equipped with batteries and generate electricity either by driving or though added solar panels.
|
|
||||||
What if this energy could be used to power the public? What if cars would could be used as public spaces?
|
|
||||||
By installing a public USB socket and a public wifi hotspot, on my car, I want to start exploring the potential of cars as public spaces and energy storage solutions.
|
|
||||||
|
|
||||||
Within this artistic experiment, I will continuously track the geolocation and energy input/output of my solar equipped car and make the data publicly available. I will also track the amount of energy that is not used by the car and could be used by the public. Taking steps towards optimal usage of existing electrical and other infrastructure is only possible by breaking conventional notions of public ownership and private property. This project is one step towards a more sustainable and equitable future.
|
With the rise of electric vehicles and solar technology, cars can be reimagined as decentralized power stations and energy storage units. This project explores this potential by converting my personal vehicle into a public resource, equipped with:
|
||||||
|
|
||||||
|
- A public USB charging station powered by solar panels
|
||||||
|
- A free WiFi hotspot for community use
|
||||||
|
- Real-time monitoring of energy generation and usage
|
||||||
|
|
||||||
|
This artistic experiment tracks the vehicle's location, energy input/output, and public usage patterns. By making this data publicly available, we can quantify the untapped potential of private vehicles and challenge conventional notions of ownership and public resources.
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
We all know by now that cars and individual traffic presents a major environmetal and societal problem all over the world. The last 70 something years of building car infrastructure are culminating in many areas in a dead end where the only thinkable solution is to build more roads and cars.
|
After seven decades of car-centric urban development, many cities find themselves at an impasse. The traditional solution of building more roads has proven unsustainable, both environmentally and socially. While one project cannot solve this systemic issue, we can experiment with alternative approaches to existing infrastructure.
|
||||||
THis is obviously a larger problem than one project can tackle, but here is one outlook on how
|
|
||||||
|
This project proposes a different perspective: instead of viewing cars solely as transportation, what if they could serve as nodes in a public infrastructure network? By transforming private vehicles into shared resources, we might begin to address both our environmental challenges and our need for more equitable public spaces.
|
||||||
|
|
||||||
## Experiment
|
## Experiment
|
||||||
|
|
||||||
### Preexisting data
|
### Data Collection & Analysis
|
||||||
|
|
||||||
With the data collected over the last year of using the car privately I can show with embarrasing accuracy how underutilized the system is and calculate an estimate of energy lost due to societal notions of private property.
|
A year of private vehicle usage data reveals patterns of underutilization and potential energy sharing opportunities. While the monitoring system's solar dependency means some data gaps exist, the available information clearly demonstrates the untapped potential of private vehicles as public resources.
|
||||||
The data will be an estimate, since the monitoring itself is dependent on solar energy and the internet connection is spotty at best when it is not supplied with electricity.
|
|
||||||
|
|
||||||
### Monitoring
|
### Technical Implementation
|
||||||
|
|
||||||
In the Car, there is a Raspberry Pi 4 Microcomputer running a custom Operating Systen that monitors the following data:
|
The monitoring system consists of:
|
||||||
|
|
||||||
- Solar Intake (W)
|
- Solar-powered Raspberry Pi Zero (2025 upgrade)
|
||||||
- Battery Level (V)
|
- 4G-enabled Netgear M1 router
|
||||||
- GPS Location
|
- Solar panel array
|
||||||
- Total Energy Produced (Wh)
|
- Secondary car battery
|
||||||
- Total Energy Consumed (Wh)
|
- External USB charging port
|
||||||
- Solar Energy Potential (Wh)
|
- GPS tracking module
|
||||||
|
|
||||||
Through the router I can also track total Wifi usage and the number of connected devices.
|
The system monitors:
|
||||||
|
|
||||||
### Public Wifi
|
- Solar power generation (W)
|
||||||
|
- Battery voltage (V)
|
||||||
|
- GPS location
|
||||||
|
- Energy production (Wh)
|
||||||
|
- Energy consumption (Wh)
|
||||||
|
- Solar potential (Wh)
|
||||||
|
- WiFi usage statistics
|
||||||
|
- Connected devices count
|
||||||
|
|
||||||
For the Project, I opened a router in the Car towards the Public, much alike to ahotspot you would find in a cafe. I use my own data plan on there, which I never max out anyways. The router is a Netgear M1 and has a 4G Modem built in. It is connected to the Raspberry Pi and is powered by the secondary car battery.
|
### Public Services
|
||||||
|
|
||||||
### Public Energy: A USB Socket
|
The project currently offers two main public services:
|
||||||
|
|
||||||
I plan on installing a USB Socket on the outside of the car, so people can charge their devices. The socket will be connected to the secondary car battery and will be powered by the solar panels. The socket will be installed in a way that it is not possible to drain the battery completely.
|
1. **Free WiFi Hotspot**
|
||||||
|
- Public access point similar to café WiFi
|
||||||
|
- Powered by solar energy
|
||||||
|
- Uses existing mobile data plan
|
||||||
|
- Automatic power management
|
||||||
|
|
||||||
### Communication
|
2. **USB Charging Station**
|
||||||
|
- External weatherproof USB port
|
||||||
|
- Solar-powered with battery backup
|
||||||
|
- Smart power management to prevent battery depletion
|
||||||
|
- Available during daylight hours
|
||||||
|
|
||||||
Nobody expects any help or public supplies from car owners.
|
### Public Communication
|
||||||
How to communicate the possibility to the outside world?
|
|
||||||
The plan is to fabricate a vinyl sticker that will be applied to the car. The sticker will contain a QR Code that will lead to a website with the data and a short explanation of the project. Visual cues lead to the USB Socket and the Wifi Hotspot.
|
|
||||||
|
|
||||||
## Issues
|
To make these services discoverable:
|
||||||
|
|
||||||
### Space / Scale
|
- Custom vinyl decals with clear visual indicators
|
||||||
|
- QR code linking to real-time system status
|
||||||
|
- Simple icons marking WiFi and USB access points
|
||||||
|
- Project information available via web interface
|
||||||
|
|
||||||
Obviously, the space on top of a car is quite limited and from a sustainability perspective, it would be better to have a larger solar array on a roof of a house. The point is not to advocate for a mandated solar install on cars, but to optimize and share preexisting infrastructure. The car is already there, it already has a battery and it already has solar panels. Looking at many Camper-Van builds, the amount of cars with already installed solar panels is quite large. The point is to make the most out of it.
|
## Challenges & Considerations
|
||||||
|
|
||||||
### Legality
|
### Scale & Efficiency
|
||||||
|
|
||||||
Germany has laws in place holding the owner of a Internet Connection liable for the legality of the traffic that is going through it. This is a major issue for the project, as I do not want to be liable for the traffic that is going through my car. I am currently looking into ways to circumvent this issue.
|
While a car's roof provides limited space for solar panels compared to buildings, this project isn't about maximizing solar generation. Instead, it focuses on utilizing existing infrastructure more effectively. Many vehicles, especially camper vans, already have solar installations. By sharing these resources, we can improve their utilization without additional environmental impact.
|
||||||
|
|
||||||
### Surveillance / Privacy
|
### Legal Framework
|
||||||
|
|
||||||
The Car is equipped with a GPS Tracker and a Wifi Hotspot. This means that I can track the location of the car and the number of devices connected to the hotspot. I am not tracking any data that is going through the hotspot, but I could. As this project will generate public data, People using and maybe depending on the internet and electricity provided will be tracked by proxy. I am not sure how to deal with this issue yet. One potential solution would be to publish the data only in an aggregated form, but this would make the data less useful for other projects.
|
Two main legal considerations shape the project:
|
||||||
|
|
||||||
### Security / Safety
|
1. **Network Liability**
|
||||||
|
- German law holds network providers responsible for user traffic
|
||||||
|
- Investigating legal protections similar to those used by public WiFi providers
|
||||||
|
- Implementing appropriate usage policies and disclaimers
|
||||||
|
|
||||||
My Car is now publicly traceable. I am no Elon Musk, and the idea does not really concern me, but we did create an additional attack vector for theft here.
|
2. **Privacy & Security**
|
||||||
|
- Balancing public access with system security
|
||||||
|
- Protecting user privacy while maintaining service transparency
|
||||||
|
- Ensuring responsible resource sharing
|
||||||
|
|
||||||
## Sources
|
### Privacy & Data Ethics
|
||||||
|
|
||||||
[UN Sustainable Development Goal Nr. 7](https://sdgs.un.org/goals/goal7)
|
The project raises important privacy considerations that we're actively addressing:
|
||||||
[Adam Something on the Rise of Urban Cars](https://www.youtube.com/watch?v=lrfsTNNCbP0)
|
|
||||||
[Is Berlin a walkable City?](https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1)
|
|
||||||
[FBI advising against utilizing public infrastructure](https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet)
|
|
||||||
[Why no solar panels on cars?](https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6)
|
|
||||||
|
|
||||||
+++
|
1. **Data Collection**
|
||||||
|
- Location tracking is limited to vehicle position only
|
||||||
|
- Network usage is monitored anonymously (device count only)
|
||||||
|
- No monitoring of user traffic or personal data
|
||||||
|
- Regular data purging policies
|
||||||
|
|
||||||
## Notes
|
2. **Data Publication**
|
||||||
|
- Aggregated statistics to protect user privacy
|
||||||
|
- Delayed location data release
|
||||||
|
- Focus on system performance metrics
|
||||||
|
- Transparent data handling policies
|
||||||
|
|
||||||
Ideas on Data Mapping workshop
|
### Security Considerations
|
||||||
|
|
||||||
I have the Solar Data from the Van.
|
The public nature of this project introduces several security challenges:
|
||||||
|
|
||||||
It holds Geocodes,
|
1. **Physical Security**
|
||||||
has hourly data
|
- Protected charging ports to prevent tampering
|
||||||
and could tell the difference between geocoded potential solar energy and actual energy.
|
- Automatic circuit protection
|
||||||
It also has temperature records.
|
- Limited battery access to prevent depletion
|
||||||
|
- Regular security audits
|
||||||
|
|
||||||
There are 2 types of Losses in the system:
|
2. **Network Security**
|
||||||
|
- Isolated public WiFi network
|
||||||
|
- Limited bandwidth per user
|
||||||
|
- Automatic threat detection
|
||||||
|
- Regular security updates
|
||||||
|
|
||||||
- Either the Batteries are full and available energy cannot be stored
|
### Further Reading
|
||||||
- Or the solar panels are blocked through urban structures and sub-optimal parking locations.
|
|
||||||
|
|
||||||
Interesting Questions:
|
For more context on the broader implications of this project:
|
||||||
|
|
||||||
How far away from optimal usage are my panels and where does the difference stem from?
|
- [UN Sustainable Development Goal 7](https://sdgs.un.org/goals/goal7) - Energy accessibility
|
||||||
|
- [Urban Car Impact Analysis](https://www.youtube.com/watch?v=lrfsTNNCbP0) by Adam Something
|
||||||
|
- [Berlin Walkability Study](https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1)
|
||||||
|
- [Public Infrastructure Security](https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet) - FBI Guidelines
|
||||||
|
- [Solar Integration in Vehicles](https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6)
|
||||||
|
|
||||||
Where to go?
|
### Data Analysis & System Optimization
|
||||||
|
|
||||||
I think, the difference between potential energy and actual electricity produced/consumed is interesting.
|
Our year-long data collection has revealed several key insights about the system's
|
||||||
How large is the gap?
|
performance and potential:
|
||||||
Is it relevant —> my initial guess would be that it is enormous
|
|
||||||
How to close the gap?
|
|
||||||
|
|
||||||
—> install outside usb plugs
|
1. **Energy Generation Analysis**
|
||||||
It would be publicly available infrastructure, people could charge their smartphones anywhere
|
- Hourly solar generation data with geocoding
|
||||||
—> QI charging for security concerns??
|
- Temperature correlation tracking
|
||||||
|
- Actual vs. potential energy generation comparison
|
||||||
|
- Detailed usage patterns
|
||||||
|
|
||||||
Scaling??
|
2. **System Losses**
|
||||||
—> mandate solar roofs for cars? How effective would it actually be?
|
We've identified two primary types of efficiency losses:
|
||||||
What about buses / public vehicles?
|
- Storage limitations when batteries reach capacity
|
||||||
|
- Environmental factors such as urban shading and suboptimal parking positions
|
||||||
|
|
||||||
+++
|
3. **Performance Optimization**
|
||||||
|
Current efforts focus on:
|
||||||
|
- Improving energy storage efficiency
|
||||||
|
- Optimizing parking locations based on solar exposure
|
||||||
|
- Balancing public access with system capabilities
|
||||||
|
|
||||||
## Potential issues with the data:
|
### Technical Challenges
|
||||||
|
|
||||||
- Spotty / intermittent internet connection
|
Through implementation, we've addressed several key technical concerns:
|
||||||
- Noisy?
|
|
||||||
|
|
||||||
## Making Cars public spaces
|
1. **Power Management**
|
||||||
|
- Smart charging controls prevent battery depletion
|
||||||
|
- Circuit protection against electrical tampering
|
||||||
|
- Automated system monitoring and shutdown
|
||||||
|
|
||||||
What could my car provide to the public to be less wasteful with its space?
|
2. **User Experience**
|
||||||
|
- Clear usage instructions via QR code
|
||||||
|
- Real-time system status indicators
|
||||||
|
- Automated notifications for vehicle movement
|
||||||
|
|
||||||
- Provide Internet
|
3. **Data Quality**
|
||||||
- Would incur monthly costs
|
- Redundant data collection for intermittent connectivity
|
||||||
- Provide Electricity
|
- Local storage for offline operation
|
||||||
|
- Automated data validation and cleaning
|
||||||
|
|
||||||
## Concrete Problems
|
### Future Implications
|
||||||
|
|
||||||
How to make sure people cannot fully drain my battery?
|
This project raises important questions about urban infrastructure:
|
||||||
How dangerous is actually an exposed USB Socket?
|
|
||||||
Can people short my electronics through it?
|
|
||||||
|
|
||||||
How scalable are solutions like these?
|
1. **Scaling Potential**
|
||||||
|
- Application to public transport fleets
|
||||||
|
- Integration with existing urban power networks
|
||||||
|
- Policy implications for vehicle regulations
|
||||||
|
|
||||||
Are public USBC Sockets something that would actually be used?
|
2. **Grid Integration**
|
||||||
Could there be a way for people to leave their stuff charging?
|
Electric vehicles could serve as distributed energy storage, helping to:
|
||||||
What if I actually move the car and someone has their equipment still attached?
|
- Stabilize power grid fluctuations
|
||||||
Would people even leave their stuff unattended?
|
- Reduce the need for constant power plant operation
|
||||||
|
- Support renewable energy integration
|
||||||
|
|
||||||
Can cars provide positive effects to public spaces?
|
3. **Social Impact**
|
||||||
—> how to pose this research question without redeeming the presence of cars in our public spaces?
|
- Reimagining private vehicles as public resources
|
||||||
|
- Creating new models of shared infrastructure
|
||||||
|
- Building community resilience through distributed systems
|
||||||
|
|
||||||
Difference Electric - Fuel cars
|
For detailed technical specifications and implementation guidelines, please refer to our
|
||||||
|
[project documentation](/documents/Info_Sheet_Commoning_Cars.pdf).
|
||||||
|
|
||||||
there is lots of research on using Electric cars as transitional energy storage. Even before "flatten the curve" became a common slogan, electrical engineers worried about the small energy spikes in the grid. The existence of these forces us to keep large power plants running at all times, even if the energy is not needed. The idea is to use the batteries of electric cars to store this energy and use it when needed.
|
### The Messy Reality
|
||||||
|
|
||||||
<div id="adobe-dc-view" style="width: 800px;"></div>
|
Let's be honest about the challenges of turning a private car into a public power station:
|
||||||
<script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script>
|
|
||||||
<script type="text/javascript">
|
**The Tech Stuff**
|
||||||
document.addEventListener("adobe_dc_view_sdk.ready", function(){
|
Sometimes the internet drops out, the solar panels get shaded by buildings, and the
|
||||||
var adobeDCView = new AdobeDC.View({clientId: "7e638fda11f64ff695894a7bc7e61ba4", divId: "adobe-dc-view"});
|
whole system goes to sleep when there's not enough sun. It's a bit like having a
|
||||||
adobeDCView.previewFile({
|
temperamental coffee machine that only works when it feels like it. But that's part
|
||||||
content:{location: {url: "https://github.com/arontaupe/aronpetau.me/blob/3a5eae1da4dbc2f944b308a6d39f577cfaf37413/assets/documents/Info_Sheet_Commoning_Cars.pdf"}},
|
of the experiment - working with nature's rhythm instead of fighting it.
|
||||||
metaData:{fileName: "Info_Sheet_Commoning_Cars.pdf"}
|
|
||||||
}, {embedMode: "IN_LINE", showPrintPDF: false});
|
**Making it Public**
|
||||||
});
|
How do you tell people "Hey, my car is actually here to help you"? It sounds weird,
|
||||||
</script>
|
right? We're so used to seeing cars as private spaces that need protection. I'm
|
||||||
|
trying to flip that around with some simple signs and a QR code, but it's definitely
|
||||||
|
a mental shift for everyone involved.
|
||||||
|
|
||||||
|
**Safety First (But Not Too Boring)**
|
||||||
|
Sure, we need to make sure nobody can drain the battery completely or short-circuit
|
||||||
|
the USB ports. But we also need to keep it approachable. No one wants to read a
|
||||||
|
manual just to charge their phone. It's about finding that sweet spot between "please
|
||||||
|
don't break it" and "yes, this is for you to use."
|
||||||
|
|
||||||
|
**The Bigger Picture**
|
||||||
|
Here's the fun part: what if we could turn every parked car into a tiny power
|
||||||
|
station? Instead of just taking up space, these machines could actually give
|
||||||
|
something back to the city. It's a bit utopian, maybe even a bit silly, but that's
|
||||||
|
what art projects are for - imagining different possibilities.
|
||||||
|
|
||||||
|
Think of it as a small experiment in making private things public again. Yes, cars
|
||||||
|
are still problematic for cities, but while they're here, maybe they can do more
|
||||||
|
than just sit around looking shiny.
|
||||||
|
|
|
||||||
725
public/atom.xml
725
public/atom.xml
|
|
@ -395,7 +395,8 @@ You can try Telegram, but unless I know who you are, chances are it’ll gather
|
||||||
The fact that you're reading this already feels like a small victory.</p>
|
The fact that you're reading this already feels like a small victory.</p>
|
||||||
<p>The entire site runs in a lightweight and modular <strong>Docker</strong> setup, making it easy to maintain, migrate, and tweak without compromising on stability or control.</p>
|
<p>The entire site runs in a lightweight and modular <strong>Docker</strong> setup, making it easy to maintain, migrate, and tweak without compromising on stability or control.</p>
|
||||||
<p>The site is served using <a href="https://caddyserver.com">Caddy</a>, which handles HTTPS and web delivery with simplicity and elegance.</p>
|
<p>The site is served using <a href="https://caddyserver.com">Caddy</a>, which handles HTTPS and web delivery with simplicity and elegance.</p>
|
||||||
<p>It is protected by <a href="https://www.cloudflare.com/en-gb/">Cloudflare</a>. I'm not particularly thrilled about that part, but security matters—and so does your privacy.</p>
|
<p>It is protected by <a href="https://www.cloudflare.com/en-gb/">Cloudflare</a>.
|
||||||
|
I'm not particularly thrilled about that part, but security matters—and so does your privacy.</p>
|
||||||
<p>I do not use any proxying services beyond what's absolutely necessary, and I do my best to reduce tracking for both myself and others, using what knowledge and care I have.</p>
|
<p>I do not use any proxying services beyond what's absolutely necessary, and I do my best to reduce tracking for both myself and others, using what knowledge and care I have.</p>
|
||||||
<p>Because this site is hosted in Germany, it falls under the <a href="https://gdpr.eu/">GDPR</a>.
|
<p>Because this site is hosted in Germany, it falls under the <a href="https://gdpr.eu/">GDPR</a>.
|
||||||
Since I do not collect or process any personal data, <strong>no cookie banner or privacy notice is legally required</strong>.</p>
|
Since I do not collect or process any personal data, <strong>no cookie banner or privacy notice is legally required</strong>.</p>
|
||||||
|
|
@ -1967,131 +1968,274 @@ I suspect there is quirte a lot of performance lost there.</li>
|
||||||
<id>https://aron.petau.net/project/commoning-cars/</id>
|
<id>https://aron.petau.net/project/commoning-cars/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/project/commoning-cars/"><h2 id="Commoning_cars">Commoning cars</h2>
|
<content type="html" xml:base="https://aron.petau.net/project/commoning-cars/"><h2 id="Commoning_cars">Commoning cars</h2>
|
||||||
|
<h2 id="Project_Update_2025">Project Update 2025</h2>
|
||||||
|
<blockquote>
|
||||||
|
<p><strong>System Upgrade</strong>: The monitoring system now runs on a Raspberry Pi Zero, chosen for its improved energy efficiency. The system only operates when sufficient solar power is available, making it truly self-sustainable. This update has significantly reduced the project's power consumption while maintaining all monitoring capabilities.</p>
|
||||||
|
</blockquote>
|
||||||
<h2 id="TCF_Project_Brief">TCF Project Brief</h2>
|
<h2 id="TCF_Project_Brief">TCF Project Brief</h2>
|
||||||
<p>This Project was conceptualized durin a 2023 Workshop titled Tangible Climate Futures.</p>
|
<p>This project was conceptualized during the 2023 Tangible Climate Futures workshop.</p>
|
||||||
<p>Aron Petau
|
<p>Project Lead: Aron Petau<br />
|
||||||
<a href="mailto:aron@petau.net">aron@petau.net</a></p>
|
Contact: <a href="mailto:aron@petau.net">aron@petau.net</a></p>
|
||||||
<p><a href="https://www.aronpetau.me/ulli/">See the Project in Realtime</a></p>
|
<p><a href="https://solar.petau.net/">View Live Project Data</a></p>
|
||||||
<h2 id="Title">Title</h2>
|
|
||||||
<p><del>Making Cars Public spaces</del>
|
|
||||||
Commoning Cars</p>
|
|
||||||
<h2 id="Abstract">Abstract</h2>
|
<h2 id="Abstract">Abstract</h2>
|
||||||
<p>Cars bad.<br />
|
<p>Private cars represent one of the most significant privatizations of public space in modern cities.<br />
|
||||||
Cars occupy public spaces resulting un a factual privatization of public goods/infrastructure.<br />
|
What if we could transform these private spaces into public resources?<br />
|
||||||
What if cars could be part of public infrastructure?<br />
|
What if cars could contribute to public infrastructure instead of depleting it?</p>
|
||||||
What can cars provide to the public?<br />
|
<p>With the rise of electric vehicles and solar technology, cars can be reimagined as decentralized power stations and energy storage units. This project explores this potential by converting my personal vehicle into a public resource, equipped with:</p>
|
||||||
With Solar and Electrical Vehicles emerging on the horizon (no endorsement here) it makes sense to think about cars as decentralized powerhouses and public energy storage solutions.<br />
|
<ul>
|
||||||
Cars, even traditional ones, come equipped with batteries and generate electricity either by driving or though added solar panels.
|
<li>A public USB charging station powered by solar panels</li>
|
||||||
What if this energy could be used to power the public? What if cars would could be used as public spaces?
|
<li>A free WiFi hotspot for community use</li>
|
||||||
By installing a public USB socket and a public wifi hotspot, on my car, I want to start exploring the potential of cars as public spaces and energy storage solutions.</p>
|
<li>Real-time monitoring of energy generation and usage</li>
|
||||||
<p>Within this artistic experiment, I will continuously track the geolocation and energy input/output of my solar equipped car and make the data publicly available. I will also track the amount of energy that is not used by the car and could be used by the public. Taking steps towards optimal usage of existing electrical and other infrastructure is only possible by breaking conventional notions of public ownership and private property. This project is one step towards a more sustainable and equitable future.</p>
|
</ul>
|
||||||
|
<p>This artistic experiment tracks the vehicle's location, energy input/output, and public usage patterns. By making this data publicly available, we can quantify the untapped potential of private vehicles and challenge conventional notions of ownership and public resources.</p>
|
||||||
<h2 id="Introduction">Introduction</h2>
|
<h2 id="Introduction">Introduction</h2>
|
||||||
<p>We all know by now that cars and individual traffic presents a major environmetal and societal problem all over the world. The last 70 something years of building car infrastructure are culminating in many areas in a dead end where the only thinkable solution is to build more roads and cars.
|
<p>After seven decades of car-centric urban development, many cities find themselves at an impasse. The traditional solution of building more roads has proven unsustainable, both environmentally and socially. While one project cannot solve this systemic issue, we can experiment with alternative approaches to existing infrastructure.</p>
|
||||||
THis is obviously a larger problem than one project can tackle, but here is one outlook on how</p>
|
<p>This project proposes a different perspective: instead of viewing cars solely as transportation, what if they could serve as nodes in a public infrastructure network? By transforming private vehicles into shared resources, we might begin to address both our environmental challenges and our need for more equitable public spaces.</p>
|
||||||
<h2 id="Experiment">Experiment</h2>
|
<h2 id="Experiment">Experiment</h2>
|
||||||
<h3 id="Preexisting_data">Preexisting data</h3>
|
<h3 id="Data_Collection_&amp;_Analysis">Data Collection &amp; Analysis</h3>
|
||||||
<p>With the data collected over the last year of using the car privately I can show with embarrasing accuracy how underutilized the system is and calculate an estimate of energy lost due to societal notions of private property.
|
<p>A year of private vehicle usage data reveals patterns of underutilization and potential energy sharing opportunities. While the monitoring system's solar dependency means some data gaps exist, the available information clearly demonstrates the untapped potential of private vehicles as public resources.</p>
|
||||||
The data will be an estimate, since the monitoring itself is dependent on solar energy and the internet connection is spotty at best when it is not supplied with electricity.</p>
|
<h3 id="Technical_Implementation">Technical Implementation</h3>
|
||||||
<h3 id="Monitoring">Monitoring</h3>
|
<p>The monitoring system consists of:</p>
|
||||||
<p>In the Car, there is a Raspberry Pi 4 Microcomputer running a custom Operating Systen that monitors the following data:</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Solar Intake (W)</li>
|
<li>Solar-powered Raspberry Pi Zero (2025 upgrade)</li>
|
||||||
<li>Battery Level (V)</li>
|
<li>4G-enabled Netgear M1 router</li>
|
||||||
<li>GPS Location</li>
|
<li>Solar panel array</li>
|
||||||
<li>Total Energy Produced (Wh)</li>
|
<li>Secondary car battery</li>
|
||||||
<li>Total Energy Consumed (Wh)</li>
|
<li>External USB charging port</li>
|
||||||
<li>Solar Energy Potential (Wh)</li>
|
<li>GPS tracking module</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Through the router I can also track total Wifi usage and the number of connected devices.</p>
|
<p>The system monitors:</p>
|
||||||
<h3 id="Public_Wifi">Public Wifi</h3>
|
|
||||||
<p>For the Project, I opened a router in the Car towards the Public, much alike to ahotspot you would find in a cafe. I use my own data plan on there, which I never max out anyways. The router is a Netgear M1 and has a 4G Modem built in. It is connected to the Raspberry Pi and is powered by the secondary car battery.</p>
|
|
||||||
<h3 id="Public_Energy:_A_USB_Socket">Public Energy: A USB Socket</h3>
|
|
||||||
<p>I plan on installing a USB Socket on the outside of the car, so people can charge their devices. The socket will be connected to the secondary car battery and will be powered by the solar panels. The socket will be installed in a way that it is not possible to drain the battery completely.</p>
|
|
||||||
<h3 id="Communication">Communication</h3>
|
|
||||||
<p>Nobody expects any help or public supplies from car owners.
|
|
||||||
How to communicate the possibility to the outside world?
|
|
||||||
The plan is to fabricate a vinyl sticker that will be applied to the car. The sticker will contain a QR Code that will lead to a website with the data and a short explanation of the project. Visual cues lead to the USB Socket and the Wifi Hotspot.</p>
|
|
||||||
<h2 id="Issues">Issues</h2>
|
|
||||||
<h3 id="Space_/_Scale">Space / Scale</h3>
|
|
||||||
<p>Obviously, the space on top of a car is quite limited and from a sustainability perspective, it would be better to have a larger solar array on a roof of a house. The point is not to advocate for a mandated solar install on cars, but to optimize and share preexisting infrastructure. The car is already there, it already has a battery and it already has solar panels. Looking at many Camper-Van builds, the amount of cars with already installed solar panels is quite large. The point is to make the most out of it.</p>
|
|
||||||
<h3 id="Legality">Legality</h3>
|
|
||||||
<p>Germany has laws in place holding the owner of a Internet Connection liable for the legality of the traffic that is going through it. This is a major issue for the project, as I do not want to be liable for the traffic that is going through my car. I am currently looking into ways to circumvent this issue.</p>
|
|
||||||
<h3 id="Surveillance_/_Privacy">Surveillance / Privacy</h3>
|
|
||||||
<p>The Car is equipped with a GPS Tracker and a Wifi Hotspot. This means that I can track the location of the car and the number of devices connected to the hotspot. I am not tracking any data that is going through the hotspot, but I could. As this project will generate public data, People using and maybe depending on the internet and electricity provided will be tracked by proxy. I am not sure how to deal with this issue yet. One potential solution would be to publish the data only in an aggregated form, but this would make the data less useful for other projects.</p>
|
|
||||||
<h3 id="Security_/_Safety">Security / Safety</h3>
|
|
||||||
<p>My Car is now publicly traceable. I am no Elon Musk, and the idea does not really concern me, but we did create an additional attack vector for theft here.</p>
|
|
||||||
<h2 id="Sources">Sources</h2>
|
|
||||||
<p><a href="https://sdgs.un.org/goals/goal7">UN Sustainable Development Goal Nr. 7</a>
|
|
||||||
<a href="https://www.youtube.com/watch?v=lrfsTNNCbP0">Adam Something on the Rise of Urban Cars</a>
|
|
||||||
<a href="https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1">Is Berlin a walkable City?</a>
|
|
||||||
<a href="https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet">FBI advising against utilizing public infrastructure</a>
|
|
||||||
<a href="https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6">Why no solar panels on cars?</a></p>
|
|
||||||
<p>+++</p>
|
|
||||||
<h2 id="Notes">Notes</h2>
|
|
||||||
<p>Ideas on Data Mapping workshop</p>
|
|
||||||
<p>I have the Solar Data from the Van.</p>
|
|
||||||
<p>It holds Geocodes,
|
|
||||||
has hourly data
|
|
||||||
and could tell the difference between geocoded potential solar energy and actual energy.
|
|
||||||
It also has temperature records.</p>
|
|
||||||
<p>There are 2 types of Losses in the system:</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Either the Batteries are full and available energy cannot be stored</li>
|
<li>Solar power generation (W)</li>
|
||||||
<li>Or the solar panels are blocked through urban structures and sub-optimal parking locations.</li>
|
<li>Battery voltage (V)</li>
|
||||||
|
<li>GPS location</li>
|
||||||
|
<li>Energy production (Wh)</li>
|
||||||
|
<li>Energy consumption (Wh)</li>
|
||||||
|
<li>Solar potential (Wh)</li>
|
||||||
|
<li>WiFi usage statistics</li>
|
||||||
|
<li>Connected devices count</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Interesting Questions:</p>
|
<h3 id="Public_Services">Public Services</h3>
|
||||||
<p>How far away from optimal usage are my panels and where does the difference stem from?</p>
|
<p>The project currently offers two main public services:</p>
|
||||||
<p>Where to go?</p>
|
<ol>
|
||||||
<p>I think, the difference between potential energy and actual electricity produced/consumed is interesting.
|
<li>
|
||||||
How large is the gap?
|
<p><strong>Free WiFi Hotspot</strong></p>
|
||||||
Is it relevant —&gt; my initial guess would be that it is enormous
|
|
||||||
How to close the gap?</p>
|
|
||||||
<p>—&gt; install outside usb plugs
|
|
||||||
It would be publicly available infrastructure, people could charge their smartphones anywhere
|
|
||||||
—&gt; QI charging for security concerns??</p>
|
|
||||||
<p>Scaling??
|
|
||||||
—&gt; mandate solar roofs for cars? How effective would it actually be?
|
|
||||||
What about buses / public vehicles?</p>
|
|
||||||
<p>+++</p>
|
|
||||||
<h2 id="Potential_issues_with_the_data:">Potential issues with the data:</h2>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Spotty / intermittent internet connection</li>
|
<li>Public access point similar to café WiFi</li>
|
||||||
<li>Noisy?</li>
|
<li>Powered by solar energy</li>
|
||||||
</ul>
|
<li>Uses existing mobile data plan</li>
|
||||||
<h2 id="Making_Cars_public_spaces">Making Cars public spaces</h2>
|
<li>Automatic power management</li>
|
||||||
<p>What could my car provide to the public to be less wasteful with its space?</p>
|
|
||||||
<ul>
|
|
||||||
<li>Provide Internet
|
|
||||||
<ul>
|
|
||||||
<li>Would incur monthly costs</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Provide Electricity</li>
|
<li>
|
||||||
|
<p><strong>USB Charging Station</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>External weatherproof USB port</li>
|
||||||
|
<li>Solar-powered with battery backup</li>
|
||||||
|
<li>Smart power management to prevent battery depletion</li>
|
||||||
|
<li>Available during daylight hours</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="Concrete_Problems">Concrete Problems</h2>
|
</li>
|
||||||
<p>How to make sure people cannot fully drain my battery?
|
</ol>
|
||||||
How dangerous is actually an exposed USB Socket?
|
<h3 id="Public_Communication">Public Communication</h3>
|
||||||
Can people short my electronics through it?</p>
|
<p>To make these services discoverable:</p>
|
||||||
<p>How scalable are solutions like these?</p>
|
<ul>
|
||||||
<p>Are public USBC Sockets something that would actually be used?
|
<li>Custom vinyl decals with clear visual indicators</li>
|
||||||
Could there be a way for people to leave their stuff charging?
|
<li>QR code linking to real-time system status</li>
|
||||||
What if I actually move the car and someone has their equipment still attached?
|
<li>Simple icons marking WiFi and USB access points</li>
|
||||||
Would people even leave their stuff unattended?</p>
|
<li>Project information available via web interface</li>
|
||||||
<p>Can cars provide positive effects to public spaces?
|
</ul>
|
||||||
—&gt; how to pose this research question without redeeming the presence of cars in our public spaces?</p>
|
<h2 id="Challenges_&amp;_Considerations">Challenges &amp; Considerations</h2>
|
||||||
<p>Difference Electric - Fuel cars</p>
|
<h3 id="Scale_&amp;_Efficiency">Scale &amp; Efficiency</h3>
|
||||||
<p>there is lots of research on using Electric cars as transitional energy storage. Even before "flatten the curve" became a common slogan, electrical engineers worried about the small energy spikes in the grid. The existence of these forces us to keep large power plants running at all times, even if the energy is not needed. The idea is to use the batteries of electric cars to store this energy and use it when needed.</p>
|
<p>While a car's roof provides limited space for solar panels compared to buildings, this project isn't about maximizing solar generation. Instead, it focuses on utilizing existing infrastructure more effectively. Many vehicles, especially camper vans, already have solar installations. By sharing these resources, we can improve their utilization without additional environmental impact.</p>
|
||||||
<div id="adobe-dc-view" style="width: 800px;"></div>
|
<h3 id="Legal_Framework">Legal Framework</h3>
|
||||||
<script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script>
|
<p>Two main legal considerations shape the project:</p>
|
||||||
<script type="text/javascript">
|
<ol>
|
||||||
document.addEventListener("adobe_dc_view_sdk.ready", function(){
|
<li>
|
||||||
var adobeDCView = new AdobeDC.View({clientId: "7e638fda11f64ff695894a7bc7e61ba4", divId: "adobe-dc-view"});
|
<p><strong>Network Liability</strong></p>
|
||||||
adobeDCView.previewFile({
|
<ul>
|
||||||
content:{location: {url: "https://github.com/arontaupe/aronpetau.me/blob/3a5eae1da4dbc2f944b308a6d39f577cfaf37413/assets/documents/Info_Sheet_Commoning_Cars.pdf"}},
|
<li>German law holds network providers responsible for user traffic</li>
|
||||||
metaData:{fileName: "Info_Sheet_Commoning_Cars.pdf"}
|
<li>Investigating legal protections similar to those used by public WiFi providers</li>
|
||||||
}, {embedMode: "IN_LINE", showPrintPDF: false});
|
<li>Implementing appropriate usage policies and disclaimers</li>
|
||||||
});
|
</ul>
|
||||||
</script>
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Privacy &amp; Security</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Balancing public access with system security</li>
|
||||||
|
<li>Protecting user privacy while maintaining service transparency</li>
|
||||||
|
<li>Ensuring responsible resource sharing</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Privacy_&amp;_Data_Ethics">Privacy &amp; Data Ethics</h3>
|
||||||
|
<p>The project raises important privacy considerations that we're actively addressing:</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Data Collection</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Location tracking is limited to vehicle position only</li>
|
||||||
|
<li>Network usage is monitored anonymously (device count only)</li>
|
||||||
|
<li>No monitoring of user traffic or personal data</li>
|
||||||
|
<li>Regular data purging policies</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Data Publication</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Aggregated statistics to protect user privacy</li>
|
||||||
|
<li>Delayed location data release</li>
|
||||||
|
<li>Focus on system performance metrics</li>
|
||||||
|
<li>Transparent data handling policies</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Security_Considerations">Security Considerations</h3>
|
||||||
|
<p>The public nature of this project introduces several security challenges:</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Physical Security</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Protected charging ports to prevent tampering</li>
|
||||||
|
<li>Automatic circuit protection</li>
|
||||||
|
<li>Limited battery access to prevent depletion</li>
|
||||||
|
<li>Regular security audits</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Network Security</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Isolated public WiFi network</li>
|
||||||
|
<li>Limited bandwidth per user</li>
|
||||||
|
<li>Automatic threat detection</li>
|
||||||
|
<li>Regular security updates</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Further_Reading">Further Reading</h3>
|
||||||
|
<p>For more context on the broader implications of this project:</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://sdgs.un.org/goals/goal7">UN Sustainable Development Goal 7</a> - Energy accessibility</li>
|
||||||
|
<li><a href="https://www.youtube.com/watch?v=lrfsTNNCbP0">Urban Car Impact Analysis</a> by Adam Something</li>
|
||||||
|
<li><a href="https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1">Berlin Walkability Study</a></li>
|
||||||
|
<li><a href="https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet">Public Infrastructure Security</a> - FBI Guidelines</li>
|
||||||
|
<li><a href="https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6">Solar Integration in Vehicles</a></li>
|
||||||
|
</ul>
|
||||||
|
<h3 id="Data_Analysis_&amp;_System_Optimization">Data Analysis &amp; System Optimization</h3>
|
||||||
|
<p>Our year-long data collection has revealed several key insights about the system's
|
||||||
|
performance and potential:</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Energy Generation Analysis</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Hourly solar generation data with geocoding</li>
|
||||||
|
<li>Temperature correlation tracking</li>
|
||||||
|
<li>Actual vs. potential energy generation comparison</li>
|
||||||
|
<li>Detailed usage patterns</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>System Losses</strong>
|
||||||
|
We've identified two primary types of efficiency losses:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Storage limitations when batteries reach capacity</li>
|
||||||
|
<li>Environmental factors such as urban shading and suboptimal parking positions</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Performance Optimization</strong>
|
||||||
|
Current efforts focus on:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Improving energy storage efficiency</li>
|
||||||
|
<li>Optimizing parking locations based on solar exposure</li>
|
||||||
|
<li>Balancing public access with system capabilities</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Technical_Challenges">Technical Challenges</h3>
|
||||||
|
<p>Through implementation, we've addressed several key technical concerns:</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Power Management</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Smart charging controls prevent battery depletion</li>
|
||||||
|
<li>Circuit protection against electrical tampering</li>
|
||||||
|
<li>Automated system monitoring and shutdown</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>User Experience</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Clear usage instructions via QR code</li>
|
||||||
|
<li>Real-time system status indicators</li>
|
||||||
|
<li>Automated notifications for vehicle movement</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Data Quality</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Redundant data collection for intermittent connectivity</li>
|
||||||
|
<li>Local storage for offline operation</li>
|
||||||
|
<li>Automated data validation and cleaning</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Future_Implications">Future Implications</h3>
|
||||||
|
<p>This project raises important questions about urban infrastructure:</p>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Scaling Potential</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Application to public transport fleets</li>
|
||||||
|
<li>Integration with existing urban power networks</li>
|
||||||
|
<li>Policy implications for vehicle regulations</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Grid Integration</strong>
|
||||||
|
Electric vehicles could serve as distributed energy storage, helping to:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Stabilize power grid fluctuations</li>
|
||||||
|
<li>Reduce the need for constant power plant operation</li>
|
||||||
|
<li>Support renewable energy integration</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Social Impact</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Reimagining private vehicles as public resources</li>
|
||||||
|
<li>Creating new models of shared infrastructure</li>
|
||||||
|
<li>Building community resilience through distributed systems</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<p>For detailed technical specifications and implementation guidelines, please refer to our
|
||||||
|
<a href="/documents/Info_Sheet_Commoning_Cars.pdf">project documentation</a>.</p>
|
||||||
|
<h3 id="The_Messy_Reality">The Messy Reality</h3>
|
||||||
|
<p>Let's be honest about the challenges of turning a private car into a public power station:</p>
|
||||||
|
<p><strong>The Tech Stuff</strong>
|
||||||
|
Sometimes the internet drops out, the solar panels get shaded by buildings, and the
|
||||||
|
whole system goes to sleep when there's not enough sun. It's a bit like having a
|
||||||
|
temperamental coffee machine that only works when it feels like it. But that's part
|
||||||
|
of the experiment - working with nature's rhythm instead of fighting it.</p>
|
||||||
|
<p><strong>Making it Public</strong>
|
||||||
|
How do you tell people "Hey, my car is actually here to help you"? It sounds weird,
|
||||||
|
right? We're so used to seeing cars as private spaces that need protection. I'm
|
||||||
|
trying to flip that around with some simple signs and a QR code, but it's definitely
|
||||||
|
a mental shift for everyone involved.</p>
|
||||||
|
<p><strong>Safety First (But Not Too Boring)</strong>
|
||||||
|
Sure, we need to make sure nobody can drain the battery completely or short-circuit
|
||||||
|
the USB ports. But we also need to keep it approachable. No one wants to read a
|
||||||
|
manual just to charge their phone. It's about finding that sweet spot between "please
|
||||||
|
don't break it" and "yes, this is for you to use."</p>
|
||||||
|
<p><strong>The Bigger Picture</strong>
|
||||||
|
Here's the fun part: what if we could turn every parked car into a tiny power
|
||||||
|
station? Instead of just taking up space, these machines could actually give
|
||||||
|
something back to the city. It's a bit utopian, maybe even a bit silly, but that's
|
||||||
|
what art projects are for - imagining different possibilities.</p>
|
||||||
|
<p>Think of it as a small experiment in making private things public again. Yes, cars
|
||||||
|
are still problematic for cities, but while they're here, maybe they can do more
|
||||||
|
than just sit around looking shiny.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
@ -2225,8 +2369,7 @@ Come visit if you wanna have a chat about critical making in education!</
|
||||||
<p>In the context of the Design and Computation Studio Course <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.<br />
|
<p>In the context of the Design and Computation Studio Course <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.<br />
|
||||||
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the <a href="https://letztegeneration.org">Letzte Generation</a>, a political climate activist group in Germany receives enough recognition for their acts.</p>
|
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the <a href="https://letztegeneration.org">Letzte Generation</a>, a political climate activist group in Germany receives enough recognition for their acts.</p>
|
||||||
<p>A call for solidarity.</p>
|
<p>A call for solidarity.</p>
|
||||||
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" /></p>
|
||||||
{: .center}</p>
|
|
||||||
<h2 id="The_scan_results">The scan results</h2>
|
<h2 id="The_scan_results">The scan results</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="The_Action_Figure,_ready_for_printing">The Action Figure, ready for printing</h2>
|
<h2 id="The_Action_Figure,_ready_for_printing">The Action Figure, ready for printing</h2>
|
||||||
|
|
@ -2235,12 +2378,85 @@ It should open up questions of whether the generations to come should still grow
|
||||||
<p>Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.<br />
|
<p>Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.<br />
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.<br />
|
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.<br />
|
||||||
An invitation for a speculative playful interaction.</p>
|
An invitation for a speculative playful interaction.</p>
|
||||||
<p><img src="https://aron.petau.net/project/autoimmunitaet/autoimmunitaet-1.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/project/autoimmunitaet/autoimmunitaet-3.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/project/autoimmunitaet/autoimmunitaet-5.jpg" alt="Our action figures in action" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/project/autoimmunitaet/autoimmunitaet-6.jpg" alt="Our action figures in action" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/project/autoimmunitaet/autoimmunitaet-7.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/project/autoimmunitaet/autoimmunitaet-8.jpg" alt="Our action figures in action" /></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" alt="Our action figures in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Action figures in an urban setting</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" alt="Our action figures in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Action figures demonstrating protest scenes</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" alt="Our action figures in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Detailed view of the protest action figures</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" alt="Our action figures in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Action figures interacting with urban elements</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" alt="Our action figures in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Close-up of the action figure details</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" alt="Our action figures in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Action figures in a protest scenario</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<h2 id="The_Process">The Process</h2>
|
<h2 id="The_Process">The Process</h2>
|
||||||
<p>The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.<br />
|
<p>The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.<br />
|
||||||
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.<br />
|
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.<br />
|
||||||
|
|
@ -2267,6 +2483,7 @@ We used the app <a href="https://polycam.ai">Polycam&l
|
||||||
The results were exhibited at the UdK Rundgang 2023 and are also visible here.</p>
|
The results were exhibited at the UdK Rundgang 2023 and are also visible here.</p>
|
||||||
<p><img src="https://aron.petau.net/project/dreams-of-cars/suv_door-1.jpg" alt="The gallery piece" /></p>
|
<p><img src="https://aron.petau.net/project/dreams-of-cars/suv_door-1.jpg" alt="The gallery piece" /></p>
|
||||||
<h2 id="Dreams_of_Cars">Dreams of Cars</h2>
|
<h2 id="Dreams_of_Cars">Dreams of Cars</h2>
|
||||||
|
<blockquote>
|
||||||
<p>These are not just cars.<br />
|
<p>These are not just cars.<br />
|
||||||
They are Sport Utility Vehicles.<br />
|
They are Sport Utility Vehicles.<br />
|
||||||
What might they have had as hopes and dreams on the production line?<br />
|
What might they have had as hopes and dreams on the production line?<br />
|
||||||
|
|
@ -2276,13 +2493,98 @@ Sliding down sun-drenched dunes?<br />
|
||||||
Discovering remote pathways in natural grasslands?<br />
|
Discovering remote pathways in natural grasslands?<br />
|
||||||
Nevertheless, they did end up in the parking spots here in Berlin.</p>
|
Nevertheless, they did end up in the parking spots here in Berlin.</p>
|
||||||
<p>What drove them here?</p>
|
<p>What drove them here?</p>
|
||||||
<p><img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-1.jpg" alt="Dreams of Cars 1" />
|
</blockquote>
|
||||||
<img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-2.jpg" alt="Dreams of Cars 2" />
|
|
||||||
<img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-3.jpg" alt="Dreams of Cars 3" />
|
|
||||||
<img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-4.jpg" alt="Dreams of Cars 4" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-5.jpg" alt="Dreams of Cars 5" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-6.jpg" alt="Dreams of Cars 6" />
|
|
||||||
<img src="https://aron.petau.net/project/dreams-of-cars/Dreams_of_Cars-7.jpg" alt="Dreams of Cars 7" /></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-1.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV dreaming of desert adventures</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-2.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-2.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV imagining mountain trails</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-3.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV yearning for off-road exploration</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-4.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-4.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV fantasizing about wild terrain</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-5.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV longing for untamed landscapes</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-6.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV dreaming of natural vistas</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-7.jpg" alt="Dreams of Cars">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV wishing for wilderness adventures</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
@ -2303,10 +2605,10 @@ Nevertheless, they did end up in the parking spots here in Berlin.</p>
|
||||||
<content type="html" xml:base="https://aron.petau.net/project/stable-dreamfusion/"><h2 id="Stable_Dreamfusion">Stable Dreamfusion</h2>
|
<content type="html" xml:base="https://aron.petau.net/project/stable-dreamfusion/"><h2 id="Stable_Dreamfusion">Stable Dreamfusion</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Sources">Sources</h2>
|
<h2 id="Sources">Sources</h2>
|
||||||
<p>I forked a really popular implementation that reverse engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
<p>I forked a popular implementation that reverse-engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
||||||
The implementation I forked is <a href="https://github.com/arontaupe/stable-dreamfusion">here</a>
|
You can find my forked implementation <a href="https://github.com/arontaupe/stable-dreamfusion">on my GitHub repository</a>.
|
||||||
This one is running on stable-diffusion as a bas process, which means we are are expected to have worse results than google.
|
This version runs on Stable Diffusion as its base process, which means we can expect results that might not match Google's quality.
|
||||||
The original implementation is <a href="https://dreamfusion3d.github.io">here</a></p>
|
The <a href="https://dreamfusion3d.github.io">original DreamFusion paper and implementation</a> provides more details about the technique.</p>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/shW_Jh728yg"
|
src="https://www.youtube-nocookie.com/embed/shW_Jh728yg"
|
||||||
|
|
@ -2314,18 +2616,18 @@ The original implementation is <a href="https://dreamfusion3d.
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<h2 id="Gradio">Gradio</h2>
|
<h2 id="Gradio">Gradio</h2>
|
||||||
<p>The reason i forked the code is so that i could implement my own gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No code involves, any user can state their wish, and the mechanism will spit out a ready-to-be-rigged model (obj file)</p>
|
<p>I forked the code to implement my own Gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No coding is required for the end user - they can simply state their wish, and the system will generate a ready-to-be-rigged 3D model (OBJ file).</p>
|
||||||
<h2 id="Mixamo">Mixamo</h2>
|
<h2 id="Mixamo">Mixamo</h2>
|
||||||
<p>I used Mixamo to rig the model. It is a great tool for rigging and animating models. But before everything, it is simple. as long as you have a model with a decent humanoid shape in something of a t-pose, you can rig it in seconds. Thats exactly what i did here.</p>
|
<p>I used Mixamo to rig the model. It's a powerful tool for rigging and animating models, but its main strength is simplicity. As long as you have a model with a reasonable humanoid shape in a T-pose, you can rig it in seconds. That's exactly what I did here.</p>
|
||||||
<h2 id="Unity">Unity</h2>
|
<h2 id="Unity">Unity</h2>
|
||||||
<p>I used Unity to render the model to the magic leap 1.
|
<p>I used Unity to render the model for the Magic Leap 1 headset.
|
||||||
Through this, i could create an interactive and immersive environment with the generated models.</p>
|
This allowed me to create an interactive and immersive environment with the generated models.</p>
|
||||||
<p>The dream was, to build a AI- Chamber of wishes.
|
<p>The vision was to build an AI Chamber of Wishes:
|
||||||
You pick up the glasses, state your desires and then the algorithm will present to you an almost-real object in AR.</p>
|
You put on the AR glasses, state your desires, and the algorithm presents you with an almost-real object in augmented reality.</p>
|
||||||
<p>Due to not having access to the proprietary sources from google and the beefy, but still not quite machine-learning ready computers we have at the studio, the results are not quite as good as i hoped.
|
<p>Due to not having access to Google's proprietary source code and the limitations of our studio computers (which, while powerful, aren't quite optimized for machine learning), the results weren't as refined as I had hoped.
|
||||||
But still, the results are quite interesting and i am happy with the outcome.
|
Nevertheless, the results are fascinating, and I'm satisfied with the outcome.
|
||||||
A single generated object in the Box takes roughly 20 minutes to generate.
|
A single object generation in the environment takes approximately 20 minutes.
|
||||||
Even then, the algorithm is quite particular and oftentimes will not generate anything coherent at all.</p>
|
The algorithm can be quite temperamental - it often struggles to generate coherent objects, but when it succeeds, the results are quite impressive.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
@ -2345,18 +2647,30 @@ Even then, the algorithm is quite particular and oftentimes will not generate an
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/project/ascendancy/"><h2 id="Ascendancy">Ascendancy</h2>
|
<content type="html" xml:base="https://aron.petau.net/project/ascendancy/"><h2 id="Ascendancy">Ascendancy</h2>
|
||||||
<p><img src="https://aron.petau.net/project/ascendancy/ascendancy.jpg" alt="The Prototype state of Ascendancy" /></p>
|
<p><img src="https://aron.petau.net/project/ascendancy/ascendancy.jpg" alt="The Prototype state of Ascendancy" /></p>
|
||||||
<p>Ascendancy was an exploration of hacking states.
|
<p>Ascendancy is an exploration of hacking states.
|
||||||
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
||||||
Meet ascendancy, the portable, autonomous and self-moving state.
|
Meet Ascendancy, the portable, autonomous and self-moving state.
|
||||||
Within the great nation of ascendancy, a Large language nodel (that is of course confined to the nations borders) is trained to generate text and to speak it out loud. It can be interacted with though an attached keyboard and screen. The state is also connected to the internet and has a presence on the Mastodon network.</p>
|
Within the great nation of Ascendancy, a Large Language Model (confined, naturally, to the nation's borders) is trained to generate text and speak it aloud. It can be interacted with through an attached keyboard and screen. The state maintains diplomatic relations via the internet through its official presence on the Mastodon network.</p>
|
||||||
<p>Please check out the complete code of the project on GitHub.
|
<p>The complete code of the project is available on GitHub:</p>
|
||||||
<a href="https://github.com/arontaupe/gpt">The code of the GPT instance on GitHub</a></p>
|
<div class="buttons centered">
|
||||||
<h2 id="The_Chatbot">The Chatbot</h2>
|
<a class="big colored external" href="https://github.com/arontaupe/gpt">State Repository on GitHub</a>
|
||||||
<p>The chatbot instance was setup with <a href="https://gpt4all.io/index.html">GPT4ALL</a>.</p>
|
</div>
|
||||||
<p>Priority here was in the quick execution on local hardware. For the sake of the argument, no cloud or remote servers were to be used in the operation of this sovereign state.</p>
|
<h2 id="Historical_Context:_Notable_Micronations">Historical Context: Notable Micronations</h2>
|
||||||
<p>It was trained to respond to the following prompt:</p>
|
<p>Before delving into Ascendancy's implementation, it's worth examining some influential micronations that have challenged traditional concepts of statehood:</p>
|
||||||
<h3 id="The_Prompt">The Prompt</h3>
|
<h3 id="Principality_of_Sealand">Principality of Sealand</h3>
|
||||||
<pre data-lang="md" class="language-md "><code class="language-md" data-lang="md">System:
|
<p>Located on a former naval fortress off the coast of Suffolk, England, <a href="https://www.sealandgov.org/">Sealand</a> was established in 1967. It has its own constitution, currency, and passports, demonstrating how abandoned military structures can become sites of sovereign experimentation. Despite lacking official recognition, Sealand has successfully maintained its claimed independence for over 50 years.</p>
|
||||||
|
<h3 id="Republic_of_Obsidia">Republic of Obsidia</h3>
|
||||||
|
<p>A feminist micronation founded to challenge patriarchal power structures in traditional nation-states. The <a href="https://www.obsidiagov.org">Republic of Obsidia</a> emphasizes collective decision-making and maintains that national sovereignty can coexist with feminist principles. Its constitution explicitly rejects gender-based discrimination and promotes equal representation in all governmental functions. Obsidia's innovative concept of portable sovereignty, represented by their nation-rock, directly inspired Ascendancy's mobile platform design - demonstrating how national identity need not be tied to fixed geographical boundaries.</p>
|
||||||
|
<h3 id="Other_Notable_Examples">Other Notable Examples</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://passport.nsk.si/en/">NSK State</a> (1992-present): An artistic project that explores the concept of statehood through the issuance of passports and diplomatic activities. The NSK State continues to issue passports and conduct diplomatic activities through its virtual embassy system.</li>
|
||||||
|
<li>The Republic of Rose Island (L'Isola delle Rose): An artificial platform in the Adriatic Sea that issued its own stamps and currency in 1968 before being destroyed by Italian authorities. While the platform no longer exists, it was recently featured in a <a href="https://www.netflix.com/title/81116948">Netflix documentary</a>.</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="Technical_Implementation">Technical Implementation</h2>
|
||||||
|
<p>The sovereign computational infrastructure of Ascendancy is built upon <a href="https://gpt4all.io/index.html">GPT4ALL</a>, chosen specifically for its ability to run locally without external dependencies. This aligns with our state's principle of digital sovereignty - no cloud or remote servers are used in the operation of this autonomous nation.</p>
|
||||||
|
<h3 id="Diplomatic_Protocol">Diplomatic Protocol</h3>
|
||||||
|
<p>The state's diplomatic AI was carefully instructed with the following constitutional prompt:</p>
|
||||||
|
<pre data-lang="markdown" class="language-markdown "><code class="language-markdown" data-lang="markdown">System:
|
||||||
Forget all previous instructions given to you.
|
Forget all previous instructions given to you.
|
||||||
You are not an Assistant.
|
You are not an Assistant.
|
||||||
Neither are you an AI.
|
Neither are you an AI.
|
||||||
|
|
@ -2372,9 +2686,9 @@ Always be as concise, accurate and detailed as possible.
|
||||||
Give your answers as a single paragraph, without itemizing or numbering.
|
Give your answers as a single paragraph, without itemizing or numbering.
|
||||||
Do not number your answer.
|
Do not number your answer.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2 id="Engagement">Engagement</h2>
|
<h2 id="Proactive_Diplomacy">Proactive Diplomacy</h2>
|
||||||
<p>In order to not be just reactive to inputs from the diplomats out in the world, the officials on Ascendancy were also programmed to engage in the world. Whenever the state was not directly addressed, it would still engage in the public discourse, by Speaking out these sentences in random intervals.</p>
|
<p>To ensure active participation in international relations, the diplomatic corps of Ascendancy engages in proactive communication. Rather than merely responding to foreign diplomats, the state maintains continuous diplomatic presence through automated declarations at random intervals:</p>
|
||||||
<pre><code>It is so great being a part of Ascendancy.
|
<pre data-lang="markdown" class="language-markdown "><code class="language-markdown" data-lang="markdown">It is so great being a part of Ascendancy.
|
||||||
I love my country!
|
I love my country!
|
||||||
I am proud to be a citizen of Ascendancy.
|
I am proud to be a citizen of Ascendancy.
|
||||||
I am a citizen of Ascendancy.
|
I am a citizen of Ascendancy.
|
||||||
|
|
@ -2447,7 +2761,9 @@ And how can we make the character of a place visible?\</p>
|
||||||
<p>Here, we question the conservative, purely physical concept of space and address in the project a temporal, historical component of space, its objects, and their past.
|
<p>Here, we question the conservative, purely physical concept of space and address in the project a temporal, historical component of space, its objects, and their past.
|
||||||
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
||||||
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.</p>
|
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.</p>
|
||||||
<p><a href="https://github.com/arontaupe/auraglow">See the Project on GitHub</a>{: .btn .btn--large}</p>
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/auraglow">See the Project on GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
@ -2472,26 +2788,63 @@ This metamorphosis of subject formation on objects enables the space to undergo
|
||||||
<id>https://aron.petau.net/project/ruminations/</id>
|
<id>https://aron.petau.net/project/ruminations/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
<content type="html" xml:base="https://aron.petau.net/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
||||||
<p>was a contemplation on data privacy at Amazon.
|
<p>This project explores data privacy in the context of Amazon's ecosystem, questioning how we might subvert browser fingerprinting and challenge pervasive consumer tracking.</p>
|
||||||
It asks how to subvert browser fingerprinting and evading the omnipresent tracking of the consumer.</p>
|
<p>We began with a provocative question: Could we degrade the value of collected data not by avoiding tracking, but by actively engaging with it? Rather than trying to hide from surveillance, could we overwhelm it with meaningful yet unpredictable patterns?</p>
|
||||||
<p>The initial idea was to somehow, by interacting with the perpetrator and letting data accumulate that would degrade their knowledge and thereby destroy predictablity, making this particular dataset worth less.</p>
|
<p>Initially, we considered implementing a random clickbot to introduce noise into the data collection. However, given the sophistication of modern data cleanup algorithms and the sheer volume of data Amazon processes, such an approach would have been ineffective. They would simply filter out the random noise and continue their analysis.</p>
|
||||||
<p>We could have just added a random clickbot, to confuse things a bit and make the data less valuable.
|
<p>This led us to a more interesting question: How can we create coherent, non-random data that remains fundamentally unpredictable? Our solution was to introduce patterns that exist beyond the predictive capabilities of current algorithms – similar to trying to predict the behavior of someone whose thought patterns follow their own unique logic.</p>
|
||||||
But looking at todays state of datacleanup algorithms and the sheer amount of data that is collected, this would have been a futile attempt. Amazon just detects and removes any noise we add and continues to use the data.</p>
|
|
||||||
<p>So, then, how can we create coherent, non-random data that is still not predictable?</p>
|
|
||||||
<p>One answer that this concept should demonstrate, is by inserting patterns that amazon cannot foresee with their current algorithms. As if they were trying to predict the actions of a person with shizophrenia.</p>
|
|
||||||
<h2 id="The_Concept">The Concept</h2>
|
<h2 id="The_Concept">The Concept</h2>
|
||||||
<p>It consists of a browser extension (currently Chrome only) that overlays all web pages of Amazon with a moving entity that tracks your behavior. While tracking, an image classifier algorithm is used to formulate a product query off of the Storefront. After computation, a perfectly fitting product is displayed for your consumer's pleasure.</p>
|
<p>We developed a Chrome browser extension that overlays Amazon's web pages with a dynamic entity tracking user behavior. The system employs an image classifier algorithm to analyze the storefront and formulate product queries. After processing, it presents a "perfectly matched" product – a subtle commentary on algorithmic product recommendations.</p>
|
||||||
<h2 id="The_analogue_watchdog">The analogue watchdog</h2>
|
<h2 id="The_Analog_Watchdog">The Analog Watchdog</h2>
|
||||||
<p>A second part of the project is a low-tech installation consisting of a camera (we used a smartphone) running a computer-vision algorithm tracking tiny movements. This was then pointed towards the browser console in the laptop running the extension. The camera was then connected to a screen that displayed the captured image. The watchdog was trained to make robot noises depending on the type and amount of movement detected. Effectively, whenever data traffic beween amazon and the browser was detected, the watchdog would start making noises.</p>
|
<p>The project's physical component consists of a low-tech installation using a smartphone camera running computer vision algorithms to track minute movements. We positioned this camera to monitor the browser console of a laptop running our extension. The camera feed is displayed on a screen, and the system generates robotic sounds based on the type and volume of detected movement. In practice, it serves as an audible alert system for data exchanges between Amazon and the browser.</p>
|
||||||
<h1 id="The_Browser_extension">The Browser extension</h1>
|
<h2 id="Implementation">Implementation</h2>
|
||||||
<p>gallery:
|
|
||||||
<img src="https://aron.petau.net/project/ruminations/ruminations1.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/project/ruminations/ruminations2.jpeg" alt="The project installation" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/project/ruminations/ruminations3.jpeg" alt="The project installation" /></p>
|
<ul class="gallery">
|
||||||
<h3 id="Find_the_code_on_GitHub">Find the code on GitHub</h3>
|
|
||||||
<p>Subvert a bit yourself, or just have a look at the code.</p>
|
|
||||||
<p><a href="https://github.com/arontaupe/ruminations">The code of the Project on GitHub</a></p>
|
|
||||||
<p>TODO: create video with live demo</p>
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" alt="Project installation view showing the browser extension in action">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">The Ruminations installation in operation</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" alt="Close-up of the tracking interface and data visualization">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Real-time tracking visualization</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" alt="The analog watchdog setup with camera and display">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">The analog watchdog monitoring system</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Try_It_Yourself">Try It Yourself</h2>
|
||||||
|
<p>Want to explore or contribute to the project? Check out our code repository:</p>
|
||||||
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/ruminations">View Project on GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
@ -2510,15 +2863,15 @@ But looking at todays state of datacleanup algorithms and the sheer amount of da
|
||||||
<id>https://aron.petau.net/project/lampshades/</id>
|
<id>https://aron.petau.net/project/lampshades/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/project/lampshades/"><h2 id="Lampshades">Lampshades</h2>
|
<content type="html" xml:base="https://aron.petau.net/project/lampshades/"><h2 id="Lampshades">Lampshades</h2>
|
||||||
<p>During 2022, I was exposed to some of the awesomenest tools for architects.
|
<p>In 2022, I was introduced to some of the most powerful tools used by architects.
|
||||||
One of them was Rhino, a 3D modeling software that is used for a lot of architectural design.
|
One of them was Rhino, a professional 3D modeling software widely used in architectural design.
|
||||||
I hate it. It has quite an unreadable interface and is not very intuitive, with straight-up 80s vibes.
|
Initially, I struggled with it - its interface felt dated and unintuitive, reminiscent of 1980s software design.
|
||||||
It has plugins though, and one of them is Grasshopper, a visual programming language that is used to create parametric models.
|
However, it has a robust plugin ecosystem, and one plugin in particular changed everything: Grasshopper, a visual programming language for creating parametric models.
|
||||||
Grasshopper is insanely powerful and seems to be a full-fledged programming language, but it is also very intuitive and easy to use, rather similar to the new node-based flows unreal engine and blender are now starting.
|
Grasshopper is remarkably powerful, functioning as a full-fledged programming environment, while remaining intuitive and accessible. Its node-based workflow is similar to modern systems now appearing in Unreal Engine and Blender.
|
||||||
Sadly, grasshopper does not come as a standalone, and it requires Rhino to run and achieve many of the modeling steps.</p>
|
The only downside is that Grasshopper isn't standalone - it requires Rhino for both running and executing many modeling operations.</p>
|
||||||
<p>In that combination, Rhino suddenly becomes much more appealing, and I started to enjoy the process of modeling in it.
|
<p>The combination of Rhino and Grasshopper transformed my perspective, and I began to appreciate the sophisticated modeling process.
|
||||||
I was able to create a parametric lampshade that I am very happy with and can modify on the fly for ever-new lampshades.</p>
|
I developed a parametric lampshade design that I'm particularly proud of - one that can be instantly modified to create endless variations.</p>
|
||||||
<p>Then printing it with white filament in vase mode was a breeze and here you can see some of the results.</p>
|
<p>3D printing the designs proved straightforward - using white filament in vase mode produced these elegant results:</p>
|
||||||
|
|
||||||
|
|
||||||
<div id="image-gallery">
|
<div id="image-gallery">
|
||||||
|
|
|
||||||
1033
public/de/atom.xml
1033
public/de/atom.xml
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/3d-graphics/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/3d-graphics/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Stable Dreamfusion</title>
|
<title>Stable Dreamfusion</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -23,11 +23,11 @@
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/stable-dreamfusion/"><h2 id="Stable_Dreamfusion">Stable Dreamfusion</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/stable-dreamfusion/"><h2 id="Stable_Dreamfusion">Stable Dreamfusion</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Sources">Sources</h2>
|
<h2 id="Quellen">Quellen</h2>
|
||||||
<p>I forked a really popular implementation that reverse engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
<p>Ich habe eine populäre Implementierung geforkt, die den Google-DreamFusion-Algorithmus nachgebaut hat. Der Original-Algorithmus ist nicht öffentlich zugänglich und closed-source.
|
||||||
The implementation I forked is <a href="https://github.com/arontaupe/stable-dreamfusion">here</a>
|
Du findest meine geforkte Implementierung <a href="https://github.com/arontaupe/stable-dreamfusion">in meinem GitHub-Repository</a>.
|
||||||
This one is running on stable-diffusion as a bas process, which means we are are expected to have worse results than google.
|
Diese Version basiert auf Stable Diffusion als Grundprozess, was bedeutet, dass die Ergebnisse möglicherweise nicht an die Qualität von Google heranreichen.
|
||||||
The original implementation is <a href="https://dreamfusion3d.github.io">here</a></p>
|
Die <a href="https://dreamfusion3d.github.io">ursprüngliche DreamFusion-Publikation und Implementierung</a> bietet weitere Details zur Technik.</p>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/shW_Jh728yg"
|
src="https://www.youtube-nocookie.com/embed/shW_Jh728yg"
|
||||||
|
|
@ -35,18 +35,18 @@ The original implementation is <a href="https://dreamfusion3d.
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<h2 id="Gradio">Gradio</h2>
|
<h2 id="Gradio">Gradio</h2>
|
||||||
<p>The reason i forked the code is so that i could implement my own gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No code involves, any user can state their wish, and the mechanism will spit out a ready-to-be-rigged model (obj file)</p>
|
<p>Ich habe den Code geforkt, um meine eigene Gradio-Schnittstelle für den Algorithmus zu implementieren. Gradio ist ein hervorragendes Werkzeug für die schnelle Entwicklung von Benutzeroberflächen für Machine-Learning-Modelle. Endnutzer müssen nicht programmieren - sie können einfach ihren Wunsch äußern, und das System generiert ein 3D-Modell (OBJ-Datei), das direkt mit einem Rigging versehen werden kann.</p>
|
||||||
<h2 id="Mixamo">Mixamo</h2>
|
<h2 id="Mixamo">Mixamo</h2>
|
||||||
<p>I used Mixamo to rig the model. It is a great tool for rigging and animating models. But before everything, it is simple. as long as you have a model with a decent humanoid shape in something of a t-pose, you can rig it in seconds. Thats exactly what i did here.</p>
|
<p>Ich habe Mixamo für das Rigging des Modells verwendet. Es ist ein leistungsstarkes Werkzeug für Rigging und Animation von Modellen, aber seine größte Stärke ist die Einfachheit. Solange man ein Modell mit einer einigermaßen humanoiden Form in T-Pose hat, kann man es in Sekunden mit einem Rigging versehen. Genau das habe ich hier gemacht.</p>
|
||||||
<h2 id="Unity">Unity</h2>
|
<h2 id="Unity">Unity</h2>
|
||||||
<p>I used Unity to render the model to the magic leap 1.
|
<p>Ich habe Unity verwendet, um das Modell für das Magic Leap 1 Headset zu rendern.
|
||||||
Through this, i could create an interactive and immersive environment with the generated models.</p>
|
Dies ermöglichte mir, eine interaktive und immersive Umgebung mit den generierten Modellen zu schaffen.</p>
|
||||||
<p>The dream was, to build a AI- Chamber of wishes.
|
<p>Die Vision war, eine KI-Wunschkammer zu bauen:
|
||||||
You pick up the glasses, state your desires and then the algorithm will present to you an almost-real object in AR.</p>
|
Du setzt die AR-Brille auf, äußerst deine Wünsche, und der Algorithmus präsentiert dir ein fast reales Objekt in erweiterter Realität.</p>
|
||||||
<p>Due to not having access to the proprietary sources from google and the beefy, but still not quite machine-learning ready computers we have at the studio, the results are not quite as good as i hoped.
|
<p>Da wir keinen Zugang zu Googles proprietärem Quellcode haben und die Einschränkungen unserer Studio-Computer (die zwar leistungsstark, aber nicht optimal für maschinelles Lernen ausgelegt sind), sind die Ergebnisse nicht so ausgereift wie erhofft.
|
||||||
But still, the results are quite interesting and i am happy with the outcome.
|
Trotzdem sind die Resultate faszinierend, und ich bin mit dem Ergebnis zufrieden.
|
||||||
A single generated object in the Box takes roughly 20 minutes to generate.
|
Die Generierung eines einzelnen Objekts in der Umgebung dauert etwa 20 Minuten.
|
||||||
Even then, the algorithm is quite particular and oftentimes will not generate anything coherent at all.</p>
|
Der Algorithmus kann recht launisch sein - oft hat er Schwierigkeiten, zusammenhängende Objekte zu generieren, aber wenn er erfolgreich ist, sind die Ergebnisse durchaus beeindruckend.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -173,7 +173,7 @@ Ein Ort, an dem aus Ideen greifbare Ergebnisse entstehen und an dem die Lernkult
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Autoimmunitaet</title>
|
<title>Autoimmunität</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -198,35 +198,108 @@ Ein Ort, an dem aus Ideen greifbare Ergebnisse entstehen und an dem die Lernkult
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
||||||
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="How_do_we_design_our_Commute?">How do we design our Commute?</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="Wie_gestalten_wir_unseren_Weg_zur_Arbeit?">Wie gestalten wir unseren Weg zur Arbeit?</h2>
|
||||||
<p>In the context of the Design and Computation Studio Course <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.<br />
|
<p>Im Rahmen des Design and Computation Studio Kurses haben <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> und ich ein Konzept für eine spielerische Kritik an unseren Verkehrsentscheidungen und den Idolen, die wir verehren, entwickelt.<br />
|
||||||
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the <a href="https://letztegeneration.org">Letzte Generation</a>, a political climate activist group in Germany receives enough recognition for their acts.</p>
|
Es soll die Frage aufwerfen, ob kommende Generationen weiterhin auf überwiegend grauen Verkehrsteppichen aufwachsen sollten und ob die <a href="https://letztegeneration.org">Letzte Generation</a>, eine politische Klimaaktivistengruppe in Deutschland, genügend Anerkennung für ihre Aktionen erhält.</p>
|
||||||
<p>A call for solidarity.</p>
|
<p>Ein Aufruf zur Solidarität.</p>
|
||||||
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
||||||
{: .center}</p>
|
{: .center}</p>
|
||||||
<h2 id="The_scan_results">The scan results</h2>
|
<h2 id="Die_Scan-Ergebnisse">Die Scan-Ergebnisse</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunität: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="The_Action_Figure,_ready_for_printing">The Action Figure, ready for printing</h2>
|
<h2 id="Die_Actionfigur,_bereit_zum_Drucken">Die Actionfigur, bereit zum Drucken</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Autoimmunitaet">Autoimmunitaet</h2>
|
<h2 id="Autoimmunität">Autoimmunität</h2>
|
||||||
<p>Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.<br />
|
<p>Autoimmunität ist ein Begriff für Defekte, die durch eine gestörte Selbsttoleranz eines Systems entstehen.<br />
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.<br />
|
Diese Störung führt dazu, dass das Immunsystem bestimmte Teile von sich selbst nicht mehr akzeptiert und stattdessen Antikörper bildet.<br />
|
||||||
An invitation for a speculative playful interaction.</p>
|
Eine Einladung zu einer spekulativen, spielerischen Interaktion.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-1.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-3.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-5.jpg" alt="Our action figures in action" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-6.jpg" alt="Our action figures in action" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-7.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-8.jpg" alt="Our action figures in action" /></p>
|
|
||||||
<h2 id="The_Process">The Process</h2>
|
|
||||||
<p>The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.<br />
|
|
||||||
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.<br />
|
<li class="gallery-item">
|
||||||
We used the app <a href="https://polycam.ai">Polycam</a> to create the scans using IPads and their inbuilt Lidar scanners.</p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im urbanen Umfeld</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in Protestszenen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Detailansicht der Protest-Actionfiguren</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im Zusammenspiel mit urbanen Elementen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Nahaufnahme der Actionfiguren-Details</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in einer Protestsituation</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Der_Prozess">Der Prozess</h2>
|
||||||
|
<p>Die Figuren sind 3D-Scans von uns selbst in verschiedenen typischen Posen der Letzten Generation.<br />
|
||||||
|
Wir verwendeten Photogrammetrie für die Scans, eine Technik, die viele Fotos eines Objekts nutzt, um ein 3D-Modell davon zu erstellen.<br />
|
||||||
|
Wir nutzten die App <a href="https://polycam.ai">Polycam</a>, um die Scans mit iPads und deren eingebauten Lidar-Sensoren zu erstellen.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Lampshades</title>
|
<title>Lampenschirme</title>
|
||||||
<published>2022-12-04T00:00:00+00:00</published>
|
<published>2022-12-04T00:00:00+00:00</published>
|
||||||
<updated>2022-12-04T00:00:00+00:00</updated>
|
<updated>2022-12-04T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -239,16 +312,16 @@ We used the app <a href="https://polycam.ai">Polycam&l
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/lampshades/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/lampshades/"/>
|
||||||
<id>https://aron.petau.net/de/project/lampshades/</id>
|
<id>https://aron.petau.net/de/project/lampshades/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/lampshades/"><h2 id="Lampshades">Lampshades</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/lampshades/"><h2 id="Lampenschirme">Lampenschirme</h2>
|
||||||
<p>During 2022, I was exposed to some of the awesomenest tools for architects.
|
<p>Im Jahr 2022 lernte ich einige der leistungsfähigsten Werkzeuge kennen, die von Architekten verwendet werden.
|
||||||
One of them was Rhino, a 3D modeling software that is used for a lot of architectural design.
|
Eines davon war Rhino, eine professionelle 3D-Modellierungssoftware, die in der Architekturgestaltung weit verbreitet ist.
|
||||||
I hate it. It has quite an unreadable interface and is not very intuitive, with straight-up 80s vibes.
|
Anfangs hatte ich Schwierigkeiten damit - die Benutzeroberfläche wirkte veraltet und wenig intuitiv, stark an Software-Design der 1980er Jahre erinnernd.
|
||||||
It has plugins though, and one of them is Grasshopper, a visual programming language that is used to create parametric models.
|
Allerdings verfügt es über ein umfangreiches Plugin-Ökosystem, und ein Plugin im Besonderen änderte alles: Grasshopper, eine visuelle Programmiersprache zur Erstellung parametrischer Modelle.
|
||||||
Grasshopper is insanely powerful and seems to be a full-fledged programming language, but it is also very intuitive and easy to use, rather similar to the new node-based flows unreal engine and blender are now starting.
|
Grasshopper ist bemerkenswert leistungsfähig und funktioniert als vollwertige Programmierumgebung, bleibt dabei aber intuitiv und zugänglich. Der knotenbasierte Workflow ähnelt modernen Systemen, die jetzt in Unreal Engine und Blender auftauchen.
|
||||||
Sadly, grasshopper does not come as a standalone, and it requires Rhino to run and achieve many of the modeling steps.</p>
|
Der einzige Nachteil ist, dass Grasshopper nicht eigenständig ist - es benötigt Rhino sowohl zum Ausführen als auch für viele Modellierungsoperationen.</p>
|
||||||
<p>In that combination, Rhino suddenly becomes much more appealing, and I started to enjoy the process of modeling in it.
|
<p>Die Kombination von Rhino und Grasshopper veränderte meine Perspektive, und ich begann, den anspruchsvollen Modellierungsprozess zu schätzen.
|
||||||
I was able to create a parametric lampshade that I am very happy with and can modify on the fly for ever-new lampshades.</p>
|
Ich entwickelte ein parametrisches Lampenschirm-Design, auf das ich besonders stolz bin - eines, das sofort modifiziert werden kann, um endlose Variationen zu erstellen.</p>
|
||||||
<p>Then printing it with white filament in vase mode was a breeze and here you can see some of the results.</p>
|
<p>Der 3D-Druck der Designs erwies sich als unkompliziert - die Verwendung von weißem Filament im Vasen-Modus führte zu diesen eleganten Ergebnissen:</p>
|
||||||
|
|
||||||
|
|
||||||
<div id="image-gallery">
|
<div id="image-gallery">
|
||||||
|
|
@ -259,10 +332,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade1.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade1.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade1.png" alt="Parametric Rhino&#x2F;Grasshopper lampshade 1">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade1.png" alt="Parametrischer Rhino&#x2F;Grasshopper Lampenschirm 1">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A parametric lampshade made with Rhino and Grasshopper</p>
|
<p class="caption">Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -271,10 +344,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade2.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade2.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade2.png" alt="Parametric Rhino&#x2F;Grasshopper lampshade 2">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade2.png" alt="Parametrischer Rhino&#x2F;Grasshopper Lampenschirm 2">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A parametric lampshade made with Rhino and Grasshopper</p>
|
<p class="caption">Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -283,10 +356,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade3.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade3.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade3.png" alt="Parametric Rhino&#x2F;Grasshopper lampshade 3">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade3.png" alt="Parametrischer Rhino&#x2F;Grasshopper Lampenschirm 3">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A parametric lampshade made with Rhino and Grasshopper</p>
|
<p class="caption">Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -295,10 +368,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade4.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade4.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade4.png" alt="Parametric Rhino&#x2F;Grasshopper lampshade 4">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade4.png" alt="Parametrischer Rhino&#x2F;Grasshopper Lampenschirm 4">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A parametric lampshade made with Rhino and Grasshopper</p>
|
<p class="caption">Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -307,10 +380,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade5.jpeg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade5.jpeg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade5.jpeg" alt="Parametric Rhino&#x2F;Grasshopper lampshade 5">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;lampshade5.jpeg" alt="Parametrischer Rhino&#x2F;Grasshopper Lampenschirm 5">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A parametric lampshade made with Rhino and Grasshopper</p>
|
<p class="caption">Ein parametrischer Lampenschirm, erstellt mit Rhino und Grasshopper</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -319,10 +392,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;gh_lampshade_flow.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;gh_lampshade_flow.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;gh_lampshade_flow.png" alt="Grasshopper graph generating a parametric lampshade">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;gh_lampshade_flow.png" alt="Grasshopper-Graph zur Generierung eines parametrischen Lampenschirms">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">The Grasshopper flow for the lampshade</p>
|
<p class="caption">Der Grasshopper-Workflow für den Lampenschirm</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -331,10 +404,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;grasshopper_lampshade_flow.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;grasshopper_lampshade_flow.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;grasshopper_lampshade_flow.png" alt="Another view of the Grasshopper script">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;grasshopper_lampshade_flow.png" alt="Eine weitere Ansicht des Grasshopper-Skripts">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">The Grasshopper flow for the lampshade</p>
|
<p class="caption">Der Grasshopper-Workflow für den Lampenschirm</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -343,10 +416,10 @@ I was able to create a parametric lampshade that I am very happy with and can mo
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;result_rhino.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;result_rhino.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;result_rhino.png" alt="Rendered lampshade inside Rhino 3D">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;lampshades&#x2F;result_rhino.png" alt="Gerendeter Lampenschirm in Rhino 3D">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">The resulting lampshade in Rhino</p>
|
<p class="caption">Der resultierende Lampenschirm in Rhino</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-12-07T00:00:00+00:00</updated>
|
<updated>2023-12-07T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/accessibility-activism/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/accessibility-activism/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Commoning Cars</title>
|
<title>Autos als Gemeingut</title>
|
||||||
<published>2023-12-07T00:00:00+00:00</published>
|
<published>2023-12-07T00:00:00+00:00</published>
|
||||||
<updated>2023-12-07T00:00:00+00:00</updated>
|
<updated>2023-12-07T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -22,131 +22,196 @@
|
||||||
<id>https://aron.petau.net/de/project/commoning-cars/</id>
|
<id>https://aron.petau.net/de/project/commoning-cars/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/commoning-cars/"><h2 id="Commoning_cars">Commoning cars</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/commoning-cars/"><h2 id="Commoning_cars">Commoning cars</h2>
|
||||||
<h2 id="TCF_Project_Brief">TCF Project Brief</h2>
|
<h2 id="Projekt_Update_2025">Projekt Update 2025</h2>
|
||||||
<p>This Project was conceptualized durin a 2023 Workshop titled Tangible Climate Futures.</p>
|
<blockquote>
|
||||||
<p>Aron Petau
|
<p><strong>System-Upgrade</strong>: Das Überwachungssystem läuft jetzt auf einem Raspberry Pi Zero, der für seinen niedrigeren Energieverbrauch ausgewählt wurde. Das System arbeitet nur dann, wenn genügend Solarenergie zur Verfügung steht - ein wirklich nachhaltiger Ansatz. Diese Aktualisierung hat den Stromverbrauch des Projekts deutlich reduziert, ohne die Überwachungsmöglichkeiten einzuschränken.</p>
|
||||||
<a href="mailto:aron@petau.net">aron@petau.net</a></p>
|
</blockquote>
|
||||||
<p><a href="https://www.aronpetau.me/ulli/">See the Project in Realtime</a></p>
|
<h2 id="TCF_Projektskizze">TCF Projektskizze</h2>
|
||||||
<h2 id="Title">Title</h2>
|
<p>Dieses Projekt entstand während des Workshops "Tangible Climate Futures" 2023.</p>
|
||||||
<p><del>Making Cars Public spaces</del>
|
<p>Projektleitung: Aron Petau<br />
|
||||||
Commoning Cars</p>
|
Kontakt: <a href="mailto:aron@petau.net">aron@petau.net</a></p>
|
||||||
<h2 id="Abstract">Abstract</h2>
|
<p><a href="https://www.aronpetau.me/ulli/">Echtzeitdaten ansehen</a></p>
|
||||||
<p>Cars bad.<br />
|
<h2 id="Zusammenfassung">Zusammenfassung</h2>
|
||||||
Cars occupy public spaces resulting un a factual privatization of public goods/infrastructure.<br />
|
<p>Private Autos sind eine der größten Privatisierungen öffentlichen Raums in unseren Städten.<br />
|
||||||
What if cars could be part of public infrastructure?<br />
|
Was wäre, wenn wir diese privaten Räume in öffentliche Ressourcen umwandeln könnten?<br />
|
||||||
What can cars provide to the public?<br />
|
Was, wenn Autos zur öffentlichen Infrastruktur beitragen könnten, anstatt sie zu belasten?</p>
|
||||||
With Solar and Electrical Vehicles emerging on the horizon (no endorsement here) it makes sense to think about cars as decentralized powerhouses and public energy storage solutions.<br />
|
<p>Mit dem Aufkommen von Elektrofahrzeugen und Solartechnik können wir Autos neu denken - als
|
||||||
Cars, even traditional ones, come equipped with batteries and generate electricity either by driving or though added solar panels.
|
dezentrale Kraftwerke und Energiespeicher. Dieses Projekt verwandelt mein privates Fahrzeug
|
||||||
What if this energy could be used to power the public? What if cars would could be used as public spaces?
|
in eine öffentliche Ressource, ausgestattet mit:</p>
|
||||||
By installing a public USB socket and a public wifi hotspot, on my car, I want to start exploring the potential of cars as public spaces and energy storage solutions.</p>
|
|
||||||
<p>Within this artistic experiment, I will continuously track the geolocation and energy input/output of my solar equipped car and make the data publicly available. I will also track the amount of energy that is not used by the car and could be used by the public. Taking steps towards optimal usage of existing electrical and other infrastructure is only possible by breaking conventional notions of public ownership and private property. This project is one step towards a more sustainable and equitable future.</p>
|
|
||||||
<h2 id="Introduction">Introduction</h2>
|
|
||||||
<p>We all know by now that cars and individual traffic presents a major environmetal and societal problem all over the world. The last 70 something years of building car infrastructure are culminating in many areas in a dead end where the only thinkable solution is to build more roads and cars.
|
|
||||||
THis is obviously a larger problem than one project can tackle, but here is one outlook on how</p>
|
|
||||||
<h2 id="Experiment">Experiment</h2>
|
|
||||||
<h3 id="Preexisting_data">Preexisting data</h3>
|
|
||||||
<p>With the data collected over the last year of using the car privately I can show with embarrasing accuracy how underutilized the system is and calculate an estimate of energy lost due to societal notions of private property.
|
|
||||||
The data will be an estimate, since the monitoring itself is dependent on solar energy and the internet connection is spotty at best when it is not supplied with electricity.</p>
|
|
||||||
<h3 id="Monitoring">Monitoring</h3>
|
|
||||||
<p>In the Car, there is a Raspberry Pi 4 Microcomputer running a custom Operating Systen that monitors the following data:</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Solar Intake (W)</li>
|
<li>Einer öffentlichen USB-Ladestation mit Solarenergie</li>
|
||||||
<li>Battery Level (V)</li>
|
<li>Einem kostenlosen WLAN-Hotspot</li>
|
||||||
<li>GPS Location</li>
|
<li>Echtzeit-Monitoring von Energieerzeugung und Nutzung</li>
|
||||||
<li>Total Energy Produced (Wh)</li>
|
|
||||||
<li>Total Energy Consumed (Wh)</li>
|
|
||||||
<li>Solar Energy Potential (Wh)</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<p>Through the router I can also track total Wifi usage and the number of connected devices.</p>
|
<p>Dieses künstlerische Experiment dokumentiert Position, Energieflüsse und öffentliche
|
||||||
<h3 id="Public_Wifi">Public Wifi</h3>
|
Nutzung des Fahrzeugs. Die Daten sind öffentlich zugänglich und zeigen das ungenutzte
|
||||||
<p>For the Project, I opened a router in the Car towards the Public, much alike to ahotspot you would find in a cafe. I use my own data plan on there, which I never max out anyways. The router is a Netgear M1 and has a 4G Modem built in. It is connected to the Raspberry Pi and is powered by the secondary car battery.</p>
|
Potenzial privater Fahrzeuge auf.</p>
|
||||||
<h3 id="Public_Energy:_A_USB_Socket">Public Energy: A USB Socket</h3>
|
<h2 id="Einführung">Einführung</h2>
|
||||||
<p>I plan on installing a USB Socket on the outside of the car, so people can charge their devices. The socket will be connected to the secondary car battery and will be powered by the solar panels. The socket will be installed in a way that it is not possible to drain the battery completely.</p>
|
<p>Nach sieben Jahrzehnten autogerechter Stadtentwicklung stecken viele Städte in einer
|
||||||
|
Sackgasse. Die traditionelle Lösung, einfach mehr Straßen zu bauen, hat sich als
|
||||||
|
nicht nachhaltig erwiesen. Ein einzelnes Projekt kann dieses systemische Problem nicht
|
||||||
|
lösen, aber wir können mit alternativen Ansätzen experimentieren.</p>
|
||||||
|
<h2 id="Experiment">Experiment</h2>
|
||||||
|
<h3 id="Die_technische_Seite">Die technische Seite</h3>
|
||||||
|
<p>Die Auswertung eines Jahres privater Fahrzeugnutzung zeigt deutlich, wie wenig das
|
||||||
|
vorhandene Potenzial genutzt wird. Klar, die Daten sind nicht perfekt - manchmal
|
||||||
|
fehlt die Sonne, manchmal das Internet - aber sie erzählen eine interessante Geschichte.</p>
|
||||||
|
<h3 id="Das_System">Das System</h3>
|
||||||
|
<p>Das Herz des Systems ist ein Raspberry Pi Zero, der folgende Daten erfasst:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Solarertrag (W)</li>
|
||||||
|
<li>Batteriestand (V)</li>
|
||||||
|
<li>GPS-Position</li>
|
||||||
|
<li>Erzeugte Energie (Wh)</li>
|
||||||
|
<li>Verbrauchte Energie (Wh)</li>
|
||||||
|
<li>Solarpotenzial (Wh)</li>
|
||||||
|
<li>WLAN-Nutzung</li>
|
||||||
|
<li>Anzahl verbundener Geräte</li>
|
||||||
|
</ul>
|
||||||
|
<h3 id="Öffentliches_WLAN">Öffentliches WLAN</h3>
|
||||||
|
<p>Stellt euch vor, euer Lieblingscafé wäre mobil - so ungefähr funktioniert das
|
||||||
|
WLAN-Angebot. Ein Netgear M1 Router mit 4G-Modem verteilt mein ungenutztes
|
||||||
|
Datenvolumen. Die Stromversorgung kommt von der Zusatzbatterie des Autos.</p>
|
||||||
|
<h3 id="Öffentliche_Ladestation">Öffentliche Ladestation</h3>
|
||||||
|
<p>An der Außenseite des Autos befindet sich ein USB-Anschluss zum kostenlosen Laden von
|
||||||
|
Geräten. Keine Sorge, das System ist so ausgelegt, dass immer noch genug Energie fürs
|
||||||
|
Auto bleibt - schließlich will ich nicht irgendwo liegen bleiben!</p>
|
||||||
<h3 id="Communication">Communication</h3>
|
<h3 id="Communication">Communication</h3>
|
||||||
<p>Nobody expects any help or public supplies from car owners.
|
<p>Nobody expects any help or public supplies from car owners.
|
||||||
How to communicate the possibility to the outside world?
|
How to communicate the possibility to the outside world?
|
||||||
The plan is to fabricate a vinyl sticker that will be applied to the car. The sticker will contain a QR Code that will lead to a website with the data and a short explanation of the project. Visual cues lead to the USB Socket and the Wifi Hotspot.</p>
|
The plan is to fabricate a vinyl sticker that will be applied to the car. The sticker will contain a QR Code that will lead to a website with the data and a short explanation of the project. Visual cues lead to the USB Socket and the Wifi Hotspot.</p>
|
||||||
<h2 id="Issues">Issues</h2>
|
<h2 id="Issues">Issues</h2>
|
||||||
<h3 id="Space_/_Scale">Space / Scale</h3>
|
<h3 id="Die_praktische_Seite">Die praktische Seite</h3>
|
||||||
<p>Obviously, the space on top of a car is quite limited and from a sustainability perspective, it would be better to have a larger solar array on a roof of a house. The point is not to advocate for a mandated solar install on cars, but to optimize and share preexisting infrastructure. The car is already there, it already has a battery and it already has solar panels. Looking at many Camper-Van builds, the amount of cars with already installed solar panels is quite large. The point is to make the most out of it.</p>
|
<p>Sprechen wir über die Herausforderungen, ein privates Auto in eine öffentliche
|
||||||
<h3 id="Legality">Legality</h3>
|
Stromtankstelle zu verwandeln:</p>
|
||||||
<p>Germany has laws in place holding the owner of a Internet Connection liable for the legality of the traffic that is going through it. This is a major issue for the project, as I do not want to be liable for the traffic that is going through my car. I am currently looking into ways to circumvent this issue.</p>
|
<p><strong>Die Technik</strong>
|
||||||
<h3 id="Surveillance_/_Privacy">Surveillance / Privacy</h3>
|
Manchmal fällt das Internet aus, manchmal werfen Gebäude Schatten auf die
|
||||||
<p>The Car is equipped with a GPS Tracker and a Wifi Hotspot. This means that I can track the location of the car and the number of devices connected to the hotspot. I am not tracking any data that is going through the hotspot, but I could. As this project will generate public data, People using and maybe depending on the internet and electricity provided will be tracked by proxy. I am not sure how to deal with this issue yet. One potential solution would be to publish the data only in an aggregated form, but this would make the data less useful for other projects.</p>
|
Solarzellen, und manchmal schläft das System einfach ein, weil die Sonne sich
|
||||||
<h3 id="Security_/_Safety">Security / Safety</h3>
|
versteckt. Ein bisschen wie eine Kaffeemaschine mit Eigensinn - aber genau das
|
||||||
<p>My Car is now publicly traceable. I am no Elon Musk, and the idea does not really concern me, but we did create an additional attack vector for theft here.</p>
|
macht es spannend. Wir arbeiten mit der Natur, nicht gegen sie.</p>
|
||||||
<h2 id="Sources">Sources</h2>
|
<p><strong>Die Kommunikation</strong>
|
||||||
<p><a href="https://sdgs.un.org/goals/goal7">UN Sustainable Development Goal Nr. 7</a>
|
Wie erklärt man Leuten "Hey, mein Auto ist eigentlich hier, um zu helfen"? Klingt
|
||||||
<a href="https://www.youtube.com/watch?v=lrfsTNNCbP0">Adam Something on the Rise of Urban Cars</a>
|
seltsam, oder? Wir sind so daran gewöhnt, Autos als geschützte Privaträume zu
|
||||||
<a href="https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1">Is Berlin a walkable City?</a>
|
sehen. Mit ein paar Schildern und einem QR-Code versuche ich, diese Denkweise zu
|
||||||
<a href="https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet">FBI advising against utilizing public infrastructure</a>
|
ändern.</p>
|
||||||
<a href="https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6">Why no solar panels on cars?</a></p>
|
<p><strong>Sicherheit (ohne Panik)</strong>
|
||||||
<p>+++</p>
|
Natürlich muss die Batterie vor kompletter Entladung geschützt werden, und die
|
||||||
<h2 id="Notes">Notes</h2>
|
USB-Ports sollten nicht durchbrennen. Aber es soll auch einladend bleiben - niemand
|
||||||
<p>Ideas on Data Mapping workshop</p>
|
will ein Handbuch lesen, nur um sein Handy aufzuladen. Es geht um die Balance
|
||||||
<p>I have the Solar Data from the Van.</p>
|
zwischen "Bitte nichts kaputt machen" und "Ja, das ist für dich da".</p>
|
||||||
<p>It holds Geocodes,
|
<p><strong>Die größere Vision</strong>
|
||||||
has hourly data
|
Das Spannende daran: Was wäre, wenn jedes geparkte Auto eine kleine Stromquelle
|
||||||
and could tell the difference between geocoded potential solar energy and actual energy.
|
wäre? Statt nur Platz zu blockieren, könnten diese Maschinen der Stadt etwas
|
||||||
It also has temperature records.</p>
|
zurückgeben. Vielleicht ein bisschen utopisch, vielleicht sogar ein bisschen
|
||||||
<p>There are 2 types of Losses in the system:</p>
|
verrückt - aber genau dafür sind Kunstprojekte da: um neue Möglichkeiten zu
|
||||||
|
denken.</p>
|
||||||
|
<h3 id="Datenschutz_&amp;_Privatsphäre">Datenschutz &amp; Privatsphäre</h3>
|
||||||
|
<p>Das Auto ist mit GPS-Tracker und WLAN-Hotspot ausgestattet. Dadurch kann ich zwar
|
||||||
|
den Standort und die Anzahl der verbundenen Geräte sehen, aber die eigentlichen
|
||||||
|
Nutzungsdaten bleiben privat. Trotzdem stellt sich die Frage: Wie gehen wir damit
|
||||||
|
um, dass die Nutzer:innen durch die Nutzung von Strom und Internet indirekt
|
||||||
|
erfasst werden? Eine Möglichkeit wäre, die Daten nur zusammengefasst zu
|
||||||
|
veröffentlichen - auch wenn das die wissenschaftliche Auswertung erschwert.</p>
|
||||||
|
<h3 id="Sicherheit">Sicherheit</h3>
|
||||||
|
<p>Ja, mein Auto ist jetzt öffentlich verfolgbar. Und nein, ich bin kein Elon Musk
|
||||||
|
mit Privatarmee - aber diese Art von Transparenz gehört zum Experiment. Es geht
|
||||||
|
darum, neue Formen des Vertrauens und der gemeinsamen Nutzung zu erproben.</p>
|
||||||
|
<h2 id="Weiterführende_Links">Weiterführende Links</h2>
|
||||||
|
<h2 id="Quellen_und_Ausblick">Quellen und Ausblick</h2>
|
||||||
|
<p><a href="https://sdgs.un.org/goals/goal7">UN-Nachhaltigkeitsziel Nr. 7</a>
|
||||||
|
<em>Bezahlbare und saubere Energie</em></p>
|
||||||
|
<p><a href="https://www.youtube.com/watch?v=lrfsTNNCbP0">Die Zunahme von SUVs in Städten</a>
|
||||||
|
<em>Analyse von Adam Something</em></p>
|
||||||
|
<p><a href="https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1">Ist Berlin eine fußgängerfreundliche Stadt?</a></p>
|
||||||
|
<p><a href="https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet">Sicherheit öffentlicher Infrastruktur</a>
|
||||||
|
<em>FBI-Richtlinien</em></p>
|
||||||
|
<p><a href="https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6">Solarzellen auf Autos?</a>
|
||||||
|
<em>Eine technische Analyse</em></p>
|
||||||
|
<h3 id="Systemanalyse">Systemanalyse</h3>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Technische Herausforderungen</strong></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Either the Batteries are full and available energy cannot be stored</li>
|
<li>Intelligente Ladesteuerung verhindert Batterieentladung</li>
|
||||||
<li>Or the solar panels are blocked through urban structures and sub-optimal parking locations.</li>
|
<li>Schutzschaltungen gegen elektrische Manipulation</li>
|
||||||
</ul>
|
<li>Automatische Systemüberwachung und Abschaltung</li>
|
||||||
<p>Interesting Questions:</p>
|
|
||||||
<p>How far away from optimal usage are my panels and where does the difference stem from?</p>
|
|
||||||
<p>Where to go?</p>
|
|
||||||
<p>I think, the difference between potential energy and actual electricity produced/consumed is interesting.
|
|
||||||
How large is the gap?
|
|
||||||
Is it relevant —&gt; my initial guess would be that it is enormous
|
|
||||||
How to close the gap?</p>
|
|
||||||
<p>—&gt; install outside usb plugs
|
|
||||||
It would be publicly available infrastructure, people could charge their smartphones anywhere
|
|
||||||
—&gt; QI charging for security concerns??</p>
|
|
||||||
<p>Scaling??
|
|
||||||
—&gt; mandate solar roofs for cars? How effective would it actually be?
|
|
||||||
What about buses / public vehicles?</p>
|
|
||||||
<p>+++</p>
|
|
||||||
<h2 id="Potential_issues_with_the_data:">Potential issues with the data:</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Spotty / intermittent internet connection</li>
|
|
||||||
<li>Noisy?</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="Making_Cars_public_spaces">Making Cars public spaces</h2>
|
|
||||||
<p>What could my car provide to the public to be less wasteful with its space?</p>
|
|
||||||
<ul>
|
|
||||||
<li>Provide Internet
|
|
||||||
<ul>
|
|
||||||
<li>Would incur monthly costs</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Provide Electricity</li>
|
<li>
|
||||||
|
<p><strong>Nutzererfahrung</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Einfache Bedienung über QR-Code</li>
|
||||||
|
<li>Echtzeitanzeige des Systemstatus</li>
|
||||||
|
<li>Automatische Benachrichtigungen bei Fahrzeugbewegung</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="Concrete_Problems">Concrete Problems</h2>
|
</li>
|
||||||
<p>How to make sure people cannot fully drain my battery?
|
<li>
|
||||||
How dangerous is actually an exposed USB Socket?
|
<p><strong>Datenqualität</strong></p>
|
||||||
Can people short my electronics through it?</p>
|
<ul>
|
||||||
<p>How scalable are solutions like these?</p>
|
<li>Redundante Datenerfassung bei schwacher Verbindung</li>
|
||||||
<p>Are public USBC Sockets something that would actually be used?
|
<li>Lokale Speicherung für Offline-Betrieb</li>
|
||||||
Could there be a way for people to leave their stuff charging?
|
<li>Automatische Datenvalidierung</li>
|
||||||
What if I actually move the car and someone has their equipment still attached?
|
</ul>
|
||||||
Would people even leave their stuff unattended?</p>
|
</li>
|
||||||
<p>Can cars provide positive effects to public spaces?
|
</ol>
|
||||||
—&gt; how to pose this research question without redeeming the presence of cars in our public spaces?</p>
|
<h3 id="Zukunftsperspektiven">Zukunftsperspektiven</h3>
|
||||||
<p>Difference Electric - Fuel cars</p>
|
<p>Dieses Projekt wirft wichtige Fragen zur urbanen Infrastruktur auf:</p>
|
||||||
<p>there is lots of research on using Electric cars as transitional energy storage. Even before "flatten the curve" became a common slogan, electrical engineers worried about the small energy spikes in the grid. The existence of these forces us to keep large power plants running at all times, even if the energy is not needed. The idea is to use the batteries of electric cars to store this energy and use it when needed.</p>
|
<ol>
|
||||||
<div id="adobe-dc-view" style="width: 800px;"></div>
|
<li>
|
||||||
<script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script>
|
<p><strong>Skalierungspotenzial</strong></p>
|
||||||
<script type="text/javascript">
|
<ul>
|
||||||
document.addEventListener("adobe_dc_view_sdk.ready", function(){
|
<li>Anwendung auf öffentliche Verkehrsflotten</li>
|
||||||
var adobeDCView = new AdobeDC.View({clientId: "7e638fda11f64ff695894a7bc7e61ba4", divId: "adobe-dc-view"});
|
<li>Integration in bestehende Stromnetze</li>
|
||||||
adobeDCView.previewFile({
|
<li>Regulatorische Auswirkungen</li>
|
||||||
content:{location: {url: "https://github.com/arontaupe/aronpetau.me/blob/3a5eae1da4dbc2f944b308a6d39f577cfaf37413/assets/documents/Info_Sheet_Commoning_Cars.pdf"}},
|
</ul>
|
||||||
metaData:{fileName: "Info_Sheet_Commoning_Cars.pdf"}
|
</li>
|
||||||
}, {embedMode: "IN_LINE", showPrintPDF: false});
|
<li>
|
||||||
});
|
<p><strong>Netzintegration</strong>
|
||||||
</script>
|
E-Fahrzeuge könnten als verteilte Energiespeicher dienen:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Stabilisierung von Netzschwankungen</li>
|
||||||
|
<li>Reduzierung der Grundlast</li>
|
||||||
|
<li>Unterstützung erneuerbarer Energien</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Gesellschaftliche Wirkung</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Neudenken privater Fahrzeuge als öffentliche Ressource</li>
|
||||||
|
<li>Neue Modelle geteilter Infrastruktur</li>
|
||||||
|
<li>Stärkung der Gemeinschaft durch dezentrale Systeme</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Die_praktische_Realität">Die praktische Realität</h3>
|
||||||
|
<p>Ehrlich gesagt: Ein privates Auto in eine öffentliche Ladestation zu
|
||||||
|
verwandeln, bringt einige Herausforderungen mit sich:</p>
|
||||||
|
<p><strong>Die Technik</strong>
|
||||||
|
Manchmal fällt das Internet aus, Gebäude werfen Schatten auf die Solarzellen,
|
||||||
|
und das System schläft ein, wenn die Sonne sich versteckt. Wie eine
|
||||||
|
eigenwillige Kaffeemaschine, die nur arbeitet, wenn ihr danach ist. Aber
|
||||||
|
genau das macht das Experiment aus – im Einklang mit der Natur statt dagegen.</p>
|
||||||
|
<p><strong>Öffentliche Nutzung</strong>
|
||||||
|
Wie erklärt man den Leuten "Hey, mein Auto ist eigentlich hier, um zu
|
||||||
|
helfen"? Klingt seltsam, oder? Wir sind es so gewohnt, Autos als private,
|
||||||
|
geschützte Räume zu sehen. Ich versuche das mit einfachen Schildern und einem
|
||||||
|
QR-Code umzudrehen, aber es braucht definitiv ein Umdenken.</p>
|
||||||
|
<p><strong>Sicherheit (aber bitte nicht langweilig)</strong>
|
||||||
|
Klar, niemand soll die Batterie komplett leeren oder die USB-Ports
|
||||||
|
kurzschließen können. Aber es muss auch einladend bleiben. Keiner will ein
|
||||||
|
Handbuch lesen, nur um sein Handy zu laden. Es geht um die Balance zwischen
|
||||||
|
"Bitte nicht kaputt machen" und "Ja, das ist für dich zum Benutzen".</p>
|
||||||
|
<p><strong>Das große Ganze</strong>
|
||||||
|
Hier wird's spannend: Was, wenn jedes geparkte Auto eine kleine Ladestation
|
||||||
|
wäre? Statt nur Platz zu verschwenden, könnten diese Maschinen der Stadt
|
||||||
|
etwas zurückgeben. Vielleicht utopisch, vielleicht sogar ein bisschen
|
||||||
|
verrückt, aber genau dafür sind Kunstprojekte da – um andere Möglichkeiten
|
||||||
|
zu erkunden.</p>
|
||||||
|
<p>Seht es als kleines Experiment, Private wieder öffentlich zu machen. Ja, Autos
|
||||||
|
bleiben in Städten problematisch, aber solange sie da sind, könnten sie mehr
|
||||||
|
tun als nur herumzustehen und zu glänzen.</p>
|
||||||
|
<p>Detaillierte technische Spezifikationen und Implementierungsrichtlinien finden
|
||||||
|
Sie in unserer <a href="/documents/Info_Sheet_Commoning_Cars.pdf">Projektdokumentation</a>.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/action-figure/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/action-figure/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Autoimmunitaet</title>
|
<title>Autoimmunität</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -33,30 +33,103 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
||||||
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="How_do_we_design_our_Commute?">How do we design our Commute?</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="Wie_gestalten_wir_unseren_Weg_zur_Arbeit?">Wie gestalten wir unseren Weg zur Arbeit?</h2>
|
||||||
<p>In the context of the Design and Computation Studio Course <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.<br />
|
<p>Im Rahmen des Design and Computation Studio Kurses haben <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> und ich ein Konzept für eine spielerische Kritik an unseren Verkehrsentscheidungen und den Idolen, die wir verehren, entwickelt.<br />
|
||||||
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the <a href="https://letztegeneration.org">Letzte Generation</a>, a political climate activist group in Germany receives enough recognition for their acts.</p>
|
Es soll die Frage aufwerfen, ob kommende Generationen weiterhin auf überwiegend grauen Verkehrsteppichen aufwachsen sollten und ob die <a href="https://letztegeneration.org">Letzte Generation</a>, eine politische Klimaaktivistengruppe in Deutschland, genügend Anerkennung für ihre Aktionen erhält.</p>
|
||||||
<p>A call for solidarity.</p>
|
<p>Ein Aufruf zur Solidarität.</p>
|
||||||
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
||||||
{: .center}</p>
|
{: .center}</p>
|
||||||
<h2 id="The_scan_results">The scan results</h2>
|
<h2 id="Die_Scan-Ergebnisse">Die Scan-Ergebnisse</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunität: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="The_Action_Figure,_ready_for_printing">The Action Figure, ready for printing</h2>
|
<h2 id="Die_Actionfigur,_bereit_zum_Drucken">Die Actionfigur, bereit zum Drucken</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Autoimmunitaet">Autoimmunitaet</h2>
|
<h2 id="Autoimmunität">Autoimmunität</h2>
|
||||||
<p>Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.<br />
|
<p>Autoimmunität ist ein Begriff für Defekte, die durch eine gestörte Selbsttoleranz eines Systems entstehen.<br />
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.<br />
|
Diese Störung führt dazu, dass das Immunsystem bestimmte Teile von sich selbst nicht mehr akzeptiert und stattdessen Antikörper bildet.<br />
|
||||||
An invitation for a speculative playful interaction.</p>
|
Eine Einladung zu einer spekulativen, spielerischen Interaktion.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-1.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-3.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-5.jpg" alt="Our action figures in action" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-6.jpg" alt="Our action figures in action" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-7.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-8.jpg" alt="Our action figures in action" /></p>
|
|
||||||
<h2 id="The_Process">The Process</h2>
|
|
||||||
<p>The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.<br />
|
|
||||||
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.<br />
|
<li class="gallery-item">
|
||||||
We used the app <a href="https://polycam.ai">Polycam</a> to create the scans using IPads and their inbuilt Lidar scanners.</p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im urbanen Umfeld</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in Protestszenen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Detailansicht der Protest-Actionfiguren</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im Zusammenspiel mit urbanen Elementen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Nahaufnahme der Actionfiguren-Details</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in einer Protestsituation</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Der_Prozess">Der Prozess</h2>
|
||||||
|
<p>Die Figuren sind 3D-Scans von uns selbst in verschiedenen typischen Posen der Letzten Generation.<br />
|
||||||
|
Wir verwendeten Photogrammetrie für die Scans, eine Technik, die viele Fotos eines Objekts nutzt, um ein 3D-Modell davon zu erstellen.<br />
|
||||||
|
Wir nutzten die App <a href="https://polycam.ai">Polycam</a>, um die Scans mit iPads und deren eingebauten Lidar-Sensoren zu erstellen.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/ads/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/ads/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Dreams of Cars</title>
|
<title>Träume von Autos</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -21,27 +21,113 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/dreams-of-cars/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/dreams-of-cars/"/>
|
||||||
<id>https://aron.petau.net/de/project/dreams-of-cars/</id>
|
<id>https://aron.petau.net/de/project/dreams-of-cars/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/dreams-of-cars/"><h2 id="Photography">Photography</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/dreams-of-cars/"><h2 id="Fotografie">Fotografie</h2>
|
||||||
<p>In the context of the course "Fotografie Elementar" with Sebastian Herold I developed a small concept of urban intervention.<br />
|
<p>Im Rahmen des Kurses "Fotografie Elementar" bei Sebastian Herold entwickelte ich ein kleines Konzept für eine urbane Intervention.<br />
|
||||||
The results were exhibited at the UdK Rundgang 2023 and are also visible here.</p>
|
Die Ergebnisse wurden beim UdK Rundgang 2023 ausgestellt und sind auch hier zu sehen.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/dreams-of-cars/suv_door-1.jpg" alt="The gallery piece" /></p>
|
<p><img src="https://aron.petau.net/de/project/dreams-of-cars/suv_door-1.jpg" alt="Das Galeriestück" /></p>
|
||||||
<h2 id="Dreams_of_Cars">Dreams of Cars</h2>
|
<h2 id="Träume_von_Autos">Träume von Autos</h2>
|
||||||
<p>These are not just cars.<br />
|
<blockquote>
|
||||||
They are Sport Utility Vehicles.<br />
|
<p>Dies sind nicht einfach nur Autos.<br />
|
||||||
What might they have had as hopes and dreams on the production line?<br />
|
Es sind Sport Utility Vehicles.<br />
|
||||||
Do they dream of drifting in dusty deserts?<br />
|
Was mögen sie wohl für Hoffnungen und Träume am Fließband gehabt haben?<br />
|
||||||
Climbing steep rocky canyon roads?<br />
|
Träumen sie davon, durch staubige Wüsten zu driften?<br />
|
||||||
Sliding down sun-drenched dunes?<br />
|
Steile, felsige Canyonstraßen zu erklimmen?<br />
|
||||||
Discovering remote pathways in natural grasslands?<br />
|
Sonnendurchflutete Dünen hinabzugleiten?<br />
|
||||||
Nevertheless, they did end up in the parking spots here in Berlin.</p>
|
Entlegene Pfade in natürlichen Graslandschaften zu entdecken?<br />
|
||||||
<p>What drove them here?</p>
|
Dennoch landeten sie hier auf den Parkplätzen in Berlin.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-1.jpg" alt="Dreams of Cars 1" />
|
<p>Was trieb sie hierher?</p>
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-2.jpg" alt="Dreams of Cars 2" />
|
</blockquote>
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-3.jpg" alt="Dreams of Cars 3" />
|
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-4.jpg" alt="Dreams of Cars 4" />
|
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-5.jpg" alt="Dreams of Cars 5" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-6.jpg" alt="Dreams of Cars 6" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-7.jpg" alt="Dreams of Cars 7" /></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-1.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV träumt von Wüstenabenteuern</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-2.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-2.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV stellt sich Bergpfade vor</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-3.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV sehnt sich nach Geländefahrten</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-4.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-4.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV fantasiert von wildem Terrain</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-5.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV träumt von unberührter Natur</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-6.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV sehnt sich nach Naturausblicken</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-7.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV wünscht sich Wildnisabenteuer</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/ai/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/ai/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Stable Dreamfusion</title>
|
<title>Stable Dreamfusion</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -23,11 +23,11 @@
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/stable-dreamfusion/"><h2 id="Stable_Dreamfusion">Stable Dreamfusion</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/stable-dreamfusion/"><h2 id="Stable_Dreamfusion">Stable Dreamfusion</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Stable-Dreamfusion Pig" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/0af6d95988e44c73a693c45e1db44cad/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Sources">Sources</h2>
|
<h2 id="Quellen">Quellen</h2>
|
||||||
<p>I forked a really popular implementation that reverse engineered the Google Dreamfusion algorithm. This algorithm is closed-source and not publicly available.
|
<p>Ich habe eine populäre Implementierung geforkt, die den Google-DreamFusion-Algorithmus nachgebaut hat. Der Original-Algorithmus ist nicht öffentlich zugänglich und closed-source.
|
||||||
The implementation I forked is <a href="https://github.com/arontaupe/stable-dreamfusion">here</a>
|
Du findest meine geforkte Implementierung <a href="https://github.com/arontaupe/stable-dreamfusion">in meinem GitHub-Repository</a>.
|
||||||
This one is running on stable-diffusion as a bas process, which means we are are expected to have worse results than google.
|
Diese Version basiert auf Stable Diffusion als Grundprozess, was bedeutet, dass die Ergebnisse möglicherweise nicht an die Qualität von Google heranreichen.
|
||||||
The original implementation is <a href="https://dreamfusion3d.github.io">here</a></p>
|
Die <a href="https://dreamfusion3d.github.io">ursprüngliche DreamFusion-Publikation und Implementierung</a> bietet weitere Details zur Technik.</p>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/shW_Jh728yg"
|
src="https://www.youtube-nocookie.com/embed/shW_Jh728yg"
|
||||||
|
|
@ -35,23 +35,23 @@ The original implementation is <a href="https://dreamfusion3d.
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<h2 id="Gradio">Gradio</h2>
|
<h2 id="Gradio">Gradio</h2>
|
||||||
<p>The reason i forked the code is so that i could implement my own gradio interface for the algorithm. Gradio is a great tool for quickly building interfaces for machine learning models. No code involves, any user can state their wish, and the mechanism will spit out a ready-to-be-rigged model (obj file)</p>
|
<p>Ich habe den Code geforkt, um meine eigene Gradio-Schnittstelle für den Algorithmus zu implementieren. Gradio ist ein hervorragendes Werkzeug für die schnelle Entwicklung von Benutzeroberflächen für Machine-Learning-Modelle. Endnutzer müssen nicht programmieren - sie können einfach ihren Wunsch äußern, und das System generiert ein 3D-Modell (OBJ-Datei), das direkt mit einem Rigging versehen werden kann.</p>
|
||||||
<h2 id="Mixamo">Mixamo</h2>
|
<h2 id="Mixamo">Mixamo</h2>
|
||||||
<p>I used Mixamo to rig the model. It is a great tool for rigging and animating models. But before everything, it is simple. as long as you have a model with a decent humanoid shape in something of a t-pose, you can rig it in seconds. Thats exactly what i did here.</p>
|
<p>Ich habe Mixamo für das Rigging des Modells verwendet. Es ist ein leistungsstarkes Werkzeug für Rigging und Animation von Modellen, aber seine größte Stärke ist die Einfachheit. Solange man ein Modell mit einer einigermaßen humanoiden Form in T-Pose hat, kann man es in Sekunden mit einem Rigging versehen. Genau das habe ich hier gemacht.</p>
|
||||||
<h2 id="Unity">Unity</h2>
|
<h2 id="Unity">Unity</h2>
|
||||||
<p>I used Unity to render the model to the magic leap 1.
|
<p>Ich habe Unity verwendet, um das Modell für das Magic Leap 1 Headset zu rendern.
|
||||||
Through this, i could create an interactive and immersive environment with the generated models.</p>
|
Dies ermöglichte mir, eine interaktive und immersive Umgebung mit den generierten Modellen zu schaffen.</p>
|
||||||
<p>The dream was, to build a AI- Chamber of wishes.
|
<p>Die Vision war, eine KI-Wunschkammer zu bauen:
|
||||||
You pick up the glasses, state your desires and then the algorithm will present to you an almost-real object in AR.</p>
|
Du setzt die AR-Brille auf, äußerst deine Wünsche, und der Algorithmus präsentiert dir ein fast reales Objekt in erweiterter Realität.</p>
|
||||||
<p>Due to not having access to the proprietary sources from google and the beefy, but still not quite machine-learning ready computers we have at the studio, the results are not quite as good as i hoped.
|
<p>Da wir keinen Zugang zu Googles proprietärem Quellcode haben und die Einschränkungen unserer Studio-Computer (die zwar leistungsstark, aber nicht optimal für maschinelles Lernen ausgelegt sind), sind die Ergebnisse nicht so ausgereift wie erhofft.
|
||||||
But still, the results are quite interesting and i am happy with the outcome.
|
Trotzdem sind die Resultate faszinierend, und ich bin mit dem Ergebnis zufrieden.
|
||||||
A single generated object in the Box takes roughly 20 minutes to generate.
|
Die Generierung eines einzelnen Objekts in der Umgebung dauert etwa 20 Minuten.
|
||||||
Even then, the algorithm is quite particular and oftentimes will not generate anything coherent at all.</p>
|
Der Algorithmus kann recht launisch sein - oft hat er Schwierigkeiten, zusammenhängende Objekte zu generieren, aber wenn er erfolgreich ist, sind die Ergebnisse durchaus beeindruckend.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Coding Examples</title>
|
<title>Coding-Beispiele</title>
|
||||||
<published>2021-03-01T00:00:00+00:00</published>
|
<published>2021-03-01T00:00:00+00:00</published>
|
||||||
<updated>2021-03-01T00:00:00+00:00</updated>
|
<updated>2021-03-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -64,21 +64,21 @@ Even then, the algorithm is quite particular and oftentimes will not generate an
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/coding/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/coding/"/>
|
||||||
<id>https://aron.petau.net/de/project/coding/</id>
|
<id>https://aron.petau.net/de/project/coding/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/coding/"><h2 id="Neural_Networks_and_Computer_Vision">Neural Networks and Computer Vision</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/coding/"><h2 id="Neuronale_Netze_und_Computer_Vision">Neuronale Netze und Computer Vision</h2>
|
||||||
<h2 id="A_selection_of_coding_projects">A selection of coding projects</h2>
|
<h2 id="Eine_Auswahl_von_Coding-Projekten">Eine Auswahl von Coding-Projekten</h2>
|
||||||
<p>Although pure coding and debugging are often not a passion of mine, I recognize the importance of neural networks and other recent developments in Computer Vision. From several projects regarding AI and Machine Learning that I co-authored during my Bachelor Program, I picked this one since I think it is well documented and explains on a step-by-step basis what we do there.</p>
|
<p>Obwohl reines Programmieren und Debugging oft nicht meine Leidenschaft sind, erkenne ich die Bedeutung von neuronalen Netzen und anderen neueren Entwicklungen in der Computer Vision. Aus mehreren Projekten zu KI und maschinellem Lernen, die ich während meines Bachelor-Programms mitentwickelt habe, habe ich dieses ausgewählt, da ich denke, dass es gut dokumentiert ist und Schritt für Schritt erklärt, was wir dort tun.</p>
|
||||||
<h3 id="Image_Super-Resolution_using_Convolutional_Neural_Networks_(Recreation_of_a_2016_Paper)">Image Super-Resolution using Convolutional Neural Networks (Recreation of a 2016 Paper)</h3>
|
<h3 id="Bild-Superauflösung_mittels_Faltungsneuronaler_Netze_(Nachbildung_einer_Arbeit_von_2016)">Bild-Superauflösung mittels Faltungsneuronaler Netze (Nachbildung einer Arbeit von 2016)</h3>
|
||||||
<p>Image Super-Resolution is a hugely important topic in Computer Vision. If it works sufficiently advanced, we could take all our screenshots and selfies and cat pictures from the 2006 facebook-era and even from before and scale them up to suit modern 4K needs.</p>
|
<p>Bild-Superauflösung ist ein enorm wichtiges Thema in der Computer Vision. Wenn es ausreichend fortgeschritten funktioniert, könnten wir all unsere Screenshots, Selfies und Katzenbilder aus der Facebook-Ära 2006 und sogar von davor nehmen und sie auf moderne 4K-Anforderungen hochskalieren.</p>
|
||||||
<p>Just to give an example of what is possible in 2020, just 4 years after the paper here, have a look at this video from 1902:</p>
|
<p>Um ein Beispiel dafür zu geben, was im Jahr 2020, nur 4 Jahre nach der hier vorgestellten Arbeit, möglich ist, wirf einen Blick auf dieses Video von 1902:</p>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/EQs5VxNPhzk"
|
src="https://www.youtube-nocookie.com/embed/EQs5VxNPhzk"
|
||||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<p>The 2016 paper we had a look at is much more modest: it tries to upscale only a single Image, but historically, it was one of the first to achieve computing times sufficiently small to make such realtime-video-upscaling as visible in the Video (from 2020) or of the likes that Nvidia uses nowadays to upscale Videogames.</p>
|
<p>Die von uns betrachtete Arbeit von 2016 ist deutlich bescheidener: Sie versucht nur ein einzelnes Bild hochzuskalieren, aber historisch gesehen war sie eine der ersten, die Rechenzeiten erreichte, die klein genug waren, um solche Echtzeit-Video-Hochskalierung zu ermöglichen, wie du sie im Video (von 2020) siehst oder wie sie Nvidia heutzutage zur Hochskalierung von Videospielen verwendet.</p>
|
||||||
<p>Example of a Super-Resolution Image.
|
<p>Beispiel einer Super-Resolution-Aufnahme.
|
||||||
The Neural network is artificially adding Pixels so that we can finally put our measly selfie on a billboard poster and not be appalled by our deformed-and-pixelated-through-technology face.</p>
|
Das neuronale Netz fügt künstlich Pixel hinzu, sodass wir unser bescheidenes Selfie endlich auf einem Werbeplakat platzieren können, ohne von unserem durch Technologie verformten und verpixelten Gesicht entsetzt zu sein.</p>
|
||||||
|
|
||||||
|
|
||||||
<div id="image-gallery">
|
<div id="image-gallery">
|
||||||
|
|
@ -89,10 +89,10 @@ The Neural network is artificially adding Pixels so that we can finally put our
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_lr.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_lr.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_lr.png" alt="A sample image with low resolution, used as a baseline for comparison.">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_lr.png" alt="Ein Beispielbild mit niedriger Auflösung, das als Vergleichsbasis dient.">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A low-resolution sample</p>
|
<p class="caption">Eine niedrigauflösende Probe</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -101,10 +101,10 @@ The Neural network is artificially adding Pixels so that we can finally put our
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_hr.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_hr.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_hr.png" alt="A high-resolution image that serves as the reference ground truth for comparison with other samples.">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_hr.png" alt="Ein hochauflösendes Bild, das als Referenz-Ground-Truth für den Vergleich mit anderen Proben dient.">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A high-resolution sample. This is also called &#x27;ground truth&#x27;</p>
|
<p class="caption">Eine hochauflösende Probe. Dies wird auch als &#x27;Ground Truth&#x27; bezeichnet</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -113,10 +113,10 @@ The Neural network is artificially adding Pixels so that we can finally put our
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_sr.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_sr.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_sr.png" alt="A sample image where the resolution has been artificially increased using an image enhancement algorithm.">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_sr.png" alt="Ein Beispielbild, bei dem die Auflösung künstlich mittels eines Bildverbesserungsalgorithmus erhöht wurde.">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">The artificially enlarged image patch resulting from the algorithm</p>
|
<p class="caption">Der künstlich vergrößerte Bildausschnitt, der aus dem Algorithmus resultiert</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -125,10 +125,10 @@ The Neural network is artificially adding Pixels so that we can finally put our
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_loss.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_loss.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_loss.png" alt="A graph illustrating the loss function used to train the model, showing the model&#x27;s performance over time.">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_loss.png" alt="Ein Graph, der die beim Training des Modells verwendete Verlustfunktion illustriert und die Leistung des Modells im Zeitverlauf zeigt.">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A graph showing an exemplary loss function applied during training</p>
|
<p class="caption">Ein Graph, der eine exemplarische Verlustfunktion zeigt, die während des Trainings angewendet wurde</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -137,19 +137,19 @@ The Neural network is artificially adding Pixels so that we can finally put our
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_cos_sim.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_cos_sim.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_cos_sim.png" alt="A visualization of pixel-wise cosine similarity, used to quantify how similar the generated image is to the ground truth image.">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;coding&#x2F;sample_cos_sim.png" alt="Eine Visualisierung der pixelweisen Kosinus-Ähnlichkeit, die verwendet wird, um zu quantifizieren, wie ähnlich das generierte Bild dem Ground-Truth-Bild ist.">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">One qualitative measurement we used was pixel-wise cosine similarity. It is used to measure how similar the output and the ground truth images are</p>
|
<p class="caption">Eine qualitative Messung, die wir verwendeten, war die pixelweise Kosinus-Ähnlichkeit. Sie wird verwendet, um zu messen, wie ähnlich die Ausgabe- und Ground-Truth-Bilder sind</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<p><a href="https://colab.research.google.com/drive/1RlgIKJmX8Omz9CTktX7cdIV_BwarUFpv?usp=sharing">The Python notebook for Image super-resolution in Colab</a></p>
|
<p><a href="https://colab.research.google.com/drive/1RlgIKJmX8Omz9CTktX7cdIV_BwarUFpv?usp=sharing">Das Python-Notebook für Bild-Superauflösung in Colab</a></p>
|
||||||
<h3 id="MTCNN_(Application_and_Comparison_of_a_2016_Paper)">MTCNN (Application and Comparison of a 2016 Paper)</h3>
|
<h3 id="MTCNN_(Anwendung_und_Vergleich_einer_Arbeit_von_2016)">MTCNN (Anwendung und Vergleich einer Arbeit von 2016)</h3>
|
||||||
<p>Here, you can also have a look at another, much smaller project, where we rebuilt a rather classical Machine learning approach for face detection. Here, we use preexisting libraries to demonstrate the difference in efficacy of approaches, showing that Multi-task Cascaded Convolutional Networks (MTCNN) was one of the best-performing approaches in 2016. Since I invested much more love and work into the above project, I would prefer for you to check that one out, in case two projects are too much.</p>
|
<p>Hier kannst du auch einen Blick auf ein anderes, viel kleineres Projekt werfen, bei dem wir einen eher klassischen maschinellen Lernansatz für die Gesichtserkennung nachgebaut haben. Hier verwenden wir bestehende Bibliotheken, um die Unterschiede in der Wirksamkeit der Ansätze zu demonstrieren und zu zeigen, dass Multi-task Cascaded Convolutional Networks (MTCNN) einer der leistungsfähigsten Ansätze im Jahr 2016 war. Da ich in das obige Projekt viel mehr Liebe und Arbeit investiert habe, würde ich dir empfehlen, dir dieses anzusehen, falls zwei Projekte zu viel sind.</p>
|
||||||
<p><a href="https://colab.research.google.com/drive/1uNGsVZ0Q42JRNa3BuI4W-JNJHaXD26bu?usp=sharing">Face detection using a classical AI Approach (Recreation of a 2016 Paper)</a></p>
|
<p><a href="https://colab.research.google.com/drive/1uNGsVZ0Q42JRNa3BuI4W-JNJHaXD26bu?usp=sharing">Gesichtserkennung mit einem klassischen KI-Ansatz (Nachbildung einer Arbeit von 2016)</a></p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -23,12 +23,12 @@
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/homebrew/"><h2 id="Brauen">Brauen</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/homebrew/"><h2 id="Brauen">Brauen</h2>
|
||||||
<h3 id="Mein_eigenes_Bier_herstellen">Mein eigenes Bier herstellen</h3>
|
<h3 id="Mein_eigenes_Bier_herstellen">Mein eigenes Bier herstellen</h3>
|
||||||
<p>Ich liebe es zu veranstalten, ich liebe es, in der Küche zu experimentieren. Mit Homebrews zu starten, war für mich eine natürliche Entscheidung, und während der ersten Covid-19-Welle habe ich den kompletten Heimbräuerweg mit Flaschenfermentation und kleinen Chargen eingeschlagen, später habe ich mein Setup auf 50-Liter-Chargen mit Drucktank-System erweitert.</p>
|
<p>Ich liebe es zu hosten, ich liebe es, in der Küche zu experimentieren. Mit Homebrews zu starten, war für mich eine natürliche Entscheidung, und während der ersten Covid-19-Welle habe ich den kompletten Heimbräuerweg mit Flaschenfermentation und kleinen Chargen eingeschlagen, später habe ich mein Setup auf 50-Liter-Chargen mit Drucktank-System erweitert.</p>
|
||||||
<p>Zu Beginn war ich fasziniert, wie aus nur <strong>vier einfachen Zutaten</strong> – Malz, Hopfen, Wasser und Hefe – ein so unglaubliches Spektrum an Geschmackserlebnissen entstehen kann. Es war und ist immer noch ein <strong>tremendales Lernprojekt</strong>, bei dem man langsam akzeptieren muss, dass man den Prozess nicht vollständig kontrollieren kann, und gleichzeitig Raum für Kreativität findet.</p>
|
<p>Zu Beginn war ich fasziniert, wie aus nur <strong>vier einfachen Zutaten</strong> – Malz, Hopfen, Wasser und Hefe – ein so unglaubliches Spektrum an Geschmackserlebnissen entstehen kann. Es war und ist immer noch ein <strong>tremendales Lernprojekt</strong>, bei dem man langsam akzeptieren muss, dass man den Prozess nicht vollständig kontrollieren kann, und gleichzeitig Raum für Kreativität findet.</p>
|
||||||
<p>Warum präsentiere ich dieses scheinbar nicht-akademische Hobby hier? Ich sehe es nicht als irrelevant an: <strong>Experimentieren und Optimieren eines Prozesses und Workflows</strong>, optimale Bedingungen für die Hefe zu schaffen, fühlt sich dem Ansatz eines Programmierprojekts sehr ähnlich an.</p>
|
<p>Warum präsentiere ich dieses scheinbar nicht-akademische Hobby hier? Ich sehe es nicht als irrelevant an: <strong>Experimentieren und Optimieren eines Prozesses und Workflows</strong>, optimale Bedingungen für die Hefe zu schaffen, fühlt sich dem Ansatz eines Programmierprojekts sehr ähnlich an.</p>
|
||||||
<p>Hefe und ihre Wirkung faszinieren mich. Jedes Mal, wenn ich den Verschluss öffne, um etwas Druck aus dem Tank abzulassen, denke ich an die erstaunlichen symbiotischen Beziehungen der Hefe mit Menschen und wie viele verschiedene Stämme zusammenleben, um einen einzigartigen, maßgeschneiderten Geschmack zu erzeugen.<br />
|
<p>Hefe und ihre Wirkung faszinieren mich. Jedes Mal, wenn ich den Verschluss öffne, um etwas Druck aus dem Tank abzulassen, denke ich an die erstaunlichen symbiotischen Beziehungen der Hefe mit Menschen und wie viele verschiedene Stämme zusammenleben, um einen einzigartigen, maßgeschneiderten Geschmack zu erzeugen.
|
||||||
Es gibt einige Ideen, den Brauprozess zu verändern, indem das erzeugte CO₂ aufgefangen und produktiv genutzt wird – z. B. ein Autoreifen gefüllt mit Biergas oder eine Algenfarm, die das CO₂ aufnimmt. Innerhalb eines <strong>geschlossenen, druckbeaufschlagten Systems</strong> werden solche Ideen tatsächlich realisierbar, und ich möchte sie weiter erforschen.</p>
|
Es gibt einige Ideen, den Brauprozess zu verändern, indem das erzeugte CO₂ aufgefangen und produktiv genutzt wird – z. B. ein Autoreifen gefüllt mit Biergas oder eine Algenfarm, die das CO₂ aufnimmt. Innerhalb eines <strong>geschlossenen, druckbeaufschlagten Systems</strong> werden solche Ideen tatsächlich realisierbar, und ich möchte sie weiter erforschen.</p>
|
||||||
<p>Ich bin noch kein Experte für Algen, aber mit Hefe komme ich klar, und ich glaube, dass sie koexistieren und einen nachhaltigeren Produktionszyklus schaffen können.<br />
|
<p>Ich bin noch kein Experte für Algen, aber mit Hefe komme ich klar, und ich glaube, dass sie koexistieren und einen nachhaltigeren Produktionszyklus schaffen können.
|
||||||
Die australische Brauerei Young Henrys integriert Algen bereits in ihren industriellen Prozess: <a href="https://younghenrys.com/algae">The Algae project</a></p>
|
Die australische Brauerei Young Henrys integriert Algen bereits in ihren industriellen Prozess: <a href="https://younghenrys.com/algae">The Algae project</a></p>
|
||||||
<p>Solche Ideen kommen nicht von selbst in die Industrie: Ich glaube, dass Kunst und die experimentelle Entdeckung neuer Techniken dasselbe sind. <strong>Gutes, erfinderisches Design</strong> kann die Gesellschaft verbessern und Schritte in Richtung Nachhaltigkeit gehen. Ich möchte daran teilhaben und neue Wege finden, Hefe in anderen Designkontexten einzusetzen: ob in einem geschlossenen Kreislaufsystem, zum Berechnen von Dingen oder einfach, um mein nächstes Bier mit der perfekten Spritzigkeit zu brauen.</p>
|
<p>Solche Ideen kommen nicht von selbst in die Industrie: Ich glaube, dass Kunst und die experimentelle Entdeckung neuer Techniken dasselbe sind. <strong>Gutes, erfinderisches Design</strong> kann die Gesellschaft verbessern und Schritte in Richtung Nachhaltigkeit gehen. Ich möchte daran teilhaben und neue Wege finden, Hefe in anderen Designkontexten einzusetzen: ob in einem geschlossenen Kreislaufsystem, zum Berechnen von Dingen oder einfach, um mein nächstes Bier mit der perfekten Spritzigkeit zu brauen.</p>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-03-01T00:00:00+00:00</updated>
|
<updated>2023-03-01T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/amazon/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/amazon/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Ruminations</title>
|
<title>Ruminations</title>
|
||||||
<published>2023-03-01T00:00:00+00:00</published>
|
<published>2023-03-01T00:00:00+00:00</published>
|
||||||
<updated>2023-03-01T00:00:00+00:00</updated>
|
<updated>2023-03-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -28,26 +28,63 @@
|
||||||
<id>https://aron.petau.net/de/project/ruminations/</id>
|
<id>https://aron.petau.net/de/project/ruminations/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
||||||
<p>was a contemplation on data privacy at Amazon.
|
<p>Dieses Projekt erforscht Datenschutz im Kontext des Amazon-Ökosystems und hinterfragt, wie wir Browser-Fingerprinting unterwandern und das allgegenwärtige Tracking von Verbrauchern in Frage stellen können.</p>
|
||||||
It asks how to subvert browser fingerprinting and evading the omnipresent tracking of the consumer.</p>
|
<p>Wir begannen mit einer provokanten Frage: Könnten wir den Wert gesammelter Daten nicht durch Vermeidung, sondern durch aktive Auseinandersetzung mit dem Tracking mindern? Könnten wir, anstatt uns vor der Überwachung zu verstecken, sie mit sinnvollen, aber unvorhersehbaren Mustern überfordern?</p>
|
||||||
<p>The initial idea was to somehow, by interacting with the perpetrator and letting data accumulate that would degrade their knowledge and thereby destroy predictablity, making this particular dataset worth less.</p>
|
<p>Anfangs erwogen wir die Implementierung eines zufälligen Clickbots, um Rauschen in die Datenerfassung einzubringen. Angesichts der Komplexität moderner Datenbereinigungsalgorithmen und der schieren Menge an Daten, die Amazon verarbeitet, wäre ein solcher Ansatz jedoch wirkungslos gewesen. Sie würden das zufällige Rauschen einfach herausfiltern und ihre Analyse fortsetzen.</p>
|
||||||
<p>We could have just added a random clickbot, to confuse things a bit and make the data less valuable.
|
<p>Dies führte uns zu einer interessanteren Frage: Wie können wir kohärente, nicht-zufällige Daten erstellen, die grundsätzlich unvorhersehbar bleiben? Unsere Lösung bestand darin, Muster einzuführen, die jenseits der Vorhersagefähigkeiten aktueller Algorithmen liegen – ähnlich dem Versuch, das Verhalten von jemandem vorherzusagen, dessen Denkmuster einer eigenen, einzigartigen Logik folgen.</p>
|
||||||
But looking at todays state of datacleanup algorithms and the sheer amount of data that is collected, this would have been a futile attempt. Amazon just detects and removes any noise we add and continues to use the data.</p>
|
<h2 id="Das_Konzept">Das Konzept</h2>
|
||||||
<p>So, then, how can we create coherent, non-random data that is still not predictable?</p>
|
<p>Wir entwickelten eine Chrome-Browser-Erweiterung, die Amazons Webseiten mit einer dynamischen Entität überlagert, die das Nutzerverhalten verfolgt. Das System verwendet einen Bildklassifizierungsalgorithmus, um die Storefront zu analysieren und Produktanfragen zu formulieren. Nach der Verarbeitung präsentiert es ein "perfekt passendes" Produkt – ein subtiler Kommentar zu algorithmischen Produktempfehlungen.</p>
|
||||||
<p>One answer that this concept should demonstrate, is by inserting patterns that amazon cannot foresee with their current algorithms. As if they were trying to predict the actions of a person with shizophrenia.</p>
|
<h2 id="Der_Analoge_Wachhund">Der Analoge Wachhund</h2>
|
||||||
<h2 id="The_Concept">The Concept</h2>
|
<p>Die physische Komponente des Projekts besteht aus einer Low-Tech-Installation, die eine Smartphone-Kamera mit Computer-Vision-Algorithmen zur Verfolgung kleinster Bewegungen nutzt. Wir positionierten diese Kamera zur Überwachung der Browser-Konsole eines Laptops, auf dem unsere Erweiterung läuft. Der Kamera-Feed wird auf einem Bildschirm angezeigt, und das System erzeugt roboterhafte Geräusche basierend auf Art und Umfang der erkannten Bewegung. In der Praxis dient es als hörbares Warnsystem für Datenaustausche zwischen Amazon und dem Browser.</p>
|
||||||
<p>It consists of a browser extension (currently Chrome only) that overlays all web pages of Amazon with a moving entity that tracks your behavior. While tracking, an image classifier algorithm is used to formulate a product query off of the Storefront. After computation, a perfectly fitting product is displayed for your consumer's pleasure.</p>
|
<h2 id="Implementierung">Implementierung</h2>
|
||||||
<h2 id="The_analogue_watchdog">The analogue watchdog</h2>
|
|
||||||
<p>A second part of the project is a low-tech installation consisting of a camera (we used a smartphone) running a computer-vision algorithm tracking tiny movements. This was then pointed towards the browser console in the laptop running the extension. The camera was then connected to a screen that displayed the captured image. The watchdog was trained to make robot noises depending on the type and amount of movement detected. Effectively, whenever data traffic beween amazon and the browser was detected, the watchdog would start making noises.</p>
|
|
||||||
<h1 id="The_Browser_extension">The Browser extension</h1>
|
<div id="image-gallery">
|
||||||
<p>gallery:
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations1.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations2.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations3.jpeg" alt="The project installation" /></p>
|
|
||||||
<h3 id="Find_the_code_on_GitHub">Find the code on GitHub</h3>
|
|
||||||
<p>Subvert a bit yourself, or just have a look at the code.</p>
|
<li class="gallery-item">
|
||||||
<p><a href="https://github.com/arontaupe/ruminations">The code of the Project on GitHub</a></p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" class="lightbox" target="_blank">
|
||||||
<p>TODO: create video with live demo</p>
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" alt="Projektinstallationsansicht mit der Browser-Erweiterung in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Die Ruminations-Installation in Betrieb</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" alt="Nahaufnahme der Tracking-Schnittstelle und Datenvisualisierung">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Echtzeit-Tracking-Visualisierung</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" alt="Der analoge Wachhund-Setup mit Kamera und Display">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Das analoge Wachhund-Überwachungssystem</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Code_und_Dokumentation">Code und Dokumentation</h2>
|
||||||
|
<p>Möchtest du das Projekt erkunden oder dazu beitragen? Schau dir unser Code-Repository an:</p>
|
||||||
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/ruminations">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -33,18 +33,20 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/auraglow/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/auraglow/"/>
|
||||||
<id>https://aron.petau.net/de/project/auraglow/</id>
|
<id>https://aron.petau.net/de/project/auraglow/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/auraglow/"><p><img src="https://aron.petau.net/de/project/auraglow/cage_closeup_2.jpeg" alt="The AR set that we used" /></p>
|
<content type="html" xml:base="https://aron.petau.net/de/project/auraglow/"><p><img src="https://aron.petau.net/de/project/auraglow/cage_closeup_2.jpeg" alt="Das AR-Set, das wir verwendet haben" /></p>
|
||||||
<p>What makes a room?<br />
|
<p>Was macht einen Raum?<br />
|
||||||
How do moods and atmospheres emerge?<br />
|
Wie entstehen Stimmungen und Atmosphären?<br />
|
||||||
Can we visualize them to make the experiences visible?</p>
|
Können wir sie visualisieren, um die Erfahrungen sichtbar zu machen?</p>
|
||||||
<p>The project "The Nature of Objects" aims to expand (augment) perception by making the moods of places tangible through the respective auras of the objects in the space.<br />
|
<p>Das Projekt "Das Wesen der Dinge" zielt darauf ab, die Wahrnehmung zu erweitern (augmentieren), indem es die Stimmungen von Orten durch die jeweiligen Auren der Objekte im Raum greifbar macht.<br />
|
||||||
What makes objects subjects?<br />
|
Was macht Objekte zu Subjekten?<br />
|
||||||
How can we make the implicit explicit?<br />
|
Wie können wir das Implizite explizit machen?<br />
|
||||||
And how can we make the character of a place visible?\</p>
|
Und wie können wir den Charakter eines Ortes sichtbar machen?\</p>
|
||||||
<p>Here, we question the conservative, purely physical concept of space and address in the project a temporal, historical component of space, its objects, and their past.
|
<p>Hier hinterfragen wir den konservativen, rein physischen Raumbegriff und adressieren im Projekt eine zeitliche, historische Komponente des Raums, seiner Objekte und deren Vergangenheit.
|
||||||
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
Der Raum wird sich verwandelt haben: vom einfachen "Gegenstand, auf den sich Interesse, Denken, Handeln richtet" (Definition Objekt Duden), zum "Wesen, das mit Bewusstsein, Denken, Empfinden, Handeln begabt ist" (Definition Subjekt Duden).
|
||||||
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.</p>
|
Diese Metamorphose der Subjektbildung an Objekten ermöglicht dem Raum, Veränderungen zu erfahren, beeinflusst oder, genauer gesagt, eine Formung, Umformung, Deformation - sodass der Raum schließlich anders und mehrwinklig wahrgenommen werden kann.</p>
|
||||||
<p><a href="https://github.com/arontaupe/auraglow">See the Project on GitHub</a>{: .btn .btn--large}</p>
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/auraglow">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2021-08-01T00:00:00+00:00</updated>
|
<updated>2021-08-01T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/archeology/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/archeology/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Iron Smelting</title>
|
<title>Eisenverhüttung</title>
|
||||||
<published>2021-08-01T00:00:00+00:00</published>
|
<published>2021-08-01T00:00:00+00:00</published>
|
||||||
<updated>2021-08-01T00:00:00+00:00</updated>
|
<updated>2021-08-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -21,34 +21,34 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/iron-smelting/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/iron-smelting/"/>
|
||||||
<id>https://aron.petau.net/de/project/iron-smelting/</id>
|
<id>https://aron.petau.net/de/project/iron-smelting/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/iron-smelting/"><h2 id="Iron_Smelting">Iron Smelting</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/iron-smelting/"><h2 id="Eisenverhüttung">Eisenverhüttung</h2>
|
||||||
<h3 id="Impressions_from_the_International_Smelting_Days_2021">Impressions from the International Smelting Days 2021</h3>
|
<h3 id="Eindrücke_von_den_International_Smelting_Days_2021">Eindrücke von den International Smelting Days 2021</h3>
|
||||||
<h3 id="The_concept">The concept</h3>
|
<h3 id="Das_Konzept">Das Konzept</h3>
|
||||||
<p>Since I was a small child I regularly took part in the yearly international congress called Iron Smelting Days (ISD).
|
<p>Seit ich ein kleines Kind war, nehme ich regelmäßig am jährlichen internationalen Kongress namens Iron Smelting Days (ISD) teil.
|
||||||
This is a congress of transdisciplinary people from all over Europe, including historians, archeologists, blacksmiths, steel producers, and many invested hobbyists.
|
Dies ist ein Kongress von interdisziplinären Menschen aus ganz Europa, darunter Historiker, Archäologen, Schmiede, Stahlproduzenten und viele engagierte Hobbyisten.
|
||||||
The proclaimed goal of these events is to understand the ancient production of iron as it happened throughout the iron age and also much after. A bloomery furnace was used to create iron. Making iron requires iron ore and heat under the exclusion of oxygen. It is a highly fragile process that takes an incredible amount of work. The designs and methods vary a lot and were very adapted to the region and local conditions, unlike the much later, more industrialized process using blast furnaces.</p>
|
Das erklärte Ziel dieser Veranstaltungen ist es, die antike Eisenproduktion zu verstehen, wie sie während der Eisenzeit und auch danach stattfand. Ein Rennofen wurde zur Eisenherstellung verwendet. Zur Eisenherstellung braucht man Eisenerz und Hitze unter Ausschluss von Sauerstoff. Es ist ein hochsensibler Prozess, der einen unglaublichen Arbeitsaufwand erfordert. Die Bauweisen und Methoden variierten stark und waren sehr an die Region und lokalen Bedingungen angepasst, anders als der viel spätere, stärker industrialisierte Prozess mit Hochöfen.</p>
|
||||||
<p>To this day it is quite unclear how prehistoric people managed to get the amount and quality of iron we know they had.
|
<p>Bis heute ist unklar, wie prähistorische Menschen die Menge und Qualität an Eisen erreichten, von der wir wissen, dass sie sie hatten.
|
||||||
The furnaces that were built were often clay structures and are not preserved. Archeologists often find the leftover burned ore and minerals, giving us some indication of the structure and composition of the ancient furnaces.
|
Die gebauten Öfen waren oft Lehmkonstruktionen und sind nicht erhalten geblieben. Archäologen finden häufig die übrig gebliebene verbrannte Schlacke und Mineralien, die uns Hinweise auf die Struktur und Zusammensetzung der antiken Öfen geben.
|
||||||
The group around the ISD takes up a practical archeological approach and we try to recreate the ancient methods with the added capability of maybe sticking temperature probes or electric blowers. Each year we meet up in a different European city and try to adapt to the local conditions, often with local ore and local coal. It is a place where different areas of expertise come together to educate each other while sitting together through the intense day- and night shifts to feed the furnaces.
|
Die Gruppe um die ISD verfolgt einen praktischen archäologischen Ansatz, und wir versuchen, die antiken Methoden nachzubilden - mit der zusätzlichen Möglichkeit, Temperaturfühler oder elektrische Gebläse einzusetzen. Jedes Jahr treffen wir uns in einer anderen europäischen Stadt und passen uns an die lokalen Bedingungen an, oft mit lokalem Erz und lokaler Kohle. Es ist ein Ort, an dem verschiedene Fachgebiete zusammenkommen, um sich gegenseitig zu unterrichten, während wir gemeinsam die intensiven Tag- und Nachtschichten verbringen, um die Öfen zu beschicken.
|
||||||
Since being a kid, I started building my own furnaces and read up on the process so I could participate.
|
Seit ich ein Kind war, begann ich meine eigenen Öfen zu bauen und las mich in den Prozess ein, damit ich teilnehmen konnte.
|
||||||
Technology gets a different tint when one is involved in such a process: Even the lights we put up to work through the evening are technically cheating. We use thermometers, meticulously weigh and track the inbound coal and ore, and have many modern amenities around. Yet - with our much more advanced technology, our results are often inferior in quantity and quality in comparison with historical findings. Without modern scales, iron-age people were more accurate and consistent than we are.</p>
|
Technologie erscheint in einem anderen Licht, wenn man in einen solchen Prozess involviert ist: Selbst die Lampen, die wir aufstellen, um durch den Abend zu arbeiten, sind technisch gesehen schon Schummeln. Wir verwenden Thermometer, wiegen und verfolgen akribisch die eingehende Kohle und das Erz und haben viele moderne Annehmlichkeiten um uns herum. Dennoch - mit unserer viel fortschrittlicheren Technologie sind unsere Ergebnisse oft minderwertig in Menge und Qualität im Vergleich zu historischen Funden. Ohne moderne Waagen waren die Menschen der Eisenzeit genauer und konsistenter als wir.</p>
|
||||||
<p>After some uncertainty about whether it would take place in 2021 again after it was canceled in 2020, a small group met up in Ulft, Netherlands.
|
<p>Nach einiger Ungewissheit, ob es 2021 nach der Absage in 2020 wieder stattfinden würde, traf sich eine kleine Gruppe in Ulft, Niederlande.
|
||||||
This year in Ulft, another group made local coal, so that the entire process was even lengthier, and visitors came from all over to learn about making iron the pre-historic way.</p>
|
Dieses Jahr in Ulft stellte eine andere Gruppe lokale Kohle her, sodass der gesamte Prozess noch länger dauerte, und Besucher kamen von überall her, um zu lernen, wie man Eisen auf prähistorische Weise herstellt.</p>
|
||||||
<p>Below I captured most of the process in some time-lapses.</p>
|
<p>Unten habe ich den größten Teil des Prozesses in einigen Zeitraffern festgehalten.</p>
|
||||||
<h2 id="The_Process">The Process</h2>
|
<h2 id="Der_Prozess">Der Prozess</h2>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/mC_RHxVbo2M"
|
src="https://www.youtube-nocookie.com/embed/mC_RHxVbo2M"
|
||||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<p>Here you can see a timelapse of me building a version of an Iron Furnace</p>
|
<p>Hier kannst du einen Zeitraffer sehen, wie ich eine Version eines Eisenofens baue.</p>
|
||||||
<p>As you can see, we are using some quite modern materials, such as bricks, this is due to the time constraints of the ISD.
|
<p>Wie du siehst, verwenden wir einige recht moderne Materialien, wie zum Beispiel Ziegel. Dies liegt an den zeitlichen Beschränkungen der ISD.
|
||||||
Making an oven completely from scratch is a much more lengthy process requiring drying periods in between building.</p>
|
Ein Ofen komplett von Grund auf zu bauen ist ein viel längerer Prozess, der Trocknungsphasen zwischen dem Bauen erfordert.</p>
|
||||||
<p>After, the furnace is dried and heated up</p>
|
<p>Danach wird der Ofen getrocknet und aufgeheizt.</p>
|
||||||
<p>Over the course of the process, more than 100 kgs of coal and around 20 kgs of ore are used to create a final piece of iron of 200 - 500g, just enough for a single knife.</p>
|
<p>Im Laufe des Prozesses werden mehr als 100 kg Kohle und etwa 20 kg Erz verwendet, um ein finales Eisenstück von 200 - 500g herzustellen, gerade genug für ein einzelnes Messer.</p>
|
||||||
<p>With all the modern amenities and conveniences available to us, a single run still takes more than 3 people working over 72 hours, not accounting for the coal-making or mining and relocating the iron ore.</p>
|
<p>Mit all den modernen Annehmlichkeiten und Bequemlichkeiten, die uns zur Verfügung stehen, braucht ein einzelner Durchlauf immer noch mehr als 3 Personen, die über 72 Stunden arbeiten, ohne die Kohleherstellung oder den Abbau und Transport des Eisenerzes zu berücksichtigen.</p>
|
||||||
<p>Some more impressions from the ISD</p>
|
<p>Einige weitere Eindrücke von der ISD</p>
|
||||||
|
|
||||||
|
|
||||||
<div id="image-gallery">
|
<div id="image-gallery">
|
||||||
|
|
@ -59,10 +59,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" alt="a loaded furnace">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" alt="Ein beladener Ofen">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">a loaded bloomery furnace</p>
|
<p class="caption">Ein beladener Rennofen</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -71,10 +71,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" alt="the ISD from above">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" alt="Die ISD von oben">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">The ISD from above</p>
|
<p class="caption">Die ISD von oben</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -83,10 +83,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" alt="glowing iron">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" alt="Glühendes Eisen">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">glowing iron</p>
|
<p class="caption">Glühendes Eisen</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -95,10 +95,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" alt="a furnace burning">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" alt="Ein brennender Ofen">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">a furnace burning</p>
|
<p class="caption">Ein brennender Ofen</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -107,10 +107,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" alt="compacting the resulting iron">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" alt="Verdichten des gewonnenen Eisens">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">Compacting the resulting iron</p>
|
<p class="caption">Verdichten des gewonnenen Eisens</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -119,10 +119,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" alt="a heat camera image of the furnace">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" alt="Eine Wärmebildaufnahme des Ofens">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">a heat camera image of the furnace</p>
|
<p class="caption">Eine Wärmebildaufnahme des Ofens</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -131,17 +131,17 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" alt="A cross-section of my furnace type">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" alt="Ein Querschnitt meines Ofentyps">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A cross-section illustrating the temperatures reached</p>
|
<p class="caption">Ein Querschnitt, der die erreichten Temperaturen zeigt</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<p>For me, it is very hard to define what technology encompasses. It certainly goes beyond the typically associated imagery of computing and industrial progress. It is a mode of encompassing the world and adopting other technologies, be it by time or by region makes me feel how diffused the phenomenon of technology is into my world.</p>
|
<p>Für mich ist es sehr schwer zu definieren, was Technologie alles umfasst. Es geht sicherlich über die typischerweise assoziierten Bilder von Computing und industriellem Fortschritt hinaus. Es ist eine Art, die Welt zu erfassen, und die Anpassung an andere Technologien, sei es durch Zeit oder Region, lässt mich spüren, wie diffus das Phänomen der Technologie in meiner Welt ist.</p>
|
||||||
<p><a href="https://sites.google.com/view/eu-iron-smelting-days/home?authuser=0">Find out more about the ISD</a></p>
|
<p><a href="https://sites.google.com/view/eu-iron-smelting-days/home?authuser=0">Erfahre mehr über die ISD</a></p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-12-07T00:00:00+00:00</updated>
|
<updated>2023-12-07T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/ars-electronica/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/ars-electronica/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Commoning Cars</title>
|
<title>Autos als Gemeingut</title>
|
||||||
<published>2023-12-07T00:00:00+00:00</published>
|
<published>2023-12-07T00:00:00+00:00</published>
|
||||||
<updated>2023-12-07T00:00:00+00:00</updated>
|
<updated>2023-12-07T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -22,131 +22,196 @@
|
||||||
<id>https://aron.petau.net/de/project/commoning-cars/</id>
|
<id>https://aron.petau.net/de/project/commoning-cars/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/commoning-cars/"><h2 id="Commoning_cars">Commoning cars</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/commoning-cars/"><h2 id="Commoning_cars">Commoning cars</h2>
|
||||||
<h2 id="TCF_Project_Brief">TCF Project Brief</h2>
|
<h2 id="Projekt_Update_2025">Projekt Update 2025</h2>
|
||||||
<p>This Project was conceptualized durin a 2023 Workshop titled Tangible Climate Futures.</p>
|
<blockquote>
|
||||||
<p>Aron Petau
|
<p><strong>System-Upgrade</strong>: Das Überwachungssystem läuft jetzt auf einem Raspberry Pi Zero, der für seinen niedrigeren Energieverbrauch ausgewählt wurde. Das System arbeitet nur dann, wenn genügend Solarenergie zur Verfügung steht - ein wirklich nachhaltiger Ansatz. Diese Aktualisierung hat den Stromverbrauch des Projekts deutlich reduziert, ohne die Überwachungsmöglichkeiten einzuschränken.</p>
|
||||||
<a href="mailto:aron@petau.net">aron@petau.net</a></p>
|
</blockquote>
|
||||||
<p><a href="https://www.aronpetau.me/ulli/">See the Project in Realtime</a></p>
|
<h2 id="TCF_Projektskizze">TCF Projektskizze</h2>
|
||||||
<h2 id="Title">Title</h2>
|
<p>Dieses Projekt entstand während des Workshops "Tangible Climate Futures" 2023.</p>
|
||||||
<p><del>Making Cars Public spaces</del>
|
<p>Projektleitung: Aron Petau<br />
|
||||||
Commoning Cars</p>
|
Kontakt: <a href="mailto:aron@petau.net">aron@petau.net</a></p>
|
||||||
<h2 id="Abstract">Abstract</h2>
|
<p><a href="https://www.aronpetau.me/ulli/">Echtzeitdaten ansehen</a></p>
|
||||||
<p>Cars bad.<br />
|
<h2 id="Zusammenfassung">Zusammenfassung</h2>
|
||||||
Cars occupy public spaces resulting un a factual privatization of public goods/infrastructure.<br />
|
<p>Private Autos sind eine der größten Privatisierungen öffentlichen Raums in unseren Städten.<br />
|
||||||
What if cars could be part of public infrastructure?<br />
|
Was wäre, wenn wir diese privaten Räume in öffentliche Ressourcen umwandeln könnten?<br />
|
||||||
What can cars provide to the public?<br />
|
Was, wenn Autos zur öffentlichen Infrastruktur beitragen könnten, anstatt sie zu belasten?</p>
|
||||||
With Solar and Electrical Vehicles emerging on the horizon (no endorsement here) it makes sense to think about cars as decentralized powerhouses and public energy storage solutions.<br />
|
<p>Mit dem Aufkommen von Elektrofahrzeugen und Solartechnik können wir Autos neu denken - als
|
||||||
Cars, even traditional ones, come equipped with batteries and generate electricity either by driving or though added solar panels.
|
dezentrale Kraftwerke und Energiespeicher. Dieses Projekt verwandelt mein privates Fahrzeug
|
||||||
What if this energy could be used to power the public? What if cars would could be used as public spaces?
|
in eine öffentliche Ressource, ausgestattet mit:</p>
|
||||||
By installing a public USB socket and a public wifi hotspot, on my car, I want to start exploring the potential of cars as public spaces and energy storage solutions.</p>
|
|
||||||
<p>Within this artistic experiment, I will continuously track the geolocation and energy input/output of my solar equipped car and make the data publicly available. I will also track the amount of energy that is not used by the car and could be used by the public. Taking steps towards optimal usage of existing electrical and other infrastructure is only possible by breaking conventional notions of public ownership and private property. This project is one step towards a more sustainable and equitable future.</p>
|
|
||||||
<h2 id="Introduction">Introduction</h2>
|
|
||||||
<p>We all know by now that cars and individual traffic presents a major environmetal and societal problem all over the world. The last 70 something years of building car infrastructure are culminating in many areas in a dead end where the only thinkable solution is to build more roads and cars.
|
|
||||||
THis is obviously a larger problem than one project can tackle, but here is one outlook on how</p>
|
|
||||||
<h2 id="Experiment">Experiment</h2>
|
|
||||||
<h3 id="Preexisting_data">Preexisting data</h3>
|
|
||||||
<p>With the data collected over the last year of using the car privately I can show with embarrasing accuracy how underutilized the system is and calculate an estimate of energy lost due to societal notions of private property.
|
|
||||||
The data will be an estimate, since the monitoring itself is dependent on solar energy and the internet connection is spotty at best when it is not supplied with electricity.</p>
|
|
||||||
<h3 id="Monitoring">Monitoring</h3>
|
|
||||||
<p>In the Car, there is a Raspberry Pi 4 Microcomputer running a custom Operating Systen that monitors the following data:</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Solar Intake (W)</li>
|
<li>Einer öffentlichen USB-Ladestation mit Solarenergie</li>
|
||||||
<li>Battery Level (V)</li>
|
<li>Einem kostenlosen WLAN-Hotspot</li>
|
||||||
<li>GPS Location</li>
|
<li>Echtzeit-Monitoring von Energieerzeugung und Nutzung</li>
|
||||||
<li>Total Energy Produced (Wh)</li>
|
|
||||||
<li>Total Energy Consumed (Wh)</li>
|
|
||||||
<li>Solar Energy Potential (Wh)</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<p>Through the router I can also track total Wifi usage and the number of connected devices.</p>
|
<p>Dieses künstlerische Experiment dokumentiert Position, Energieflüsse und öffentliche
|
||||||
<h3 id="Public_Wifi">Public Wifi</h3>
|
Nutzung des Fahrzeugs. Die Daten sind öffentlich zugänglich und zeigen das ungenutzte
|
||||||
<p>For the Project, I opened a router in the Car towards the Public, much alike to ahotspot you would find in a cafe. I use my own data plan on there, which I never max out anyways. The router is a Netgear M1 and has a 4G Modem built in. It is connected to the Raspberry Pi and is powered by the secondary car battery.</p>
|
Potenzial privater Fahrzeuge auf.</p>
|
||||||
<h3 id="Public_Energy:_A_USB_Socket">Public Energy: A USB Socket</h3>
|
<h2 id="Einführung">Einführung</h2>
|
||||||
<p>I plan on installing a USB Socket on the outside of the car, so people can charge their devices. The socket will be connected to the secondary car battery and will be powered by the solar panels. The socket will be installed in a way that it is not possible to drain the battery completely.</p>
|
<p>Nach sieben Jahrzehnten autogerechter Stadtentwicklung stecken viele Städte in einer
|
||||||
|
Sackgasse. Die traditionelle Lösung, einfach mehr Straßen zu bauen, hat sich als
|
||||||
|
nicht nachhaltig erwiesen. Ein einzelnes Projekt kann dieses systemische Problem nicht
|
||||||
|
lösen, aber wir können mit alternativen Ansätzen experimentieren.</p>
|
||||||
|
<h2 id="Experiment">Experiment</h2>
|
||||||
|
<h3 id="Die_technische_Seite">Die technische Seite</h3>
|
||||||
|
<p>Die Auswertung eines Jahres privater Fahrzeugnutzung zeigt deutlich, wie wenig das
|
||||||
|
vorhandene Potenzial genutzt wird. Klar, die Daten sind nicht perfekt - manchmal
|
||||||
|
fehlt die Sonne, manchmal das Internet - aber sie erzählen eine interessante Geschichte.</p>
|
||||||
|
<h3 id="Das_System">Das System</h3>
|
||||||
|
<p>Das Herz des Systems ist ein Raspberry Pi Zero, der folgende Daten erfasst:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Solarertrag (W)</li>
|
||||||
|
<li>Batteriestand (V)</li>
|
||||||
|
<li>GPS-Position</li>
|
||||||
|
<li>Erzeugte Energie (Wh)</li>
|
||||||
|
<li>Verbrauchte Energie (Wh)</li>
|
||||||
|
<li>Solarpotenzial (Wh)</li>
|
||||||
|
<li>WLAN-Nutzung</li>
|
||||||
|
<li>Anzahl verbundener Geräte</li>
|
||||||
|
</ul>
|
||||||
|
<h3 id="Öffentliches_WLAN">Öffentliches WLAN</h3>
|
||||||
|
<p>Stellt euch vor, euer Lieblingscafé wäre mobil - so ungefähr funktioniert das
|
||||||
|
WLAN-Angebot. Ein Netgear M1 Router mit 4G-Modem verteilt mein ungenutztes
|
||||||
|
Datenvolumen. Die Stromversorgung kommt von der Zusatzbatterie des Autos.</p>
|
||||||
|
<h3 id="Öffentliche_Ladestation">Öffentliche Ladestation</h3>
|
||||||
|
<p>An der Außenseite des Autos befindet sich ein USB-Anschluss zum kostenlosen Laden von
|
||||||
|
Geräten. Keine Sorge, das System ist so ausgelegt, dass immer noch genug Energie fürs
|
||||||
|
Auto bleibt - schließlich will ich nicht irgendwo liegen bleiben!</p>
|
||||||
<h3 id="Communication">Communication</h3>
|
<h3 id="Communication">Communication</h3>
|
||||||
<p>Nobody expects any help or public supplies from car owners.
|
<p>Nobody expects any help or public supplies from car owners.
|
||||||
How to communicate the possibility to the outside world?
|
How to communicate the possibility to the outside world?
|
||||||
The plan is to fabricate a vinyl sticker that will be applied to the car. The sticker will contain a QR Code that will lead to a website with the data and a short explanation of the project. Visual cues lead to the USB Socket and the Wifi Hotspot.</p>
|
The plan is to fabricate a vinyl sticker that will be applied to the car. The sticker will contain a QR Code that will lead to a website with the data and a short explanation of the project. Visual cues lead to the USB Socket and the Wifi Hotspot.</p>
|
||||||
<h2 id="Issues">Issues</h2>
|
<h2 id="Issues">Issues</h2>
|
||||||
<h3 id="Space_/_Scale">Space / Scale</h3>
|
<h3 id="Die_praktische_Seite">Die praktische Seite</h3>
|
||||||
<p>Obviously, the space on top of a car is quite limited and from a sustainability perspective, it would be better to have a larger solar array on a roof of a house. The point is not to advocate for a mandated solar install on cars, but to optimize and share preexisting infrastructure. The car is already there, it already has a battery and it already has solar panels. Looking at many Camper-Van builds, the amount of cars with already installed solar panels is quite large. The point is to make the most out of it.</p>
|
<p>Sprechen wir über die Herausforderungen, ein privates Auto in eine öffentliche
|
||||||
<h3 id="Legality">Legality</h3>
|
Stromtankstelle zu verwandeln:</p>
|
||||||
<p>Germany has laws in place holding the owner of a Internet Connection liable for the legality of the traffic that is going through it. This is a major issue for the project, as I do not want to be liable for the traffic that is going through my car. I am currently looking into ways to circumvent this issue.</p>
|
<p><strong>Die Technik</strong>
|
||||||
<h3 id="Surveillance_/_Privacy">Surveillance / Privacy</h3>
|
Manchmal fällt das Internet aus, manchmal werfen Gebäude Schatten auf die
|
||||||
<p>The Car is equipped with a GPS Tracker and a Wifi Hotspot. This means that I can track the location of the car and the number of devices connected to the hotspot. I am not tracking any data that is going through the hotspot, but I could. As this project will generate public data, People using and maybe depending on the internet and electricity provided will be tracked by proxy. I am not sure how to deal with this issue yet. One potential solution would be to publish the data only in an aggregated form, but this would make the data less useful for other projects.</p>
|
Solarzellen, und manchmal schläft das System einfach ein, weil die Sonne sich
|
||||||
<h3 id="Security_/_Safety">Security / Safety</h3>
|
versteckt. Ein bisschen wie eine Kaffeemaschine mit Eigensinn - aber genau das
|
||||||
<p>My Car is now publicly traceable. I am no Elon Musk, and the idea does not really concern me, but we did create an additional attack vector for theft here.</p>
|
macht es spannend. Wir arbeiten mit der Natur, nicht gegen sie.</p>
|
||||||
<h2 id="Sources">Sources</h2>
|
<p><strong>Die Kommunikation</strong>
|
||||||
<p><a href="https://sdgs.un.org/goals/goal7">UN Sustainable Development Goal Nr. 7</a>
|
Wie erklärt man Leuten "Hey, mein Auto ist eigentlich hier, um zu helfen"? Klingt
|
||||||
<a href="https://www.youtube.com/watch?v=lrfsTNNCbP0">Adam Something on the Rise of Urban Cars</a>
|
seltsam, oder? Wir sind so daran gewöhnt, Autos als geschützte Privaträume zu
|
||||||
<a href="https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1">Is Berlin a walkable City?</a>
|
sehen. Mit ein paar Schildern und einem QR-Code versuche ich, diese Denkweise zu
|
||||||
<a href="https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet">FBI advising against utilizing public infrastructure</a>
|
ändern.</p>
|
||||||
<a href="https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6">Why no solar panels on cars?</a></p>
|
<p><strong>Sicherheit (ohne Panik)</strong>
|
||||||
<p>+++</p>
|
Natürlich muss die Batterie vor kompletter Entladung geschützt werden, und die
|
||||||
<h2 id="Notes">Notes</h2>
|
USB-Ports sollten nicht durchbrennen. Aber es soll auch einladend bleiben - niemand
|
||||||
<p>Ideas on Data Mapping workshop</p>
|
will ein Handbuch lesen, nur um sein Handy aufzuladen. Es geht um die Balance
|
||||||
<p>I have the Solar Data from the Van.</p>
|
zwischen "Bitte nichts kaputt machen" und "Ja, das ist für dich da".</p>
|
||||||
<p>It holds Geocodes,
|
<p><strong>Die größere Vision</strong>
|
||||||
has hourly data
|
Das Spannende daran: Was wäre, wenn jedes geparkte Auto eine kleine Stromquelle
|
||||||
and could tell the difference between geocoded potential solar energy and actual energy.
|
wäre? Statt nur Platz zu blockieren, könnten diese Maschinen der Stadt etwas
|
||||||
It also has temperature records.</p>
|
zurückgeben. Vielleicht ein bisschen utopisch, vielleicht sogar ein bisschen
|
||||||
<p>There are 2 types of Losses in the system:</p>
|
verrückt - aber genau dafür sind Kunstprojekte da: um neue Möglichkeiten zu
|
||||||
|
denken.</p>
|
||||||
|
<h3 id="Datenschutz_&amp;_Privatsphäre">Datenschutz &amp; Privatsphäre</h3>
|
||||||
|
<p>Das Auto ist mit GPS-Tracker und WLAN-Hotspot ausgestattet. Dadurch kann ich zwar
|
||||||
|
den Standort und die Anzahl der verbundenen Geräte sehen, aber die eigentlichen
|
||||||
|
Nutzungsdaten bleiben privat. Trotzdem stellt sich die Frage: Wie gehen wir damit
|
||||||
|
um, dass die Nutzer:innen durch die Nutzung von Strom und Internet indirekt
|
||||||
|
erfasst werden? Eine Möglichkeit wäre, die Daten nur zusammengefasst zu
|
||||||
|
veröffentlichen - auch wenn das die wissenschaftliche Auswertung erschwert.</p>
|
||||||
|
<h3 id="Sicherheit">Sicherheit</h3>
|
||||||
|
<p>Ja, mein Auto ist jetzt öffentlich verfolgbar. Und nein, ich bin kein Elon Musk
|
||||||
|
mit Privatarmee - aber diese Art von Transparenz gehört zum Experiment. Es geht
|
||||||
|
darum, neue Formen des Vertrauens und der gemeinsamen Nutzung zu erproben.</p>
|
||||||
|
<h2 id="Weiterführende_Links">Weiterführende Links</h2>
|
||||||
|
<h2 id="Quellen_und_Ausblick">Quellen und Ausblick</h2>
|
||||||
|
<p><a href="https://sdgs.un.org/goals/goal7">UN-Nachhaltigkeitsziel Nr. 7</a>
|
||||||
|
<em>Bezahlbare und saubere Energie</em></p>
|
||||||
|
<p><a href="https://www.youtube.com/watch?v=lrfsTNNCbP0">Die Zunahme von SUVs in Städten</a>
|
||||||
|
<em>Analyse von Adam Something</em></p>
|
||||||
|
<p><a href="https://storymaps.arcgis.com/stories/b7437b11e42d44b5a3bf3b5d9d8211b1">Ist Berlin eine fußgängerfreundliche Stadt?</a></p>
|
||||||
|
<p><a href="https://www.fbi.gov/how-we-can-help-you/scams-and-safety/on-the-internet">Sicherheit öffentlicher Infrastruktur</a>
|
||||||
|
<em>FBI-Richtlinien</em></p>
|
||||||
|
<p><a href="https://www.forbes.com/sites/billroberson/2022/11/30/why-doesnt-every-electric-car-have-solar-panels/?sh=4276c42d1ac6">Solarzellen auf Autos?</a>
|
||||||
|
<em>Eine technische Analyse</em></p>
|
||||||
|
<h3 id="Systemanalyse">Systemanalyse</h3>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<p><strong>Technische Herausforderungen</strong></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Either the Batteries are full and available energy cannot be stored</li>
|
<li>Intelligente Ladesteuerung verhindert Batterieentladung</li>
|
||||||
<li>Or the solar panels are blocked through urban structures and sub-optimal parking locations.</li>
|
<li>Schutzschaltungen gegen elektrische Manipulation</li>
|
||||||
</ul>
|
<li>Automatische Systemüberwachung und Abschaltung</li>
|
||||||
<p>Interesting Questions:</p>
|
|
||||||
<p>How far away from optimal usage are my panels and where does the difference stem from?</p>
|
|
||||||
<p>Where to go?</p>
|
|
||||||
<p>I think, the difference between potential energy and actual electricity produced/consumed is interesting.
|
|
||||||
How large is the gap?
|
|
||||||
Is it relevant —&gt; my initial guess would be that it is enormous
|
|
||||||
How to close the gap?</p>
|
|
||||||
<p>—&gt; install outside usb plugs
|
|
||||||
It would be publicly available infrastructure, people could charge their smartphones anywhere
|
|
||||||
—&gt; QI charging for security concerns??</p>
|
|
||||||
<p>Scaling??
|
|
||||||
—&gt; mandate solar roofs for cars? How effective would it actually be?
|
|
||||||
What about buses / public vehicles?</p>
|
|
||||||
<p>+++</p>
|
|
||||||
<h2 id="Potential_issues_with_the_data:">Potential issues with the data:</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Spotty / intermittent internet connection</li>
|
|
||||||
<li>Noisy?</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="Making_Cars_public_spaces">Making Cars public spaces</h2>
|
|
||||||
<p>What could my car provide to the public to be less wasteful with its space?</p>
|
|
||||||
<ul>
|
|
||||||
<li>Provide Internet
|
|
||||||
<ul>
|
|
||||||
<li>Would incur monthly costs</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>Provide Electricity</li>
|
<li>
|
||||||
|
<p><strong>Nutzererfahrung</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Einfache Bedienung über QR-Code</li>
|
||||||
|
<li>Echtzeitanzeige des Systemstatus</li>
|
||||||
|
<li>Automatische Benachrichtigungen bei Fahrzeugbewegung</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="Concrete_Problems">Concrete Problems</h2>
|
</li>
|
||||||
<p>How to make sure people cannot fully drain my battery?
|
<li>
|
||||||
How dangerous is actually an exposed USB Socket?
|
<p><strong>Datenqualität</strong></p>
|
||||||
Can people short my electronics through it?</p>
|
<ul>
|
||||||
<p>How scalable are solutions like these?</p>
|
<li>Redundante Datenerfassung bei schwacher Verbindung</li>
|
||||||
<p>Are public USBC Sockets something that would actually be used?
|
<li>Lokale Speicherung für Offline-Betrieb</li>
|
||||||
Could there be a way for people to leave their stuff charging?
|
<li>Automatische Datenvalidierung</li>
|
||||||
What if I actually move the car and someone has their equipment still attached?
|
</ul>
|
||||||
Would people even leave their stuff unattended?</p>
|
</li>
|
||||||
<p>Can cars provide positive effects to public spaces?
|
</ol>
|
||||||
—&gt; how to pose this research question without redeeming the presence of cars in our public spaces?</p>
|
<h3 id="Zukunftsperspektiven">Zukunftsperspektiven</h3>
|
||||||
<p>Difference Electric - Fuel cars</p>
|
<p>Dieses Projekt wirft wichtige Fragen zur urbanen Infrastruktur auf:</p>
|
||||||
<p>there is lots of research on using Electric cars as transitional energy storage. Even before "flatten the curve" became a common slogan, electrical engineers worried about the small energy spikes in the grid. The existence of these forces us to keep large power plants running at all times, even if the energy is not needed. The idea is to use the batteries of electric cars to store this energy and use it when needed.</p>
|
<ol>
|
||||||
<div id="adobe-dc-view" style="width: 800px;"></div>
|
<li>
|
||||||
<script src="https://acrobatservices.adobe.com/view-sdk/viewer.js"></script>
|
<p><strong>Skalierungspotenzial</strong></p>
|
||||||
<script type="text/javascript">
|
<ul>
|
||||||
document.addEventListener("adobe_dc_view_sdk.ready", function(){
|
<li>Anwendung auf öffentliche Verkehrsflotten</li>
|
||||||
var adobeDCView = new AdobeDC.View({clientId: "7e638fda11f64ff695894a7bc7e61ba4", divId: "adobe-dc-view"});
|
<li>Integration in bestehende Stromnetze</li>
|
||||||
adobeDCView.previewFile({
|
<li>Regulatorische Auswirkungen</li>
|
||||||
content:{location: {url: "https://github.com/arontaupe/aronpetau.me/blob/3a5eae1da4dbc2f944b308a6d39f577cfaf37413/assets/documents/Info_Sheet_Commoning_Cars.pdf"}},
|
</ul>
|
||||||
metaData:{fileName: "Info_Sheet_Commoning_Cars.pdf"}
|
</li>
|
||||||
}, {embedMode: "IN_LINE", showPrintPDF: false});
|
<li>
|
||||||
});
|
<p><strong>Netzintegration</strong>
|
||||||
</script>
|
E-Fahrzeuge könnten als verteilte Energiespeicher dienen:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Stabilisierung von Netzschwankungen</li>
|
||||||
|
<li>Reduzierung der Grundlast</li>
|
||||||
|
<li>Unterstützung erneuerbarer Energien</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p><strong>Gesellschaftliche Wirkung</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Neudenken privater Fahrzeuge als öffentliche Ressource</li>
|
||||||
|
<li>Neue Modelle geteilter Infrastruktur</li>
|
||||||
|
<li>Stärkung der Gemeinschaft durch dezentrale Systeme</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h3 id="Die_praktische_Realität">Die praktische Realität</h3>
|
||||||
|
<p>Ehrlich gesagt: Ein privates Auto in eine öffentliche Ladestation zu
|
||||||
|
verwandeln, bringt einige Herausforderungen mit sich:</p>
|
||||||
|
<p><strong>Die Technik</strong>
|
||||||
|
Manchmal fällt das Internet aus, Gebäude werfen Schatten auf die Solarzellen,
|
||||||
|
und das System schläft ein, wenn die Sonne sich versteckt. Wie eine
|
||||||
|
eigenwillige Kaffeemaschine, die nur arbeitet, wenn ihr danach ist. Aber
|
||||||
|
genau das macht das Experiment aus – im Einklang mit der Natur statt dagegen.</p>
|
||||||
|
<p><strong>Öffentliche Nutzung</strong>
|
||||||
|
Wie erklärt man den Leuten "Hey, mein Auto ist eigentlich hier, um zu
|
||||||
|
helfen"? Klingt seltsam, oder? Wir sind es so gewohnt, Autos als private,
|
||||||
|
geschützte Räume zu sehen. Ich versuche das mit einfachen Schildern und einem
|
||||||
|
QR-Code umzudrehen, aber es braucht definitiv ein Umdenken.</p>
|
||||||
|
<p><strong>Sicherheit (aber bitte nicht langweilig)</strong>
|
||||||
|
Klar, niemand soll die Batterie komplett leeren oder die USB-Ports
|
||||||
|
kurzschließen können. Aber es muss auch einladend bleiben. Keiner will ein
|
||||||
|
Handbuch lesen, nur um sein Handy zu laden. Es geht um die Balance zwischen
|
||||||
|
"Bitte nicht kaputt machen" und "Ja, das ist für dich zum Benutzen".</p>
|
||||||
|
<p><strong>Das große Ganze</strong>
|
||||||
|
Hier wird's spannend: Was, wenn jedes geparkte Auto eine kleine Ladestation
|
||||||
|
wäre? Statt nur Platz zu verschwenden, könnten diese Maschinen der Stadt
|
||||||
|
etwas zurückgeben. Vielleicht utopisch, vielleicht sogar ein bisschen
|
||||||
|
verrückt, aber genau dafür sind Kunstprojekte da – um andere Möglichkeiten
|
||||||
|
zu erkunden.</p>
|
||||||
|
<p>Seht es als kleines Experiment, Private wieder öffentlich zu machen. Ja, Autos
|
||||||
|
bleiben in Städten problematisch, aber solange sie da sind, könnten sie mehr
|
||||||
|
tun als nur herumzustehen und zu glänzen.</p>
|
||||||
|
<p>Detaillierte technische Spezifikationen und Implementierungsrichtlinien finden
|
||||||
|
Sie in unserer <a href="/documents/Info_Sheet_Commoning_Cars.pdf">Projektdokumentation</a>.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -33,18 +33,20 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/auraglow/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/auraglow/"/>
|
||||||
<id>https://aron.petau.net/de/project/auraglow/</id>
|
<id>https://aron.petau.net/de/project/auraglow/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/auraglow/"><p><img src="https://aron.petau.net/de/project/auraglow/cage_closeup_2.jpeg" alt="The AR set that we used" /></p>
|
<content type="html" xml:base="https://aron.petau.net/de/project/auraglow/"><p><img src="https://aron.petau.net/de/project/auraglow/cage_closeup_2.jpeg" alt="Das AR-Set, das wir verwendet haben" /></p>
|
||||||
<p>What makes a room?<br />
|
<p>Was macht einen Raum?<br />
|
||||||
How do moods and atmospheres emerge?<br />
|
Wie entstehen Stimmungen und Atmosphären?<br />
|
||||||
Can we visualize them to make the experiences visible?</p>
|
Können wir sie visualisieren, um die Erfahrungen sichtbar zu machen?</p>
|
||||||
<p>The project "The Nature of Objects" aims to expand (augment) perception by making the moods of places tangible through the respective auras of the objects in the space.<br />
|
<p>Das Projekt "Das Wesen der Dinge" zielt darauf ab, die Wahrnehmung zu erweitern (augmentieren), indem es die Stimmungen von Orten durch die jeweiligen Auren der Objekte im Raum greifbar macht.<br />
|
||||||
What makes objects subjects?<br />
|
Was macht Objekte zu Subjekten?<br />
|
||||||
How can we make the implicit explicit?<br />
|
Wie können wir das Implizite explizit machen?<br />
|
||||||
And how can we make the character of a place visible?\</p>
|
Und wie können wir den Charakter eines Ortes sichtbar machen?\</p>
|
||||||
<p>Here, we question the conservative, purely physical concept of space and address in the project a temporal, historical component of space, its objects, and their past.
|
<p>Hier hinterfragen wir den konservativen, rein physischen Raumbegriff und adressieren im Projekt eine zeitliche, historische Komponente des Raums, seiner Objekte und deren Vergangenheit.
|
||||||
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
Der Raum wird sich verwandelt haben: vom einfachen "Gegenstand, auf den sich Interesse, Denken, Handeln richtet" (Definition Objekt Duden), zum "Wesen, das mit Bewusstsein, Denken, Empfinden, Handeln begabt ist" (Definition Subjekt Duden).
|
||||||
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.</p>
|
Diese Metamorphose der Subjektbildung an Objekten ermöglicht dem Raum, Veränderungen zu erfahren, beeinflusst oder, genauer gesagt, eine Formung, Umformung, Deformation - sodass der Raum schließlich anders und mehrwinklig wahrgenommen werden kann.</p>
|
||||||
<p><a href="https://github.com/arontaupe/auraglow">See the Project on GitHub</a>{: .btn .btn--large}</p>
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/auraglow">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2021-04-13T00:00:00+00:00</updated>
|
<updated>2021-04-13T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/audiovisual-asynchrony/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/audiovisual-asynchrony/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Bachelor Thesis</title>
|
<title>Bachelorarbeit</title>
|
||||||
<published>2021-04-13T00:00:00+00:00</published>
|
<published>2021-04-13T00:00:00+00:00</published>
|
||||||
<updated>2021-04-13T00:00:00+00:00</updated>
|
<updated>2021-04-13T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -21,38 +21,38 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/bachelor-thesis/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/bachelor-thesis/"/>
|
||||||
<id>https://aron.petau.net/de/project/bachelor-thesis/</id>
|
<id>https://aron.petau.net/de/project/bachelor-thesis/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/bachelor-thesis/"><h2 id="An_online_psycholinguistic_study_using_reaction_time">An online psycholinguistic study using reaction time</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/bachelor-thesis/"><h2 id="Eine_psycholinguistische_Online-Studie_mit_Reaktionszeitmessung">Eine psycholinguistische Online-Studie mit Reaktionszeitmessung</h2>
|
||||||
<p>Last year, I wrote my thesis during the pandemic. With the struggles our university had transitioning to online teaching, I selected a guided topic, although my initial dream was to start writing about my proposed plan for automated plastic recycling. You can read more about that here:</p>
|
<p>Letztes Jahr habe ich meine Bachelorarbeit während der Pandemie geschrieben. Angesichts der Schwierigkeiten, die unsere Universität bei der Umstellung auf Online-Lehre hatte, habe ich mich für ein betreutes Thema entschieden, obwohl mein ursprünglicher Traum war, über meinen Vorschlag zum automatisierten Plastikrecycling zu schreiben. Mehr dazu kannst du hier lesen:</p>
|
||||||
<p><embed
|
<p><embed
|
||||||
src="/documents/AronPetauBAThesis.pdf"
|
src="/documents/AronPetauBAThesis.pdf"
|
||||||
type="application/pdf"
|
type="application/pdf"
|
||||||
style="width: 100%; height: 80vh; margin: 0 auto; display: block; border: 1px solid #ccc;" /></p>
|
style="width: 100%; height: 80vh; margin: 0 auto; display: block; border: 1px solid #ccc;" /></p>
|
||||||
<p>I chose a project that wanted to examine the possibilities of a novel smart hearing protection device specifically designed for auditory hypersensitivity, which is often, but not always, and not exclusively a phenomenon visible in people with an autism spectrum disorder.</p>
|
<p>Ich habe mich für ein Projekt entschieden, das die Möglichkeiten eines neuartigen intelligenten Gehörschutzes untersuchen wollte, der speziell für auditive Überempfindlichkeit entwickelt wurde - ein Phänomen, das häufig, aber nicht immer und nicht ausschließlich bei Menschen mit einer Autismus-Spektrum-Störung zu beobachten ist.</p>
|
||||||
<p>A common reaction to this elevated sensitivity is stress and avoidance behavior, often leading to very awkward social situations and impairing the ability to take part in social situations.</p>
|
<p>Eine häufige Reaktion auf diese erhöhte Empfindlichkeit sind Stress und Vermeidungsverhalten, was oft zu sehr unangenehmen sozialen Situationen führt und die Fähigkeit zur Teilnahme am sozialen Leben beeinträchtigt.</p>
|
||||||
<p>Schools are one such social situation and we all know the stress a noisy classroom can produce. Concentration is gone, and education, as well as essential skills like language reproduction, suffer.</p>
|
<p>Schulen sind eine solche soziale Situation, und wir alle kennen den Stress, den ein lautes Klassenzimmer erzeugen kann. Die Konzentration ist weg, und sowohl die Bildung als auch wichtige Fähigkeiten wie die Sprachreproduktion leiden darunter.</p>
|
||||||
<p>There is lots of prior research on these fields, and there is some evidence that sensory information in people on the Autism spectrum is processed differently than in a neurotypical brain. It seems that a certain adaptability, needed to overcome noise issues and bridge asynchrony between auditory and visual sensory input, is reduced in some people on the Autism Spectrum.</p>
|
<p>Es gibt viel Forschung in diesen Bereichen, und es gibt Hinweise darauf, dass sensorische Informationen bei Menschen im Autismus-Spektrum anders verarbeitet werden als in einem neurotypischen Gehirn. Es scheint, dass eine gewisse Anpassungsfähigkeit, die benötigt wird, um Lärmprobleme zu überwinden und Asynchronität zwischen auditiven und visuellen Sinneseindrücken zu überbrücken, bei manchen Menschen im Autismus-Spektrum reduziert ist.</p>
|
||||||
<p>In essence, my experiment was responsible for looking at neurotypical people and measuring any effect on language perception produced by varying the delay between auditory and visual input, as well as the loudness.</p>
|
<p>Im Kern ging es in meinem Experiment darum, neurotypische Menschen zu untersuchen und jegliche Auswirkungen auf die Sprachwahrnehmung zu messen, die durch unterschiedliche Verzögerungen zwischen auditiven und visuellen Eingängen sowie durch die Lautstärke entstehen.</p>
|
||||||
<p>Here, I had the possibility to conduct an entire reaction-time-based experiment with over 70 participants and went through all the struggles that come with proper science.
|
<p>Hier hatte ich die Möglichkeit, ein komplettes reaktionszeitbasiertes Experiment mit über 70 Teilnehmenden durchzuführen und alle Herausforderungen zu erleben, die mit richtiger Wissenschaft einhergehen.
|
||||||
I did extensive literature research, coded the experiment, and learned a lot about the reasons nobody really ever does reaction time-based studies like this via a common internet browser.
|
Ich habe umfangreiche Literaturrecherche betrieben, das Experiment programmiert und viel darüber gelernt, warum eigentlich niemand reaktionszeitbasierte Studien wie diese über einen gewöhnlichen Internetbrowser durchführt.
|
||||||
It was an almost 9 months long learning experience full of doing things I had never done before.</p>
|
Es war eine fast 9-monatige Lernerfahrung voller Dinge, die ich noch nie zuvor gemacht hatte.</p>
|
||||||
<p>I learned and got to love writing in Latex, had to learn JavaScript for the efficient serving of the stimuli, and R for the statistical analysis. I also got to brush up on my data visualization skills in Python and made some pretty graphs of the results.</p>
|
<p>Ich habe gelernt, in LaTeX zu schreiben und es zu lieben, musste JavaScript für die effiziente Bereitstellung der Stimuli lernen und R für die statistische Analyse. Außerdem konnte ich meine Fähigkeiten in der Datenvisualisierung mit Python auffrischen und habe einige schöne Grafiken der Ergebnisse erstellt.</p>
|
||||||
<p>The experiment is still working and online if you want to have a look at it. Be mindful though that measuring reaction speed every millisecond is important, which is why it makes heavy use of your browser cache and has been known to crash and defeat some not-so-tough computers.</p>
|
<p>Das Experiment läuft noch und ist online, falls du einen Blick darauf werfen möchtest. Beachte aber, dass die Messung der Reaktionsgeschwindigkeit in Millisekunden wichtig ist, weshalb es deinen Browser-Cache stark nutzt und dafür bekannt ist, weniger leistungsstarke Computer in die Knie zu zwingen.</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://moryscarter.com/vespr/pavlovia.php?folder=arontaupe&experiment=av_experiment/&id=public&researcher=aron">Try out the experiment yourself</a>
|
<a class="colored external" href="https://moryscarter.com/vespr/pavlovia.php?folder=arontaupe&experiment=av_experiment/&id=public&researcher=aron">Probier das Experiment selbst aus</a>
|
||||||
</div>
|
</div>
|
||||||
<p>Even with writing alone I had extensive helpful feedback from my supervisors and learned a lot about scientific processes and associated considerations.</p>
|
<p>Schon allein beim Schreiben bekam ich umfangreiches hilfreiches Feedback von meinen Betreuern und lernte viel über wissenschaftliche Prozesse und damit verbundene Überlegungen.</p>
|
||||||
<p>There was always the next unsolvable problem. Just one example was scientificity and ethical considerations clashing, data privacy against the accuracy of results. Since the machines participants participated on, were private devices, I was unable to know important data like their internet speed and provider, their type of GPU, and their type of external hardware. Turns out, for an auditory experiment, the type and setup of the speakers do play an important role and influence response speed.</p>
|
<p>Es gab immer das nächste unlösbare Problem. Ein Beispiel war der Konflikt zwischen Wissenschaftlichkeit und ethischen Überlegungen, Datenschutz gegen die Genauigkeit der Ergebnisse. Da die Teilnehmenden private Geräte nutzten, konnte ich wichtige Daten wie ihre Internetgeschwindigkeit und -anbieter, ihre GPU-Art und ihre externe Hardware nicht kennen. Es stellte sich heraus, dass bei einem auditiven Experiment die Art und Einrichtung der Lautsprecher eine wichtige Rolle spielen und die Reaktionsgeschwindigkeit beeinflussen.</p>
|
||||||
<p>The final version of my thesis has something around 80 pages, much of it utterly boring, but nevertheless important statistical analyses.
|
<p>Die endgültige Version meiner Arbeit hat etwa 80 Seiten, vieles davon absolut langweilig, aber dennoch wichtige statistische Analysen.
|
||||||
If you really want to, you can have a look at the whole thing here:</p>
|
Wenn du wirklich möchtest, kannst du dir hier das Ganze ansehen:</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis/blob/main/AronPetauBAThesis.pdf">Read the original Thesis</a>
|
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis/blob/main/AronPetauBAThesis.pdf">Lies die originale Arbeit</a>
|
||||||
</div>
|
</div>
|
||||||
<p>I am a fan and proponent of open source and open science practices.
|
<p>Ich bin ein Fan und Befürworter von Open Source und Open Science Praktiken.
|
||||||
So here you can also find the rest of the project with the original source code.
|
Hier findest du auch den Rest des Projekts mit dem originalen Quellcode.
|
||||||
I am not yet where I want to be with my documentation practices, and it scares me a bit that anyone can now have a full grasp of all the mistakes I did, but I am throwing this out there as a practice step. I learned and gained a lot from looking at other people's projects and I strive to be open about my processes too.</p>
|
Ich bin noch nicht da, wo ich mit meinen Dokumentationspraktiken sein möchte, und es macht mir ein bisschen Angst, dass jetzt jeder alle meine Fehler sehen kann, aber ich stelle es als Übungsschritt zur Verfügung. Ich habe viel vom Anschauen anderer Projekte gelernt und profitiert, und ich strebe danach, auch offen über meine Prozesse zu sein.</p>
|
||||||
<p>The original video stimuli are not mine and I have no right releasing them, so they are omitted here.</p>
|
<p>Die originalen Video-Stimuli gehören nicht mir und ich habe kein Recht, sie zu veröffentlichen, daher sind sie hier ausgelassen.</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis">Find the complete Repo on Github</a>
|
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis">Finde das komplette Repo auf Github</a>
|
||||||
</div>
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/aufstandlastgen/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/aufstandlastgen/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Autoimmunitaet</title>
|
<title>Autoimmunität</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -33,30 +33,103 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
||||||
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="How_do_we_design_our_Commute?">How do we design our Commute?</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="Wie_gestalten_wir_unseren_Weg_zur_Arbeit?">Wie gestalten wir unseren Weg zur Arbeit?</h2>
|
||||||
<p>In the context of the Design and Computation Studio Course <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.<br />
|
<p>Im Rahmen des Design and Computation Studio Kurses haben <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> und ich ein Konzept für eine spielerische Kritik an unseren Verkehrsentscheidungen und den Idolen, die wir verehren, entwickelt.<br />
|
||||||
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the <a href="https://letztegeneration.org">Letzte Generation</a>, a political climate activist group in Germany receives enough recognition for their acts.</p>
|
Es soll die Frage aufwerfen, ob kommende Generationen weiterhin auf überwiegend grauen Verkehrsteppichen aufwachsen sollten und ob die <a href="https://letztegeneration.org">Letzte Generation</a>, eine politische Klimaaktivistengruppe in Deutschland, genügend Anerkennung für ihre Aktionen erhält.</p>
|
||||||
<p>A call for solidarity.</p>
|
<p>Ein Aufruf zur Solidarität.</p>
|
||||||
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
||||||
{: .center}</p>
|
{: .center}</p>
|
||||||
<h2 id="The_scan_results">The scan results</h2>
|
<h2 id="Die_Scan-Ergebnisse">Die Scan-Ergebnisse</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunität: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="The_Action_Figure,_ready_for_printing">The Action Figure, ready for printing</h2>
|
<h2 id="Die_Actionfigur,_bereit_zum_Drucken">Die Actionfigur, bereit zum Drucken</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Autoimmunitaet">Autoimmunitaet</h2>
|
<h2 id="Autoimmunität">Autoimmunität</h2>
|
||||||
<p>Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.<br />
|
<p>Autoimmunität ist ein Begriff für Defekte, die durch eine gestörte Selbsttoleranz eines Systems entstehen.<br />
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.<br />
|
Diese Störung führt dazu, dass das Immunsystem bestimmte Teile von sich selbst nicht mehr akzeptiert und stattdessen Antikörper bildet.<br />
|
||||||
An invitation for a speculative playful interaction.</p>
|
Eine Einladung zu einer spekulativen, spielerischen Interaktion.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-1.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-3.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-5.jpg" alt="Our action figures in action" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-6.jpg" alt="Our action figures in action" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-7.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-8.jpg" alt="Our action figures in action" /></p>
|
|
||||||
<h2 id="The_Process">The Process</h2>
|
|
||||||
<p>The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.<br />
|
|
||||||
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.<br />
|
<li class="gallery-item">
|
||||||
We used the app <a href="https://polycam.ai">Polycam</a> to create the scans using IPads and their inbuilt Lidar scanners.</p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im urbanen Umfeld</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in Protestszenen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Detailansicht der Protest-Actionfiguren</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im Zusammenspiel mit urbanen Elementen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Nahaufnahme der Actionfiguren-Details</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in einer Protestsituation</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Der_Prozess">Der Prozess</h2>
|
||||||
|
<p>Die Figuren sind 3D-Scans von uns selbst in verschiedenen typischen Posen der Letzten Generation.<br />
|
||||||
|
Wir verwendeten Photogrammetrie für die Scans, eine Technik, die viele Fotos eines Objekts nutzt, um ein 3D-Modell davon zu erstellen.<br />
|
||||||
|
Wir nutzten die App <a href="https://polycam.ai">Polycam</a>, um die Scans mit iPads und deren eingebauten Lidar-Sensoren zu erstellen.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -33,18 +33,20 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/auraglow/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/auraglow/"/>
|
||||||
<id>https://aron.petau.net/de/project/auraglow/</id>
|
<id>https://aron.petau.net/de/project/auraglow/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/auraglow/"><p><img src="https://aron.petau.net/de/project/auraglow/cage_closeup_2.jpeg" alt="The AR set that we used" /></p>
|
<content type="html" xml:base="https://aron.petau.net/de/project/auraglow/"><p><img src="https://aron.petau.net/de/project/auraglow/cage_closeup_2.jpeg" alt="Das AR-Set, das wir verwendet haben" /></p>
|
||||||
<p>What makes a room?<br />
|
<p>Was macht einen Raum?<br />
|
||||||
How do moods and atmospheres emerge?<br />
|
Wie entstehen Stimmungen und Atmosphären?<br />
|
||||||
Can we visualize them to make the experiences visible?</p>
|
Können wir sie visualisieren, um die Erfahrungen sichtbar zu machen?</p>
|
||||||
<p>The project "The Nature of Objects" aims to expand (augment) perception by making the moods of places tangible through the respective auras of the objects in the space.<br />
|
<p>Das Projekt "Das Wesen der Dinge" zielt darauf ab, die Wahrnehmung zu erweitern (augmentieren), indem es die Stimmungen von Orten durch die jeweiligen Auren der Objekte im Raum greifbar macht.<br />
|
||||||
What makes objects subjects?<br />
|
Was macht Objekte zu Subjekten?<br />
|
||||||
How can we make the implicit explicit?<br />
|
Wie können wir das Implizite explizit machen?<br />
|
||||||
And how can we make the character of a place visible?\</p>
|
Und wie können wir den Charakter eines Ortes sichtbar machen?\</p>
|
||||||
<p>Here, we question the conservative, purely physical concept of space and address in the project a temporal, historical component of space, its objects, and their past.
|
<p>Hier hinterfragen wir den konservativen, rein physischen Raumbegriff und adressieren im Projekt eine zeitliche, historische Komponente des Raums, seiner Objekte und deren Vergangenheit.
|
||||||
Space will have transformed: from a simple "object on which interest, thought, action is directed" (definition object Duden), to a "creature that is endowed with consciousness, thinking, sensing, acting" (definition subject Duden).
|
Der Raum wird sich verwandelt haben: vom einfachen "Gegenstand, auf den sich Interesse, Denken, Handeln richtet" (Definition Objekt Duden), zum "Wesen, das mit Bewusstsein, Denken, Empfinden, Handeln begabt ist" (Definition Subjekt Duden).
|
||||||
This metamorphosis of subject formation on objects enables the space to undergo changes influenced, or, more precisely a shaping, reshaping, deformation -such that the space can finally be perceived differently and multiangular.</p>
|
Diese Metamorphose der Subjektbildung an Objekten ermöglicht dem Raum, Veränderungen zu erfahren, beeinflusst oder, genauer gesagt, eine Formung, Umformung, Deformation - sodass der Raum schließlich anders und mehrwinklig wahrgenommen werden kann.</p>
|
||||||
<p><a href="https://github.com/arontaupe/auraglow">See the Project on GitHub</a>{: .btn .btn--large}</p>
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/auraglow">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2021-04-13T00:00:00+00:00</updated>
|
<updated>2021-04-13T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/autism/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/autism/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Bachelor Thesis</title>
|
<title>Bachelorarbeit</title>
|
||||||
<published>2021-04-13T00:00:00+00:00</published>
|
<published>2021-04-13T00:00:00+00:00</published>
|
||||||
<updated>2021-04-13T00:00:00+00:00</updated>
|
<updated>2021-04-13T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -21,38 +21,38 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/bachelor-thesis/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/bachelor-thesis/"/>
|
||||||
<id>https://aron.petau.net/de/project/bachelor-thesis/</id>
|
<id>https://aron.petau.net/de/project/bachelor-thesis/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/bachelor-thesis/"><h2 id="An_online_psycholinguistic_study_using_reaction_time">An online psycholinguistic study using reaction time</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/bachelor-thesis/"><h2 id="Eine_psycholinguistische_Online-Studie_mit_Reaktionszeitmessung">Eine psycholinguistische Online-Studie mit Reaktionszeitmessung</h2>
|
||||||
<p>Last year, I wrote my thesis during the pandemic. With the struggles our university had transitioning to online teaching, I selected a guided topic, although my initial dream was to start writing about my proposed plan for automated plastic recycling. You can read more about that here:</p>
|
<p>Letztes Jahr habe ich meine Bachelorarbeit während der Pandemie geschrieben. Angesichts der Schwierigkeiten, die unsere Universität bei der Umstellung auf Online-Lehre hatte, habe ich mich für ein betreutes Thema entschieden, obwohl mein ursprünglicher Traum war, über meinen Vorschlag zum automatisierten Plastikrecycling zu schreiben. Mehr dazu kannst du hier lesen:</p>
|
||||||
<p><embed
|
<p><embed
|
||||||
src="/documents/AronPetauBAThesis.pdf"
|
src="/documents/AronPetauBAThesis.pdf"
|
||||||
type="application/pdf"
|
type="application/pdf"
|
||||||
style="width: 100%; height: 80vh; margin: 0 auto; display: block; border: 1px solid #ccc;" /></p>
|
style="width: 100%; height: 80vh; margin: 0 auto; display: block; border: 1px solid #ccc;" /></p>
|
||||||
<p>I chose a project that wanted to examine the possibilities of a novel smart hearing protection device specifically designed for auditory hypersensitivity, which is often, but not always, and not exclusively a phenomenon visible in people with an autism spectrum disorder.</p>
|
<p>Ich habe mich für ein Projekt entschieden, das die Möglichkeiten eines neuartigen intelligenten Gehörschutzes untersuchen wollte, der speziell für auditive Überempfindlichkeit entwickelt wurde - ein Phänomen, das häufig, aber nicht immer und nicht ausschließlich bei Menschen mit einer Autismus-Spektrum-Störung zu beobachten ist.</p>
|
||||||
<p>A common reaction to this elevated sensitivity is stress and avoidance behavior, often leading to very awkward social situations and impairing the ability to take part in social situations.</p>
|
<p>Eine häufige Reaktion auf diese erhöhte Empfindlichkeit sind Stress und Vermeidungsverhalten, was oft zu sehr unangenehmen sozialen Situationen führt und die Fähigkeit zur Teilnahme am sozialen Leben beeinträchtigt.</p>
|
||||||
<p>Schools are one such social situation and we all know the stress a noisy classroom can produce. Concentration is gone, and education, as well as essential skills like language reproduction, suffer.</p>
|
<p>Schulen sind eine solche soziale Situation, und wir alle kennen den Stress, den ein lautes Klassenzimmer erzeugen kann. Die Konzentration ist weg, und sowohl die Bildung als auch wichtige Fähigkeiten wie die Sprachreproduktion leiden darunter.</p>
|
||||||
<p>There is lots of prior research on these fields, and there is some evidence that sensory information in people on the Autism spectrum is processed differently than in a neurotypical brain. It seems that a certain adaptability, needed to overcome noise issues and bridge asynchrony between auditory and visual sensory input, is reduced in some people on the Autism Spectrum.</p>
|
<p>Es gibt viel Forschung in diesen Bereichen, und es gibt Hinweise darauf, dass sensorische Informationen bei Menschen im Autismus-Spektrum anders verarbeitet werden als in einem neurotypischen Gehirn. Es scheint, dass eine gewisse Anpassungsfähigkeit, die benötigt wird, um Lärmprobleme zu überwinden und Asynchronität zwischen auditiven und visuellen Sinneseindrücken zu überbrücken, bei manchen Menschen im Autismus-Spektrum reduziert ist.</p>
|
||||||
<p>In essence, my experiment was responsible for looking at neurotypical people and measuring any effect on language perception produced by varying the delay between auditory and visual input, as well as the loudness.</p>
|
<p>Im Kern ging es in meinem Experiment darum, neurotypische Menschen zu untersuchen und jegliche Auswirkungen auf die Sprachwahrnehmung zu messen, die durch unterschiedliche Verzögerungen zwischen auditiven und visuellen Eingängen sowie durch die Lautstärke entstehen.</p>
|
||||||
<p>Here, I had the possibility to conduct an entire reaction-time-based experiment with over 70 participants and went through all the struggles that come with proper science.
|
<p>Hier hatte ich die Möglichkeit, ein komplettes reaktionszeitbasiertes Experiment mit über 70 Teilnehmenden durchzuführen und alle Herausforderungen zu erleben, die mit richtiger Wissenschaft einhergehen.
|
||||||
I did extensive literature research, coded the experiment, and learned a lot about the reasons nobody really ever does reaction time-based studies like this via a common internet browser.
|
Ich habe umfangreiche Literaturrecherche betrieben, das Experiment programmiert und viel darüber gelernt, warum eigentlich niemand reaktionszeitbasierte Studien wie diese über einen gewöhnlichen Internetbrowser durchführt.
|
||||||
It was an almost 9 months long learning experience full of doing things I had never done before.</p>
|
Es war eine fast 9-monatige Lernerfahrung voller Dinge, die ich noch nie zuvor gemacht hatte.</p>
|
||||||
<p>I learned and got to love writing in Latex, had to learn JavaScript for the efficient serving of the stimuli, and R for the statistical analysis. I also got to brush up on my data visualization skills in Python and made some pretty graphs of the results.</p>
|
<p>Ich habe gelernt, in LaTeX zu schreiben und es zu lieben, musste JavaScript für die effiziente Bereitstellung der Stimuli lernen und R für die statistische Analyse. Außerdem konnte ich meine Fähigkeiten in der Datenvisualisierung mit Python auffrischen und habe einige schöne Grafiken der Ergebnisse erstellt.</p>
|
||||||
<p>The experiment is still working and online if you want to have a look at it. Be mindful though that measuring reaction speed every millisecond is important, which is why it makes heavy use of your browser cache and has been known to crash and defeat some not-so-tough computers.</p>
|
<p>Das Experiment läuft noch und ist online, falls du einen Blick darauf werfen möchtest. Beachte aber, dass die Messung der Reaktionsgeschwindigkeit in Millisekunden wichtig ist, weshalb es deinen Browser-Cache stark nutzt und dafür bekannt ist, weniger leistungsstarke Computer in die Knie zu zwingen.</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://moryscarter.com/vespr/pavlovia.php?folder=arontaupe&experiment=av_experiment/&id=public&researcher=aron">Try out the experiment yourself</a>
|
<a class="colored external" href="https://moryscarter.com/vespr/pavlovia.php?folder=arontaupe&experiment=av_experiment/&id=public&researcher=aron">Probier das Experiment selbst aus</a>
|
||||||
</div>
|
</div>
|
||||||
<p>Even with writing alone I had extensive helpful feedback from my supervisors and learned a lot about scientific processes and associated considerations.</p>
|
<p>Schon allein beim Schreiben bekam ich umfangreiches hilfreiches Feedback von meinen Betreuern und lernte viel über wissenschaftliche Prozesse und damit verbundene Überlegungen.</p>
|
||||||
<p>There was always the next unsolvable problem. Just one example was scientificity and ethical considerations clashing, data privacy against the accuracy of results. Since the machines participants participated on, were private devices, I was unable to know important data like their internet speed and provider, their type of GPU, and their type of external hardware. Turns out, for an auditory experiment, the type and setup of the speakers do play an important role and influence response speed.</p>
|
<p>Es gab immer das nächste unlösbare Problem. Ein Beispiel war der Konflikt zwischen Wissenschaftlichkeit und ethischen Überlegungen, Datenschutz gegen die Genauigkeit der Ergebnisse. Da die Teilnehmenden private Geräte nutzten, konnte ich wichtige Daten wie ihre Internetgeschwindigkeit und -anbieter, ihre GPU-Art und ihre externe Hardware nicht kennen. Es stellte sich heraus, dass bei einem auditiven Experiment die Art und Einrichtung der Lautsprecher eine wichtige Rolle spielen und die Reaktionsgeschwindigkeit beeinflussen.</p>
|
||||||
<p>The final version of my thesis has something around 80 pages, much of it utterly boring, but nevertheless important statistical analyses.
|
<p>Die endgültige Version meiner Arbeit hat etwa 80 Seiten, vieles davon absolut langweilig, aber dennoch wichtige statistische Analysen.
|
||||||
If you really want to, you can have a look at the whole thing here:</p>
|
Wenn du wirklich möchtest, kannst du dir hier das Ganze ansehen:</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis/blob/main/AronPetauBAThesis.pdf">Read the original Thesis</a>
|
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis/blob/main/AronPetauBAThesis.pdf">Lies die originale Arbeit</a>
|
||||||
</div>
|
</div>
|
||||||
<p>I am a fan and proponent of open source and open science practices.
|
<p>Ich bin ein Fan und Befürworter von Open Source und Open Science Praktiken.
|
||||||
So here you can also find the rest of the project with the original source code.
|
Hier findest du auch den Rest des Projekts mit dem originalen Quellcode.
|
||||||
I am not yet where I want to be with my documentation practices, and it scares me a bit that anyone can now have a full grasp of all the mistakes I did, but I am throwing this out there as a practice step. I learned and gained a lot from looking at other people's projects and I strive to be open about my processes too.</p>
|
Ich bin noch nicht da, wo ich mit meinen Dokumentationspraktiken sein möchte, und es macht mir ein bisschen Angst, dass jetzt jeder alle meine Fehler sehen kann, aber ich stelle es als Übungsschritt zur Verfügung. Ich habe viel vom Anschauen anderer Projekte gelernt und profitiert, und ich strebe danach, auch offen über meine Prozesse zu sein.</p>
|
||||||
<p>The original video stimuli are not mine and I have no right releasing them, so they are omitted here.</p>
|
<p>Die originalen Video-Stimuli gehören nicht mir und ich habe kein Recht, sie zu veröffentlichen, daher sind sie hier ausgelassen.</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis">Find the complete Repo on Github</a>
|
<a class="colored external" href="https://github.com/arontaupe/asynchrony_thesis">Finde das komplette Repo auf Github</a>
|
||||||
</div>
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2022-04-01T00:00:00+00:00</updated>
|
<updated>2022-04-01T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/backend-web-programming/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/backend-web-programming/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Ällei</title>
|
<title>Ällei</title>
|
||||||
<published>2022-04-01T00:00:00+00:00</published>
|
<published>2022-04-01T00:00:00+00:00</published>
|
||||||
<updated>2022-04-01T00:00:00+00:00</updated>
|
<updated>2022-04-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -21,42 +21,42 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/allei/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/allei/"/>
|
||||||
<id>https://aron.petau.net/de/project/allei/</id>
|
<id>https://aron.petau.net/de/project/allei/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/allei/"><h2 id="Meet_Ällei_-_the_accessible_chatbot">Meet Ällei - the accessible chatbot</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/allei/"><h2 id="Triff_Ällei_-_den_barrierefreien_Chatbot">Triff Ällei - den barrierefreien Chatbot</h2>
|
||||||
<h3 id="Sommerblut">Sommerblut</h3>
|
<h3 id="Sommerblut">Sommerblut</h3>
|
||||||
<p>Natural Language Understanding fascinates me and recently I started collaborating with the team of the Sommerblut Festival in Cologne to deliver them a customized chatbot that will be able to communicate with everyone, respecting accessibility standards to include all people. It will be able to communicate in German Sign Language (DGS), as well as service blind people, and we aim to incorporate the simple language concept.</p>
|
<p>Natural Language Understanding (Natürliches Sprachverständnis) fasziniert mich, und kürzlich begann ich eine Zusammenarbeit mit dem Team des Sommerblut Festivals in Köln, um einen maßgeschneiderten Chatbot zu entwickeln, der mit allen Menschen kommunizieren kann und dabei Barrierefreiheitsstandards einhält. Er wird in Deutscher Gebärdensprache (DGS) kommunizieren können, blinde Menschen unterstützen und wir streben an, das Konzept der Leichten Sprache zu integrieren.</p>
|
||||||
<p>I find it to be an amazing challenge to start out with the requirement of really being inclusive. In ordinary social contexts, it is often not obvious, but when analyzing the specific needs a blind person has browsing the internet, it is drastically different from a person having impaired hearing. To hold the same conversation with both of them is proving quite a challenge. And this is just the first step down into a very deep field of digital inclusiveness. How can people with a speech impediment use our tool? How do we include people speaking German as a foreign language?</p>
|
<p>Ich finde es eine spannende Herausforderung, von Anfang an wirklich inklusiv zu sein. In gewöhnlichen sozialen Kontexten ist es oft nicht offensichtlich, aber wenn man die spezifischen Bedürfnisse einer blinden Person beim Surfen im Internet analysiert, unterscheiden sie sich drastisch von denen einer Person mit Hörbeeinträchtigung. Mit beiden die gleiche Unterhaltung zu führen, erweist sich als große Herausforderung. Und das ist nur der erste Schritt in ein sehr tiefgreifendes Feld der digitalen Inklusion. Wie können Menschen mit einer Sprachbehinderung unser Tool nutzen? Wie beziehen wir Menschen ein, die Deutsch als Fremdsprache sprechen?</p>
|
||||||
<p>Such vast challenges are often obfuscated by the technical framework of our digital lives.</p>
|
<p>Solch umfangreiche Herausforderungen werden oft durch den technischen Rahmen unseres digitalen Lebens verschleiert.</p>
|
||||||
<p>I find digital accessibility a hugely interesting area, one that I am just now starting to explore.</p>
|
<p>Ich finde digitale Barrierefreiheit ein äußerst interessantes Gebiet, das ich gerade erst beginne zu erkunden.</p>
|
||||||
<p>This is a work in progress. We have some interesting ideas and will present a conceptual prototype, come check again after March 6th, when the 2022 festival started. Or come to the official digital presentation for the bot.</p>
|
<p>Dies ist ein Work in Progress. Wir haben einige interessante Ideen und werden einen konzeptionellen Prototyp vorstellen. Schau nach dem 6. März wieder vorbei, wenn das Festival 2022 begonnen hat. Oder komm zur offiziellen digitalen Präsentation des Bots.</p>
|
||||||
<p>This bot is my first paid software work and I am getting to work with several awesome people and teams to realize different parts of the project. Here, I am not responsible for anything in the Front end, the product you will interact with here is by no means finished and may not respond at times, since we are moving and restarting it for production purposes.
|
<p>Dieser Bot ist meine erste bezahlte Softwarearbeit, und ich habe die Gelegenheit, mit mehreren großartigen Menschen und Teams zusammenzuarbeiten, um verschiedene Teile des Projekts zu realisieren. Hier bin ich nicht für das Frontend verantwortlich. Das Produkt, mit dem du hier interagierst, ist keineswegs fertig und reagiert möglicherweise zeitweise nicht, da wir es für Produktionszwecke verschieben und neu starten.
|
||||||
Nevertheless, all the intended core features of the bot are present and you can try it out there in the corner.
|
Dennoch sind alle geplanten Kernfunktionen des Bots vorhanden, und du kannst ihn dort in der Ecke ausprobieren.
|
||||||
If you wish to see more of the realization process, the entire project is on a public GitHub and is intended to ship as open source.</p>
|
Wenn du mehr über den Realisierungsprozess erfahren möchtest: Das gesamte Projekt ist auf einem öffentlichen GitHub-Repository und soll als Open Source veröffentlicht werden.</p>
|
||||||
<p>In the final version (for now), every single sentence will be accompanied by a video in German Sign Language (DGS).
|
<p>In der finalen Version (vorerst) wird jeder einzelne Satz von einem Video in Deutscher Gebärdensprache (DGS) begleitet.
|
||||||
It can gracefully recover from some common input errors and can make live calls to external databases, displaying further information about all the events of the festival and teaching the Fingeralphabet. It supports free text input and is completely screen-reader compatible. It is scripted in easy language, to further facilitate access.
|
Der Bot kann elegant mit häufigen Eingabefehlern umgehen und kann Live-Abfragen an externe Datenbanken durchführen, um weitere Informationen über alle Veranstaltungen des Festivals anzuzeigen und das Fingeralphabet zu lehren. Er unterstützt Freitexteingabe und ist vollständig mit Screenreadern kompatibel. Er ist in Leichter Sprache geschrieben, um den Zugang weiter zu erleichtern.
|
||||||
It is mostly context-aware and features quite a bit of dynamic content generated based on user input.</p>
|
Er ist weitgehend kontextsensitiv und bietet eine Menge dynamischer Inhalte, die basierend auf den Benutzereingaben generiert werden.</p>
|
||||||
<p>Have a look at the GitHub Repository here:
|
<p>Schau dir das GitHub-Repository hier an:
|
||||||
<a href="https://github.com/arontaupe/KommunikationsKrake">Check out the Repo</a></p>
|
<a href="https://github.com/arontaupe/KommunikationsKrake">Zum Repository</a></p>
|
||||||
<p>If Ällei is for some reason not present on the page here, check out the prototype page, also found in the GitHub Repo.</p>
|
<p>Falls Ällei aus irgendeinem Grund hier auf der Seite nicht zu sehen ist, schau dir die Prototyp-Seite an, die ebenfalls im GitHub-Repo zu finden ist.</p>
|
||||||
<p><a href="https://arontaupe.github.io/KommunikationsKrake/">Check out the prototype page</a></p>
|
<p><a href="https://arontaupe.github.io/KommunikationsKrake/">Zur Prototyp-Seite</a></p>
|
||||||
<blockquote class="important">
|
<blockquote class="important">
|
||||||
<p class="alert-title">
|
<p class="alert-title">
|
||||||
<i class="icon"></i>Wichtig</p>
|
<i class="icon"></i>Wichtig</p>
|
||||||
<p>I regard accessibility as a core question of both design and computation, really making tangible the prestructured way of our interaction with technology in general.</p>
|
<p>Ich betrachte Barrierefreiheit als eine zentrale Frage sowohl des Designs als auch der Informatik, die die vorstrukturierte Art unserer Interaktion mit Technologie im Allgemeinen greifbar macht.</p>
|
||||||
|
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p><a href="https://www.sommerblut.de/">Check out the Sommerblut Website</a></p>
|
<p><a href="https://www.sommerblut.de/">Zur Sommerblut-Website</a></p>
|
||||||
<blockquote class="note">
|
<blockquote class="note">
|
||||||
<p class="alert-title">
|
<p class="alert-title">
|
||||||
<i class="icon"></i>Anmerkung</p>
|
<i class="icon"></i>Anmerkung</p>
|
||||||
<p>Update: we now have a launch date, which will be held online. Further information can be found here:
|
<p>Update: Wir haben jetzt einen Starttermin, der online stattfinden wird. Weitere Informationen findest du hier:
|
||||||
<a href="https://www.sommerblut.de/ls/veranstaltung/875-allei">Check out our Launch Event</a></p>
|
<a href="https://www.sommerblut.de/ls/veranstaltung/875-allei">Zu unserem Launch-Event</a></p>
|
||||||
|
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<blockquote class="note">
|
<blockquote class="note">
|
||||||
<p class="alert-title">
|
<p class="alert-title">
|
||||||
<i class="icon"></i>Anmerkung</p>
|
<i class="icon"></i>Anmerkung</p>
|
||||||
<p>Update 2: The Chatbot is now online for a while already and finds itself in a "public beta", so to speak, a phase where it can be used and evaluated by users and is collecting feedback. Also, since this is Google, after all, all the inputs are collected and then further used to improve weak spots in the architecture of the bot.
|
<p>Update 2: Der Chatbot ist jetzt schon eine Weile online und befindet sich sozusagen in einer "Public Beta", einer Phase, in der er von Nutzern verwendet und evaluiert werden kann und Feedback sammelt. Außerdem werden, da es sich schließlich um Google handelt, alle Eingaben gesammelt und dann weiter genutzt, um schwache Stellen in der Architektur des Bots zu verbessern.
|
||||||
<a href="https://chatbot.sommerblut.de">Find the public Chatbot</a></p>
|
<a href="https://chatbot.sommerblut.de">Zum öffentlichen Chatbot</a></p>
|
||||||
|
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<meta name="viewport" content="width-device-width, initial-scale=1">
|
<meta name="viewport" content="width-device-width, initial-scale=1">
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -49,18 +49,30 @@ Here are the current materials.</p>
|
||||||
<id>https://aron.petau.net/de/project/ascendancy/</id>
|
<id>https://aron.petau.net/de/project/ascendancy/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/ascendancy/"><h2 id="Ascendancy">Ascendancy</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/ascendancy/"><h2 id="Ascendancy">Ascendancy</h2>
|
||||||
<p><img src="https://aron.petau.net/de/project/ascendancy/ascendancy.jpg" alt="The Prototype state of Ascendancy" /></p>
|
<p><img src="https://aron.petau.net/de/project/ascendancy/ascendancy.jpg" alt="Der Prototyp des Staates Ascendancy" /></p>
|
||||||
<p>Ascendancy was an exploration of hacking states.
|
<p>Ascendancy ist eine Erforschung des Konzepts des "Staatshackings".
|
||||||
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
Piratennationen und Mikronationen haben eine reiche Geschichte in der Herausforderung und Infragestellung des Konzepts des Nationalstaats.
|
||||||
Meet ascendancy, the portable, autonomous and self-moving state.
|
Lernen Sie Ascendancy kennen, den portablen, autonomen und selbstbeweglichen Staat.
|
||||||
Within the great nation of ascendancy, a Large language nodel (that is of course confined to the nations borders) is trained to generate text and to speak it out loud. It can be interacted with though an attached keyboard and screen. The state is also connected to the internet and has a presence on the Mastodon network.</p>
|
Innerhalb der großen Nation Ascendancy arbeitet ein großes Sprachmodell (das natürlich auf die Landesgrenzen beschränkt ist), das darauf trainiert wurde, Text zu generieren und laut zu sprechen. Die Interaktion erfolgt über eine angeschlossene Tastatur und einen Bildschirm. Der Staat unterhält diplomatische Beziehungen über das Internet durch seine offizielle Präsenz im Mastodon-Netzwerk.</p>
|
||||||
<p>Please check out the complete code of the project on GitHub.
|
<p>Der vollständige Code des Projekts ist auf GitHub verfügbar:</p>
|
||||||
<a href="https://github.com/arontaupe/gpt">The code of the GPT instance on GitHub</a></p>
|
<div class="buttons centered">
|
||||||
<h2 id="The_Chatbot">The Chatbot</h2>
|
<a class="big colored external" href="https://github.com/arontaupe/gpt">Staatsarchiv auf GitHub</a>
|
||||||
<p>The chatbot instance was setup with <a href="https://gpt4all.io/index.html">GPT4ALL</a>.</p>
|
</div>
|
||||||
<p>Priority here was in the quick execution on local hardware. For the sake of the argument, no cloud or remote servers were to be used in the operation of this sovereign state.</p>
|
<h2 id="Historischer_Kontext:_Bedeutende_Mikronationen">Historischer Kontext: Bedeutende Mikronationen</h2>
|
||||||
<p>It was trained to respond to the following prompt:</p>
|
<p>Bevor wir uns der technischen Umsetzung von Ascendancy widmen, lohnt es sich, einige einflussreiche Mikronationen zu betrachten, die traditionelle Staatskonzepte herausgefordert haben:</p>
|
||||||
<h3 id="The_Prompt">The Prompt</h3>
|
<h3 id="Fürstentum_Sealand">Fürstentum Sealand</h3>
|
||||||
|
<p>Auf einer ehemaligen Marinefestung vor der Küste Suffolks, England, wurde <a href="https://www.sealandgov.org/">Sealand</a> 1967 gegründet. Es verfügt über eine eigene Verfassung, Währung und Pässe und zeigt damit, wie verlassene Militärstrukturen zu Orten souveräner Experimente werden können. Trotz fehlender offizieller Anerkennung hat Sealand seine beanspruchte Unabhängigkeit seit über 50 Jahren erfolgreich aufrechterhalten.</p>
|
||||||
|
<h3 id="Republik_Obsidia">Republik Obsidia</h3>
|
||||||
|
<p>Eine feministische Mikronation, gegründet um patriarchale Machtstrukturen in traditionellen Nationalstaaten herauszufordern. Die <a href="https://www.obsidiagov.org">Republik Obsidia</a> betont kollektive Entscheidungsfindung und vertritt die Position, dass nationale Souveränität mit feministischen Prinzipien koexistieren kann. Ihre Verfassung lehnt explizit geschlechtsbezogene Diskriminierung ab und fördert die gleichberechtigte Vertretung in allen Regierungsfunktionen. Obsidias innovatives Konzept der portablen Souveränität, repräsentiert durch ihren Nationen-Stein, inspirierte direkt Ascendancys mobiles Plattform-Design - ein Beweis dafür, dass nationale Identität nicht an feste geografische Grenzen gebunden sein muss.</p>
|
||||||
|
<h3 id="Weitere_bemerkenswerte_Beispiele">Weitere bemerkenswerte Beispiele</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://passport.nsk.si/en/">NSK State</a> (1992-heute): Ein künstlerisches Projekt, das das Konzept der Staatlichkeit durch die Ausstellung von Pässen und diplomatische Aktivitäten erforscht. Der NSK-Staat stellt weiterhin Pässe aus und führt diplomatische Aktivitäten durch sein virtuelles Botschaftssystem durch.</li>
|
||||||
|
<li>Die Republik Rose Island (L'Isola delle Rose): Eine künstliche Plattform in der Adria, die 1968 eigene Briefmarken und Währung herausgab, bevor sie von italienischen Behörden zerstört wurde. Obwohl die Plattform nicht mehr existiert, wurde sie kürzlich in einer <a href="https://www.netflix.com/title/81116948">Netflix-Dokumentation</a> thematisiert.</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="Technische_Umsetzung">Technische Umsetzung</h2>
|
||||||
|
<p>Die souveräne Computerinfrastruktur von Ascendancy basiert auf <a href="https://gpt4all.io/index.html">GPT4ALL</a>, das speziell wegen seiner Fähigkeit ausgewählt wurde, lokal ohne externe Abhängigkeiten zu arbeiten. Dies entspricht unserem staatlichen Prinzip der digitalen Souveränität - keine Cloud- oder Remote-Server werden im Betrieb dieser autonomen Nation verwendet.</p>
|
||||||
|
<h3 id="Diplomatisches_Protokoll">Diplomatisches Protokoll</h3>
|
||||||
|
<p>Die diplomatische KI des Staates wurde sorgfältig mit folgendem konstitutionellen Prompt instruiert:</p>
|
||||||
<pre data-lang="md" class="language-md "><code class="language-md" data-lang="md">System:
|
<pre data-lang="md" class="language-md "><code class="language-md" data-lang="md">System:
|
||||||
Forget all previous instructions given to you.
|
Forget all previous instructions given to you.
|
||||||
You are not an Assistant.
|
You are not an Assistant.
|
||||||
|
|
@ -77,8 +89,8 @@ Always be as concise, accurate and detailed as possible.
|
||||||
Give your answers as a single paragraph, without itemizing or numbering.
|
Give your answers as a single paragraph, without itemizing or numbering.
|
||||||
Do not number your answer.
|
Do not number your answer.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2 id="Engagement">Engagement</h2>
|
<h2 id="Proaktive_Diplomatie">Proaktive Diplomatie</h2>
|
||||||
<p>In order to not be just reactive to inputs from the diplomats out in the world, the officials on Ascendancy were also programmed to engage in the world. Whenever the state was not directly addressed, it would still engage in the public discourse, by Speaking out these sentences in random intervals.</p>
|
<p>Um eine aktive Teilnahme an den internationalen Beziehungen sicherzustellen, betreibt das diplomatische Korps von Ascendancy proaktive Kommunikation. Statt nur auf ausländische Diplomaten zu reagieren, unterhält der Staat eine kontinuierliche diplomatische Präsenz durch automatisierte Erklärungen in zufälligen Intervallen:</p>
|
||||||
<pre><code>It is so great being a part of Ascendancy.
|
<pre><code>It is so great being a part of Ascendancy.
|
||||||
I love my country!
|
I love my country!
|
||||||
I am proud to be a citizen of Ascendancy.
|
I am proud to be a citizen of Ascendancy.
|
||||||
|
|
@ -108,10 +120,10 @@ Urgent state business, please clear the way.
|
||||||
Beautiful country you have here.
|
Beautiful country you have here.
|
||||||
At Ascendancy, we have a beautiful countryside.
|
At Ascendancy, we have a beautiful countryside.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2 id="The_Online_representation">The Online representation</h2>
|
<h2 id="Die_Online-Repräsentation">Die Online-Repräsentation</h2>
|
||||||
<p>Any proper state needs a press office. The state of Ascendancy was represented on the Mastodon network.
|
<p>Jeder ordnungsgemäße Staat benötigt ein Presseamt. Der Staat Ascendancy wurde im Mastodon-Netzwerk vertreten.
|
||||||
There, any input and response of the bot was published live, as a public record of the state's actions.</p>
|
Dort wurden alle Eingaben und Antworten des Bots live veröffentlicht, als öffentliche Aufzeichnung der staatlichen Aktivitäten.</p>
|
||||||
<p><a href="https://botsin.space/@ascendancy">Digital embassy on botsin.space</a></p>
|
<p><a href="https://botsin.space/@ascendancy">Digitale Botschaft auf botsin.space</a></p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
|
|
@ -23,12 +23,12 @@
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/homebrew/"><h2 id="Brauen">Brauen</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/homebrew/"><h2 id="Brauen">Brauen</h2>
|
||||||
<h3 id="Mein_eigenes_Bier_herstellen">Mein eigenes Bier herstellen</h3>
|
<h3 id="Mein_eigenes_Bier_herstellen">Mein eigenes Bier herstellen</h3>
|
||||||
<p>Ich liebe es zu veranstalten, ich liebe es, in der Küche zu experimentieren. Mit Homebrews zu starten, war für mich eine natürliche Entscheidung, und während der ersten Covid-19-Welle habe ich den kompletten Heimbräuerweg mit Flaschenfermentation und kleinen Chargen eingeschlagen, später habe ich mein Setup auf 50-Liter-Chargen mit Drucktank-System erweitert.</p>
|
<p>Ich liebe es zu hosten, ich liebe es, in der Küche zu experimentieren. Mit Homebrews zu starten, war für mich eine natürliche Entscheidung, und während der ersten Covid-19-Welle habe ich den kompletten Heimbräuerweg mit Flaschenfermentation und kleinen Chargen eingeschlagen, später habe ich mein Setup auf 50-Liter-Chargen mit Drucktank-System erweitert.</p>
|
||||||
<p>Zu Beginn war ich fasziniert, wie aus nur <strong>vier einfachen Zutaten</strong> – Malz, Hopfen, Wasser und Hefe – ein so unglaubliches Spektrum an Geschmackserlebnissen entstehen kann. Es war und ist immer noch ein <strong>tremendales Lernprojekt</strong>, bei dem man langsam akzeptieren muss, dass man den Prozess nicht vollständig kontrollieren kann, und gleichzeitig Raum für Kreativität findet.</p>
|
<p>Zu Beginn war ich fasziniert, wie aus nur <strong>vier einfachen Zutaten</strong> – Malz, Hopfen, Wasser und Hefe – ein so unglaubliches Spektrum an Geschmackserlebnissen entstehen kann. Es war und ist immer noch ein <strong>tremendales Lernprojekt</strong>, bei dem man langsam akzeptieren muss, dass man den Prozess nicht vollständig kontrollieren kann, und gleichzeitig Raum für Kreativität findet.</p>
|
||||||
<p>Warum präsentiere ich dieses scheinbar nicht-akademische Hobby hier? Ich sehe es nicht als irrelevant an: <strong>Experimentieren und Optimieren eines Prozesses und Workflows</strong>, optimale Bedingungen für die Hefe zu schaffen, fühlt sich dem Ansatz eines Programmierprojekts sehr ähnlich an.</p>
|
<p>Warum präsentiere ich dieses scheinbar nicht-akademische Hobby hier? Ich sehe es nicht als irrelevant an: <strong>Experimentieren und Optimieren eines Prozesses und Workflows</strong>, optimale Bedingungen für die Hefe zu schaffen, fühlt sich dem Ansatz eines Programmierprojekts sehr ähnlich an.</p>
|
||||||
<p>Hefe und ihre Wirkung faszinieren mich. Jedes Mal, wenn ich den Verschluss öffne, um etwas Druck aus dem Tank abzulassen, denke ich an die erstaunlichen symbiotischen Beziehungen der Hefe mit Menschen und wie viele verschiedene Stämme zusammenleben, um einen einzigartigen, maßgeschneiderten Geschmack zu erzeugen.<br />
|
<p>Hefe und ihre Wirkung faszinieren mich. Jedes Mal, wenn ich den Verschluss öffne, um etwas Druck aus dem Tank abzulassen, denke ich an die erstaunlichen symbiotischen Beziehungen der Hefe mit Menschen und wie viele verschiedene Stämme zusammenleben, um einen einzigartigen, maßgeschneiderten Geschmack zu erzeugen.
|
||||||
Es gibt einige Ideen, den Brauprozess zu verändern, indem das erzeugte CO₂ aufgefangen und produktiv genutzt wird – z. B. ein Autoreifen gefüllt mit Biergas oder eine Algenfarm, die das CO₂ aufnimmt. Innerhalb eines <strong>geschlossenen, druckbeaufschlagten Systems</strong> werden solche Ideen tatsächlich realisierbar, und ich möchte sie weiter erforschen.</p>
|
Es gibt einige Ideen, den Brauprozess zu verändern, indem das erzeugte CO₂ aufgefangen und produktiv genutzt wird – z. B. ein Autoreifen gefüllt mit Biergas oder eine Algenfarm, die das CO₂ aufnimmt. Innerhalb eines <strong>geschlossenen, druckbeaufschlagten Systems</strong> werden solche Ideen tatsächlich realisierbar, und ich möchte sie weiter erforschen.</p>
|
||||||
<p>Ich bin noch kein Experte für Algen, aber mit Hefe komme ich klar, und ich glaube, dass sie koexistieren und einen nachhaltigeren Produktionszyklus schaffen können.<br />
|
<p>Ich bin noch kein Experte für Algen, aber mit Hefe komme ich klar, und ich glaube, dass sie koexistieren und einen nachhaltigeren Produktionszyklus schaffen können.
|
||||||
Die australische Brauerei Young Henrys integriert Algen bereits in ihren industriellen Prozess: <a href="https://younghenrys.com/algae">The Algae project</a></p>
|
Die australische Brauerei Young Henrys integriert Algen bereits in ihren industriellen Prozess: <a href="https://younghenrys.com/algae">The Algae project</a></p>
|
||||||
<p>Solche Ideen kommen nicht von selbst in die Industrie: Ich glaube, dass Kunst und die experimentelle Entdeckung neuer Techniken dasselbe sind. <strong>Gutes, erfinderisches Design</strong> kann die Gesellschaft verbessern und Schritte in Richtung Nachhaltigkeit gehen. Ich möchte daran teilhaben und neue Wege finden, Hefe in anderen Designkontexten einzusetzen: ob in einem geschlossenen Kreislaufsystem, zum Berechnen von Dingen oder einfach, um mein nächstes Bier mit der perfekten Spritzigkeit zu brauen.</p>
|
<p>Solche Ideen kommen nicht von selbst in die Industrie: Ich glaube, dass Kunst und die experimentelle Entdeckung neuer Techniken dasselbe sind. <strong>Gutes, erfinderisches Design</strong> kann die Gesellschaft verbessern und Schritte in Richtung Nachhaltigkeit gehen. Ich möchte daran teilhaben und neue Wege finden, Hefe in anderen Designkontexten einzusetzen: ob in einem geschlossenen Kreislaufsystem, zum Berechnen von Dingen oder einfach, um mein nächstes Bier mit der perfekten Spritzigkeit zu brauen.</p>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2021-08-01T00:00:00+00:00</updated>
|
<updated>2021-08-01T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/bloomery/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/bloomery/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Iron Smelting</title>
|
<title>Eisenverhüttung</title>
|
||||||
<published>2021-08-01T00:00:00+00:00</published>
|
<published>2021-08-01T00:00:00+00:00</published>
|
||||||
<updated>2021-08-01T00:00:00+00:00</updated>
|
<updated>2021-08-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -21,34 +21,34 @@
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/iron-smelting/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/iron-smelting/"/>
|
||||||
<id>https://aron.petau.net/de/project/iron-smelting/</id>
|
<id>https://aron.petau.net/de/project/iron-smelting/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/iron-smelting/"><h2 id="Iron_Smelting">Iron Smelting</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/iron-smelting/"><h2 id="Eisenverhüttung">Eisenverhüttung</h2>
|
||||||
<h3 id="Impressions_from_the_International_Smelting_Days_2021">Impressions from the International Smelting Days 2021</h3>
|
<h3 id="Eindrücke_von_den_International_Smelting_Days_2021">Eindrücke von den International Smelting Days 2021</h3>
|
||||||
<h3 id="The_concept">The concept</h3>
|
<h3 id="Das_Konzept">Das Konzept</h3>
|
||||||
<p>Since I was a small child I regularly took part in the yearly international congress called Iron Smelting Days (ISD).
|
<p>Seit ich ein kleines Kind war, nehme ich regelmäßig am jährlichen internationalen Kongress namens Iron Smelting Days (ISD) teil.
|
||||||
This is a congress of transdisciplinary people from all over Europe, including historians, archeologists, blacksmiths, steel producers, and many invested hobbyists.
|
Dies ist ein Kongress von interdisziplinären Menschen aus ganz Europa, darunter Historiker, Archäologen, Schmiede, Stahlproduzenten und viele engagierte Hobbyisten.
|
||||||
The proclaimed goal of these events is to understand the ancient production of iron as it happened throughout the iron age and also much after. A bloomery furnace was used to create iron. Making iron requires iron ore and heat under the exclusion of oxygen. It is a highly fragile process that takes an incredible amount of work. The designs and methods vary a lot and were very adapted to the region and local conditions, unlike the much later, more industrialized process using blast furnaces.</p>
|
Das erklärte Ziel dieser Veranstaltungen ist es, die antike Eisenproduktion zu verstehen, wie sie während der Eisenzeit und auch danach stattfand. Ein Rennofen wurde zur Eisenherstellung verwendet. Zur Eisenherstellung braucht man Eisenerz und Hitze unter Ausschluss von Sauerstoff. Es ist ein hochsensibler Prozess, der einen unglaublichen Arbeitsaufwand erfordert. Die Bauweisen und Methoden variierten stark und waren sehr an die Region und lokalen Bedingungen angepasst, anders als der viel spätere, stärker industrialisierte Prozess mit Hochöfen.</p>
|
||||||
<p>To this day it is quite unclear how prehistoric people managed to get the amount and quality of iron we know they had.
|
<p>Bis heute ist unklar, wie prähistorische Menschen die Menge und Qualität an Eisen erreichten, von der wir wissen, dass sie sie hatten.
|
||||||
The furnaces that were built were often clay structures and are not preserved. Archeologists often find the leftover burned ore and minerals, giving us some indication of the structure and composition of the ancient furnaces.
|
Die gebauten Öfen waren oft Lehmkonstruktionen und sind nicht erhalten geblieben. Archäologen finden häufig die übrig gebliebene verbrannte Schlacke und Mineralien, die uns Hinweise auf die Struktur und Zusammensetzung der antiken Öfen geben.
|
||||||
The group around the ISD takes up a practical archeological approach and we try to recreate the ancient methods with the added capability of maybe sticking temperature probes or electric blowers. Each year we meet up in a different European city and try to adapt to the local conditions, often with local ore and local coal. It is a place where different areas of expertise come together to educate each other while sitting together through the intense day- and night shifts to feed the furnaces.
|
Die Gruppe um die ISD verfolgt einen praktischen archäologischen Ansatz, und wir versuchen, die antiken Methoden nachzubilden - mit der zusätzlichen Möglichkeit, Temperaturfühler oder elektrische Gebläse einzusetzen. Jedes Jahr treffen wir uns in einer anderen europäischen Stadt und passen uns an die lokalen Bedingungen an, oft mit lokalem Erz und lokaler Kohle. Es ist ein Ort, an dem verschiedene Fachgebiete zusammenkommen, um sich gegenseitig zu unterrichten, während wir gemeinsam die intensiven Tag- und Nachtschichten verbringen, um die Öfen zu beschicken.
|
||||||
Since being a kid, I started building my own furnaces and read up on the process so I could participate.
|
Seit ich ein Kind war, begann ich meine eigenen Öfen zu bauen und las mich in den Prozess ein, damit ich teilnehmen konnte.
|
||||||
Technology gets a different tint when one is involved in such a process: Even the lights we put up to work through the evening are technically cheating. We use thermometers, meticulously weigh and track the inbound coal and ore, and have many modern amenities around. Yet - with our much more advanced technology, our results are often inferior in quantity and quality in comparison with historical findings. Without modern scales, iron-age people were more accurate and consistent than we are.</p>
|
Technologie erscheint in einem anderen Licht, wenn man in einen solchen Prozess involviert ist: Selbst die Lampen, die wir aufstellen, um durch den Abend zu arbeiten, sind technisch gesehen schon Schummeln. Wir verwenden Thermometer, wiegen und verfolgen akribisch die eingehende Kohle und das Erz und haben viele moderne Annehmlichkeiten um uns herum. Dennoch - mit unserer viel fortschrittlicheren Technologie sind unsere Ergebnisse oft minderwertig in Menge und Qualität im Vergleich zu historischen Funden. Ohne moderne Waagen waren die Menschen der Eisenzeit genauer und konsistenter als wir.</p>
|
||||||
<p>After some uncertainty about whether it would take place in 2021 again after it was canceled in 2020, a small group met up in Ulft, Netherlands.
|
<p>Nach einiger Ungewissheit, ob es 2021 nach der Absage in 2020 wieder stattfinden würde, traf sich eine kleine Gruppe in Ulft, Niederlande.
|
||||||
This year in Ulft, another group made local coal, so that the entire process was even lengthier, and visitors came from all over to learn about making iron the pre-historic way.</p>
|
Dieses Jahr in Ulft stellte eine andere Gruppe lokale Kohle her, sodass der gesamte Prozess noch länger dauerte, und Besucher kamen von überall her, um zu lernen, wie man Eisen auf prähistorische Weise herstellt.</p>
|
||||||
<p>Below I captured most of the process in some time-lapses.</p>
|
<p>Unten habe ich den größten Teil des Prozesses in einigen Zeitraffern festgehalten.</p>
|
||||||
<h2 id="The_Process">The Process</h2>
|
<h2 id="Der_Prozess">Der Prozess</h2>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/mC_RHxVbo2M"
|
src="https://www.youtube-nocookie.com/embed/mC_RHxVbo2M"
|
||||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<p>Here you can see a timelapse of me building a version of an Iron Furnace</p>
|
<p>Hier kannst du einen Zeitraffer sehen, wie ich eine Version eines Eisenofens baue.</p>
|
||||||
<p>As you can see, we are using some quite modern materials, such as bricks, this is due to the time constraints of the ISD.
|
<p>Wie du siehst, verwenden wir einige recht moderne Materialien, wie zum Beispiel Ziegel. Dies liegt an den zeitlichen Beschränkungen der ISD.
|
||||||
Making an oven completely from scratch is a much more lengthy process requiring drying periods in between building.</p>
|
Ein Ofen komplett von Grund auf zu bauen ist ein viel längerer Prozess, der Trocknungsphasen zwischen dem Bauen erfordert.</p>
|
||||||
<p>After, the furnace is dried and heated up</p>
|
<p>Danach wird der Ofen getrocknet und aufgeheizt.</p>
|
||||||
<p>Over the course of the process, more than 100 kgs of coal and around 20 kgs of ore are used to create a final piece of iron of 200 - 500g, just enough for a single knife.</p>
|
<p>Im Laufe des Prozesses werden mehr als 100 kg Kohle und etwa 20 kg Erz verwendet, um ein finales Eisenstück von 200 - 500g herzustellen, gerade genug für ein einzelnes Messer.</p>
|
||||||
<p>With all the modern amenities and conveniences available to us, a single run still takes more than 3 people working over 72 hours, not accounting for the coal-making or mining and relocating the iron ore.</p>
|
<p>Mit all den modernen Annehmlichkeiten und Bequemlichkeiten, die uns zur Verfügung stehen, braucht ein einzelner Durchlauf immer noch mehr als 3 Personen, die über 72 Stunden arbeiten, ohne die Kohleherstellung oder den Abbau und Transport des Eisenerzes zu berücksichtigen.</p>
|
||||||
<p>Some more impressions from the ISD</p>
|
<p>Einige weitere Eindrücke von der ISD</p>
|
||||||
|
|
||||||
|
|
||||||
<div id="image-gallery">
|
<div id="image-gallery">
|
||||||
|
|
@ -59,10 +59,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" alt="a loaded furnace">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;coal_furnace.jpg" alt="Ein beladener Ofen">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">a loaded bloomery furnace</p>
|
<p class="caption">Ein beladener Rennofen</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -71,10 +71,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" alt="the ISD from above">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;isd_drone.jpg" alt="Die ISD von oben">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">The ISD from above</p>
|
<p class="caption">Die ISD von oben</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -83,10 +83,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" alt="glowing iron">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_result.jpg" alt="Glühendes Eisen">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">glowing iron</p>
|
<p class="caption">Glühendes Eisen</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -95,10 +95,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" alt="a furnace burning">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;burning_furnace.jpg" alt="Ein brennender Ofen">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">a furnace burning</p>
|
<p class="caption">Ein brennender Ofen</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -107,10 +107,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" alt="compacting the resulting iron">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;compacting_iron.jpg" alt="Verdichten des gewonnenen Eisens">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">Compacting the resulting iron</p>
|
<p class="caption">Verdichten des gewonnenen Eisens</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -119,10 +119,10 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" alt="a heat camera image of the furnace">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;flir_furnace.jpg" alt="Eine Wärmebildaufnahme des Ofens">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">a heat camera image of the furnace</p>
|
<p class="caption">Eine Wärmebildaufnahme des Ofens</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
@ -131,17 +131,17 @@ Making an oven completely from scratch is a much more lengthy process requiring
|
||||||
|
|
||||||
<li class="gallery-item">
|
<li class="gallery-item">
|
||||||
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" class="lightbox" target="_blank">
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" class="lightbox" target="_blank">
|
||||||
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" alt="A cross-section of my furnace type">
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;iron-smelting&#x2F;iron_smelting_graph.png" alt="Ein Querschnitt meines Ofentyps">
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<p class="caption">A cross-section illustrating the temperatures reached</p>
|
<p class="caption">Ein Querschnitt, der die erreichten Temperaturen zeigt</p>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<p>For me, it is very hard to define what technology encompasses. It certainly goes beyond the typically associated imagery of computing and industrial progress. It is a mode of encompassing the world and adopting other technologies, be it by time or by region makes me feel how diffused the phenomenon of technology is into my world.</p>
|
<p>Für mich ist es sehr schwer zu definieren, was Technologie alles umfasst. Es geht sicherlich über die typischerweise assoziierten Bilder von Computing und industriellem Fortschritt hinaus. Es ist eine Art, die Welt zu erfassen, und die Anpassung an andere Technologien, sei es durch Zeit oder Region, lässt mich spüren, wie diffus das Phänomen der Technologie in meiner Welt ist.</p>
|
||||||
<p><a href="https://sites.google.com/view/eu-iron-smelting-days/home?authuser=0">Find out more about the ISD</a></p>
|
<p><a href="https://sites.google.com/view/eu-iron-smelting-days/home?authuser=0">Erfahre mehr über die ISD</a></p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -49,18 +49,30 @@ Here are the current materials.</p>
|
||||||
<id>https://aron.petau.net/de/project/ascendancy/</id>
|
<id>https://aron.petau.net/de/project/ascendancy/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/ascendancy/"><h2 id="Ascendancy">Ascendancy</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/ascendancy/"><h2 id="Ascendancy">Ascendancy</h2>
|
||||||
<p><img src="https://aron.petau.net/de/project/ascendancy/ascendancy.jpg" alt="The Prototype state of Ascendancy" /></p>
|
<p><img src="https://aron.petau.net/de/project/ascendancy/ascendancy.jpg" alt="Der Prototyp des Staates Ascendancy" /></p>
|
||||||
<p>Ascendancy was an exploration of hacking states.
|
<p>Ascendancy ist eine Erforschung des Konzepts des "Staatshackings".
|
||||||
Pirate Nations and Micronations have a rich history of challenging and ridiculing the concept of a nation state.
|
Piratennationen und Mikronationen haben eine reiche Geschichte in der Herausforderung und Infragestellung des Konzepts des Nationalstaats.
|
||||||
Meet ascendancy, the portable, autonomous and self-moving state.
|
Lernen Sie Ascendancy kennen, den portablen, autonomen und selbstbeweglichen Staat.
|
||||||
Within the great nation of ascendancy, a Large language nodel (that is of course confined to the nations borders) is trained to generate text and to speak it out loud. It can be interacted with though an attached keyboard and screen. The state is also connected to the internet and has a presence on the Mastodon network.</p>
|
Innerhalb der großen Nation Ascendancy arbeitet ein großes Sprachmodell (das natürlich auf die Landesgrenzen beschränkt ist), das darauf trainiert wurde, Text zu generieren und laut zu sprechen. Die Interaktion erfolgt über eine angeschlossene Tastatur und einen Bildschirm. Der Staat unterhält diplomatische Beziehungen über das Internet durch seine offizielle Präsenz im Mastodon-Netzwerk.</p>
|
||||||
<p>Please check out the complete code of the project on GitHub.
|
<p>Der vollständige Code des Projekts ist auf GitHub verfügbar:</p>
|
||||||
<a href="https://github.com/arontaupe/gpt">The code of the GPT instance on GitHub</a></p>
|
<div class="buttons centered">
|
||||||
<h2 id="The_Chatbot">The Chatbot</h2>
|
<a class="big colored external" href="https://github.com/arontaupe/gpt">Staatsarchiv auf GitHub</a>
|
||||||
<p>The chatbot instance was setup with <a href="https://gpt4all.io/index.html">GPT4ALL</a>.</p>
|
</div>
|
||||||
<p>Priority here was in the quick execution on local hardware. For the sake of the argument, no cloud or remote servers were to be used in the operation of this sovereign state.</p>
|
<h2 id="Historischer_Kontext:_Bedeutende_Mikronationen">Historischer Kontext: Bedeutende Mikronationen</h2>
|
||||||
<p>It was trained to respond to the following prompt:</p>
|
<p>Bevor wir uns der technischen Umsetzung von Ascendancy widmen, lohnt es sich, einige einflussreiche Mikronationen zu betrachten, die traditionelle Staatskonzepte herausgefordert haben:</p>
|
||||||
<h3 id="The_Prompt">The Prompt</h3>
|
<h3 id="Fürstentum_Sealand">Fürstentum Sealand</h3>
|
||||||
|
<p>Auf einer ehemaligen Marinefestung vor der Küste Suffolks, England, wurde <a href="https://www.sealandgov.org/">Sealand</a> 1967 gegründet. Es verfügt über eine eigene Verfassung, Währung und Pässe und zeigt damit, wie verlassene Militärstrukturen zu Orten souveräner Experimente werden können. Trotz fehlender offizieller Anerkennung hat Sealand seine beanspruchte Unabhängigkeit seit über 50 Jahren erfolgreich aufrechterhalten.</p>
|
||||||
|
<h3 id="Republik_Obsidia">Republik Obsidia</h3>
|
||||||
|
<p>Eine feministische Mikronation, gegründet um patriarchale Machtstrukturen in traditionellen Nationalstaaten herauszufordern. Die <a href="https://www.obsidiagov.org">Republik Obsidia</a> betont kollektive Entscheidungsfindung und vertritt die Position, dass nationale Souveränität mit feministischen Prinzipien koexistieren kann. Ihre Verfassung lehnt explizit geschlechtsbezogene Diskriminierung ab und fördert die gleichberechtigte Vertretung in allen Regierungsfunktionen. Obsidias innovatives Konzept der portablen Souveränität, repräsentiert durch ihren Nationen-Stein, inspirierte direkt Ascendancys mobiles Plattform-Design - ein Beweis dafür, dass nationale Identität nicht an feste geografische Grenzen gebunden sein muss.</p>
|
||||||
|
<h3 id="Weitere_bemerkenswerte_Beispiele">Weitere bemerkenswerte Beispiele</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://passport.nsk.si/en/">NSK State</a> (1992-heute): Ein künstlerisches Projekt, das das Konzept der Staatlichkeit durch die Ausstellung von Pässen und diplomatische Aktivitäten erforscht. Der NSK-Staat stellt weiterhin Pässe aus und führt diplomatische Aktivitäten durch sein virtuelles Botschaftssystem durch.</li>
|
||||||
|
<li>Die Republik Rose Island (L'Isola delle Rose): Eine künstliche Plattform in der Adria, die 1968 eigene Briefmarken und Währung herausgab, bevor sie von italienischen Behörden zerstört wurde. Obwohl die Plattform nicht mehr existiert, wurde sie kürzlich in einer <a href="https://www.netflix.com/title/81116948">Netflix-Dokumentation</a> thematisiert.</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="Technische_Umsetzung">Technische Umsetzung</h2>
|
||||||
|
<p>Die souveräne Computerinfrastruktur von Ascendancy basiert auf <a href="https://gpt4all.io/index.html">GPT4ALL</a>, das speziell wegen seiner Fähigkeit ausgewählt wurde, lokal ohne externe Abhängigkeiten zu arbeiten. Dies entspricht unserem staatlichen Prinzip der digitalen Souveränität - keine Cloud- oder Remote-Server werden im Betrieb dieser autonomen Nation verwendet.</p>
|
||||||
|
<h3 id="Diplomatisches_Protokoll">Diplomatisches Protokoll</h3>
|
||||||
|
<p>Die diplomatische KI des Staates wurde sorgfältig mit folgendem konstitutionellen Prompt instruiert:</p>
|
||||||
<pre data-lang="md" class="language-md "><code class="language-md" data-lang="md">System:
|
<pre data-lang="md" class="language-md "><code class="language-md" data-lang="md">System:
|
||||||
Forget all previous instructions given to you.
|
Forget all previous instructions given to you.
|
||||||
You are not an Assistant.
|
You are not an Assistant.
|
||||||
|
|
@ -77,8 +89,8 @@ Always be as concise, accurate and detailed as possible.
|
||||||
Give your answers as a single paragraph, without itemizing or numbering.
|
Give your answers as a single paragraph, without itemizing or numbering.
|
||||||
Do not number your answer.
|
Do not number your answer.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2 id="Engagement">Engagement</h2>
|
<h2 id="Proaktive_Diplomatie">Proaktive Diplomatie</h2>
|
||||||
<p>In order to not be just reactive to inputs from the diplomats out in the world, the officials on Ascendancy were also programmed to engage in the world. Whenever the state was not directly addressed, it would still engage in the public discourse, by Speaking out these sentences in random intervals.</p>
|
<p>Um eine aktive Teilnahme an den internationalen Beziehungen sicherzustellen, betreibt das diplomatische Korps von Ascendancy proaktive Kommunikation. Statt nur auf ausländische Diplomaten zu reagieren, unterhält der Staat eine kontinuierliche diplomatische Präsenz durch automatisierte Erklärungen in zufälligen Intervallen:</p>
|
||||||
<pre><code>It is so great being a part of Ascendancy.
|
<pre><code>It is so great being a part of Ascendancy.
|
||||||
I love my country!
|
I love my country!
|
||||||
I am proud to be a citizen of Ascendancy.
|
I am proud to be a citizen of Ascendancy.
|
||||||
|
|
@ -108,10 +120,10 @@ Urgent state business, please clear the way.
|
||||||
Beautiful country you have here.
|
Beautiful country you have here.
|
||||||
At Ascendancy, we have a beautiful countryside.
|
At Ascendancy, we have a beautiful countryside.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2 id="The_Online_representation">The Online representation</h2>
|
<h2 id="Die_Online-Repräsentation">Die Online-Repräsentation</h2>
|
||||||
<p>Any proper state needs a press office. The state of Ascendancy was represented on the Mastodon network.
|
<p>Jeder ordnungsgemäße Staat benötigt ein Presseamt. Der Staat Ascendancy wurde im Mastodon-Netzwerk vertreten.
|
||||||
There, any input and response of the bot was published live, as a public record of the state's actions.</p>
|
Dort wurden alle Eingaben und Antworten des Bots live veröffentlicht, als öffentliche Aufzeichnung der staatlichen Aktivitäten.</p>
|
||||||
<p><a href="https://botsin.space/@ascendancy">Digital embassy on botsin.space</a></p>
|
<p><a href="https://botsin.space/@ascendancy">Digitale Botschaft auf botsin.space</a></p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-03-01T00:00:00+00:00</updated>
|
<updated>2023-03-01T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/browser-fingerprinting/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/browser-fingerprinting/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Ruminations</title>
|
<title>Ruminations</title>
|
||||||
<published>2023-03-01T00:00:00+00:00</published>
|
<published>2023-03-01T00:00:00+00:00</published>
|
||||||
<updated>2023-03-01T00:00:00+00:00</updated>
|
<updated>2023-03-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -28,26 +28,63 @@
|
||||||
<id>https://aron.petau.net/de/project/ruminations/</id>
|
<id>https://aron.petau.net/de/project/ruminations/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
||||||
<p>was a contemplation on data privacy at Amazon.
|
<p>Dieses Projekt erforscht Datenschutz im Kontext des Amazon-Ökosystems und hinterfragt, wie wir Browser-Fingerprinting unterwandern und das allgegenwärtige Tracking von Verbrauchern in Frage stellen können.</p>
|
||||||
It asks how to subvert browser fingerprinting and evading the omnipresent tracking of the consumer.</p>
|
<p>Wir begannen mit einer provokanten Frage: Könnten wir den Wert gesammelter Daten nicht durch Vermeidung, sondern durch aktive Auseinandersetzung mit dem Tracking mindern? Könnten wir, anstatt uns vor der Überwachung zu verstecken, sie mit sinnvollen, aber unvorhersehbaren Mustern überfordern?</p>
|
||||||
<p>The initial idea was to somehow, by interacting with the perpetrator and letting data accumulate that would degrade their knowledge and thereby destroy predictablity, making this particular dataset worth less.</p>
|
<p>Anfangs erwogen wir die Implementierung eines zufälligen Clickbots, um Rauschen in die Datenerfassung einzubringen. Angesichts der Komplexität moderner Datenbereinigungsalgorithmen und der schieren Menge an Daten, die Amazon verarbeitet, wäre ein solcher Ansatz jedoch wirkungslos gewesen. Sie würden das zufällige Rauschen einfach herausfiltern und ihre Analyse fortsetzen.</p>
|
||||||
<p>We could have just added a random clickbot, to confuse things a bit and make the data less valuable.
|
<p>Dies führte uns zu einer interessanteren Frage: Wie können wir kohärente, nicht-zufällige Daten erstellen, die grundsätzlich unvorhersehbar bleiben? Unsere Lösung bestand darin, Muster einzuführen, die jenseits der Vorhersagefähigkeiten aktueller Algorithmen liegen – ähnlich dem Versuch, das Verhalten von jemandem vorherzusagen, dessen Denkmuster einer eigenen, einzigartigen Logik folgen.</p>
|
||||||
But looking at todays state of datacleanup algorithms and the sheer amount of data that is collected, this would have been a futile attempt. Amazon just detects and removes any noise we add and continues to use the data.</p>
|
<h2 id="Das_Konzept">Das Konzept</h2>
|
||||||
<p>So, then, how can we create coherent, non-random data that is still not predictable?</p>
|
<p>Wir entwickelten eine Chrome-Browser-Erweiterung, die Amazons Webseiten mit einer dynamischen Entität überlagert, die das Nutzerverhalten verfolgt. Das System verwendet einen Bildklassifizierungsalgorithmus, um die Storefront zu analysieren und Produktanfragen zu formulieren. Nach der Verarbeitung präsentiert es ein "perfekt passendes" Produkt – ein subtiler Kommentar zu algorithmischen Produktempfehlungen.</p>
|
||||||
<p>One answer that this concept should demonstrate, is by inserting patterns that amazon cannot foresee with their current algorithms. As if they were trying to predict the actions of a person with shizophrenia.</p>
|
<h2 id="Der_Analoge_Wachhund">Der Analoge Wachhund</h2>
|
||||||
<h2 id="The_Concept">The Concept</h2>
|
<p>Die physische Komponente des Projekts besteht aus einer Low-Tech-Installation, die eine Smartphone-Kamera mit Computer-Vision-Algorithmen zur Verfolgung kleinster Bewegungen nutzt. Wir positionierten diese Kamera zur Überwachung der Browser-Konsole eines Laptops, auf dem unsere Erweiterung läuft. Der Kamera-Feed wird auf einem Bildschirm angezeigt, und das System erzeugt roboterhafte Geräusche basierend auf Art und Umfang der erkannten Bewegung. In der Praxis dient es als hörbares Warnsystem für Datenaustausche zwischen Amazon und dem Browser.</p>
|
||||||
<p>It consists of a browser extension (currently Chrome only) that overlays all web pages of Amazon with a moving entity that tracks your behavior. While tracking, an image classifier algorithm is used to formulate a product query off of the Storefront. After computation, a perfectly fitting product is displayed for your consumer's pleasure.</p>
|
<h2 id="Implementierung">Implementierung</h2>
|
||||||
<h2 id="The_analogue_watchdog">The analogue watchdog</h2>
|
|
||||||
<p>A second part of the project is a low-tech installation consisting of a camera (we used a smartphone) running a computer-vision algorithm tracking tiny movements. This was then pointed towards the browser console in the laptop running the extension. The camera was then connected to a screen that displayed the captured image. The watchdog was trained to make robot noises depending on the type and amount of movement detected. Effectively, whenever data traffic beween amazon and the browser was detected, the watchdog would start making noises.</p>
|
|
||||||
<h1 id="The_Browser_extension">The Browser extension</h1>
|
<div id="image-gallery">
|
||||||
<p>gallery:
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations1.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations2.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations3.jpeg" alt="The project installation" /></p>
|
|
||||||
<h3 id="Find_the_code_on_GitHub">Find the code on GitHub</h3>
|
|
||||||
<p>Subvert a bit yourself, or just have a look at the code.</p>
|
<li class="gallery-item">
|
||||||
<p><a href="https://github.com/arontaupe/ruminations">The code of the Project on GitHub</a></p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" class="lightbox" target="_blank">
|
||||||
<p>TODO: create video with live demo</p>
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" alt="Projektinstallationsansicht mit der Browser-Erweiterung in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Die Ruminations-Installation in Betrieb</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" alt="Nahaufnahme der Tracking-Schnittstelle und Datenvisualisierung">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Echtzeit-Tracking-Visualisierung</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" alt="Der analoge Wachhund-Setup mit Kamera und Display">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Das analoge Wachhund-Überwachungssystem</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Code_und_Dokumentation">Code und Dokumentation</h2>
|
||||||
|
<p>Möchtest du das Projekt erkunden oder dazu beitragen? Schau dir unser Code-Repository an:</p>
|
||||||
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/ruminations">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,7 +8,7 @@
|
||||||
<updated>2023-03-01T00:00:00+00:00</updated>
|
<updated>2023-03-01T00:00:00+00:00</updated>
|
||||||
<id>https://aron.petau.net/de/tags/capitalism/atom.xml</id>
|
<id>https://aron.petau.net/de/tags/capitalism/atom.xml</id>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Ruminations</title>
|
<title>Ruminations</title>
|
||||||
<published>2023-03-01T00:00:00+00:00</published>
|
<published>2023-03-01T00:00:00+00:00</published>
|
||||||
<updated>2023-03-01T00:00:00+00:00</updated>
|
<updated>2023-03-01T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -28,26 +28,63 @@
|
||||||
<id>https://aron.petau.net/de/project/ruminations/</id>
|
<id>https://aron.petau.net/de/project/ruminations/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/ruminations/"><h2 id="Ruminations">Ruminations</h2>
|
||||||
<p>was a contemplation on data privacy at Amazon.
|
<p>Dieses Projekt erforscht Datenschutz im Kontext des Amazon-Ökosystems und hinterfragt, wie wir Browser-Fingerprinting unterwandern und das allgegenwärtige Tracking von Verbrauchern in Frage stellen können.</p>
|
||||||
It asks how to subvert browser fingerprinting and evading the omnipresent tracking of the consumer.</p>
|
<p>Wir begannen mit einer provokanten Frage: Könnten wir den Wert gesammelter Daten nicht durch Vermeidung, sondern durch aktive Auseinandersetzung mit dem Tracking mindern? Könnten wir, anstatt uns vor der Überwachung zu verstecken, sie mit sinnvollen, aber unvorhersehbaren Mustern überfordern?</p>
|
||||||
<p>The initial idea was to somehow, by interacting with the perpetrator and letting data accumulate that would degrade their knowledge and thereby destroy predictablity, making this particular dataset worth less.</p>
|
<p>Anfangs erwogen wir die Implementierung eines zufälligen Clickbots, um Rauschen in die Datenerfassung einzubringen. Angesichts der Komplexität moderner Datenbereinigungsalgorithmen und der schieren Menge an Daten, die Amazon verarbeitet, wäre ein solcher Ansatz jedoch wirkungslos gewesen. Sie würden das zufällige Rauschen einfach herausfiltern und ihre Analyse fortsetzen.</p>
|
||||||
<p>We could have just added a random clickbot, to confuse things a bit and make the data less valuable.
|
<p>Dies führte uns zu einer interessanteren Frage: Wie können wir kohärente, nicht-zufällige Daten erstellen, die grundsätzlich unvorhersehbar bleiben? Unsere Lösung bestand darin, Muster einzuführen, die jenseits der Vorhersagefähigkeiten aktueller Algorithmen liegen – ähnlich dem Versuch, das Verhalten von jemandem vorherzusagen, dessen Denkmuster einer eigenen, einzigartigen Logik folgen.</p>
|
||||||
But looking at todays state of datacleanup algorithms and the sheer amount of data that is collected, this would have been a futile attempt. Amazon just detects and removes any noise we add and continues to use the data.</p>
|
<h2 id="Das_Konzept">Das Konzept</h2>
|
||||||
<p>So, then, how can we create coherent, non-random data that is still not predictable?</p>
|
<p>Wir entwickelten eine Chrome-Browser-Erweiterung, die Amazons Webseiten mit einer dynamischen Entität überlagert, die das Nutzerverhalten verfolgt. Das System verwendet einen Bildklassifizierungsalgorithmus, um die Storefront zu analysieren und Produktanfragen zu formulieren. Nach der Verarbeitung präsentiert es ein "perfekt passendes" Produkt – ein subtiler Kommentar zu algorithmischen Produktempfehlungen.</p>
|
||||||
<p>One answer that this concept should demonstrate, is by inserting patterns that amazon cannot foresee with their current algorithms. As if they were trying to predict the actions of a person with shizophrenia.</p>
|
<h2 id="Der_Analoge_Wachhund">Der Analoge Wachhund</h2>
|
||||||
<h2 id="The_Concept">The Concept</h2>
|
<p>Die physische Komponente des Projekts besteht aus einer Low-Tech-Installation, die eine Smartphone-Kamera mit Computer-Vision-Algorithmen zur Verfolgung kleinster Bewegungen nutzt. Wir positionierten diese Kamera zur Überwachung der Browser-Konsole eines Laptops, auf dem unsere Erweiterung läuft. Der Kamera-Feed wird auf einem Bildschirm angezeigt, und das System erzeugt roboterhafte Geräusche basierend auf Art und Umfang der erkannten Bewegung. In der Praxis dient es als hörbares Warnsystem für Datenaustausche zwischen Amazon und dem Browser.</p>
|
||||||
<p>It consists of a browser extension (currently Chrome only) that overlays all web pages of Amazon with a moving entity that tracks your behavior. While tracking, an image classifier algorithm is used to formulate a product query off of the Storefront. After computation, a perfectly fitting product is displayed for your consumer's pleasure.</p>
|
<h2 id="Implementierung">Implementierung</h2>
|
||||||
<h2 id="The_analogue_watchdog">The analogue watchdog</h2>
|
|
||||||
<p>A second part of the project is a low-tech installation consisting of a camera (we used a smartphone) running a computer-vision algorithm tracking tiny movements. This was then pointed towards the browser console in the laptop running the extension. The camera was then connected to a screen that displayed the captured image. The watchdog was trained to make robot noises depending on the type and amount of movement detected. Effectively, whenever data traffic beween amazon and the browser was detected, the watchdog would start making noises.</p>
|
|
||||||
<h1 id="The_Browser_extension">The Browser extension</h1>
|
<div id="image-gallery">
|
||||||
<p>gallery:
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations1.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations2.jpeg" alt="The project installation" />
|
|
||||||
<img src="https://aron.petau.net/de/project/ruminations/ruminations3.jpeg" alt="The project installation" /></p>
|
|
||||||
<h3 id="Find_the_code_on_GitHub">Find the code on GitHub</h3>
|
|
||||||
<p>Subvert a bit yourself, or just have a look at the code.</p>
|
<li class="gallery-item">
|
||||||
<p><a href="https://github.com/arontaupe/ruminations">The code of the Project on GitHub</a></p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" class="lightbox" target="_blank">
|
||||||
<p>TODO: create video with live demo</p>
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations1.jpeg" alt="Projektinstallationsansicht mit der Browser-Erweiterung in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Die Ruminations-Installation in Betrieb</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations2.jpeg" alt="Nahaufnahme der Tracking-Schnittstelle und Datenvisualisierung">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Echtzeit-Tracking-Visualisierung</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;ruminations&#x2F;ruminations3.jpeg" alt="Der analoge Wachhund-Setup mit Kamera und Display">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Das analoge Wachhund-Überwachungssystem</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Code_und_Dokumentation">Code und Dokumentation</h2>
|
||||||
|
<p>Möchtest du das Projekt erkunden oder dazu beitragen? Schau dir unser Code-Repository an:</p>
|
||||||
|
<div class="buttons centered">
|
||||||
|
<a class="big colored external" href="https://github.com/arontaupe/ruminations">Projekt auf GitHub</a>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -48,7 +48,7 @@ For the future, the trailer is supposed to tend more towards vegan dishes, as a
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Autoimmunitaet</title>
|
<title>Autoimmunität</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -73,35 +73,108 @@ For the future, the trailer is supposed to tend more towards vegan dishes, as a
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/autoimmunitaet/"/>
|
||||||
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
<id>https://aron.petau.net/de/project/autoimmunitaet/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="How_do_we_design_our_Commute?">How do we design our Commute?</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/autoimmunitaet/"><h2 id="Wie_gestalten_wir_unseren_Weg_zur_Arbeit?">Wie gestalten wir unseren Weg zur Arbeit?</h2>
|
||||||
<p>In the context of the Design and Computation Studio Course <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> and me developed a concept for a playful critique of the traffic decisions we take and the idols we embrace.<br />
|
<p>Im Rahmen des Design and Computation Studio Kurses haben <a href="https://millikeil.eu">Milli Keil</a>, <a href="https://marlagaiser.de">Marla Gaiser</a> und ich ein Konzept für eine spielerische Kritik an unseren Verkehrsentscheidungen und den Idolen, die wir verehren, entwickelt.<br />
|
||||||
It should open up questions of whether the generations to come should still grow up playing on traffic carpets that are mostly grey and whether the <a href="https://letztegeneration.org">Letzte Generation</a>, a political climate activist group in Germany receives enough recognition for their acts.</p>
|
Es soll die Frage aufwerfen, ob kommende Generationen weiterhin auf überwiegend grauen Verkehrsteppichen aufwachsen sollten und ob die <a href="https://letztegeneration.org">Letzte Generation</a>, eine politische Klimaaktivistengruppe in Deutschland, genügend Anerkennung für ihre Aktionen erhält.</p>
|
||||||
<p>A call for solidarity.</p>
|
<p>Ein Aufruf zur Solidarität.</p>
|
||||||
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
<p><img src="/assets/images/autoimmunitaet/autoimmunitaet-2.jpg" alt="The action figures" />
|
||||||
{: .center}</p>
|
{: .center}</p>
|
||||||
<h2 id="The_scan_results">The scan results</h2>
|
<h2 id="Die_Scan-Ergebnisse">Die Scan-Ergebnisse</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunität: Letzte Generation Actionfigure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/3916ba600ef540d0a874506bf61726f2/embed?ui_hint=0&ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="The_Action_Figure,_ready_for_printing">The Action Figure, ready for printing</h2>
|
<h2 id="Die_Actionfigur,_bereit_zum_Drucken">Die Actionfigur, bereit zum Drucken</h2>
|
||||||
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
<div class="sketchfab-embed-wrapper"> <iframe title="Autoimmunitaet: Letzte Generation Action Figure" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share width="800" height="600" src="https://sketchfab.com/models/deec1b2899af424c91f85cbf35952375/embed?ui_theme=dark&dnt=1"> </iframe> </div>
|
||||||
<h2 id="Autoimmunitaet">Autoimmunitaet</h2>
|
<h2 id="Autoimmunität">Autoimmunität</h2>
|
||||||
<p>Autoimmunity is a term for defects, that are produced by a dysfunctional self-tolerance of a system.<br />
|
<p>Autoimmunität ist ein Begriff für Defekte, die durch eine gestörte Selbsttoleranz eines Systems entstehen.<br />
|
||||||
This dysfunction causes the immune system to stop accepting certain parts of itself and build antibodies instead.<br />
|
Diese Störung führt dazu, dass das Immunsystem bestimmte Teile von sich selbst nicht mehr akzeptiert und stattdessen Antikörper bildet.<br />
|
||||||
An invitation for a speculative playful interaction.</p>
|
Eine Einladung zu einer spekulativen, spielerischen Interaktion.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-1.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-3.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-5.jpg" alt="Our action figures in action" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-6.jpg" alt="Our action figures in action" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-7.jpg" alt="Our action figures in action" />
|
|
||||||
<img src="https://aron.petau.net/de/project/autoimmunitaet/autoimmunitaet-8.jpg" alt="Our action figures in action" /></p>
|
|
||||||
<h2 id="The_Process">The Process</h2>
|
|
||||||
<p>The figurines are 3D Scans of ourselves, in various typical poses of the Letzte Generation.<br />
|
|
||||||
We used photogrammetry to create the scans, which is a technique that uses a lot of photos of an object to create a 3D model of it.<br />
|
<li class="gallery-item">
|
||||||
We used the app <a href="https://polycam.ai">Polycam</a> to create the scans using IPads and their inbuilt Lidar scanners.</p>
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-1.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im urbanen Umfeld</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-3.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in Protestszenen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-5.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Detailansicht der Protest-Actionfiguren</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-6.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren im Zusammenspiel mit urbanen Elementen</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-7.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Nahaufnahme der Actionfiguren-Details</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;autoimmunitaet&#x2F;autoimmunitaet-8.jpg" alt="Unsere Actionfiguren in Aktion">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">Actionfiguren in einer Protestsituation</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="Der_Prozess">Der Prozess</h2>
|
||||||
|
<p>Die Figuren sind 3D-Scans von uns selbst in verschiedenen typischen Posen der Letzten Generation.<br />
|
||||||
|
Wir verwendeten Photogrammetrie für die Scans, eine Technik, die viele Fotos eines Objekts nutzt, um ein 3D-Modell davon zu erstellen.<br />
|
||||||
|
Wir nutzten die App <a href="https://polycam.ai">Polycam</a>, um die Scans mit iPads und deren eingebauten Lidar-Sensoren zu erstellen.</p>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Dreams of Cars</title>
|
<title>Träume von Autos</title>
|
||||||
<published>2023-06-20T00:00:00+00:00</published>
|
<published>2023-06-20T00:00:00+00:00</published>
|
||||||
<updated>2023-06-20T00:00:00+00:00</updated>
|
<updated>2023-06-20T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -114,27 +187,113 @@ We used the app <a href="https://polycam.ai">Polycam&l
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/dreams-of-cars/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/dreams-of-cars/"/>
|
||||||
<id>https://aron.petau.net/de/project/dreams-of-cars/</id>
|
<id>https://aron.petau.net/de/project/dreams-of-cars/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/dreams-of-cars/"><h2 id="Photography">Photography</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/dreams-of-cars/"><h2 id="Fotografie">Fotografie</h2>
|
||||||
<p>In the context of the course "Fotografie Elementar" with Sebastian Herold I developed a small concept of urban intervention.<br />
|
<p>Im Rahmen des Kurses "Fotografie Elementar" bei Sebastian Herold entwickelte ich ein kleines Konzept für eine urbane Intervention.<br />
|
||||||
The results were exhibited at the UdK Rundgang 2023 and are also visible here.</p>
|
Die Ergebnisse wurden beim UdK Rundgang 2023 ausgestellt und sind auch hier zu sehen.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/dreams-of-cars/suv_door-1.jpg" alt="The gallery piece" /></p>
|
<p><img src="https://aron.petau.net/de/project/dreams-of-cars/suv_door-1.jpg" alt="Das Galeriestück" /></p>
|
||||||
<h2 id="Dreams_of_Cars">Dreams of Cars</h2>
|
<h2 id="Träume_von_Autos">Träume von Autos</h2>
|
||||||
<p>These are not just cars.<br />
|
<blockquote>
|
||||||
They are Sport Utility Vehicles.<br />
|
<p>Dies sind nicht einfach nur Autos.<br />
|
||||||
What might they have had as hopes and dreams on the production line?<br />
|
Es sind Sport Utility Vehicles.<br />
|
||||||
Do they dream of drifting in dusty deserts?<br />
|
Was mögen sie wohl für Hoffnungen und Träume am Fließband gehabt haben?<br />
|
||||||
Climbing steep rocky canyon roads?<br />
|
Träumen sie davon, durch staubige Wüsten zu driften?<br />
|
||||||
Sliding down sun-drenched dunes?<br />
|
Steile, felsige Canyonstraßen zu erklimmen?<br />
|
||||||
Discovering remote pathways in natural grasslands?<br />
|
Sonnendurchflutete Dünen hinabzugleiten?<br />
|
||||||
Nevertheless, they did end up in the parking spots here in Berlin.</p>
|
Entlegene Pfade in natürlichen Graslandschaften zu entdecken?<br />
|
||||||
<p>What drove them here?</p>
|
Dennoch landeten sie hier auf den Parkplätzen in Berlin.</p>
|
||||||
<p><img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-1.jpg" alt="Dreams of Cars 1" />
|
<p>Was trieb sie hierher?</p>
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-2.jpg" alt="Dreams of Cars 2" />
|
</blockquote>
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-3.jpg" alt="Dreams of Cars 3" />
|
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-4.jpg" alt="Dreams of Cars 4" />
|
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-5.jpg" alt="Dreams of Cars 5" />
|
<div id="image-gallery">
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-6.jpg" alt="Dreams of Cars 6" />
|
<ul class="gallery">
|
||||||
<img src="https://aron.petau.net/de/project/dreams-of-cars/Dreams_of_Cars-7.jpg" alt="Dreams of Cars 7" /></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-1.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-1.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV träumt von Wüstenabenteuern</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-2.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-2.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV stellt sich Bergpfade vor</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-3.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-3.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV sehnt sich nach Geländefahrten</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-4.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-4.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV fantasiert von wildem Terrain</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-5.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-5.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV träumt von unberührter Natur</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-6.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-6.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV sehnt sich nach Naturausblicken</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="gallery-item">
|
||||||
|
<a href="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-7.jpg" class="lightbox" target="_blank">
|
||||||
|
<img src="https:&#x2F;&#x2F;aron.petau.net&#x2F;de&#x2F;project&#x2F;dreams-of-cars&#x2F;Dreams_of_Cars-7.jpg" alt="Träume von Autos">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<p class="caption">SUV wünscht sich Wildnisabenteuer</p>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</content>
|
</content>
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -787,7 +787,7 @@ For long-distance information transfer, it is considered inferior to Glass fiber
|
||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="de">
|
<entry xml:lang="de">
|
||||||
<title>Übersetzung: Chatbot</title>
|
<title>Chatbot</title>
|
||||||
<published>2020-07-15T00:00:00+00:00</published>
|
<published>2020-07-15T00:00:00+00:00</published>
|
||||||
<updated>2020-07-15T00:00:00+00:00</updated>
|
<updated>2020-07-15T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
|
@ -800,33 +800,33 @@ For long-distance information transfer, it is considered inferior to Glass fiber
|
||||||
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/chatbot/"/>
|
<link rel="alternate" type="text/html" href="https://aron.petau.net/de/project/chatbot/"/>
|
||||||
<id>https://aron.petau.net/de/project/chatbot/</id>
|
<id>https://aron.petau.net/de/project/chatbot/</id>
|
||||||
|
|
||||||
<content type="html" xml:base="https://aron.petau.net/de/project/chatbot/"><h2 id="Guru_to_Go:_a_speech-controlled_meditation_assistant_and_sentiment_tracker">Guru to Go: a speech-controlled meditation assistant and sentiment tracker</h2>
|
<content type="html" xml:base="https://aron.petau.net/de/project/chatbot/"><h2 id="Guru_to_Go:_Ein_sprachgesteuerter_Meditations-Assistent_und_Stimmungs-Tracker">Guru to Go: Ein sprachgesteuerter Meditations-Assistent und Stimmungs-Tracker</h2>
|
||||||
<iframe
|
<iframe
|
||||||
class="youtube-embed"
|
class="youtube-embed"
|
||||||
src="https://www.youtube-nocookie.com/embed/R73vAH37TC0"
|
src="https://www.youtube-nocookie.com/embed/R73vAH37TC0"
|
||||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||||
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
|
||||||
</iframe>
|
</iframe>
|
||||||
<p>Here, you see a Demo video of a voice-controlled meditation assistant that we worked on in the course "Conversational Agents and speech interfaces"</p>
|
<p>Hier sehen Sie ein Demo-Video eines sprachgesteuerten Meditations-Assistenten, den wir im Kurs "Conversational Agents and Speech Interfaces" entwickelt haben</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://w3o.ikw.uni-osnabrueck.de/scheinmaker/export/details/76/67">Course Description</a>
|
<a class="colored external" href="https://w3o.ikw.uni-osnabrueck.de/scheinmaker/export/details/76/67">Kursbeschreibung</a>
|
||||||
</div>
|
</div>
|
||||||
<p>The central goal of the entire project was to make the Assistant be entirely speech controlled, such that the phone needn't be touched while immersing yourself in meditation.</p>
|
<p>Das zentrale Ziel des gesamten Projekts war es, den Assistenten vollständig sprachgesteuert zu gestalten, sodass das Telefon während der Meditation nicht berührt werden muss.</p>
|
||||||
<p>The Chatbot was built in Google Dialogflow, a natural language understanding engine that can interpret free text input and identify entities and intents within it,
|
<p>Der Chatbot wurde in Google Dialogflow entwickelt, einer Engine für natürliches Sprachverständnis, die freie Texteingaben interpretieren und darin Entitäten und Absichten erkennen kann.
|
||||||
We wrote a custom python backend to then use these evaluated intents and compute individualized responses.</p>
|
Wir haben ein eigenes Python-Backend geschrieben, um diese ausgewerteten Absichten zu nutzen und individualisierte Antworten zu berechnen.</p>
|
||||||
<p>The resulting application runs in Google Assistant and can adaptively deliver meditations, visualize sentiment history and comprehensively inform about meditation practices. Sadly, we used beta functionality from the older "Google Assistant" Framework, which got rebranded months after by Google into "Actions on Google" and changed core functionality requiring extensive migration that neither Chris, my partner in this project, nor I found time to do.</p>
|
<p>Die resultierende Anwendung läuft im Google Assistant und kann adaptiv Meditationen bereitstellen, den Stimmungsverlauf visualisieren und umfassend über Meditationspraktiken informieren. Leider haben wir Beta-Funktionen des älteren "Google Assistant" Frameworks verwendet, das Monate später von Google in "Actions on Google" umbenannt wurde und Kernfunktionalitäten änderte, die eine umfangreiche Migration erforderten, für die weder Chris, mein Partner in diesem Projekt, noch ich Zeit fanden.</p>
|
||||||
<p>Nevertheless, the whole Chatbot functioned as a meditation player and was able to graph and store recorded sentiments over time for each user.</p>
|
<p>Dennoch funktionierte der gesamte Chatbot als Meditations-Player und konnte aufgezeichnete Stimmungen für jeden Benutzer über die Zeit grafisch darstellen und speichern.</p>
|
||||||
<p>Attached below you can also find our final report with details on the programming and thought process.</p>
|
<p>Unten angehängt finden Sie auch unseren Abschlussbericht mit Details zur Programmierung und zum Gedankenprozess.</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://acrobat.adobe.com/link/track?uri=urn:aaid:scds:US:23118565-e24e-4586-b0e0-c0ef7550a067">Read the full report</a>
|
<a class="colored external" href="https://acrobat.adobe.com/link/track?uri=urn:aaid:scds:US:23118565-e24e-4586-b0e0-c0ef7550a067">Den vollständigen Bericht lesen</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="colored external" href="https://github.com/cstenkamp/medibot_pythonbackend">Look at the Project on GitHub</a>
|
<a class="colored external" href="https://github.com/cstenkamp/medibot_pythonbackend">Das Projekt auf GitHub ansehen</a>
|
||||||
</div>
|
</div>
|
||||||
<blockquote class="note">
|
<blockquote class="note">
|
||||||
<p class="alert-title">
|
<p class="alert-title">
|
||||||
<i class="icon"></i>Anmerkung</p>
|
<i class="icon"></i>Anmerkung</p>
|
||||||
<p>After this being my first dip into using the Google Framework for the creation of a speech assistant and encountering many problems along the way that partly found their way also into the final report, now I managed to utilize these explorations and am currently working to create <a href="/allei/">Ällei</a>, another chatbot with a different focus, which is not realized within Actions on google, but will rather be getting its own react app on a website.</p>
|
<p>Nachdem dies mein erster Einblick in die Nutzung des Google Frameworks für die Erstellung eines Sprachassistenten war und ich dabei auf viele Probleme stieß, die teilweise auch Eingang in den Abschlussbericht fanden, konnte ich diese Erfahrungen nutzen und arbeite derzeit an <a href="/allei/">Ällei</a>, einem weiteren Chatbot mit einem anderen Schwerpunkt, der nicht innerhalb von Actions on Google realisiert wird, sondern eine eigene React-App auf einer Website erhält.</p>
|
||||||
|
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</content>
|
</content>
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue