Skip to main content

Home/ Sensorica Knowledge/ Group items tagged stacks

Rss Feed Group items tagged

Tiberius Brastaviceanu

PeerPoint « Poor Richard's Almanack 2010 - 1 views

  • Each PeerPoint is an autonomous node on a p2p network with no centralized corporate  infrastructure.
  • The PeerPoint will be connected between the user’s pc, home network, or mobile device and the ISP connection.
  • The PeerPoint is designed to Occupy the Internet.
  • ...7 more annotations...
  • provide greater user value
  • For numerous reasons the services provided by the commercial companies do not adequately meet the creative, social, political, and financial needs of the 99%
  • allows self-selected individuals to coalesce into powerful workgroups, forums, and movements.
  • With the PeerPoint approach, each user will own her own inexpensive internet appliance and all the data and content she creates
  • If a FreedomBox were used as a starting platform, the PeerPoint application package would be added on top of the FreedomBox security stack.
  • The common requirements for each PeerPoint app are: world class, best-of-breed open source p2p architecture consistent, granular, user-customizable security management and identity protection integrated with other apps in the suite via a common distributed database and/or “data bus” architecture. consistent, user-customizable large, medium, and small-screen (mobile device) user interfaces ability to interface with its corresponding major-market-share service (Facebook, Twitter, etc.) GPS enabled
  • First tier applications: distributed database social networking  (comparison of distributed social network applications) trust/reputation metrics crowdsourcing: content collaboration & management  (wiki, Google Docs, or better) project management/workflow data visualization (data sets, projects, networks, etc.) user-customizable complementary currency and barter exchange (Community Forge or better) crowd funding (http://www.quora.com/Is-there-an-open-source-crowdfunding-platform) voting (LiquidFeedback or better) universal search across all PeerPoint data/content and world wide web content
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. 
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

opscientia/desci - 0 views

  •  
    "We are actively building the software stack for empowering citizen science communities."
Tiberius Brastaviceanu

Commons Stack - 1 views

  •  
    Main concept is the bounding curve, and this is an implementation. Generates incentives for funding commons development.
1 - 12 of 12
Showing 20 items per page