Skip to main content

Home/ Sensorica Knowledge/ Group items tagged complexity

Rss Feed Group items tagged

Tiberius Brastaviceanu

Innovation Canada: A Call to Action - Review of Federal Support to Research and Develop... - 1 views

  • Canada has a solid foundation on which to build success as a leader in the knowledge economy of tomorrow
  • innovation in Canada lags behind other highly developed countries
  • innovation is the ultimate source of the long-term competitiveness of businesses and the quality of life of Canadians
  • ...28 more annotations...
  • We heard that the government should be more focussed on helping innovative firms to grow and, particularly, on serving the needs of small and medium-sized enterprises (SMEs)
  • greater cooperation with provincial programs
  • innovation support is too narrowly focussed on R&D – more support is needed for other activities along the continuum from ideas to commercially useful innovation
  • more productive and internationally competitive economy
  • whole-of-government program delivery vehicle – the Industrial Research and Innovation Council (IRIC)
  • SR&ED program should be simplified
  • includes non-labour costs, such as materials and capital equipment, the calculation of which can be highly complex
  • the base for the tax credit should be labour-related costs, and the tax credit rate should be adjusted upward
  • fund direct support measures for SMEs
  • promoting the growth of firms
  • facilitating access by such firms to an increased supply of risk capital at both the start-up and later stages of their growth.
  • building public–private research collaborations
  • National Research Council (NRC) should become independent collaborative research organizations
  • become affiliates of universities
  • create opportunity and demand for leading-edge goods
  • encouragement of innovation in the Canadian economy should become a stated objective of procurement policies and programs.
  • the government needs to establish business innovation as a whole-of-government priority
  • put innovation at the centre of the government's economic strategy
  • Innovation Advisory Committee (IAC) – a body with a whole-of-government focus that would oversee the realization of our proposed action plan, as well as serve as a permanent mechanism to promote the refinement and improvement of the government's business innovation programs going forward.
  • focus resources where market forces are unlikely to operate effectively or efficiently and, in that context, address the full range of business innovation activities, including research, development, commercialization and collaboration with other key actors in the innovation ecosystem
  • the closer the activity being supported is to market, and therefore the more likely it is that the recipient firm will capture most of the benefit for itself.
  • specific sectors
  • of strategic importance
  • concentrated in particular regions
  • succeed in the arena of global competition
    • Tiberius Brastaviceanu
       
      They don't go beyond the firm
    • Tiberius Brastaviceanu
       
      they are still stuck in the competitive paradigm
    • Tiberius Brastaviceanu
       
      Still stack with the old paradigm of the "knowledge economy"  http://en.wikipedia.org/wiki/Knowledge_economy  My opinion is that we're moving into a know-how economy. 
Steve Bosserman

Food Safety in China, and the Risk to the U.S. - 0 views

  •  
    Three years after the melamine-in-milk scandal that made 300,000 children sick, and two years after China passed its first-ever food safety law in response, the country is still struggling to keep its food supply healthy. The Chinese government recently cracked down, closing almost 5,000 food-producing businesses and arresting 2,000 people -- but China experts say a needlessly complex bureaucracy and ferocious determination to turn a profit mean the contamination will keep coming. (On forums where expats chat, Westerners living in China wonder whether there is anything safe to eat.) (Update: Commenters at the China Law Blog, many of them apparently resident in China, reflect the same anxiety.)
Tiberius Brastaviceanu

Google Apps Script - introduction - 0 views

  • Google Apps Script provides you with the ability to build a user interface for displaying or capturing information.
  • Viewing the Available User Interface Elements
  • Your scripts can display the user interface in two ways:
  • ...48 more annotations...
  • from a Spreadsheet
  • from a Site
  • As a stand-alone servlet
  • Deciding Whether to Run a Script from a Spreadsheet or as a Service
  • The built-in code autocomplete functionality in the editor requires you to type the trailing period that follows app.
  • Plan the script. What tasks should the script accomplish?
  • Write down the specific information you want to display to or collect from your users.
  • Draw the user interface
  • Determine what the script and interface should do in response to any user input.
  • Determine the conditions for exiting the script.
  • you need a UiApp application object to contain the user interface elements. After you create the UiApp application object, you can add buttons, dialog boxes, panels, and other elements to the UiApp application object.
  • The general syntax for these operations is as follows:
  • To create a UiApp application object, use the syntax var your_application_object_name = UiApp.createApplication();
  • To create a user interface element and associate it with your UiApp application object, use the syntax var your_ui_element_name= your_application_object_name.createElement_Name();.
  • To add one user interface element to another
  • use the syntax your_ui_element_name1.add(your_ui_element_name2);
  • a button with the text Press Me on it:
  • creates a vertical panel.
  • other kinds of panels
  • pop-up panels, stack panels, focus panels, form panels, and so on.
  • code for displaying your button on the panel:
  • add the panel to the application:
  • nstruct Google Apps Script to display the interface elements:
  • You can create the user interface elements in any order.
  • the display order
  • Creating the elements and adding them to your application are separate steps requiring separate instructions.
  • a short script that does nothing but display a panel with a button on it.
  • You can chain together setter methods
  • sets its title
  • set the size of the object:
  • how to use Grid objects and the setWidget method to create a more complex layout and also how to create text boxes and label them.
  • To make a user interface useful, you need the ability to update a Spreadsheet with information a user enters from the interface.
  • a short script that responds to an action in the interface by updating the Spreadsheet.
  • looping structure in the script to keep the panel displayed and active
  • Server-side means that the actions are performed by a server
  • same script, with functions added that enable the form to be used multiple times before a user chooses to exit.
  • script collects some information from text fields on a panel and writes that information into the Spreadsheet.
  • You can make a script's user interface available to users from inside a Spreadsheet or Site or by running it separately as a service.
  • how to make the user interface as a service.
  • A script that provides a stand-alone user interface must invoke the doGet(e) function or the doPost(e) function for an HTML form submit.
  • A script that provides the user interface from the Spreadsheet invokes doc.show(app).
  • The doGet(e) function takes the argument e, passing in the arguments for the user interface, including the user name of the person invoking the script.
  • After you write the script, you publish it as a service. During the publishing process, you define who has access to the script.
  • In a Google Apps domain, you can publish the script so that only you have access or so that everyone in the domain has access.
  • In a Google consumer account, you can publish the script so that only you have access or so that everyone in the world has access.
  • Updating a Spreadsheet from the User Interface, the user interface is displayed from the Spreadsheet where the script is stored. The following code defines how the user interface is displayed:
  • Here's the skeleton code for displaying a user interface as a stand-alone service:
  • some aspects of the two ways to display a user interface.
Tiberius Brastaviceanu

Google Apps Script - introduction - 0 views

  • control over Google products
  • can access and control Google Spreadsheets and other products
  • scripts
  • ...44 more annotations...
  • run directly on Google servers in order to provide direct access to the products they control.
  • can also use Google Apps Script from Google Sites
  • Google Apps Script Template Gallery
  • Google Apps Script Blog
  • guide contains the information you need to use Google Apps Script, a server-side scripting language, based on JavaScript, that runs on Google's servers alongside Google Apps
  • enable varying degrees of interactivity among the applications
  • easy enough to use that you don't have to be a programmer to create scripts.
  • use it to automate complex tasks within Google Apps
  • You don't have to be a programmer to use Google Apps Script
  • A script is a series of instructions you write in a computer language to accomplish a particular task. You type in the instructions and save them as a script. The script runs only under circumstances you define.
  • The Google Apps Script API provides a set of objects. You can use these objects and their associates methods to access Google Docs and Spreadsheets, Gmail, Google Finance, and other Google applications.
  • To run a script, you must first add the script to a Google Spreadsheet or Google Site using the Script Editor.
  • You can retrieve information from a wide selection of Google Apps and Services and from external sources, including web pages and XML sources. You can use Google Apps Script to create email, spreadsheets, pages on Google Sites, and files in the Google Docs Document List.
  • The instructions in a script are grouped into functions.
  • objects
  • methods
  • for such tasks
  • Create pages on a Google Site
  • Customize a Spreadsheet
  • Send email based on information in a Spreadsheet
  • You can manipulate
  • numeric
  • financial
  • string
  • an XML document
  • controlling data in the following applications
  • Spreadsheets
  • Google Document List
  • Contacts
  • Calendar
  • Sites
  • Google Maps
  • create and display interactive user interface elements
  • interact with relational database management systems
  • create folders, subfolders, and files in the Google Docs document list
  • access to user, session, and browser information
  • access to web services
  • extract data from XML documents and then manipulate that data
  • obtain translations of text from one language to another
  • send email
  • UrlFetch services
  • encode and decode strings and format dates
  • store properties on a per-script and per-user basis
  • create, delete and update contact information for individuals and for groups in Google Contacts
Tiberius Brastaviceanu

The New Normal in Funding University Science | Issues in Science and Technology - 1 views

  • Government funding for academic research will remain limited, and competition for grants will remain high. Broad adjustments will be needed
  • he sequester simply makes acute a chronic condition that has been getting worse for years.
  • the federal budget sequester
  • ...72 more annotations...
  • systemic problems that arise from the R&D funding system and incentive structure that the federal government put in place after World War II
  • Researchers across the country encounter increasingly fierce competition for money.
  • unding rates in many National Institutes of Health (NIH) and National Science Foundation (NSF) programs are now at historical lows, declining from more than 30% before 2001 to 20% or even less in 2011
  • even the most prominent scientists will find it difficult to maintain funding for their laboratories, and young scientists seeking their first grant may become so overwhelmed that individuals of great promise will be driven from the field
  • anxiety and frustration
  • The growth of the scientific enterprise on university campuses during the past 60 years is not sustainable and has now reached a tipping point at which old models no longer work
  • Origins of the crisis
  • ederal funding agencies must work with universities to ensure that new models of funding do not stymie the progress of science in the United States
  • The demand for research money greatly exceeds the supply
  • the demand for research funding has gone up
  • The deeper sources of the problem lie in the incentive structure of the modern research university, the aspirations of scientists trained by those universities, and the aspirations of less research-intensive universities and colleges across the nation
  • competitive grants system
  • if a university wants to attract a significant amount of sponsored research money, it needs doctoral programs in the relevant fields and faculty members who are dedicated to both winning grants and training students
  • The production of science and engineering doctorates has grown apace
  • Even though not all doctorate recipients become university faculty, the size of the science and engineering faculty at U.S. universities has grown substantially
  • proposal pressure goes up
  • These strategies make sense for any individual university, but will fail collectively unless federal funding for R&D grows robustly enough to keep up with demand.
  • At the very time that universities were enjoying rapidly growing budgets, and creating modes of operation that assumed such largess was the new normal, Price warned that it would all soon come to a halt
  • the human and financial resources invested in science had been increasing much faster than the populations and economies of those regions
  • growth in the scientific enterprise would have to slow down at some point, growing no more than the population or the economy.
  • Dead-end solutions
  • studies sounded an alarm about the potential decline in U.S. global leadership in science and technology and the grave implications of that decline for economic growth and national security
  • Although we are not opposed to increasing federal funding for research, we are not optimistic that it will happen at anywhere near the rate the Academies seek, nor do we think it will have a large impact on funding rates
  • universities should not expect any radical increases in domestic R&D budgets, and most likely not in defense R&D budgets either, unless the discretionary budgets themselves grow rapidly. Those budgets are under pressure from political groups that want to shrink government spending and from the growth of spending in mandatory programs
  • The basic point is that the growth of the economy will drive increases in federal R&D spending, and any attempt to provide rapid or sustained increases beyond that growth will require taking money from other programs.
  • The demand for research money cannot grow faster than the economy forever and the growth curve for research money flattened out long ago.
  • Path out of crisis
  • The goal cannot be to convince the government to invest a higher proportion of its discretionary spending in research
  • Getting more is not in the cards, and some observers think the scientific community will be lucky to keep what it has
  • The potential to take advantage of the infrastructure and talent on university campuses may be a win-win situation for businesses and institutions of higher education.
  • Why should universities and colleges continue to support scientific research, knowing that the financial benefits are diminishing?
  • esearch culture
  • attract good students and faculty as well as raise their prestige
  • mission to expand the boundaries of human knowledge
  • faculty members are committed to their scholarship and will press on with their research programs even when external dollars are scarce
  • training
  • take place in
  • research laboratories
  • it is critical to have active research laboratories, not only in elite public and private research institutions, but in non-flagship public universities, a diverse set of private universities, and four-year colleges
  • How then do increasingly beleaguered institutions of higher education support the research efforts of the faculty, given the reality that federal grants are going to be few and far between for the majority of faculty members? What are the practical steps institutions can take?
  • change the current model of providing large startup packages when a faculty member is hired and then leaving it up to the faculty member to obtain funding for the remainder of his or her career
  • universities invest less in new faculty members and spread their internal research dollars across faculty members at all stages of their careers, from early to late.
    • Tiberius Brastaviceanu
       
      Sharing of resources, see SENSORICA's NRP
  • national conversation about changes in startup packages and by careful consultations with prospective faculty hires about long-term support of their research efforts
  • Many prospective hires may find smaller startup packages palatable, if they can be convinced that the smaller packages are coupled with an institutional commitment to ongoing research support and more reasonable expectations about winning grants.
  • Smaller startup packages mean that in many situations, new faculty members will not be able to establish a functioning stand-alone laboratory. Thus, space and equipment will need to be shared to a greater extent than has been true in the past.
  • construction of open laboratory spaces and the strategic development of well-equipped research centers capable of efficiently servicing the needs of an array of researchers
  • phaseout of the individual laboratory
  • enhanced opportunities for communication and networking among faculty members and their students
  • Collaborative proposals and the assembly of research teams that focus on more complex problems can arise relatively naturally as interactions among researchers are facilitated by proximity and the absence of walls between laboratories.
  • An increased emphasis on team research
  • investments in the research enterprise
  • can be directed at projects that have good buy-in from the faculty
  • learn how to work both as part of a team and independently
  • Involvement in multiple projects should be encouraged
  • The more likely trajectory of a junior faculty member will evolve from contributing team member to increasing leadership responsibilities to team leader
  • nternal evaluations of contributions and potential will become more important in tenure and promotion decisions.
    • Tiberius Brastaviceanu
       
      Need value accounting system
  • relationships with foundations, donors, state agencies, and private business will become increasingly important in the funding game
  • The opportunities to form partnerships with business are especially intriguing
    • Tiberius Brastaviceanu
       
      The problem is to change the model and go open source, because IP stifles other processes that might benefit Universities!!!
  • Further complicating university collaborations with business is that past examples of such partnerships have not always been easy or free of controversy.
  • some faculty members worried about firms dictating the research priorities of the university, pulling graduate students into proprietary research (which could limit what they could publish), and generally tugging the relevant faculty in multiple directions.
  • developed rules and guidelines to control them
  • University faculty and businesspeople often do not understand each other’s cultures, needs, and constraints, and such gaps can lead to more mundane problems in university/industry relations, not least of which are organizational demands and institutional cultures
    • Tiberius Brastaviceanu
       
      Needs for mechanisms to govern, coordinate, structure an ecosystem -See SENSORICA's Open Alliance model
  • n addition to funding for research, universities can receive indirect benefits from such relationships. High-profile partnerships with businesses will underline the important role that universities can play in the economic development of a region.
  • Universities have to see firms as more than just deep pockets, and firms need to see universities as more than sources of cheap skilled labor.
  • foundations or other philanthropy
  • We do not believe that research proposed and supervised by individual principal investigators will disappear anytime soon. It is a research model that has proven to be remarkably successful and enduring
  • However, we believe that the most vibrant scientific communities on university and college campuses, and the ones most likely to thrive in the new reality of funding for the sciences, will be those that encourage the formation of research teams and are nimble with regard to funding sources, even as they leave room for traditional avenues of funding and research.
Kurt Laitner

What do we need corporations for and how does Valve's management structure fit into tod... - 0 views

  • Valve’s management model; one in which there are no bosses, no delegation, no commands, no attempt by anyone to tell someone what to do
  • Every social order, including that of ants and bees, must allocate its scarce resources between different productive activities and processes, as well as establish patterns of distribution among individuals and groups of output collectively produced.
  • the allocation of resources, as well as the distribution of the produce, is based on a decentralised mechanism functioning by means of price signals:
  • ...18 more annotations...
  • Interestingly, however, there is one last bastion of economic activity that proved remarkably resistant to the triumph of the market: firms, companies and, later, corporations. Think about it: market-societies, or capitalism, are synonymous with firms, companies, corporations. And yet, quite paradoxically, firms can be thought of as market-free zones. Within their realm, firms (like societies) allocate scarce resources (between different productive activities and processes). Nevertheless they do so by means of some non-price, more often than not hierarchical, mechanism!
  • they are the last remaining vestiges of pre-capitalist organisation within… capitalism
  • The miracle of the market, according to Hayek, was that it managed to signal to each what activity is best for herself and for society as a whole without first aggregating all the disparate and local pieces of knowledge that lived in the minds and subconscious of each consumer, each designer, each producer. How does this signalling happen? Hayek’s answer (borrowed from Smith) was devastatingly simple: through the movement of prices
  • The idea of spontaneous order comes from the Scottish Enlightenment, and in particular David Hume who, famously, argued against Thomas Hobbes’ assumption that, without some Leviathan ruling over us (keeping us “all in awe”), we would end up in a hideous State of Nature in which life would be “nasty, brutish and short”
  • Hume’s counter-argument was that, in the absence of a system of centralised command, conventions emerge that minimise conflict and organise social activities (including production) in a manner that is most conducive to the Good Life
  • Hayek’s argument was predicated upon the premise that knowledge is always ‘local’ and all attempts to aggregate it are bound to fail. The world, in his eyes, is too complex for its essence to be distilled in some central node; e.g. the state.
  • The idea here is that, through this ever-evolving process, people’s capacities, talents and ideas are given the best chance possible to develop and produce synergies that promote the Common Good. It is as if an invisible hand guides Valve’s individual members to decisions that both unleash each person’s potential and serve the company’s collective interest (which does not necessarily coincide with profit maximisation).
  • Valve differs in that it insists that its employees allocate 100% of their time on projects of their choosing
  • In contrast, Smith and Hayek concentrate their analysis on a single passion: the passion for profit-making
  • Hume also believed in a variety of signals, as opposed to Hayek’s exclusive reliance on price signalling
  • One which, instead of price signals, is based on the signals Valve employees emit to one another by selecting how to allocate their labour time, a decision that is bound up with where to wheel their tables to (i.e. whom to work with and on what)
  • He pointed out simply and convincingly that the cost of subcontracting a good or service, through some market, may be much larger than the cost of producing that good or service internally. He attributed this difference to transactions costs and explained that they were due to the costs of bargaining (with contractors), of enforcing incomplete contracts (whose incompleteness is due to the fact that some activities and qualities cannot be fully described in a written contract), of imperfect monitoring and asymmetrically distributed information, of keeping trade secrets… secret, etc. In short, contractual obligations can never be perfectly stipulated or enforced, especially when information is scarce and unequally distributed, and this gives rise to transaction costs which can become debilitating unless joint production takes place within the hierarchically structured firm. Optimal corporation size corresponds, in Coase’s scheme of things, to a ‘point’ where the net marginal cost of contracting out a service or good (including transaction costs) tends to zero 
  • As Coase et al explained in the previous section, the whole point about a corporation is that its internal organisation cannot turn on price signals (for if it could, it would not exist as a corporation but would, instead, contract out all the goods and services internally produced)
  • Each employee chooses (a) her partners (or team with which she wants to work) and (b) how much time she wants to devote to various competing projects. In making this decision, each Valve employee takes into account not only the attractiveness of projects and teams competing for their time but, also, the decisions of others.
  • Hume thought that humans are prone to all sorts of incommensurable passions (e.g. the passion for a video game, the passion for chocolate, the passion for social justice) the pursuit of which leads to many different types of conventions that, eventually, make up our jointly produced spontaneous order
  • Valve is, at least in one way, more radical than a traditional co-operative firm. Co-ops are companies whose ownership is shared equally among its members. Nonetheless, co-ops are usually hierarchical organisations. Democratic perhaps, but hierarchical nonetheless. Managers may be selected through some democratic or consultative process involving members but, once selected, they delegate and command their ‘underlings’ in a manner not at all dissimilar to a standard corporation. At Valve, by contrast, each person manages herself while teams operate on the basis of voluntarism, with collective activities regulated and coordinated spontaneously via the operations of the time allocation-based spontaneous order mechanism described above.
  • In contrast, co-ops and Valve feature peer-based systems for determining the distribution of a firm’s surplus among employees.
  • There is one important aspect of Valve that I did not focus on: the link between its horizontal management structure and its ‘vertical’ ownership structure. Valve is a private company owned mostly by few individuals. In that sense, it is an enlightened oligarchy: an oligarchy in that it is owned by a few and enlightened in that those few are not using their property rights to boss people around. The question arises: what happens to the alternative spontaneous order within Valve if some or all of the owners decide to sell up?
Tiberius Brastaviceanu

Partner State - P2P Foundation - 0 views

    • Tiberius Brastaviceanu
       
      we call this a custodian
    • Tiberius Brastaviceanu
       
      we call this a custodian
  • So here we have it, the new triarchy: - The state, with its public property and representative mechanisms of governance (in the best scenario) - The private sector, with the corporation and private property - The commons, with the Trust (or the for-benefit association), and which is the ‘property’ of all its members (not the right word in the context of the commons, since it has a different philosophy of ownership)
    • Tiberius Brastaviceanu
       
      so where is direct democracy in all this?
  • ...39 more annotations...
  • In a first phase, the commons simply emerges as an added alternative.
  • becoming a subsector of society, and starts influencing the whole
  • phase transition and transformation will need to occur.
  • how a commons-dominated, i.e. after the phase transition, society would look like.
  • At its core would be a collection of commons, represented by trusts and for-benefit associations, which protect their common assets for the benefit of present and future generations
  • The commons ‘rents out’ the use of its resources to entrepreneurs. In other words, business still exists, though infinite growth-based capitalism does not.
  • More likely is that the corporate forms will be influenced by the commons and that profit will be subsumed to other goals, that are congruent with the maintenance of the commons.
  • The state will still exist, but will have a radically different nature
  • Much of its functions will have been taken over by commons institutions, but since these institutions care primarily about their commons, and not the general common good, we will still need public authorities that are the guarantor of the system as a whole, and can regulate the various commons, and protect the commoners against possible abuses. So in our scenario, the state does not disappear, but is transformed, though it may greatly diminish in scope, and with its remaining functions thoroughly democratized and based on citizen participation.
  • In our vision, it is civil-society based peer production, through the Commons, which is the guarantor of value creation by the private sector, and the role of the state, as Partner State, is to enable and empower the creation of common value. The new peer to peer state then, though some may see that as a contradictio in terminis, is a state which is subsumed under the Commons, just as it is now under the private sector. Such a peer to peer state, if we are correct, will have a much more modest role than the state under a classic state society, with many of its functions taken over by civil society associations, interlinked in processes of global governance. The above then, this triarchy, is the institutional core which replaces the dual private-public binary system that is characteristic of the capitalist system that is presently the dominant format.
  • fundamental mission is to empower direct social-value creation, and to focus on the protection of the Commons sphere as well as on the promotion of sustainable models of entrepreneurship and participatory politics
  • the state becomes a 'partner state' and enables autonomous social production.
  • the state does exist, and I believe that we can’t just imagine that we live in a future state-less society
  • retreating from the binary state/privatization dilemma to the triarchical choice of an optimal mix amongst government regulation, private-market freedom and autonomous civil-society projects
  • the role of the state
  • “the peer production of common value requires civic wealth and strong civic institutions.
  • trigger the production/construction of new commons by - (co-) management of complexe resource systems which are not limited to local boundaries or specific communities (as manager and partner) - survey of rules (chartas) to care for the commons (mediator or judge) - kicking of or providing incentives for commoners governing their commons - here the point is to design intelligent rules which automatically protect the commons, like the GPL does (facilitator)"
  • the emergence of the digital commons. It is the experience of creating knowledge, culture, software and design commons, by a combination of voluntary contributions, entrepreneurial coalitions and infrastructure-protecting for-benefit associations, that has most tangibly re-introduced the idea of commons, for all to use without discrimination, and where all can contribute. It has drastically reduced the production, distribution, transaction and coordination costs for the immaterial value that is at the core also of all what we produce physically, since that needs to be made, needs to be designed. It has re-introduced communing as a mainstream experience for at least one billion internet users, and has come with proven benefits and robustness that has outcompeted and outcooperated its private rivals. It also of course offers new ways to re-imagine, create and protect physical commons.
  • stop enclosures
  • peer to peer, i.e. the ability to freely associate with others around the creation of common value
  • communal shareholding, i.e. the non-reciprocal exchange of an individual with a totality. It is totality that we call the commons.
  • It is customary to divide society into three sectors, and what we want to show is how the new peer to peer dynamic unleashed by networked infrastructures, changes the inter-relationship between these three sectors.
  • In the current ‘cognitive capitalist’ system, it is the private sector consisting of enterprises and businesses which is the primary factor, and it is engaged in competitive capital accumulation. The state is entrusted with the protection of this process. Though civil society, through the citizen, is in theory ‘sovereign’, and chooses the state; in practice, both civil society and the state are under the domination of the private sector.
  • it fulfills three contradictory functions
  • Of course, this is not to say that the state is a mere tool of private business.
  • protect the whole system, under the domination of private business
  • protector of civil society, depending on the balance of power and achievements of social movements
  • protector of its own independent interests
  • Under fascism, the state achieves great independence from the private sector , which may become subservient to the state. Under the welfare state, the state becomes a protector of the social balance of power and manages the achievements of the social movement; and finally, under the neoliberal corporate welfare state, or ‘market state’, it serves most directly the interests of the financial sector.
  • key institutions and forms of property.
  • The state managed a public sector, under its own property.
  • The private sector , under a regime of private ownership, is geared to profit, discounts social and natural externalities, both positive and negative, and uses its dominance in society to use and dominate the state.
  • civil society has a relative power as well, through its capability of creating social movements and associations
  • Capitalism has historically been a pendulum between the private and the public sector
  • However, this configuration is changing,
  • the endangerment of the biosphere through the workings of ‘selfish’ market players; the second is the role of the new digital commons.
  • participatory politics
  • Peer production gives us an advance picture of how a commons-oriented society would look like. At its core is a commons and a community contributing to it, either voluntarily, or as paid entrepreneurial employees. It does this through collaborative platforms using open standards. Around the commons emerges enterprises that create added value to operate on the marketplace, but also help the maintenance and the expansion of the commons they rely on. A third partner are the for-benefit associations that maintain the infrastructure of cooperation. Public authorities could play a role if they wanted to support existing commons or the creation of new commons, for the value they bring to society.
  • if a commons is not created as in the case of the digital commons, it is something that is inherited from nature or former generations, given in trust and usufruct, so that it can be transmitted to our descendents. The proper institution for such commons is therefore the trust, which is a corporate form that cannot touch its principal capital, but has to maintain it.
Kurt Laitner

Stigmergy | GeorgieBC's Blog - 0 views

  • As no one owns the system, there is no need for a competing group to be started to change ownership to a different group
    • Kurt Laitner
       
      but one needs a mechanism to ensure accidental duplication doesn't happen
  • there is no need for communication outside of task completion
    • Kurt Laitner
       
      disagree
  • endless discussion
  • ...12 more annotations...
  • personality conflicts
  • begin to steer direction
  • more interested and dedicated personalities emerge
    • Kurt Laitner
       
      as opposed to the 'strong' personalities earlier panned?
  • work most valued by the rest of the user group
    • Kurt Laitner
       
      determined how?
  • As more members are added, more will experience frustration at limited usefulness or autonomy
    • Kurt Laitner
       
      how to avoid this duplication of skills?
  • stigmergy encourages splintering
    • Kurt Laitner
       
      I would need to see a convincing argument for this, ant colonies are pretty large
  • as communication is easier and there is more autonomy in smaller groups, splintering is the more likely outcome of growth.
    • Kurt Laitner
       
      not convinced that splintering should be the outcome, fractal growth would be preferable, also communication is not limited to small groups, nor is it necessarily 'better' in them
  • Transparency allows information to travel freely between the various nodes
  • Information sharing is driven by the information, not personal relationships
  • it is inefficient to have the same task performed twice
    • Kurt Laitner
       
      that depends on the type of task, and the way it is being done, if it is repetative with a well understood solution, then yes, otherwise less so
  • It is neither reasonable nor desirable for individual thought and action to be subjugated to group consensus in matters which do not affect the group
  • it is frankly impossible to accomplish complex tasks if every decision must be presented for approval
Tiberius Brastaviceanu

Fostering creativity. A model for developing a culture of collective creativity in science - 0 views

  • Scientific progress depends on both conceptual and technological advances, which in turn depend on the creativity of scientists
  • creative processes behind these discoveries rely on mechanisms that are similar across disciplines as diverse as art and science
  • research into the nature of creativity indicates that it depends strongly on the cultural environment
  • ...48 more annotations...
  • create optimal conditions in a research organization with the aim of enhancing the creativity of its scientific staff
  • Creativity has been traditionally associated with art and literature but since the early twentieth century, science has also been regarded as a creative activity
  • Measuring creativity is a challenging task owing to its complex and elusive nature
  • Measurement of brain activity showed that creativity correlates with two brain states: a quiescent, relaxed state corresponding to the inspiration stage, and a much more active state corresponding to the elaboration stage
  • models of creativity
  • have a common feature: they depend on a balance between analytical and synthetic thinking, and usually describe the creative process as a sequence of phases that alternate between these states
  • Most research on creativity has focused on the individual
  • However, more recent studies suggest that creativity also depends strongly on the social and cultural context
  • breakthroughs depended on collaboration and social support
  • social environment in business organizations affects the creativity of their employees
  • Although creative individuals are essential, the strong link with the environment indicates that creativity might be greatly enhanced by generating a culture that supports the creative process.
  • Many of the interviewees repeatedly emphasized three main qualities necessary to be a good scientist: rigorous intellect, the ability to get the job done and the ability to have creative ideas.
  • almost all interviewees characterized their breakthrough moment as an abrupt leap in understanding
  • Although breakthroughs in science depend on such an ‘internal' conceptual shift, they also rely on ‘external' experimental results. However, most interviewees described their breakthroughs as largely internal:
  • Only two scientists expressed the view that their breakthroughs were purely external events, based on the observation of novel data.
  • intuition
  • must be combined with rational thinking to be effective
  • Although the synthesis of a new concept relies on intuition, which is based on subconscious mental processing, it must be subjected to conscious examination and analysis
  • specific mental skills or attitudes
  • ability to make unexpected connections
  • ability to choose relevant possibilities from an infinite set of irrelevant ones
  • interest in the unknown'
  • enjoyment of the creative process
  • stimulation by interacting with colleagues
  • undoubtedly the most crucial trait for creativity, which thrives on the exchange of ideas
  • The majority felt that the individual and the collective are equally important:
  • what interactions are optimal for creativity
  • The majority of interviewees answered that other people provided them with ‘inspiration to do something new'
  • positive feedback after the emergence of a new idea is almost as important as the inspiration that triggered it
  • collective provides the individual with technical expertise
  • Therefore, scientists would value a culture of interaction and mutual inspiration more highly than access to technology, although the latter is essential for their experiments.
  • At the end of the interviews, each scientist was asked to describe the best possible conditions for generating creativity at a research institute.
  • Cross-fertilization is absolutely essential
  • These results indicate strongly that an interactive environment is the single most important factor for stimulating creativity
  • interacting with people doing very different things
  • interacting with colleagues informally
  • interactions within any institution are strongly affected by its organization
  • Several interviewees described ‘an open hierarchy' as an important factor for creativity
  • hierarchy is based on genuine respect because people are great scientists, but at the same time they're very approachable and open towards what you have to say
  • These results suggest that the best conditions for scientific creativity come with a free-flowing hierarchy and a highly developed culture of interaction to guarantee the exchange of ideas and inspiration.
  • Furthermore, interdisciplinary interactions lead to the generation of new and unusual ideas
  • Finally, because of the freedom to try new things, these ideas can be tested and eventually generate new insights.
  • Creativity can be described as an emergent phenomenon
  • nonlinear phenomena
  • Emergence depends on dynamic interactions between individual agents within the system
  • The importance of a ‘freedom to try new things' and a ‘free-flowing hierarchy' further supports the idea that individual components in an emergent system must be able to interact flexibly without central control
  • During the interviews, it became apparent that although a culture of interaction and creativity exists at EMBL, this itself is not often the subject of discussion. The values on which this culture is based are seemingly implicit rather than explicit
  • Potentially, the EMBL culture of interaction could be strengthened further by consciously expressing and discussing the values on which it is based
Tiberius Brastaviceanu

Value network - Wikipedia - 0 views

  • a business analysis perspective
  • describes
  • resources within and between businesses
  • ...38 more annotations...
  • nodes in a value network represent people
  • nodes are connected by interactions that represent tangible and intangible deliverables
  • Value networks exhibit interdependence
  • Companies have both internal and external value networks.[1]
  • customers or recipients, intermediaries, stakeholders, complementary, open innovation networks and suppliers
  • key activities
  • processes and relationships that cut across internal boundaries
  • Value is created through exchange and the relationships between roles
  • F&S's value networks consists of these components
  • customers
  • Some service the customers all use, and enables interaction between the customers
  • service
  • contracts that enables access to the service
  • the network formed by phone users
  • example
  • example
  • car insurance company
  • how a company understands itself
  • value creation process
  • value creating system
  • all stakeholders co-produce value
  • systematic social innovation
  • strategy as
  • the Value Network to emerge as a mental model
  • Verna Allee defines value networks [5] as any web of relationships that generates both tangible and intangible value through complex dynamic exchanges between two or more individuals, groups or organizations. Any organization or group of organizations engaged in both tangible and intangible exchanges can be viewed as a value network, whether private industry, government or public sector.
  • Allee developed Value network analysis, a whole systems mapping and analysis approach to understanding tangible and intangible value creation among participants in an enterprise system
  • participants, transactions and tangible and intangible deliverables that together form a value network.
  • knowledge
  • benefits
  • favors
  • know-how
  • policy
  • planning
  • process
  • biological organisms, including humans, function in a self-organizing mode internally and externally
  • no central “boss” to control this dynamic activity
  • The purpose of value networks is to create the most benefit for the people involved in the network (5)
    • Tiberius Brastaviceanu
       
      Verna starts with relationships. I think this is wrong. Perceived value and how to get  to it determines the type of relationships we forge with other people with whom we robe shoulders.  
Tiberius Brastaviceanu

If not Global Captalism - then What? - 0 views

  • I posit an optimistic view of the potential for Society from the emergence of a new and “Open” form of Capitalism.
  • Open Capital
  • the concept of “Open” Capital is “so simple…. it repels the mind".
  • ...162 more annotations...
  • Open Capital is defined as “a proportional share in an enterprise for an indeterminate time”
  • ‘Enterprise’ is defined as ‘any entity within which two or more individuals create, accumulate or exchange Value”.
  • Value is to Economics as Energy and Matter are to Physics.
  • The Metaphysics Of Value
  • division between “subject” and “object”.
  • primary reality is “Quality”
  • formless and indefinable
  • not a “thing”
  • a non-intellectual awareness or “pre-intellectual reality”
  • but an event at which the subject becomes aware of the object and before he distinguishes it
  • Quality is the basis of both subject and object
  • distinguish between “Static” and “Dynamic” Quality
  • treating Value as a form of “Quality” as envisioned by Pirsig.
  • Riegel
  • defined “Value” as “ the Relativity of Desire” again implying indeterminacy.
  • Pirsig’s approach Capital may be viewed as “Static” Value and Money as “Dynamic” Value. “Transactions” are the “events” at which individuals (Subjects) interact with each other or with Capital (both as Objects) to create forms of Value and at which “Value judgments” are made based upon a “Value Unit”.
  • The result of these Value Events /Transactions is to create subject/object pairings in the form of data ie Who “owns” or has rights of use in What,
  • at what Price
  • accounting data
  • Neo-Classical” Economics confuses indeterminate Value with a market– determined Price –
  • Data may be static
  • This Data identifies the subject with objects such as tangible ‘Material Value’
  • Data may itself constitute ‘Intellectual Value’
  • It, too, may then be defined in a subject/object pairing through the concept of “intellectual property”.
  • Other forms of Value are however not definable by data:
  • “sentimental” Value
  • Emotional Value’
  • 'Spiritual Value’
  • We may therefore look at the “transaction” or “value event” in a new light.
  • The creation and circulation of Value essentially comprises the concept we know of as “Money”.
  • Money / Dynamic Value
  • “The purpose of money is to facilitate barter by splitting the transaction into two parts, the acceptor of money reserving the power to requisition value from any trader at any time
  • money
  • value unit dissociated from any object
  • monetary unit
  • the basis relative to which other values may be expressed
  • The monetary process is a dynamic one involving the creation and recording of obligations as between individuals and the later fulfilment of these obligations
  • The monetary “Value Event”/ Transaction involves the creation of “Credit”
  • obligation to provide something of equivalent Value at a future point in time.
  • These obligations may be recorded on transferable documents
  • database of “Credit”/obligations is not Money, but temporary “Capital”
  • “Working Capital”
  • Static Value – which only becomes “Money”/ Dynamic Value when exchanged in the transitory Monetary process.
  • what we think of as Money is in fact not tangible “cash” but rather
  • the flow of data between databases of obligations maintained by Credit Institutions
  • or dynamic
  • Banks literally “loan” Money into existence
  • In exchange for an obligation by an Individual to provide to the Bank something of Value
  • Bank’s obligation is merely to provide another obligation at some future time
  • These Bank-issued obligations are therefore
  • claim upon a claim upon Value
  • The true source of Credit is the Individual, not the intermediary Bank
  • this Money they create from nothing despite the fact that it is literally Value-less
  • Thus there is no true sharing of Risk and Reward involved in Lending
  • issue in relation to Credit/Debt and this relates to the nature of Lending itself.
  • the practice of Lending involves an incomplete exchange in terms of risk and reward: a Lender, as opposed to an Investor, has no interest in the outcome of the Loan, and requires the repayment of Principal no matter the ability of the Borrower to repay.
  • Ethical problem
    • Tiberius Brastaviceanu
       
      "The Lender has no interest in the outcome of the loan", i.e doesn't care what happens in the end. The Lender ins not interested in the economical outcome of the Lender-Loner relation. So in fact there is no real risk sharing. the only risk for the Lender is when the Loner doesn't pay back, which is not really a risk... In fact it is a risk for the small bank, who has to buy money from the central bank, but not for the central bank. 
  • Money is not
  • an “Object” circulating but rather a dynamic process of Value creation and exchange by reference to a “Value Unit”.
  • Capital/ Static Value
  • Capital represents the static accumulation of Value
  • Some forms of Capital are “productive”
  • An ethical question
  • in relation to Productive Capital relates to the extent of “property rights” which may be held over it thereby allowing individuals to assert “absolute” permanent and exclusive ownership - in particular in relation to Land
  • our current financial system is based not upon Value but rather a claim upon Value
  • Financial Capital consists of two types:
  • “Debt”
  • “Equity”
  • Interest
  • obligations of finite/temporary duration but with no participation in the assets or revenues
  • absolute and permanent ownership/participation (without obligation) in assets and revenues
  • discontinuity between Debt and Equity
  • at the heart of our current problems as a Society
  • The Enterprise
  • ‘Charitable’ Enterprise
  • ‘Social’ Enterprise
  • Value
  • exchanged in agreed proportions;
  • Value is exchanged for the Spiritual and Emotional Value
  • ‘Commercial’ Enterprise
  • ‘closed’
  • Value are exchanged between a limited number of individuals
  • Early enterprises were partnerships and unincorporated associations
  • need for institutions which outlived the lives of the Members led to the development of the Corporate body with a legal existence independent of its Members
  • The key development in the history of Capitalism was the creation of the ‘Joint Stock’ Corporate with liability limited by shares of a ‘Nominal’ or ‘Par’ value
  • over the next 150 years the Limited Liability Corporate evolved into the Public Limited Liability Corporate
  • Such “Closed” Shares of “fixed” value constitute an absolute and permanent claim over the assets and revenues of the Enterprise to the exclusion of all other “stakeholders” such as Suppliers, Customers, Staff, and Debt Financiers.
  • The latter are essentially ‘costs’ external to the
  • owners of the Enterprise
  • maximise ‘Shareholder Value’
  • There is a discontinuity/ fault-line within the ‘Closed’ Corporate
  • It has the characteristics of what biologists call a ‘semi-permeable membrane’ in the way that it allows Economic Value to be extracted from other stakeholders but not to pass the other way.
    • Tiberius Brastaviceanu
       
      It is a way to extract value from productive systems. It is a system of exploitation. 
  • Capital most certainly is and always has been - through the discontinuity (see diagram) between:‘Fixed’ Capital in the form of shares ie Equity; and ‘Working’ Capital in the form of debt finance, credit from suppliers, pre-payments by customers and obligations to staff and management.
  • irreconcilable conflict between Equity and Debt
  • xchange of Economic Value in a Closed Corporate is made difficult and true sharing of Risk and Reward is simply not possible
  • No Enterprise Model has been capable of resolving this dilemma. Until now.
  • Corporate Partnerships with unlimited liability
  • mandatory for partnerships with more than 20 partners to be incorporated
  • in the USA
  • it is the normal structure for professional partnerships
  • Limited Liability Partnerships
  • In the late 1990's
  • litigation
  • The UK LLP is supremely simple and remarkably flexible.
  • All that is needed is a simple ‘Member Agreement’ – a legal protocol which sets out the Aims, Objectives. Principles of Governance, Revenue Sharing, Dispute Resolution, Transparency and any other matters that Members agree should be included. Amazingly enough, this Agreement need not even be in writing, since in the absence of a written agreement Partnership Law is applied by way of default.
  • The ease of use and total flexibility enables the UK LLP to be utilised in a way never intended – as an ‘Open’ Corporate partnership.
  • ‘Open’ Corporate Partnership
  • concepts which characterise the ‘Open’ Corporate Partnership
  • it is now possible for any stakeholder to become a Member of a UK LLP simply through signing a suitably drafted Member Agreement
  • ‘Open’
  • supplier
  • employee
  • may instead become true Partners in the Enterprise with their interests aligned with other stakeholders.
    • Tiberius Brastaviceanu
       
      Can SENSORICA be a UK LLP?
  • no profit or loss in an Open Corporate Partnership, merely Value creation and exchange between members in conformance with the Member Agreement.
  • Proportional shares
  • in an Enterprise constitute an infinitely divisible, flexible and scaleable form of Capital capable of distributing or accumulating Value organically as the Enterprise itself grows in Value or chooses to distribute it.
  • Emergence of “Open” Capital
  • example of how ‘Temporary Equity’ may operate in practice
  • The Open Capital Partnership (“OCP”)
  • Within the OCP Capital and Revenue are continuous: to the extent that an Investee pays Rental in advance of the due date he becomes an Investor.
  • Open Capital – a new Asset Class
  • create a new asset class of proportional “shares”/partnership interests
  • in Capital holding OCP’s
  • Property Investment Partnerships (“PIP’s”)
  • Open Corporate Partnerships as a Co-operative Enterprise model
  • A Co-operative is not an enterprise structure: it is a set of Principles that may be applied to different types of enterprise structure.
  • Within a Partnership there is no “Profit” and no “Loss”.
  • Partnerships
  • mutual pursuit of the creation and exchange of Value
  • Partners do not compete with each othe
  • the crippling factors in practical terms have been, inter alia: the liability to which Member partners are exposed from the actions of their co-partners on their behalf; limited ability to raise capital.
  • they favour the interests of other stakeholders, are relatively restricted in accessing investment; are arguably deficient in incentivising innovation.
  • The ‘new’ LLP was expressly created to solve the former problem by limiting the liability of Member partners to those assets which they choose to place within its protective ‘semi-permeable membrane’
  • However, the ability to configure the LLP as an “Open” Corporate permits a new and superior form of Enterprise.
  • it is possible to re-organise any existing enterprise as either a partnership or as a partnership of partnerships.
  • the revenues
  • would be divided among Members in accordance with the LLP Agreement. This means that all Members share a common interest in collaborating/co-operating to maximise the Value generated by the LLP collectively as opposed to competing with other stakeholders to maximise their individual share at the other stakeholders’ expense.
  • facilitate the creation of LLP’s as “Co-operatives of Co-operatives”.
  • he ‘Commercial’ Enterprise LLP – where the object is for a closed group of individuals to maximise the value generated in their partnership. There are already over 7,000 of these.
    • Tiberius Brastaviceanu
       
      Can SENSORICA be one of these?
  • the Profit generated in a competitive economy based upon shareholder value and unsustainable growth results from a transfer of risks outwards, and the transfer of reward inwards, leading to a one way transfer of Economic Value.
  • This,
  • will very often impoverish one or more constituency of stakeholders
  • A partnership, however, involves an exchange of value through the sharing of risk and reward.
  • Whether its assets are protected within a corporate entity with limited liability or not, it will always operate co-operatively – for mutual profit.
  • Open Capital, Economics and Politics
  • continuity between Capital as Static Value and Money as Dynamic Value which has never before been possible due to the dichotomy between the absolute/infinite and the absolute/finite durations of the competing claims over assets – “Equity” and “Debt”
  • Open Capital Partnership gives rise to a new form of Financial Capital of indeterminate duration. It enables the Capitalisation of assets and the monetisation of revenue streams in an entirely new way.
  • It is possible to envisage a Society within which individuals are members of a portfolio of Enterprises constituted as partnerships, whether limited in liability or otherwise.
  • Some will be charitable
  • Others will be ‘social’
  • ‘Commercial’ enterprises of all kinds aimed at co-operatively working together to maximise value for the Members.
  • the process has already begun
  • Capitalism
  • superior
  • to all other models, such as Socialism.
  • It can only be replaced by another ‘emergent’ phenomenon, which is adopted ‘virally’ because any Enterprise which does not utilise it will be at a disadvantage to an Enterprise which does.
  • The ‘Open’ Corporate Partnership is: capable of linking any individuals anywhere in respect of collective ownership of assets anywhere; extremely cheap and simple to operate; and because one LLP may be a Member of another it is organically flexible and ‘scaleable’. The phenomenon of “Open Capital” – which is already visible in the form of significant commercial transactions - enables an extremely simple and continuous relationship between those who wish to participate indefinitely in an Enterprise and those who wish to participate for a defined period of time.
  • Moreover, the infinitely divisible proportionate “shares” which constitute ‘Open’ Capital allow stakeholder interests to grow flexibly and organically with the growth in Value of the Enterprise. In legal terms, the LLP agreement is essentially consensual and ‘pre-distributive’: it is demonstrably superior to prescriptive complex contractual relationships negotiated adversarially and subject to subsequent re-distributive legal action. Above all, the ‘Open’ Corporate Partnership is a Co-operative phenomenon which is capable, the author believes, of unleashing the “Co-operative Advantage” based upon the absence of a requirement to pay returns to “rentier” Capitalists.
Kurt Laitner

The Promise of the Commons: an Interview with David Bollier - 0 views

  • We need to imagine new forms of governance
  • Because at a local, self-organized level, the commons can perform lots of tasks that governments just aren't doing well because they’re too corrupted or bought off or too centralized and incapable of dealing with diverse, distributed complexity.”
  • “the commons provides for more fairness, it provides for more individual freedom of participation and it provides for a sense of sufficiency for everyone without getting into the consumerist, growth forever syndrome.
Tiberius Brastaviceanu

Places to Intervene in a System by Donella H. Meadows - developer.*, Developer Dot Star - 0 views

  • Folks who do systems analysis have a great belief in "leverage points."
  • where a small shift in one thing can produce big changes in everything.
  • backward intuition
  • ...15 more annotations...
  • "Places to Intervene in a System," followed by nine items: 9.  Numbers (subsidies, taxes, standards). 8.  Material stocks and flows. 7.  Regulating negative feedback loops. 6.  Driving positive feedback loops. 5.  Information flows. 4.  The rules of the system (incentives, punishment, constraints). 3.  The power of self-organization. 2.  The goals of the system. 1.  The mindset or paradigm out of which the goals, rules, feedback structure arise.
  • an invitation to think more broadly about system change.
  • Numbers ("parameters" in systems jargon) determine how much of a discrepancy turns which faucet how fast.
  • some of which are physically locked in, but most of which are popular intervention points.
  • Probably ninety-five percent of our attention goes to numbers, but there's not a lot of power in them.
  • Not that parameters aren't important—they can be, especially in the short term and to the individual who's standing directly in the flow. But they rarely change behavior. If the system is chronically stagnant, parameter changes rarely kick-start it. If it's wildly variable, they don't usually stabilize it. If it's growing out of control, they don't brake it.
  • Spending more on police doesn't make crime go away.
  • Numbers become leverage points when they go into ranges that kick off one of the items higher on this list.
  • Probably the most common kind of critical number is the length of delay in a feedback loop.
  • A delay in a feedback process is critical relative to rates of change (growth, fluctuation, decay) in the system state that the feedback loop is trying to control.
  • Delays that are too short cause overreaction, oscillations amplified by the jumpiness of the response. Delays that are too long cause damped, sustained, or exploding oscillations, depending on how much too long. At the extreme they cause chaos. Delays in a system with a threshold, a danger point, a range past which irreversible damage can occur, cause overshoot and collapse.
  • delays are not often easily changeable
  • It's usually easier to slow down the change rate (positive feedback loops, higher on this list), so feedback delays won't cause so much trouble
  • Most systems have evolved or are designed to stay out of sensitive parameter ranges. Mostly, the numbers are not worth the sweat put into them.
  • The plumbing structure, the stocks and flows and their physical arrangement, can have an enormous effect on how a system operates.
‹ Previous 21 - 36 of 36
Showing 20 items per page