- Jan 2024
-
greattransition.org greattransition.org
-
The second thing we are missing is our need to grow beyond our predominantly postmodern worldview
for - key insight - polycrisis - solving - postmodernism alone if insufficient
definition - postmodernism - worldview that champions decentralization, diversity, leaderless coalitions, horizontal networks, etc., etc. author: John Bunzl
claim - post modernism alone is no match for the dynamics of hierarchical Destructive Global Capitalism (DGC) - unity of required amongst the fragmented postmodern movements
-
- Nov 2020
-
gist.github.com gist.github.com
-
There was a major refactoring in the resolver (https://github.com/webpack/enhanced-resolve). This means the resolving option were changed too. Mostly simplification and changes that make it more unlikely to configure it incorrectly.
Linked from: https://stackoverflow.com/a/36574982/47185
-
- Dec 2015
-
dl.dropboxusercontent.com dl.dropboxusercontent.com
-
Roassal maps objects and connections to graphical elements and edges. In additions, values and metrics are represented in visual dimentions (e.g., width, height, intensity of graphical elements). Such mapping is an expressive way to build flexible and rich visualization. This chapter gives an overview of Roassal and its main API. It covers the essential concepts of Roassal, such as the view, elements, shapes, and interactions.
I would try a less technical introduction to combine with this one. How about:
When we're building a visualization, we want the properties of the objects in our domain to be expressed graphically, by shapes, connections and visual dimensions like width, height, intensity of graphical elements. Roassal builds such mappings as an expressive way to build flexible and rich visualizations.
-
-
dl.dropboxusercontent.com dl.dropboxusercontent.com
-
Once a Roassal element has been created, modifying its shape should not result in an update of the element.
This part should be clarified. Could a further example be referenced?
-
c := TRCanvas new. shape := TRBoxShape new size: 40. c addShape: shape. shape when: TRMouseClick do: [ :event | event shape remove. c signalUpdate ]. c
I get this error
MessageNotUnderstood: TRMouseLeftClick>>myCircle
for this similar code:| canvas myCircle data | canvas := TRCanvas new. myCircle := TREllipseShape new size: 100; color: Color white. data := #('lion-o' 'panthro' 'tigro' 'chitara' 'munra' 'ozimandias' 'Dr Manhatan'). canvas addShape: myCircle. myCircle when: TRMouseClick do: [:event | event myCircle remove. canvas signalUpdate ]. canvas
If I change
myCircle
withshape
it works fine, but I wouldn't imagine that variable names could be so picky. Generic names should work (circle
doesn't work neither).
-