Software sketching observation group yuppies [ssogy]
observing the sketching process of software
Software sketching observation group yuppies [ssogy]
observing the sketching process of software and people using sotware
Our service pr
We are ssogy, our research project is called otspos, this is our pad:
http://etherbox.local:9001/p/ssogy.md
flowchart rulers:
- * IBM ruler:
-
http://etherbox.local/home/pi/images/wednesday/P1040728.JPG
- left to right
- process - rectange
- input / output - skew square
- document - rectangle, but buttom line is a wave
- manual operation -
- communication link -
- preperation -
- merge - down-pointing triangle
- decision -- rhombus
- connector - small circle
- magnetic tape - circle
- display -
- auxilary operation - square
- arrow head - four triangle
- manual input -
- Punched Card - rectangle with left cut edge
- Punched tape - like a flag
-
- * Burroughs:
- Left to right, top to bottom:
-
- input/output = parallelogram
- Auxiliary operation = square / Gyrational square
- Preparation - hexagon
- Drum or disk - oval
- Process - rectangle
- Off-line storage - triangle
- On-line storage - like a quarter moon
- Display - one side oval and one side a little oval
- Manual input - rectangle, but top side askew / Irregular rectangle
- Document - rectangle, but buttom line is a wave
- Manual Operation - tilted rectangle
- Magnetic Tape - circle but with a square on the buttom right
- Connector - circle
- Communication Link - a z shaped thingy
- Decision - rhombus
- ... unknown x 2
- Punched Card
- Terminal
- Punched Tape
- Flow Direction
- Card Deck
Friday:
15:30 - 16:15
We started our undertaking by analysing the rulers by IBM and Burroughs. It seems that every symbol on the ruler with specific shape has special meaning. There are similarities between the shapes on the two rulers. On the Burroughs we found some symbols without description. We try to figure out their meaning. In total we counted on the X IBM and on the X Burroughs symbols. The specific literature explained us that engineer have a kind of standard for these symbols. These symbols are vocabulary
16:15 - 16:40
We started with analysing a educational flow chart as our case example (https://en.wikipedia.org/wiki/Flowchart#/media/File:LampFlowchart.svg). We could figure out what the arrows on the ruler means, they are used in compination with the decision symbol. In shape studies Triangles can direct movement based which way they point.Triangles can direct movement based which way they point. In the flowchart the options are represented by rectangles and quares in shape studies rectangles and squares are stable. They’re familiar and trusted shapes and suggest honesty.
16:45 - 17:00
We analysed a flow chart of a multiplication algorithm. Its content illustrating to shift left or right the number. The decision box instructing you to repeat it 32 times for the whole number!
The rectangles are again representing options, while the flexible factors are illustrated by the rhombus, the symbol for Decision. The final symbol with the title "Done" is illustrated by something inbetween a circle and a rectangle.
17:00 - 17:15
We realised in our undertaking we have to jump into an endo perspective and get more familiar with the task of flow chart drawing. For this flow chart we decided to go with the elevator to the 1st floor in the perspective of the elevator. To achieve this task we agreed to do field research and go to the 1st floor by elevator for real. Some of us used this opportunity to smoke a cigarette and to elaborate on the experience of the elevator. The final goal is the create a flow chart based on our observations, but we are going to do this tomorrow.
Documentary short Lift by Marc Isaacs / UK / 2001
https://www.youtube.com/watch?v=FJNAvyLCTik
17:15 - 17:40
To round off the day we ended on some general reflections. It seems that the different interpretations of symbols have been integrated in the early flowcharts of the 1920's until now (http://odec.ca/projects/2009/xing9t2/hist.htm ). To put this knowledge into practice we started to sketch out the flowchart on the wall using post-its.
Current research goals:
- Flowchart or intervention: what is it like to be a elevator
- zenit browser extension
- iconographic analyses of flow chart symbols
- call-flow && zenit modeling template for the drop-in clinic interview
Saturday:
11:00 - 11:40
We updated our research follower about our undertakings.
14:45-18:00
Zenit (h)modeling/analysis
A method derived from a removal of textual informating from flowcharts - related to previous work with Zenit: International Review of Arts and Culture (
https://monoskop.org/Zenit
) created by Ljubomir Micic, founder of Zenitism (Zenitizam ) an early 20th Century movement and zenith - an imaginary point directly "above" a particular location, on the imaginary celestial sphere (https://en.wikipedia.org/wiki/Zenith ).
Connection inspiration: https://helios.gsfc.nasa.gov/flowchart.html
Some historical experimetation examples:
http://www.e-w-n-s.net/minis-html/futuremillionaire/transition/v.gif
http://www.e-w-n-s.net/minis-html/futuremillionaire/transition/arrows.gif
http://www.e-w-n-s.net/minis-html/_navigation.htm
Material:
https://commons.wikimedia.org/wiki/Flow_chart
Afternoon:
Josef working on all the ideas at the same time
continue with flow chart elevator
Lara working on Zenit(h) modeling/analysis leading to call-flow template, and zenit browser plugin
Michaela helping out the flow chart of the elevator as a case study
Here are the flowchart symbols; http://etherbox.local:9001/p/flowchartsymbols.md
sources:
The Grammar of Shapes :
http://vanseodesign.com/web-design/visual-grammar-shapes/
How to create browser add on /or browser extension:
----------------------------------------------------------------------------
1) Make a new dir at your local machine lets called it adds-on & and a folder called icons
2) Make an icon for your browser extension
3) Open text editor and copy paste this jason code
4) You will need to modify the last two lines
to point to the etherbox.local & css to poit to the extension.css
5) Make an css script place your css there
On the browser:
1) Go to extension
about:addons
2) Load debugger from
about:debugging
3) Load your extension from your local machine
Press tools for add-ons and then to install add-on from a file
-----------------
manifest.json
{
"manifest_version": 2,
"name": "extension",
"version": "1.0",
"description": "this is the browser exteions",
"icons": {
"48": "icons/icon-name-here.png"
},
"content_scripts": [
{
"matches": ["*://etherbox.local/*"],
"css": ["extension.css"]
}
]
}