Welcome to Software Observatory Etherpad!

This pad text is synchronized as you type, so that everyone viewing this page sees the same text.

To prevent this pad from appearing in the etherdump, paste (or leave) the following code:

__NOPUBLISH__

.
Warning: DirtyDB is used. This is fine for testing but not recommended for production. -- To suppress these warning messages change suppressErrorsInPadText to true in your settings.json


S oftware 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:


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 th ese symbols. These symbols are vocab u lary 

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 sh ift 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 1 st floor in the perspective of the elevator. To achieve this task we agreed to do field research and go to the 1 st floor by elevator for real. Some of us used this opp o rtunity 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:


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": ["*://ether box .local/*"],
      " css ": ["extension. css "]
    }
  ]

}