Csound on the Web

Total Page:16

File Type:pdf, Size:1020Kb

Csound on the Web Csound on the Web Victor LAZZARINI and Edward COSTELLO and Steven YI and John FITCH Department of Music National University of Ireland Maynooth, Ireland, [email protected], [email protected], [email protected], jpff@codemist.co.uk g Abstract 2 Audio Technologies for the Web This paper reports on two approaches to provide a The current state of audio systems for world- general-purpose audio programming support for web wide web applications is primarily based upon applications based on Csound. It reviews the cur- three technologies: Java1, Adobe Flash2, and rent state of web audio development, and discusses HTML5 Web Audio3. Of the three, Java is the some previous attempts at this. We then introduce oldest. Applications using Java are deployed via a Javascript version of Csound that has been crea- the web either as Applets4 or via Java Web ted using the Emscripten compiler, and discuss its Start5. Java as a platform for web applications features and limitations. In complement to this, we has lost popularity since its introduction, pri- look at a Native Client implementation of Csound, which is a fully-functional version of Csound running marily due to historically sluggish start-up ti- in Chrome and Chromium browsers. mes as well as concerns over security breaches. Also of concern is that major browser vendors have either completely disabled Applet loading Keywords or disabled them by default, and that NPAPI plugin support, with which the Java plugin for Music Programming Languages; Web Applications; browsers is implemented, is planned to be drop- ped in future browser versions6. While Java sees 1 Introduction strong support on the server-side and desktop, its future as a web-deployed application is te- The web browser has become an increasingly nuous at best and difficult to recommend for viable platform for the creation and distributi- future audio system development. on of various types of media computing appli- Adobe Flash as a platform has seen large- cations[Wyse and Subramanian, 2013]. It is no scale support across platforms and across brow- surprise that audio is an important part of these sers. Numerous large-scale applications have be- developments. For a good while now we have be- en developed such as AudioTool7, Patchwork8, en interested in the possibilities of deployment and Noteflight9. Flash developers can choose to of client-side Csound-based applications, in ad- deploy to the web using the Flash plugin, as dition to the already existing server-side capa- well as use Adobe Air10 to deploy to desktop bilities of the system. Such scenarios would be and mobile devices. While these applications de- ideal for various uses of Csound. For instance, monstrate what can be developed for the web in Education, we could see the easy deployment of Computer Music training software for all le- 1http://java.oracle.com vels, from secondary schools to third-level in- 2http://www.adobe.com/products/flashruntimes. html stitutions. For the researcher, web applications 3 can provide an easy means of creating proto- http://www.w3.org/TR/webaudio/ 4http://docs.oracle.com/javase/tutorial/ types and demonstrations. Composers and me- deployment/applet/index.html dia artists can also benefit from the wide reach 5http://docs.oracle.com/javase/tutorial/ of the internet to create portable works of art. deployment/webstart/index.html In summary, given the right conditions, Csound 6http://blog.chromium.org/2013/09/ can provide a solid and robust general-purpose saying-goodbye-to-our-old-friend-npapi.html 7http://www.audiotool.com/ audio development environment for a variety of 8http://www.patchwork-synth.com uses. In this paper, we report on the progress 9http://www.noteflight.com towards supporting these conditions. 10http://www.adobe.com/products/air.html using Flash, the Flash platform itself has a Csound on the server is Oeyvind Brandtsegg's number of drawbacks. The primary tools for VLBI Music 18, where Csound is running on the Flash development are closed-source, commer- server and publishes its audio output to an au- cial applications that are unavailable on Linux, dio stream that end users can listen to. A simi- though open source Flash compilers and IDEs lar architecture is found in [Johannes and To- do exist11. There has been a backlash against shihiro, 2013]. Since version 6.02, Csound also Flash in browsers, most famously by Steve Jobs includes a built-in server, that can be activa- and Apple12, and the technology stack as a who- ted through an option on start up. The server le has seen limited development with the gro- is able to receive code directly through UDP wing popularity of HTML5. At this time, Flash connections and compile them on the fly. may be a viable platform for building audio ap- Using Csound server-side has both positives plications, but the uncertain future makes it dif- and negatives that should be evaluated for a ficult to recommend. project's requirements. It can be appropriate to Finally, HTML5 Web Audio is the most re- use if the project's design calls for a single audio cent of technologies for web audio applications. stream/Csound instance that is shared by all Examples include the \Recreating the sounds of listeners. In this case, users might interact with the BBC Radiophonic Workshop using the Web the audio system over the web, at the expen- Audio API" site13, Gibberish14, and WebPd15. se of network latency. Using multiple realtime Unlike Java or Flash, which are implemented Csound instances, as would be the case if there as browser plug-ins, the Web Audio API is a was one per user, would certainly be taxing for W3C proposed standard that is implemented by a single server and would require careful resour- the browser itself.16 Having built-in support for ce limiting. For multiple non-realtime Csound Audio removes the security issues and concerns instances, as in the case of NetCsound, multi- over the future of plug-ins that affect Java and ple jobs may be scheduled and batch processed Flash. However, the Web Audio API has limita- with less problems than with realtime systems, tions that will be explored further below in the though resource management is still a concern. section on Emscripten. An early project to employ client-side audio computation by Csound was described in [Casey 3 Csound-based Web Application and Smaragdis, 1996], where a sound and music Design description system was proposed for the rende- Csound is a music synthesis system that has ring of network-supplied data streams. A possi- roots in the very earliest history of computer bly more flexible way to use Csound in client- music. Csound use in Desktop and Mobile app- side applications, however, is to use the web lications has been discussed previously in [Laz- browser as a platform. Two attempts at this ha- zarini et al., 2012b], [Yi and Lazzarini, 2012], ve been made in the past. The first was the now- and [Lazzarini et al., 2012a]. defunct ActiveX Csound (also known as AXC- 19 Prior to the technologies presented this pa- sound) , which allowed embedding Csound into per, Csound-based web applications have em- a webpage as an ActiveX Object. This technolo- ployed Csound mostly on the server-side. For gy is no longer maintained and was only availa- example, NetCsound 17 allows sending a CSD ble for use on Windows with Internet Explo- file to the server, where it would render the rer. A second attempt was made in the Mobile project to disk and email the user a link to Csound Project[Lazzarini et al., 2012b], where a the rendered file when complete. Another use of proof-of-concept Csound-based application was developed with Java and deployed using Java 11http://www.flashdevelop.org/ Web Start, achieving client-side Csound use via 12http://www.apple.com/hotnews/ the browser. However, the technology required thoughts-on-flash/ special permissions to run on the client side and 13 http://webaudio.prototyping.bbc.co.uk/ required Java to be installed. Due to those issu- 14Available at https://github.com/ charlieroberts/Gibberish, discussed in [Roberts es and the unsure future of Java over the web, et al., 2013] 15https://github.com/sebpiq/WebPd 18http://www.researchcatalogue.net/view/55360/ 16http://caniuse.com/audio-api lists current brow- 55361 sers that support the Web Audio API 19We were unable to find a copy of this online, but one 17Available at http://dream.cs.bath.ac.uk/ is available from the CD-ROM included with [Boulanger, netcsound/, discussed in [ffitch et al., 2007] 2000] the solution was not further explored. semantic emulation in order to achieve the best The two systems described in this paper are execution performance [Zakai, 2011]. browser-based solutions that run on the client- Implementations of the C and C++ runti- side. The both share the following benefits: me libraries have been created for applicati- ons compiled with Emscripten. These allow pro- • Csound has a large array of signal proces- grams written in C/C++ to transparently per- sing opcodes made immediately available form common tasks such as using the file sys- to web-based projects. tem, allocating memory and printing to the con- • They are compiled using the same source sole. Emscripten allows a virtual filesystem to code as is used for the desktop and mo- be created using its FS library, which is used 21 bile version of Csound. They only require by Emscripten's libc and libcxx for file I/O . recompiling to keep them in sync with the Files can be added or removed from the virtual latest Csound features and bug fixes. filesystem using Javascript helper functions.
Recommended publications
  • Simulationsprogramm Zur Visualisierung Der Vorgänge in Einem Computer
    Simulationsprogramm zur Visualisierung der Vorgänge in einem Computer Masterarbeit zur Erlangung des Master of Advanced Studies ZFH in Informatik vorgelegt von Christian Kaegi geboren am 05.01.1969 von Bauma, Kanton Zürich eingereicht Dipl. Ing. Walter Eich Stetten, 28.8.2015 ZHAW - Masterarbeit - Christian Kaegi - 28.8.2015 - v2.0.3 Inhaltsverzeichnis 1. Zusammenfassung 9 2. Einleitung 11 2.1 Ausgangslage 11 2.2 Motivation 12 2.3 Fragestellungen 12 2.4 Abgrenzung 12 2.5 Zielsetzung 12 3. Von der abstrakten Theorie zur erleb- und fassbaren Simulation 13 3.1 Problemanalyse 13 3.1.1 Definition der Zielgruppe 13 3.1.2 Personas 14 3.1.3 Beispiele von existierenden Lösungen und Lösungsansätzen 15 3.1.3.1 Little Man Computer 15 3.1.3.2 Der Bonsai-Modellrechner 16 3.1.3.3 Der Murmelrechner 17 3.1.3.4 Paper Processor 18 3.1.3.5 WDR-1-Bit-Computer 19 3.1.3.6 Ein 8-Bit Computer Marke Eigenbau 19 3.1.3.7 Ein einfacher 4-Bit Computer für den Klassenraum 20 3.1.3.8 Visuelle Simulation einer 6502 CPU auf Transistorebene 21 3.1.3.9 Simulationen mit Logisim 22 3.1.3.10 Weitere Simulationsprogramme 22 3.1.4 Fazit 23 3.2 Lösungsansatz 24 3.3 Die Komponenten 25 3.3.1 Befehls-, Daten- und Adressbus 26 3.3.2 Logikgatter 26 3.3.3 Speicher 27 3.3.4 Auswahlschaltungen 30 3.3.5 Arithmetik 32 3.3.6 Taktgeber 36 3.4 Simulation in Logisim bauen 36 3.4.1 Befehlssatz 38 3.4.1.1 Erläuterung der Befehle 40 3.4.1.2 Zeichencode 41 3.5 Anforderungen an das Simulationsprogramm 43 3.6 Technologie-Evaluation 44 3.6.1 Zielplattform 44 3.6.2 Java 44 3.6.3 Actionscript 44 3.6.4
    [Show full text]
  • Thoughts on Flash
    Apple has a long relationship with Adobe. In fact, we met Adobe’s founders when they were in their proverbial garage. Apple was their first big customer, adopting their Postscript language for our new Laserwriter printer. Apple invested in Adobe and owned around 20% of the company for many years. The two companies worked closely together to pioneer desktop publishing and there were many good times. Since that golden era, the companies have grown apart. Apple went through its near death experience, and Adobe was drawn to the corporate market with their Acrobat products. Today the two companies still work together to serve their joint creative customers – Mac users buy around half of Adobe’s Creative Suite products – but beyond that there are few joint interests. I wanted to jot down some of our thoughts on Adobe’s Flash products so that customers and critics may better understand why we do not allow Flash on iPhones, iPods and iPads. Adobe has characterized our decision as being primarily business driven – they say we want to protect our App Store – but in reality it is based on technology issues. Adobe claims that we are a closed system, and that Flash is open, but in fact the opposite is true. Let me explain. First, there’s “Open”. Adobe’s Flash products are 100% proprietary. They are only available from Adobe, and Adobe has sole authority as to their future enhancement, pricing, etc. While Adobe’s Flash products are widely available, this does not mean they are open, since they are controlled entirely by Adobe and available only from Adobe.
    [Show full text]
  • Talk Nerdy to Me January 2021 Microsoft Says Solarwinds Hackers Accessed Some of Its Source Code
    1 Talk Nerdy To Me January 2021 Microsoft Says SolarWinds Hackers Accessed Some of Its Source Code Microsoft revealed that the threat actors behind the SolarWinds supply chain attack were able to gain access to a small number of internal accounts and escalate access inside its internal network. The “very sophisticated nation-state actor” used the unauthorized access to view, but not modify, the source code present in its repositories, the company said. “We detected unusual activity with a small number of internal accounts and upon review, we discovered one account had been used to view source code in a number of source code repositories,” the Windows maker disclosed in an update. “The account did not have permissions to modify any code or engineering systems and our investigation further confirmed no changes were made. These accounts were investigated and remediated.” The development is the latest in the far-reaching espionage saga that came to light earlier in December following revelations by cybersecurity firm FireEye that attackers had compromised its systems via a trojanized SolarWinds update to steal its Red Team penetration testing tools. During the course of the probe into the hack, Microsoft had previously admitted to detecting malicious SolarWinds binaries in its own environment but denied its systems were used to target others or that attackers had access to production services or customer data. Several other companies, including Cisco, VMware, Intel, NVIDIA, and a number of other US government agencies, have since discovered markers of the Sunburst (or Solorigate) malware on their networks, planted via tainted Orion updates. The Redmond-based company said its investigation is still ongoing but downplayed the incident, adding “viewing source code isn’t tied to elevation of risk” and that it had found evidence of attempted activities that were neutralized by its protections.
    [Show full text]
  • Distributed Tuning of Boundary Resources: the Case of Apple's Ios Service System
    Ben Eaton, Silvia Elaluf-Calderwood, Carsten Sørensen and Youngjin Yoo Distributed tuning of boundary resources: the case of Apple's iOS service system Article (Published version) (Refereed) Original citation: Eaton, Ben, Elaluf-Calderwood, Silvia, Sorensen, Carsten and Yoo, Youngjin (2015) Distributed tuning of boundary resources: the case of Apple's iOS service system. MIS Quarterly, 39 (1). pp. 217-243. ISSN 0276-7783 Reuse of this item is permitted through licensing under the Creative Commons: © 2015 The Authors CC-BY This version available at: http://eprints.lse.ac.uk/63272/ Available in LSE Research Online: August 2015 LSE has developed LSE Research Online so that users may access research output of the School. Copyright © and Moral Rights for the papers on this site are retained by the individual authors and/or other copyright owners. You may freely distribute the URL (http://eprints.lse.ac.uk) of the LSE Research Online website. SPECIAL ISSUE: SERVICE INNOVATION IN THE DIGITAL AGE DISTRIBUTED TUNING OF BOUNDARY RESOURCES: THE CASE OF APPLE’S IOS SERVICE SYSTEM1 Ben Eaton Department of IT Management, Copenhagen Business School, Copenhagen, DENMARK {[email protected]} Silvia Elaluf-Calderwood and Carsten Sørensen Department of Management, The London School of Economics and Political Science, London, GREAT BRITAIN {[email protected]} {[email protected]} Youngjin Yoo Fox School of Business, Temple University, Philadelphia, PA 19140 UNITED STATES {[email protected]} The digital age has seen the rise of service systems involving highly distributed, heterogeneous, and resource- integrating actors whose relationships are governed by shared institutional logics, standards, and digital technology.
    [Show full text]
  • Security Considerations Around the Usage of Client-Side Storage Apis
    Security considerations around the usage of client-side storage APIs Stefano Belloro (BBC) Alexios Mylonas (Bournemouth University) Technical Report No. BUCSR-2018-01 January 12 2018 ABSTRACT Web Storage, Indexed Database API and Web SQL Database are primitives that allow web browsers to store information in the client in a much more advanced way compared to other techniques such as HTTP Cookies. They were originally introduced with the goal of enhancing the capabilities of websites, however, they are often exploited as a way of tracking users across multiple sessions and websites. This work is divided in two parts. First, it quantifies the usage of these three primitives in the context of user tracking. This is done by performing a large-scale analysis on the usage of these techniques in the wild. The results highlight that code snippets belonging to those primitives can be found in tracking scripts at a surprising high rate, suggesting that user tracking is a major use case of these technologies. The second part reviews of the effectiveness of the removal of client-side storage data in modern browsers. A web application, built for specifically for this study, is used to highlight that it is often extremely hard, if not impossible, for users to remove personal data stored using the three primitives considered. This finding has significant implications, because those techniques are often uses as vector for cookie resurrection. CONTENTS Abstract ........................................................................................................................
    [Show full text]
  • V´Yvoj Hernıho Editoru Na Platformˇe Flash
    MASARYKOVA UNIVERZITA F}w¡¢£¤¥¦§¨ AKULTA INFORMATIKY !"#$%&'()+,-./012345<yA| Vyvoj´ hern´ıhoeditoru na platformˇeFlash DIPLOMOVA´ PRACE´ Bc. Martin Jakubec Brno, jaro 2014 Prohl´aˇsen´ı Prohlasuji,ˇ zeˇ tato diplomova´ prace´ je mym´ puvodn˚ ´ım autorskym´ d´ılem, ktere´ jsem vypracoval samostatne.ˇ Vsechnyˇ zdroje, prameny a literaturu, ktere´ jsem priˇ vypracovan´ ´ı pouzˇ´ıval nebo z nich cerpal,ˇ v praci´ rˇadn´ eˇ cituji s uveden´ım upln´ eho´ odkazu na prˇ´ıslusnˇ y´ zdroj. Vedouc´ıpr´ace: RNDr. Barbora Kozl´ıkova,´ Ph.D. ii Podˇekov´an´ı Rad´ bych podekovalˇ Ba´reˇ Kozl´ıkove´ za skvelˇ e´ veden´ı diplomove´ prace´ a za vsechenˇ cas,ˇ ktery´ mi venovala.ˇ Dale´ chci podekovatˇ Michalu Gab- rielovi za konzultace a odborne´ rady a celemu´ tymu´ CUKETA, s.r.o. za po- skytnut´ı zazem´ ´ı priˇ vyvoji´ hern´ıho editoru. iii Shrnut´ı C´ılem diplomove´ prace´ je navrhnout a implementovat jadro´ hern´ıho en- ginu a editoru pro konfiguraci hern´ıch mechanismu˚ na platformeˇ Flash. Hern´ı engine bude modularn´ ´ı, aby jej bylo moznˇ e´ rozsiˇ rovatˇ a vyuzˇ´ıvat pro ruzn˚ e´ typy her. Soucˇast´ ´ı prace´ bude ukazka´ hry nakonfigurovane´ v tomto editoru. V neposledn´ı radˇ eˇ se budu snazitˇ prezentovat prakticke´ zkusenostiˇ z vyvoje´ realn´ e´ hry. iv Kl´ıˇcov´aslova hern´ı editor, level editor, hern´ı engine, vyvoj´ her, Adobe Flash, game en- gine, Flash Player, hern´ı prumysl,˚ hern´ı navrh,´ game design v Obsah 1 Uvod´ ................................... 3 2 Historie hern´ıhopr ˚umyslu ...................... 5 2.1 50.–60. leta´ ............................. 5 2.2 60.–70.
    [Show full text]
  • 2012 the Year of HTML5 White Paper V1 (Reviewed) (ID 2899).Indd
    A CAPLIN WHITE PAPER 2012: The Year of HTML5 BY PAUL CAPLIN www.caplin.com FEBRUARY 2012 One of the most striking things about the coming year is its unpredictability. What’s going to happen to the Eurozone? Who is going to be in the White House? Will the global economy recover? What will happen in Iran? There is uncertainty everywhere you look. But in the world of software at least, one thing looks like a safe bet: in 2012, HTML5 will emerge as the world’s favourite GUI technology and, in particular, the tool of choice for building Web trading applications. This white paper explains why this is going to happen, and why it’s a good thing. Paul Caplin, CEO of Caplin Systems Ltd. founded the company in 2000 BACK TO THE FUTURE The Web first took off in the early 1990s and on, which is the reason that traditional failings – or, more cynically, to get a propri- as a way of publishing text, and was soon applications don’t stand a chance in areas etary lock on a key area of Web functional- extended to include images. Later script- where the Web works well. ity. Each was successful for a time. ing was added, so that Web pages could be Two areas in which the Web did not But they all suffered from being closed, interactive, and then multimedia content. work well in the past were graphical ani- private technologies that didn’t integrate With each additional capability, the Web mation and rich interactive applications. at all nicely with the rest of the Web.
    [Show full text]
  • Thoughts-On-Flash.Pdf
    Thoughts on Flash Apple has a long relationship with Adobe. In fact, we met Adobe’s founders when they were in their proverbial garage. Apple was their first big customer, adopting their Postscript language for our new Laserwriter printer. Apple invested in Adobe and owned around 20% of the company for many years. The two companies worked closely together to pioneer desktop publishing and there were many good times. Since that golden era, the companies have grown apart. Apple went through its near death experience, and Adobe was drawn to the corporate market with their Acrobat products. Today the two companies still work together to serve their joint creative customers – Mac users buy around half of Adobe’s Creative Suite products – but beyond that there are few joint interests. I wanted to jot down some of our thoughts on Adobe’s Flash products so that customers and critics may better understand why we do not allow Flash on iPhones, iPods and iPads. Adobe has characterized our decision as being primarily business driven – they say we want to protect our App Store – but in reality it is based on technology issues. Adobe claims that we are a closed system, and that Flash is open, but in fact the opposite is true. Let me explain. First, there’s “Open”. Adobe’s Flash products are 100% proprietary. They are only available from Adobe, and Adobe has sole authority as to their future enhancement, pricing, etc. While Adobe’s Flash products are widely available, this does not mean they are open, since they are controlled entirely by Adobe and available only from Adobe.
    [Show full text]
  • The Mobile Web and More Topics
    RESPONSIVE WEB DESIGN THE MOBILE WEB AND MORE TOPICS • Web Page Layout: a historical perspective • Grid Layouts • The Mobile Web / Mobile First • Responsive Design NO STYLE! yahoo.com circa 1995 NO STYLE! craigslist.org circa 1998 See: Why the Web Hasn't Birthed a Prettier Craigslist EARLY ATTEMPTS AT STYLING • Images: introduced in HTML 2.0 (1994) • Image maps: • Mosaic 1.1: server side image maps (1995) • HTML 3.2 client side image maps. (1996) CLIENT SIDE IMAGE MAPS • Used to be used on almost every web page! • Used to implement navigation schemes IMAGE MAPS - BAD IDEA • Problems • Longer load times (think mobile) • Horrible from an accessibility perspective. • Painful to create. • Really out of style from a design perspective. MORE ATTEMPTS AT STYLING • Adobe Flash (introduced in 1996) • required a browser plug-in • allowed complex highly interactive websites to be built. • broke HTTP concept of addressability Apple struck a very controversial chord when they banished Adobe Flash from their iOS platform. Was this primarily a technical decision or a business decision? See Thoughts on Flash by Steve Jobs. MODERN FLASH SITE EXAMPLES • Flash is still being used… some interesting sites: • http://cloudsovercuba.com/ • http://wechoosethemoon.org/ YET MORE ATTEMPTS AT STYLING • Tables: introduced in “HTML 3.0” for display of tabular info. Quickly subverted for page layout. (1995) • fonts, colors, background images, etc. HTML 3.2 (1996) LAYOUT WITH TABLES (Note that CSS wasn’t widely used until years later.) PRIMITIVE LAYOUT WITH TABLES amazon.com circa 1996? VINTAGE GOOGLE! google.com circa 1999 DON’T USE TABLES FOR LAYOUT! • Using HTML Tables for layout purposes is NOT a best practice: • mixes presentational data in with your content.
    [Show full text]
  • Kandidaatintyön Loppuraportti
    Lappeenrannan teknillinen yliopisto LUT Kauppatieteet ja tuotantotalous Tietotekniikan koulutusohjelma Kandidaatintyö Kimmo Bordi MOBIILIPELIEN KEHITYS JA JULKAISU MONIALUSTAKEHITYSTYÖKALUJA HYÖDYNTÄEN Työn tarkastaja: TkT Jussi Kasurinen Työn ohjaaja: TkT Jussi Kasurinen TIIVISTELMÄ Lappeenrannan teknillinen yliopisto LUT Kauppatieteet ja tuotantotalous Tietotekniikan koulutusohjelma Kimmo Bordi Mobiilipelien kehitys ja julkaisu monialustakehitystyökaluja hyödyntäen Kandidaatintyö 2015 69 sivua, 13 kuvaa, 4 taulukkoa Työn tarkastaja: TkT Jussi Kasurinen Hakusanat: Android, iOS, Windows Phone, HTML5, pelikehitys, monialustatyökalut Keywords: Android, iOS, Windows Phone, HTML5, game development, cross-platform tools Tässä kandidaatintyössä esitellään mobiilimarkkoiden pirstaloitumisongelma, ja se millaisia haasteita kehittäjät voivat kokea kehittäessään sovelluksia, jotka tukevat useampia mobiilialustoja. Lisäksi työssä esitellään erilaisia mobiilisovelluksissa käytettäviä monetisaatiomalleja. Työssä tarkastellaan myös monialustakehitystyökalujen ja HTML5- tekniikan soveltuvuutta mobiilialustojen kehityshaasteiden ratkaisemiseen. Työn lopuksi toteutetaan ja julkaistaan käytännön pelisovellus monialustatyökalulla eri alustoja tukien. Tämän demosovelluksen avulla perehdytään julkaisuprosesseihin käytännössä, tuoden esille eri alustojen asettamia vaatimuksia kehittäjälle. ii ABSTRACT Lappeenranta University of Technology LUT School of Business and Management Degree Program in Computer Science Kimmo Bordi Development and publishing of mobile
    [Show full text]
  • The Role of HTML5 and Flash in Web Design
    The role of HTML5 and Flash in Web Design By Kaela SooHoo Graphic Communication Department College of Liberal Arts California Polytechnic State University San Luis Obispo, 2012 ‐ 1 ‐ Abstract Kaela SooHoo Graphic Communication Department, June 2012 Advisor: Xiaoying Rong The purpose of this study was to determine whether HTML5 will replace Flash in the web design industry. Using the information taken from the study, the researcher made a prediction to answer the former question. The researcher looked further into these programs and find information to determine what it is that makes each of these programs unique and possibly replaceable. The researcher also interviewed and surveyed those who used these programs to design or view online websites to gain insight on practicality and current trends in the web design industry. Through research and experimentation, the researcher decided that HTML5 may replace Flash in the web design industry because of the found trends in today’s society. HTML5 surely has much more work to go before being completely developed as a useable program, but once it is Flash will slowly disappear from the web. Adobe Flash may have lost its relevance in web design, but it is surely not disappearing completely any time soon due to the several other purposes it serves outside of the web. ‐ 2 ‐ Table of Contents Chapter 1 – Introduction 4 Chapter 2 – Literature Review 7 Chapter 3 – Research Methods and Procedures 20 Chapter 4 – Results 22 Chapter 5 – Conclusions 31 Appendix A – Questionnaire/Survey 34 Appendix B – Interview Questions 36 References 37 ‐ 3 ‐ Chapter 1 Introduction Statement of the Problem The web has become one of the most popular forms of media to share and communicate information throughout the world.
    [Show full text]
  • The Death of a Technical Skill
    The Death of a Technical Skill John J. Horton Prasanna Tambe∗ MIT Sloan and NBER Wharton, U. Penn October 17, 2020 Abstract In 2010, Steve Jobs announced that Apple would no longer support Adobe Flash|a popular set of tools for creating Internet applications. After the announcement, the use of Flash declined precipitously. We show there was no reduction in Flash hourly wages because of a rapid supply response: Flash specialists, especially those who were younger, were less specialized, or had good \fall back" skills quickly transitioned away from Flash; new market entrants also avoided Flash, leaving the effective supply per Flash job opening unchanged. As such, there was no factor market reason for firms to stay with Flash longer. ∗For the latest version, see https://www.john-joseph-horton.com/papers/ schumpeter.pdf. We acknowledge valuable feedback from seminar participants at the NBER IT and Digitization Summer Institute, the INFORMS Conference on Information Systems and Technology, Cornell University, Arizona State University, the Rotterdam School of Management, the University of Texas-Austin, the University of Maryland, and the University of Utah. Thanks to James Bessen, Apostolos Filippas, Richard Zeckhauser, Chis Stanton, David Autor, Rob Seamans, Jacques Cr´emer,Adam Ozimek, Sebastian Steffen, Andrey Fradkin, Emma van Ingwen, Joe Golden, and Daniel Rock for helpful comments and suggestions. Prasanna Tambe is grateful for financial support from the Alfred P. Sloan foundation. John Horton is grateful for financial support from the Up- john Institute. Thanks to Jeff Bigham and Elliot Geno for insight into the labor market for Flash skills. For a version of this paper with all code included as an appendix, see https://www.john-joseph-horton.com/papers/schumpeter_with_code.pdf.
    [Show full text]