git.s-ol.nu mmm / e5341f6
lots of writing s-ol 3 years ago
18 changed file(s) with 428 addition(s) and 88 deletion(s). Raw diff Collapse all Expand all
11 problem-statement
22 framework
33 mmmfs
4 examples
45 evaluation
6 references
57 ba_log
6 examples
7 references
0 Drawbacks & Future Work
1 -----------------------
0 evaluation
1 ==========
22
3 There are multiple limitations in the proposed system that have become obvious in developing and working with the system.
3 ## examples
4 ### publishing and blogging
5 Since mmmfs has grown out of the need for a versatile CMS for a personal publishing website, it is not surprising to
6 to see that it is still up to that job. Nevertheless it is worth taking a look at its strengths and weaknesses in this
7 context:
8
9 The system has proven itself perfect for publishing small- and medium-size articles and blog posts, especially for its
10 ability to flexibly transclude content from any source. This includes diagrams (such as in this thesis),
11 videos (as in the documentation in the appendix), but also less conventional media such as
12 interactive diagrams <mmm-link path="../references/aspect-ratios"></mmm-link> or twitter postings.
13
14 On the other hand, the development of the technical framework for this very thesis has posed greater challenges.
15 In particular, the implementation of the reference and sidenote systems are brittle and uninspiring.
16
17 This is mostly due to the approach of splitting up the thesis into a multitude of fileders, and the current lack of
18 mechanisms to re-capture information spread throughout the resulting history effectively.
19 Another issue is that the system is currently based on the presumption that content can and should be interpreted
20 separate from its parent and context in most cases. This has made the implementation of sidenotes less idiomatic
21 than initially anticipated.
22
23 ### pinwall
24 The pinwall example shows some strenghts of the mmmfs system pretty convincingly.
25 The type coercion layer completely abstracts away the complexities of transcluding different types of content,
26 and only positioning and sizing the content, as well as enabling interaction, remain to handle in the pinwall fileder.
27
28 A great benefit of the use of mmmfs versus other technology for realising this example is that the example can
29 seamlessly embed not only plain text, markdown, images, videos, and interactive widgets, but also follow links to all
30 of these types of content, and display them meaningfully. Accomplishing this with traditional frameworks would take
31 great effort, where mmmfs benefits from the reuse of these conversions across the whole system.
32
33 In addition, the script for the pinwall folder is 120 lines long, of which 30 lines are styling, while almost 60 lines
34 take care of capturing and handling JS events. The bulk of complexity is therefore shifted towards interacting with the
35 UI layer (in this case the browser), which could feasibly be simplified through a custom abstraction layer or the use of
36 output means other than the web.
37
38 ### slideshow
39 A simplified image slideshow example consists of only 20 lines of code and demonstrates how the reactive component
40 framework simplifies the generation of ad-hoc UI dramatically:
41
42 ```moon
43 import ReactiveVar, text, elements from require 'mmm.component'
44 import div, a, img from elements
45
46 =>
47 index = ReactiveVar 1
48
49 prev = (i) -> math.max 1, i - 1
50 next = (i) -> math.min #@children, i + 1
51
52 div {
53 div {
54 a 'prev', href: '#', onclick: -> index\transform prev
55 index\map (i) -> text " image ##{i} "
56 a 'next', href: '#', onclick: -> index\transform next
57 },
58 index\map (i) ->
59 child = assert @children[i], "image not found!"
60 img src: @children[i]\gett 'URL -> image/png'
61 }
62 ```
63
64 The presentation framework is a bit longer, but the added complexity is again required to deal with browser quirks,
65 such as the fullscreen API and sizing content proportionally to the viewport size.
66 The parts of the code dealing with the content are essentially identical, except that content is transcluded via the
67 more general `mmm/dom` type-interface, allowing for a greater variety of types of content to be used as slides.
68
69 ## general concerns
70 While the system has proven pretty successfuly and moldable to the different use-cases that it has been tested in,
71 there are also limitations in the proposed system that have become obvious in developing and working with the system.
472 Some of these have been anticipated for some time and concrete research directions for solutions are apparent,
573 while others may be intrinsic limitations in the approach taken.
674
1179 For example if a fileder conatining multiple images wants to provide custom UI for each image when viewed independently,
1280 this code has to either be attached to every image individually (and redundantly), or added as a global convert.
1381 To make sure this convert does not interfere with images elsewhere in the system, it would be necessary to introduce
14 a new type and change the images to use it, which may present yet more propblems and works against the principle of
82 a new type and change the images to use it, which may present more problems yet and works against the principle of
1583 compatibility the system has been constructed for.
1684
1785 A potential direction of research in the future is to allow specifying *converts* as part of the fileder tree.
2189 Additionally it could be made possible to use this mechanism to locally override *converts* inherited from
2290 further up in the tree, for example to specialize types based on their context in the system.
2391
92 The biggest downside to this approach would be that it presents another pressure factor for,
93 while also reincforcing, the hierarchical organization of data,
94 thereby exacerbating the limits of hierarchical structures.<div class="sidenote">see also
95 <mmm-embed raw path="../references/alternatives-to-trees"></mmm-embed></div>
96
2497 ### code outside of the system
25 At the moment, a large part of the mmmfs codebase is still separate from the content, and developed outside of mmmfs itself.
26 This is a result of the development process of mmmfs and was necessary to start the project as the filesystem itself matured,
27 but has become a limitation of the user experience now:
28 Potential users of mmmfs would generally start by becoming familiar with the operation of mmmfs from within the system,
29 as this is the expected (and designated) experience developed for them.
30 All of the code that lives outside of the mmmfs tree is therefore invisible and opaque to them,
31 actively limiting their understanding of, and the customizability of the system.
98 At the moment, a large part of the mmmfs codebase is still separate from the content, and developed outside of mmmfs
99 itself. This is a result of the development process of mmmfs and was necessary to start the project as the filesystem
100 itself matured, but has become a limitation of the user experience now: Potential users of mmmfs would generally start
101 by becoming familiar with the operation of mmmfs from within the system, as this is the expected (and designated)
102 experience developed for them. All of the code that lives outside of the mmmfs tree is therefore invisible and opaque
103 to them, actively limiting their understanding, and thereby the customizability, of the system.
32104
33 This is particularily relevant for the global set of *converts*, and the layout used to render the web view,
34 which are expected to undergo changes as users adapt the system to their own content types and domains of interest,
35 as well as their visual identity, respectively.
105 This weakness represents a failure to (fully) implement the quality of a "Living System" as proposed by
106 *Ink and Switch*<mmm-link path="../references/inkandswitch"></mmm-link>.
36107
37 ### superficial type system
108 In general however, some portion of code may always have to be left outside of the system.
109 This also wouldn't necessarily represent a problem, but in this case it is particularily relevant
110 for the global set of *converts* (see above), as well as the layout used to render the web view,
111 both of which are expected to undergo changes as users adapt the system to their own content types and
112 domains of interest, as well as their visual identity, respectively.
113
114 ### type system
38115 The currently used type system based on strings and pattern matching has been largely satisfactory,
39 but has proven problematic for satisfying some anticipated use cases.
40 It should be considered to switch to a more intricate, structural type system that allows encoding more concrete meta-data
41 alongside the type, and to match *converts* based on a more flexible scheme of pattern matching.
116 but has proven problematic for some anticipated use cases.
117 It should be considered to switch to a more intricate,
118 structural type system that allows encoding more concrete meta-data alongside the type,
119 and to match *converts* based on a more flexible scheme of pattern matching.
42120 For example it is envisaged to store the resolution of an image file in its type.
43121 Many *converts* might choose to ignore this additional information,
44122 but others could use this information to generate lower-resolution 'thumbnails' of images automatically.
45123 Using these mechanisms for example images could be requested with a maximum-resolution constraint to save on bandwidth
46124 when embedded in other documents.
47125
48 ### type-coercion alienates
126 ### type-coercion
49127 By giving the system more information about the data it is dealing with,
50128 and then relying on the system to automatically transform between data-types,
51129 it is easy to lose track of which format data is concretely stored in.
52130 In much the same way that the application-centric paradigm alienates users from an understanding
53131 and feeling of ownership of their data by overemphasizing the tools in between,
54 the automagical coercion of data types introduces distance between the user and an understanding of the data in the system.
55 It remains to be seen whether this can be mitigated with careful UX and UI design.
132 the automagical coercion of data types introduces distance between the user and
133 an understanding of the data in the system.
134 This poses a threat to the transparency of the system, and a potential lack of the quality of "Embodiment" (see above).
56135
57 ### discrepancy between viewing/interacting and editing of content
136 Potential solutions could be to communicate the conversion path clearly and explicitly together with the content,
137 as well as making this display interactive to encourage experimentation with custom conversion queries.
138 Emphasising the conversion process more strongly in this way might be able to turn this feature from an opaque
139 hindrance into a transparent tool using careful UX and UI design.
140
141 ### editing
58142 Because many *converts* are not necessarily reversible,
59143 it is very hard to implement generic ways of editing stored data in the same format it is viewed.
60144 For example, the system trivially converts markdown-formatted text sources into viewable HTML markup,
61145 but it is hardly possible to propagate changes to the viewable HTML back to the markdown source.
62 This problem worsens when the conversion path becomes more complex:
146 This particular instance of the problem might be solvable using a Rich-Text editor, but the general problem
147 worsens when the conversion path becomes more complex:
63148 If the markdown source was fetched via HTTP from a remote URL (e.g. if the facet's type was `URL -> text/markdown`),
64149 it is not possible to edit the content at all, since the only data owned by the system is the URL string itself,
65150 which is not part of the viewable representation at all.
67152 the code itself is not visible to the user when interacting with the viewable representation,
68153 and if the user wishes to change parts of the representation the system is unable to relate these changes to elements
69154 of the code or assist the user in doing so.
155
156 However even where plain text is used and edited, a shortcoming of the current approach to editing is evident:
157 The content editor is wholly separate from the visible representation, and only facets of the currently viewed
158 fileder can be edited. This means that content cannot be edited in its context, which is particularily annoying
159 due to the fragmentation of content that mmmfs encourages.
160
70161 As a result, the experiences of interacting with the system at large is still a very different experience than
71 editing content (and thereby extending the system) in it.
72 This is expected to represent a major hurdle for users getting started with the system,
73 and is a major shortcoming in enabling end-user programming as set as a goal for this project.
162 editing content (and thereby extending the system) in it. This is expected to represent a major hurdle for users
163 getting started with the system, and is a major shortcoming in enabling end-user programming as set as a goal for
164 this project. A future iteration should take care to reconsider how editing can be integrated more holistically
165 with the other core concepts of the design.
0 # examples
1 To illustrate the capabilities of the proposed system, and to compare the results with the framework introduced above,
2 a number of example use cases have been chosen and implemented from the perspective of a user.
3 In the following section I will introduce these use cases and briefly summarize the implementation
4 approach in terms of the capabilities of the proposed system.
5
6 ## publishing and blogging
7 ### blogging
8 Blogging is pretty straightforward, since it generally just involves publishing lightly-formatted text,
9 interspersed with media such as images and videos or perhaps social media posts.
10 Markdown is a great tool for this job, and has been integrated in the system to much success:
11 There are two different types registered with *converts*: `text/markdown` and `text/markdown+span`.
12 They both render to HTML (and DOM nodes), so they are immediately viewable as part of the system.
13 The only difference for `text/markdown+span` is that it is limited to a single line,
14 and doesn't render as a paragraph but rather just a line of text.
15 This makes it suitable for denoting formatted-text titles and other small strings of text.
16
17 The problem of embedding other content together with text comfortably is also solved easily,
18 becase Markdown allows embedding arbitrary HTML in the document.
19 This made it possible to define a set of pseudo-HTML elements in the Markdown-convert,
20 `<mmm-embed>` and `<mmm-link>`, which respectively embed and link to other content native to mmm.
21
22 ### scientific publishing
23 <div class="sidenote">
24 One of the 'standard' solutions, <a href="https://www.latex-project.org/">LaTeX</a>,
25 is arguably at least as complex as the mmm system proposed here, but has a much narrower scope,
26 since it does not support interaction.
27 </div>
28 Scientific publishing is notoriously complex, involving not only the transclusion of diagrams
29 and other media, but generally requiring precise and consistent control over formatting and layout.
30 Some of these complexities are tedious to manage, but present good opportunities for programmatic
31 systems and media to do work for the writer.
32
33 One such topic is the topic of references.
34 References appear in various formats at multiple positions in a scientific document;
35 usually they are referenced via a reduced visual form within the text of the document,
36 and then shown again with full details at the end of the document.
37
38 For the sake of this thesis, referencing has been implemented using a subset of the popular
39 BibTeX format for describing citations. Converts have been implemented for the `text/bibtex`
40 type to convert to a full reference format (to `mmm/dom`) and to an inline side-note reference
41 (`mmm/dom+link`) that can be transcluded using the `<mmm-link>` pseudo-tag.
42
43 For convenience, a convert from the `URL -> cite/acm` type has been provided to `URL -> text/bibtex`,
44 which generates links to the ACM Digital Library<mmm-link path="../references/acm-dl"></mmm-link>
45 API for accessing BibTeX citations for documents in the library.
46 This means that it is enough to store the link to the ACM DL entry in mmmfs,
47 and the reference will automatically be fetched (and track potential remote corrections).
48
49 ## pinwall
50 In many situations, in particular for creative work, it is often useful to compile resources of
51 different types for reference or inspiration, and arrange them spacially so that they can be viewed
52 at a glance or organized into different contexts etc.
53 Such a pinwall could serve for example to organise references to articles,
54 to collect visual inspiration for a moodboard etc.
55
56 As a collection, the Pinwall is primarily mapped to a Fileder in the system.
57 Any content that is placed within can then be rendered by the Pinwall,
58 which can constrain every piece of content to a rectangular piece on its canvas.
59 This is possible through a simple script, e.g. of the type `text/moonscript -> fn -> mmm/dom`,
60 which enumerates the list of children, wraps each in such a rectangular container,
61 and outputs the list of containers as DOM elements.
62
63 The position and size of each panel are stored in an ad-hoc facet, encoded in the JSON data format:
64 `pinwall_info: text/json`. This facet can then set on each child and accessed whenever the script is called
65 to render the children, plugging the values within the facet into the visual styling of the document.
66
67 The script can also set event handlers that react to user input while the document is loaded,
68 and allow the user to reposition and resize the individual pinwall items by clicking and dragging
69 on the upper border or lower right-hand corner respectively.
70 Whenever a change is made the event handler can then update the value in the `pinwall_info` facet,
71 so that the script places the content at the updated position and size next time it is invoked.
72
73 ## slideshow
74 Another common use of digital documents is as aids in a verbal presentation.
75 These often take the form of slideshows, for the creation of which a number of established applications exist.
76 In simple terms, a slideshow is simply a linear series of screen-sized documents, that can be
77 advanced (and rewound) one by one using keypresses.
78
79 The implementation of this is rather straightforward as well.
80 The slideshow as a whole becomes a fileder with a script that generates a designated viewport rectangle,
81 as well as a control interface with keys for advancing the active slide.
82 It also allows putting the browser into fullscreen mode to maximise screenspace and remove visual elements
83 of the website that may distract from the presentation, and register an event handler for keyboard accelerators
84 for moving through the presentation.
85
86 Finally the script simply embeds the first of its child-fileders into the viewport rect.
87 One the current slide is changed, the next embedded child is simply chosen.
88
89 ## code documentation
90 /meta/mmm.dom/:%20text/html+interactive
0 {"x": 35.0, "y": 209.0, "w": 205.0, "h": 155.0}
0 {"x": 94.0, "y": 265.0, "w": 205.0, "h": 155.0}
0 {"x": 91.0, "y": 17.0, "w": 186.0, "h": 128.0}
0 {"x": 53.0, "y": 64.0, "w": 396.0, "h": 74.0}
0 {"x": 263.0, "y": 210.0, "w": 353.0, "h": 295.0}
0 {"x": 534.0, "y": 136.0, "w": 387.0, "h": 218.0}
2727 },
2828 }
2929
30 div for child in *@children
30 content = for child in *@children
3131 preview child
32
33 table.insert content, 1, (@gett 'intro: mmm/dom')
34
35 div content
0 Two of the earliest wholistic computing systems, the Xerox Alto and Xerox Star, both developed at Xerox PARC and introduced in the 70s and early 80s, pioneered not only graphical user-interfaces, but also the "Desktop Metaphor".
1 The desktop metaphor presents information as stored in "Documents" that can be organized in folders and on the "Desktop". It invokes a strong analogy to physical tools.
2 One of the differences between the Xerox Star system and other systems at the time, as well as the systems we use currently, is that the type of data a file represents is directly known to the system.
3
4 <div class="sidenote"><mmm-embed raw path="../references/xerox-star"></mmm-embed></div>
5
6 > In a Desktop metaphor system, users deal mainly with data files, oblivious to the existence of programs.
7 > They do not "invoke a text editor", they "open a document".
8 > The system knows the type of each file and notifies the relevant application program when one is opened.
9 >
10 > The disadvantage of assigning data files to applications is that users sometimes want to operate on a file with a program other than
11 its "assigned" application. \[...\]
12 > Star's designers feel that, for its audience, the advantages of allowing users to forget
13 about programs outweighs this disadvantage.
14
15 Other systems at the time lacked any knowledge of the type of files,
16 and while mainstream operating systems of today have retro-fit the ability to associate and memorize the preferred applications to use for a given file based on it's name suffix, the intention of making applications a secondary, technical detail of working with the computer has surely been lost.
17
18 Another design detail of the Star system is the concept of "properties" that are stored for "objects" throughout the system (the objects being anything from files to characters or paragraphs).
19 These typed pieces of information are labelled with a name and persistently stored, providing a mechanism to store metadata such as user preference for ordering or defaut view of a folder for example.
20
21 ***
22
23 Fig. 8 - Star Retrospective
24
25 The earliest indirect influence for the Xerox Alto and many other systems of its time,
26 was the *Memex*. The *Memex* is a hypothetical device and system for knowledge management.
27 Proposed by Vannevar Bush in 1945, the concept predates much of the technology that later was used to implement many parts of the vision. In essence, the concept of hypertext was invented.
28
29 ***
30
31 One of the systems that could be said to have come closest to a practical implementation of the Memex might be Apple's *Hypercard*.
32
33 https://archive.org/details/CC501_hypercard
34
35 "So I can have the information in these stacks tied together in a way that makes sense"
36
37 In a demonstration video, the creators of the software showcase a system of stacks of cards that together implement, amongst others, a calendar (with yearly and weekly views), a list of digital business cards for storing phone numbers and addresses, and a todo list.
38 However these stacks of cards are not just usable by themselves, it is also demonstrated how stacks can link to each other in meaningful ways, such as jumping to the card corresponding to a specific day from the yearly calendar view, or automatically looking up the card corresponding to a person's first name from a mention of the name in the text on a different card.
39
40 Alongside Spreadsheets, *Hypercard* remains one of the most successful implementations of end-user programming, even today.
41 While it's technical abilities have been long matched and passed by other software (such as the ubiquitous HTML hypertext markup language), these technical successors have failed the legacy of *Hypercard* as an end-user tool:
42 while it is easier than ever to publish content on the web (through various social media and microblogging services), the benefits of hypermedia as a customizable medium for personal management have nearly vanished.
43 End-users do not create hypertext anymore.
44
45 The *UNIX Philosophy* <mmm-link path="../references/unix"></mmm-link>
46 describes the software design paradigm pioneered in the creation of the Unix operating system at the AT&T Bell Labs
47 research center in the 1960s. The concepts are considered quite influental and are still notably applied in the Linux community.
48 Many attempts at summaries exist, but the following includes the pieces that are especially relevant even today:
49
50 > Even though the UNIX system introduces a number of innovative programs and techniques, no single program or idea makes it work well.
51 > Instead, what makes it effective is the approach to programming, a philosophy of using the computer. Although that philosophy can't be
52 > written down in a single sentence, at its heart is the idea that the power of a system comes more from the relationships among programs
53 > than from the programs themselves. Many UNIX programs do quite trivial things in isolation, but, combined with other programs,
54 > become general and useful tools.
55
56 This approach has multiple benefits with regard to end-user programmability:
57 Assembling the system out of simple, modular pieces means that for any given task a user may want to implement,
58 it is very likely that preexisting parts of the system can help the user realize a solution.
59 Wherever such a preexisting part exists, it pays off designing it in such a way that it is easy to integrate for the user later.
60 Assembling the system as a collection of modular, interacting pieces also enables future growth and customization,
61 since pieces may be swapped out with customized or alternate software at any time.
62
63 ***
64
065 Based on this, a modern data storage and processing ecosystem should enable transclusion of both content and behaviours
166 between contexts.
267 Content should be able to be transcluded and referenced to facilitate the creation of flexible data formats and interactions,
873
974 While there are drawbacks to cloud-storage of data (as outlined above), the utility of distributed systems is acknowledged,
1075 and the system should therefore be able to include content and behaviours via the network.
11 This ability should be integrated deeply into the system, so that data can be treated independently of its origin and storage conditions,
12 with as little caveats as possible.
76 This ability should be integrated deeply into the system,
77 so that data can be treated independently of its origin and storage conditions, with as little caveats as possible.
1378
1479 The system needs to be browsable and understandable by users.
80
81 In order to provide users full access to their information as well as the computational infrastructure,
82 users need to be able to finely customize and reorganize the smallest pieces to suit their own purposes,
83 in other words: be able to program.
84
85 While there is an ongoing area of research focusing on the development of new programming paradigms,
86 methodologies and tools that are more accessible and cater to the wide
87 range of end-users<mmm-link path="../references/subtext"></mmm-link>,
88 in order to keep the scope of this work appropriate,
89 conventional programming languages are used for the time being.
90 Confidence is placed in the fact that eventually more user-friendly languages will be available and,
91 given the goal of modularity, should be implementable in a straightforward fashion.
92
93 *Ink and Switch* suggest three qualities for tools striving to support
94 end-user programming<mmm-link path="../references/inkandswitch"></mmm-link>:
95
96 - "Embodiment", i.e. reifying central concepts of the programming model as more concrete, tangible objects
97 in the digital space (for example through visual representation),
98 in order to reduce cognitive load on the user.
99 - "Living System", by which they seem to describe the malleability of a system or environment,
100 and in particular the ability to make changes at different levels of depth in the system with
101 very short feedback loops and a feeling of direct experience.
102 - "In-place toolchain", denoting the availability of tools to customize and author the experience,
103 as well as a certain accesibility of these tools, granted by a conceptual affinity between the
104 use of the tools and general 'passive' use of containing system at large.
0 # mmmfs
01 `mmmfs` seeks to improve on two fronts.
12
23 One of the main driving ideas of the mmmfs is to help data portability and use by making it simpler to inter-operate with different data formats.
34 This is accomplished using two major components, the *Type System and Coercion Engine* and the *Fileder Unified Data Model* for unified data storage and access.
45
5 # The Fileder Unified Data Model
6 ## the fileder unified data model
67 The Fileder Model is the underlying unified data storage model.
78 Like many data storage models it is based fundamentally on the concept of a hierarchical tree-structure.
89
1920 Some notable mechanism are:
2021
2122
22 - Suffixes in the name are often used to indicate what kind of data a file should contain.
23 However there is no standardization over this, and often a suffix is used for multiple incompatible versions of a file-format.
23 - Suffixes in the name are often used to indicate what kind of data a file should contain. However there is no standardization
24 - over this, and often a suffix is used for multiple incompatible versions of a file-format.
2425 - Many file-formats specify a specific data-pattern either at the very beginning or very end of a given file.
25 On unix systems the `libmagic` database and library of these so-called *magic constants* is commonly used to guess the file-type based on
26 these fragments of data.
27 - <div class="sidenote"><mmm-embed raw path="../references/linux-exec"></mmm-embed></div>
28 on UNIX systems files to be executed are checked by a variety of methods to determine which format would fit.
29 for script files, the "shebang" (`#!`) can be used to specify the program that should parse this file in the first line of the file.
26 On unix systems the `libmagic` database and library of these so-called *magic constants* is commonly used to guess
27 the file-type based on these fragments of data.
28 - on UNIX systems, files to be executed are checked by a variety of methods<mmm-link path="../references/linux-exec">
29 </mmm-link> in order to determine which format would fit. For example, script files, the "shebang" symbol, `#!`, can
30 be used to specify the program that should parse this file in the first line of the file.
3031
31 It should be clear already from this short list that to mainstream operating systems, as well as the applications running on them,
32 the format of a file is almost completely unknown and at best educated guesses can be made.
32 It should be clear already from this short list that to mainstream operating systems, as well as the applications
33 running on them, the format of a file is almost completely unknown and at best educated guesses can be made.
3334
3435 Because these various mechanisms are applied at different times by the operating system and applications,
3536 it is possible for files to be labelled as or considered as being in different formats at the same time by different components of the system.
36 This leads to confusion about the factual format of data among users (e.g. making unclear the difference between changing a file extension
37 and converting a file between formats [TODO: quote below]), but can also pose a serious security risk.
38 It is for example possible, under some circumstances,
39 that a file contains maliciously-crafted code and is treated as an executable by one software component,
40 while a security mechanism meant to detect such code determines the same file to be a legitimate image
41 (the file may in fact be valid in both formats).
42 [TODO: quote: "Abusing file formats; or, Corkami, the Novella", Ange Albertini, PoC||GTFO 7]
43
44 Users renaming extensions:
45 https://askubuntu.com/questions/166602/why-is-it-possible-to-convert-a-file-just-by-renaming-its-extension
46 https://www.quora.com/What-happens-when-you-rename-a-jpg-to-a-png-file
37 <div class="sidenote" style="margin-top: -5rem;">
38 The difference between changing a file extension and converting a file between two formats is commonly unclear to users,
39 for example: see <a href="https://askubuntu.com/questions/166602/why-is-it-possible-to-convert-a-file-just-by-renaming-its-extension">
40 Why is it possible to convert a file just by renaming it?</a>, https://askubuntu.com/q/166602
41 <!-- https://www.quora.com/What-happens-when-you-rename-a-jpg-to-a-png-file --> from 2019-12-18
42 </div>
43 This leads to confusion about the factual format of data among users, but can also pose a serious security risk:
44 Under some circumstances it is possible that a file contains maliciously-crafted code and is treated as an executable
45 by one software component, while a security mechanism meant to detect such code determines the same file to be a
46 legitimate image<mmm-link path="../references/poc-or-gtfo"></mmm-link> (the file may in fact be valid in both formats).
4747
4848 In mmmfs, the example above might look like this instead:
4949 <mmm-embed path="tree_mmmfs">schematic view of an example mmmfs tree</mmm-embed>
6868 Since *fileders* are the primary unit of data to be operated upon, *fileder* nesting emerges as a natural way of structuring complex data,
6969 both for access by the system and applications, as well as the user themself.
7070
71 # The Type System & Coercion Engine
71 ## the type system & coercion engine
7272 As mentioned above, *facets* store data alongside its *type*, and when applications require data from a *fileder*,
7373 they specify the *type* (or the list of *types*) that they require the type to be in.
7474
00 # motivation
1
2 The majority of users interacts with modern computing systems in the form of smartphones, laptops or desktop PCs,
3 using the mainstream operating systems Apple iOS and Mac OS X, Microsoft Windows or Android.
4
5 All of these operating systems share the concept of *Applications* (or *Apps*) as one of the core pieces of their interaction model.
6 Functionality and capabilities of the digital devices are bundled in, marketed, sold and distributed as *Applications*.
7
8 In addition, a lot of functionality is nowadays delivered in the form of *Web Apps*, which are used inside a *Browser* (which is an *Application* itself).
9 *Web Apps* often offer similar functionality to other *Applications*, but are subject to some limitations:
10 In most cases, they are only accessible or functional in the presence of a stable internet connection,
11 and they have very limited access to the resources of the physical computer they are running on.
12 For example, they usually cannot interact directly with the file system, hardware peripherals or other applications,
13 other than through a standardized set of interactions (e.g. selecting a file via a visual menu, capturing audio and video from a webcam, opening another website).
14
15 On the two Desktop Operating Systems (Mac OS X and Windows), file management and the concepts of *Documents* are still central
16 elements of interactions with the system. The two prevalent smartphone systems deemphasize this concept by only allowing access to the
17 data actually stored on the device through an app itself.
18
19 This focus on *Applications* as the primary unit of systems can be seen as the root cause of multiple problems:
20 Because applications are the products companies produce, and software represents a market of users,
21 developers compete on features integrated into their applications.
22
23 However this lack of control over data access is not the only problem the application-centric approach induces:
24 A consequence of this is that interoperability between applications and data formats is rare.
25 To stay relevant, monlithic software or software suites are designed to
26 As a result applications tend to accrete features rather then modularise and delegate to other software [P Chiusano].
27 Because applications are incentivised to keep customers, they make use of network effects to keep customers locked-in.
28 This often means re-implementing services and functinality that is already available
29 and integrating it directly in other applications produced by the same organisation.
30
31 This leads to massively complex file formats,
32 such as for example the .docx format commonly used for storing mostly
33 textual data enriched with images and videos on occasion.
34 The docx format is in fact an archive that can contain many virtual files internally,
35 such as the images and videos referenced before.
36 However this is completely unknown to the operating system,
37 and so users are unable to access the contents in this way.
38 As a result, editing an image contained in a word document is far from a trivial task:
39 first the document has to be opened in a word processing application,
40 then the image has to be exported from it and saved in its own, temporary file.
41 This file can then be edited and saved back to disk.
42 Once updated, the image may be reimported into the .docx document.
43 If the word-processing application supports this,
44 the old image may be replaced directly, otherwise the user may have to remove the old image,
45 insert the new one and carefully ensure that the positioning in the document remains intact.
46
47 https://www.theverge.com/2019/10/7/20904030/adobe-venezuela-photoshop-behance-us-sanctions
48
49
150 The application-centric computing paradigm common today is harmful to users,
251 because it leaves behind "intert" data as D. Cragg calls it:
352
1766 where they are subject to foreign laws and privacy concerns are intransparently handled by the companies.
1867 Should the company, for any reason, be unable or unwanting to continue servicing a customer,
1968 the data may be irrecoverably lost (or access prevented).
20
21 However this lack of control over data access is not the only problem the application-centric approach induces:
22 Another consequence is that interoperability between applications and data formats is hindered.
23 Because applications are incentivised to keep customers, they make use of network effects to keep customers locked-in.
24 As a result applications tend to accrete features rather then modularise and delegate to other software [P Chiusano].
25
26 This leads to massively complex file formats,
27 such as for example the .docx format commonly used for storing mostly
28 textual data enriched with images and videos on occasion.
29 The docx format is in fact an archive that can contain many virtual files internally,
30 such as the images and videos referenced before.
31 However this is completely unknown to the operating system,
32 and so users are unable to access the contents in this way.
33 As a result, editing an image contained in a word document is far from a trivial task:
34 first the document has to be opened in a word processing application,
35 then the image has to be exported from it and saved in its own, temporary file.
36 This file can then be edited and saved back to disk.
37 Once updated, the image may be reimported into the .docx document.
38 If the word-processing application supports this,
39 the old image may be replaced directly, otherwise the user may have to remove the old image,
40 insert the new one and carefully ensure that the positioning in the document remains intact.
41
42 In fact all of this is unnecessary, since the image had been stored in a compatible format on disk in the first place:
43 The system was simply unaware of this because the word document had to be archived into a single file
44 for ease of use by the word processor, and this single file is opaque to the system.
4569
4670 Data rarely really fits the metaphora of files very well,
4771 and even when it does it is rarely exposed to the user that way:
6892 integration into the users' other systems and customization,
6993 rather than lure into the walled-gardens of corporate ecosystems using network-effects.
7094
71 Services like this are
72
73 not even directly accessible to end-users anymore
74 Data is inert ko[Cragg 2016]
95 Data is inert [Cragg 2016]
7596
7697 Key points:
7798 - data ownership
99120 contained data is lost. It is for example a non-trivial and unenjoyable task to edit an image file contained
100121 in a word document in another application and have the changes apply to the document. In the same way,
101122 text contained in a photoshop document cannot be edited in a text editor of your choice.
123
124 Creative use of computer technology is limited to programmers, since applications constrain their users to the
125 paths and abilities that the developers anticipated and deemed useful.
126 Note that 'creative' here does not only encompass 'artistic': this applies to any field and means
127 that innovative use of technology is unlikely to happen as a result of practice by domain experts.
00 xerox-star
11 unix
2 subtext
3 inkandswitch
24 linux-exec
5 poc-or-gtfo
6 acm-dl
7 aspect-ratios
8 alternatives-to-trees
0 @web{acm-dl,
1 title = {ACM Digital Library},
2 url = {https://dl.acm.org},
3 }
0 @web{alternatives:to:trees,
1 title = {Alternatives to Trees},
2 url = {https://www.oocities.org/tablizer/sets1.htm},
3 author = {Jacobs, B.}
4 year = {2004},
5 visited = {2019-12-18},
6 }
0 @web{aspect:ratios,
1 title = {Aspect-ratio independent UIs},
2 url = {https://s-ol.nu/aspect-ratios},
3 author = {Bekic, S.}
4 year = {2019},
5 visited = {2019-12-18},
6 }
0 @web{inkandswitch,
1 title = {End-user Programming},
2 url = {https://inkandswitch.com/end-user-programming.html},
3 publisher = {Ink & Switch},
4 year = {2019},
5 visited = {2019-12-18},
6 }
0 @article{PoC:or:GTFO,
1 author = {Albertini, Ange},
2 title = {Abusing file formats; or, Corkami, the Novella},
3 year = {2015},
4 journal = {PoC||GTFO 7},
5 }
0 https://dl.acm.org/citation.cfm?id=1094851
2727 table.insert args, style: { 'list-style': 'none', 'font-size': '0.8em' }
2828 ol table.unpack args
2929
30 -- @TODO: s/filesystem/a way of organizing files/g
31 append h1 'mmmfs', style: { 'margin-bottom': 0 }
32 append p "a file and operating system to live in", style: { 'margin-top': 0, 'padding-bottom': '0.2em', 'border-bottom': '1px solid black' }
30 append h1 'Empowered End-User Computing', style: { 'margin-bottom': 0 }
31 append p "A Historical Investigation and Development of a File-System-Based Environment", style: { 'margin-top': 0, 'padding-bottom': '0.2em', 'border-bottom': '1px solid black' }
3332
3433 -- render a preview block
3534 do_section = (child) ->