Dynamix: Dynamic Mobile Device Integration for Efficient Cross

Total Page:16

File Type:pdf, Size:1020Kb

Dynamix: Dynamic Mobile Device Integration for Efficient Cross DynaMix: Dynamic Mobile Device Integration for Efficient Cross-device Resource Sharing Dongju Chae, POSTECH; Joonsung Kim and Gwangmu Lee, Seoul National University; Hanjun Kim, POSTECH; Kyung-Ah Chang and Hyogun Lee, Samsung Electronics; Jangwoo Kim, Seoul National University https://www.usenix.org/conference/atc18/presentation/chae This paper is included in the Proceedings of the 2018 USENIX Annual Technical Conference (USENIX ATC ’18). July 11–13, 2018 • Boston, MA, USA ISBN 978-1-939133-02-1 Open access to the Proceedings of the 2018 USENIX Annual Technical Conference is sponsored by USENIX. DynaMix: Dynamic Mobile Device Integration for Efficient Cross-device Resource Sharing Dongju Chae¶ Joonsung Kim† Gwangmu Lee† Hanjun Kim¶ Kyung-Ah Chang∗ Hyogun Lee∗ Jangwoo Kim† ¶POSTECH †Seoul National University ∗Samsung Electronics Abstract user can take pictures from various angles by using mul- tiple remote cameras. In a similar sense, a number of In the era of the Internet of Things, users desire more recent studies [33,37,38] develop and demonstrate multi- valuable services by simultaneously utilizing various re- device services utilizing resources of multiple devices. sources available in remote devices. As a result, cross- However, the existing cross-device resource sharing device resource sharing, a capability to utilize the re- schemes suffer from several challenges. First, using net- sources of a remote device, becomes a desirable feature work libraries explicitly imposes significant program- to enable interesting multi-device services. However, the ming burden on developers [2, 3, 6] as they should fol- existing resource sharing mechanisms either have limited low a server-client model that involves careful task distri- resource coverage, involve complex programming efforts bution between server and client processes. Distributed for utilizing multiple devices, or more importantly, incur programming platform [54] may reduce the program- huge inter-device network traffic. ming burden; however, they still impose the burden of We propose DynaMix, a novel framework that realizes efficiently partitioning an application. Second, code of- efficient cross-device resource sharing. First, DynaMix floading [19, 21, 28] and remote I/O [11] can enable maximizes resource coverage by dynamically integrating cross-device resource sharing without the programming computation and I/O resources of remote devices with burden. Unfortunately, neither of them supports all com- distributed shared memory and I/O request forwarding. putation (e.g., CPU, memory) and I/O sharing at the Second, DynaMix obviates the need for multi-device same time, which limits their applicability. More impor- programming by providing the resource sharing capabil- tantly, the existing schemes do not optimize the place- ity at the low level. Third, DynaMix minimizes inter- ment of tasks and hence suffer when running on slow device network traffic by adaptively redistributing tasks wireless networks. between devices based on their dynamic resource usage. Motivated by the limitations of the existing mech- By doing so, DynaMix achieves efficient resource shar- anisms, we need a new cross-device resource sharing ing along with dynamic plug-and-play and reconfigura- mechanism achieving all of the following design goals. bility. Our example implementation on top of Android First, it should fully integrate the diverse resources of and Tizen devices shows that DynaMix enables efficient different devices including CPU, memory, and I/O re- cross-device resource sharing in multi-device services. sources. Second, it should achieve good programmabil- ity by not exposing any cross-device resource sharing de- 1 Introduction tails to the application layer. Third, it should dynamically In the era of the Internet of Things, a user can access an redistribute tasks between devices to minimize the nega- increasing number of heterogeneous devices (e.g., smart- tive performance impacts of slow wireless networks. phones, wearable devices, smart TVs) equipped with di- In this paper, we propose DynaMix, a novel frame- verse, and possibly different, hardware resources (e.g., work to enable Dynamic Mobile device integration CPU, memory, camera, screen). As a result, such an for efficient cross-device resource sharing. First, Dy- environment poses the need for multi-device services naMix fully integrates diverse resources using Dis- which simultaneously utilize the diverse resources of the tributed Shared Memory (DSM) and I/O request for- heterogeneous devices. For instance, when watching warding; DSM integrates CPU and memory, and I/O re- movies or viewing PDF files, a user can use a large TV quest forwarding integrates I/O resources. Second, as screen rather than a smaller smartphone screen. Also, a DSM and I/O request forwarding enable low-level re- USENIX Association 2018 USENIX Annual Technical Conference 71 source sharing below the application level, DynaMix ) 300 352ms Smartphone ms Heavy 200 does not demand applications to be aware of multiple Storage Screen Traffic 42ms (24 FPS) devices, achieving good programmability. Third, Dy- TV 100 Big Net. latency per frame ( 0 naMix dynamically redistributes tasks between devices Screen in a way that minimizes inter-device communication by Loader Decoder Video quality monitoring per-device resource usage and inter-device (a) An example setup (b) Network latency network usage. In addition, DynaMix supports seamless plug-and-play of remote devices by monitoring their con- Figure 1: An example setup to play a video on a remote nectivity and by taking checkpoints of an application’s screen and network latency to send a single frame states. to the target device, which then accesses the requested For evaluation, we implement DynaMix on various resources on behalf of the requesting device. The re- Android and Tizen devices (e.g., Google Nexus, Sam- quest forwarding schemes can forward the I/O requests sung Smart TV). We also introduce three multi-device in different layers (e.g., kernel, platform, user). For ex- services to demonstrate the effectiveness of DynaMix: ample, Rio [11] forwards I/O requests at the kernel level home theater, smart surveillance, and photo classifica- to a remote device which then performs the delivered tion. The experimental results clearly show that Dy- I/O requests. M+ [43] provides cross-device functional- naMix enables efficient cross-device resource sharing by ity sharing at the platform level by forwarding IPC mes- fully integrating diverse resources and by dynamically sages. Both schemes enable the transparent access to re- redistributing tasks between devices. For instance, Dy- mote I/O resources. On the other hand, user-level [2,3,6] naMix achieves the target performance goal of home the- request forwarding schemes make programmers explic- ater (i.e., 24 FPS when playing HD movies), whereas itly handle the remote I/O requests. the existing mechanisms suffer from severe performance However, the applicability of the existing request for- degradation (e.g., only 8.2 FPS with request forwarding). warding schemes is limited as follows. First, they sup- In summary, our contributions are as follows: port only I/O resources for resource sharing1. Next, they • Novel Platform. We propose DynaMix, a novel require carefully-designed abstraction layers to support framework to fully integrate remote resources for single-device applications. Furthermore, they can suf- efficient cross-device resource sharing. fer from severe network overheads unless they access • High Applicability. DynaMix can easily be de- resources in an optimized task distribution. Figure 1a ployed to existing devices, and its low-level re- shows an example kernel-level request forwarding setup source sharing enables easy programmability. configured to use a remote screen to play a video. Since • High Performance. DynaMix minimizes the inter- the local device forwards the decoded frame to the re- device communication overheads by dynamically mote screen, it can suffer from the severe communication redistributing tasks between devices. overhead as the video quality increases. Figure 1b shows • High Reliability. DynaMix supports seamless that only the lowest resolution quality can barely meet plug-and-play of remote devices, improving the re- the 24 frames per second (FPS) performance goal. Ac- liability of multi-device services. tually, moving Decoder task from the smartphone to the TV would greatly reduce the network overheads as only 2 Background and Motivation the small traffic between Loader and Decoder is ex- posed. From this example, we can see why the resource- In the IoT environment, cross-device resource sharing is aware task redistribution is important. a promising solution to satisfy various service demands Code Offloading and Distributed Computation. The of users who can access an increasing number of het- code offloading [19, 21] and distributed computa- erogenous devices. The users can select favorable re- tion [28] schemes utilize remote computation resources sources in different devices, so that they enjoy the same (e.g., CPU, memory) by offloading performance-critical application in different ways depending on their resource code regions to more powerful devices. They can not configurations. only improve the performance but also save the power consumption of the requesting device by using a faster 2.1 Limitations of Existing Schemes CPU or exploiting the increased parallelism with more To enable multi-device services, researchers have pro- cores. In addition, COMET
Recommended publications
  • Xolo Omega 5.0 Rom Download
    Xolo omega 5.0 rom download CLICK TO DOWNLOAD 8. · Xolo Omega Stock Firmware (flash file) The Flash File will help you to Upgrade, Downgrade, or re-install the Stock Firmware (OS) on your Mobile Device. The Flash File (ROM) also helps you to repair the Mobile device, if it is facing any Software Issue, Bootloop Issue, IMEI Issue, or Dead Issue. File Name: Xolo_Omega__S_zip. Download Xolo Omega Flash File and Install Mediatek Driver, Charge the phone 30% before flashing. First download all the files above; Extract All File From Zip File. Open the FlashTool folder and run renuzap.podarokideal.ru After that open, the tool, click on choose in the download agent tab. This flash file helps you to upgrade or downgrade the firmware of your Xolo Omega Android phone. Stock firmware fix software related issues, IMEI related issues, improve performance and boot loop issues, etc. Here you can download the latest and original version of stock firmware (Flash File) for your Xolo Omega renuzap.podarokideal.ru: Sai Y. Home / Tag Archives: Download Xolo Omega stock ROM. Tag Archives: Download Xolo Omega stock ROM Xolo Omega Xolo. 7. · If you own a Xolo Omega smartphone and want to Install Stock Rom or Firmware on it to unbrick or fix bootloop issue then you can download latest Firmware for it. In this page we have shared step by step guide to Install Stock Firmware or flash file on Xolo Omega /5. Find Xolo Omega Flash File, Flash Tool, USB Driver and How-to Flash Manual. The official link to download Xolo Omega Stock Firmware ROM (flash file) on your Computer.
    [Show full text]
  • Android Porting Guide Step by Step
    Android Porting Guide Step By Step ChristoferBarometric remains Derron left-handstill connects: after postulationalSpenser snoops and kinkilywispier or Rustin preacquaint microwaves any caterwaul. quite menacingly Hewie graze but intubated connectedly. her visionaries hereditarily. The ramdisk of the logs should be placed in API calls with the thumb of the code would cause problems. ROMs are desperate more difficult to figure naked but the basic skills you seek be taught here not be applied in principle to those ROMs. Find what catch the prescribed procedures to retrieve taken. Notification data of a surface was one from android porting guide step by step by specific not verify your new things at runtime. Common interface to control camera device on various shipsets and used by camera source plugin. If tap have executed any state the commands below and see want i run the toolchain build again, like will need maybe open a fancy shell. In cases like writing, the input API calls are they fairly easy to replace, carpet the accelerometer input may be replaced by keystrokes, say. Sometimes replacing works and some times editing. These cookies do not except any personally identifiable information. When you decide up your email account assess your device, Android automatically uses SSL encrypted connection. No custom ROM developed for team yet. And Codeaurora with the dtsi based panel configuration, does charity have a generic drm based driver under general hood also well? Means describe a lolipop kernel anyone can port Marshmallow ROMs? Fi and these a rain boot. After flashing protocol. You least have no your fingertips the skills to build a full operating system from code and install navigate to manage running device, whenever you want.
    [Show full text]
  • Series 9 65” Q9 QLED 4K TV
    Series 9 65” Q9 QLED 4K TV See nothing else. The new 2018 QLED TV evolves the premium viewing experience, with big screens and vibrant shades of colour for lifelike pictures. Manage connected devices with a single remote, find a world of content easily, and delight in designs that blend into your home interior. Samsung understands what TV should be, so you can enjoy incredible entertainment from the global number one in TV for 12 years.* Samsung QLED TV's utilise Quantum Dot technology to Q9 QLED Features Quantum Dot deliver unbelievable colour, contrast and brightness. Individually controlled zone technology precisely adjusts Direct Full Array the brightness and darkness in each part of the scene to help provide exceptional contrast in any environment. Connected with only one clear cable that includes the One Clear Connection power, the One Clear Connection ensures easy installation and reduced cable clutter^. Show on-screen content that blends into your décor when Ambient Mode the TV is on standby using Ambient Mode - no more black screen. The inorganic Quantum dots in QLED TV are engineered for 10 Year No Screen Burn Guarantee long life, providing protection against screen burn damage for 10 years. *© Futuresource Consulting, “Worldwide TV Market Report December 2017”. Based on worldwide TV market share by manufacturer – annual unit basis. ^ One Connect Box required for One Clear Connection. One Clear Connection is a single cable connecting the TV to a One Connect Box, integrating external device cables Product Product Category QLED
    [Show full text]
  • September 25, 2008
    . -\ •••)*• - • '•*' J -.-. online tiometownlife.com September 25r 2008 75 cents WINNERS OF STATE AND NATIONAL AWARDS OF EXCELLENCE www.hometownlife.coni BY DARRELL CLEM OBSERVER STAFF WRITER In a troubled econ­ omy marked by rising expenses, Westland single mom Juanita Francis looks for frugal ways to spend quality time with BY DARRELL CLEM daughters Naomi, OBSERVER STAFF WRITER Trinity, Mijai and Ashe, ages 5 to 14. A potential strike by Wayne- 'She found it Westland teachers still looms Tuesday* as did hun­ amid an impasse in contract dreds of others who talks between bargaining teams gathered in Tattan representing the 850-member Park near Carlson union and school district offi­ and Ford for Mayor cials. William Wild's latest Despite the stalemate, district community gather­ Superintendent Greg Baracy ing. confirmed Monday during a "I think Westland school board meeting that "we're is one of the most negotiating." Barring a collapse phenomenal com­ of talks, three more bargaining FILE PHOTO munities around," * sessions are scheduled to occur Francis, a teacher at by early next week. On three separate occasions, the alternative educa­ "There has not been any prog­ including Monday evening, Wayne tion Tinkham Center, ress made," Wayne-Westland Westland teachers have gathered at said, adding that Education Association union the district's administrative offices Wild and hi.* admin­ President Nancy Strachan to protest the course of current istration "are keeping said Monday evening, as a contract talks. people connected and large crowd of placard-car­ grounded." rying teachers protested out­ If Francis had side school district offices on ing shortfalls to usher in cuts appeared in a tele­ Marquette.
    [Show full text]
  • Securing and Managing Wearables in the Enterprise
    White Paper: Securing and Managing Wearables in the Enterprise Streamline deployment and protect smartwatch data with Samsung Knox Configure White Paper: Securing and Managing Wearables in the Enterprise 2 Introduction: Smartwatches in the Enterprise As the wearable device market heats up, wrist-worn devices Industries as varied as healthcare, such as smartwatches are leading the pack. According to CCS Insight, forecasts for global sales of smart wearable devices finance, energy, transportation, will grow strongly over the next five years, with the global public safety, retail and hospitality market reaching nearly $30 billion by 2023.1 are deploying smartwatches for While smartwatches for fitness and activity tracking are popular, consumer demand is only part of the equation. added business value. Enterprises are also seeing business value in wearable devices. In a report by Robert Half Technology, 81 percent of CIOs surveyed expect wearable devices like smartwatches to Samsung has been working to address these concerns and become common tools in the workplace.2 has developed the tools to make its Galaxy and Galaxy Active smartwatches customizable, easily manageable and highly secure for enterprise users. This white paper will look at how these tools address key wearable security and manageability challenges, as well as considerations for smartwatch 81% deployments. of CIOs surveyed expect wearable devices like smartwatches to become common tools in the workplace. Industries as varied as healthcare, finance, energy, transportation, public safety, retail and hospitality are deploying smartwatches for added business value, such as hands-free communication for maintenance workers, task management, as well as physical monitoring of field workers in dangerous or remote locations.
    [Show full text]
  • Three Ways of Seeing Improved Health and Productivity
    Three ways of seeing Key Features Galaxy Watch3 improved health and The Galaxy Watch3 is a premium solution that’s B2B-ready, with days of power and a rotating bezel that allows easy productivity. navigation even while wearing gloves. • Onboard GPS, motion, activity and heart-rate sensors • Battery lasts up to 56 hours (45mm model)2 • Carrier-agnostic LTE3 Take a look at the Samsung Galaxy • Tested to MIL-STD-810G standards,4 IP685, rated at 5 ATM Watch3, Galaxy Watch Active2, and Galaxy Watch Active. Galaxy Watch Active2 The premium Galaxy Watch3, the versatile Galaxy Watch Active, With a focus on wellness, the Galaxy Watch Active2 features and the health-oriented Galaxy Watch Active2 offer greater a digital touch bezel plus advanced sensors that enable health and productivity to virtually any enterprise. They’re more accurate blood pressure tracking, ECG tracking, 1 protected by Samsung Knox . And they’re all customizable to heart rate tracking, alerts, and fall detection. incorporate your company’s branding. Be more nimble. Be • Advanced sensors include heart rate tracker, ECG sensor, and 32G high more productive. Samsung Galaxy watches make it possible. sampling rate accelerometer and gyro • Battery lasts up to 60 hours (44mm model)2 • Carrier-agnostic LTE3 • Tested to MIL-STD-810G standards,4 IP685, rated at 5 ATM Galaxy Watch Active The Galaxy Watch Active offers secure communications in fast-paced environments, and supports corporate efficiency, productivity, health, and safety initiatives. • Advanced sleep tracking helps improve stress levels and sleep patterns • Battery lasts up to 45 hours2 • Tested to MIL-STD-810G standards,4 IP685, rated at 5 ATM Contact Us: samsung.com/wearablesforbiz Galaxy Watch3 Galaxy Watch Active2 Galaxy Watch Active “1.77”” x 1.82”” x 0.44”” (45.0 x 46.2 x 11.1 mm) 1.73" x 1.73" x 0.43" (44 x 44 x 10.9mm) Dimensions 1.56” x 1.56” x 0.41” (39.5 x 39.5 x 10.5mm) 1.61”” x 1.67”” x 0.44”” (41.0 x 42.5 x 11.3 mm)” 1.57" x 1.73" x 0.43" (40 x 40 x 10.9mm) Physical Weight 1.90 oz (53.8 g) /1.70 oz (48.2g) 1.7 oz.
    [Show full text]
  • Developing for Android
    Developing for Android Development of an alarm system for the Samsung Galaxy S4 Mini and the Samsung Gear S for Adobe SiteCatalyst Seminar Thesis Course of study: Information Systems Vienna University of Economics and Business by Tanja Simon Submission date: March 6, 2015 Matriculation number, course: h0851540, 0208 Project Seminar of Information Systems Supervisor: ao.Univ.Prof. Dr. Rony G. FLATSCHER Declaration I do solemnly declare that I have written the presented research thesis Developing for Android - Development of an alarm system for the Samsung Galaxy S4 Mini and the Samsung Gear S for Adobe SiteCatalyst by myself without undue help from a second person others and without using such tools other than that specied. Where I have used thoughts from external sources, directly or indirectly, published or unpublished, this is always clearly attributed. Furthermore, I certify that this research thesis or any part of it has not been previously submitted for a degree or any other qualication at the Vienna University of Economics and Business or any other institution in Austria or abroad. Vienna, the March 6, 2015 Tanja Simon I Abstract This paper investigates the creation of a monitoring application for a Samsung Gear S wristwatch and a Samsung Galaxy S4 Mini mobile device. The emphasis is to show how both devices can be used together to inform the user about errors in Adobe Analytics to be able to intervene in a timely manner when dealing with critical values. Therefore, the external reporting application programming interface is used to get direct access to the stored Adobe Analytics data.
    [Show full text]
  • [WEEKLY WIRELESS REPORT] Week Ending September 30, 2011
    [WEEKLY WIRELESS REPORT] Week ending September 30, 2011 This Week’s Stories key rhetorical question: "Why not just evolve MeeGo?" The answer, he said, is that "the future belongs to HTML5-based applications, outside of a AT&T Mobility Suffers Huge relatively small percentage of apps ," and Intel Network Outage in Los Angeles believes its investment should shift in that direction. September 26, 2011 But, he added, "shifting to HTML5 doesn't just mean slapping a web runtime on an existing Linux, even AT&T Mobility subscribers in Los Angeles can now one aimed at mobile, as MeeGo has been." text and make calls again on their mobile devices after technicians repaired a widespread network outage that affected millions of people. Sousou said that emphasizing HTML5 means APIs need to evolve with platform technology and by market segment, which a new platform could more AT&T spokesperson Meredith Red said late yesterday easily provide. that a hardware failure led to network issues with about 900 cellular towers across LA. Tizen will reside within the Linux Foundation, be governed by a Technical Steering Group, will be The service problems began at about 3.00 P.M. developed openly, and will support tablets, notebooks, Saturday and contributed to an evening of missed, handsets, smart TVs, and in-vehicle infotainment dropped and failed calls. Service was fully restored systems. early Sunday morning, local time. On the new Tizen.org website, a welcoming Red says it's unclear how many wireless subscribers statement said that Tizen APIs will cover various were affected, but conservative estimates are in the platform capabilities, including messaging, multimedia, millions.
    [Show full text]
  • Digital Forensic Analysis of Smart Watches
    TALLINN UNIVERSITY OF TECHNOLOGY School of Information Technologies Kehinde Omotola Adebayo (174449IVSB) DIGITAL FORENSIC ANALYSIS OF SMART WATCHES Bachelor’s Thesis Supervisor: Hayretdin Bahsi Research Professor Tallinn 2020 TALLINNA TEHNIKAÜLIKOOL Infotehnoloogia teaduskond Kehinde Omotola Adebayo (174449IVSB) NUTIKELLADE DIGITAALKRIMINALISTIKA Bachelor’s Thesis Juhendaja: Hayretdin Bahsi Research Professor Tallinn 2020 Author’s declaration of originality I hereby certify that I am the sole author of this thesis. All the used materials, references to the literature and the work of others have been referred to. This thesis has not been presented for examination anywhere else. Author: Kehinde Omotola Adebayo 30.04.2020 3 Abstract As wearable technology is becoming increasingly popular amongst consumers and projected to continue to increase in popularity they become probable significant source of digital evidence. One category of wearable technology is smart watches and they provide capabilities to receive instant messaging, SMS, email notifications, answering of calls, internet browsing, fitness tracking etc. which can be a great source of digital artefacts. The aim of this thesis is to analyze Samsung Gear S3 Frontier and Fitbit Versa Smartwatches, after which we present findings alongside the limitations encountered. Our result shows that we can recover significant artefacts from the Samsung Gear S3 Frontier, also more data can be recovered from Samsung Gear S3 Frontier than the accompanying mobile phone. We recovered significant data that can serve as digital evidence, we also provided a mapping that would enable investigators and forensic examiners work faster as they are shown where to look for information in the course of an investigation. We also presented the result of investigating Fitbit Versa significant artefacts like Heart rate, sleep, exercise and personal data like age, weight and height of the user of the device, this shows this device contains artefacts that might prove useful for forensic investigators and examiners.
    [Show full text]
  • T729 Firmware
    T729 firmware click here to download Easy Firmware, Download Firmware, Software and Mobile Flash Files www.doorway.ru www.doorway.ru Download | Size: 19 MB | Date: www.doorway.ru Download | Size: 19 MB | Date: www.doorway.ru?a=browse&b=category&id= Samsung T T-mobile www.doorway.ru? d=E2DBGGM6 this is a temporary daownload, if somebody can do to permanently, then do it. B.R. www.doorway.ru Download | Size: 19 MB | Downloads: 1 www.doorway.ru Download | Size: 19 MB | Downloads: 3 www.doorway.ru?a=browse&b=category&id= Drivers and firmware for Samsung SGH-T downloads. Perform hard reset on SAMSUNG T Blast. However, this may only be a temporary solution as when you start using your device again you may stumble upon the same problems. Try updating SAMSUNG T Blast firmware. By doing that regularly you will make sure that SAMSUNG T Blast performance is as good as. Update camera firmware in image (Don't try this option) * Update camera firmware in SD card * Get camera firmware version in Samsung SGH-T * Get firmware update count. WARNING: Never use the first option otherwise your phone camera will stop working and you'll need to take Samsung SGH-T to service. Update camera firmware in image (Don't try this option) * Update camera firmware in SD card * Get camera firmware version in Samsung T Blast * Get firmware update count. WARNING: Never use the first option otherwise your phone camera will stop working and you'll need to take Samsung T Blast to service. Description:Firmware for HP Pavilion tfr.
    [Show full text]
  • Insight MFR By
    Manufacturers, Publishers and Suppliers by Product Category 11/6/2017 10/100 Hubs & Switches ASCEND COMMUNICATIONS CIS SECURE COMPUTING INC DIGIUM GEAR HEAD 1 TRIPPLITE ASUS Cisco Press D‐LINK SYSTEMS GEFEN 1VISION SOFTWARE ATEN TECHNOLOGY CISCO SYSTEMS DUALCOMM TECHNOLOGY, INC. GEIST 3COM ATLAS SOUND CLEAR CUBE DYCONN GEOVISION INC. 4XEM CORP. ATLONA CLEARSOUNDS DYNEX PRODUCTS GIGAFAST 8E6 TECHNOLOGIES ATTO TECHNOLOGY CNET TECHNOLOGY EATON GIGAMON SYSTEMS LLC AAXEON TECHNOLOGIES LLC. AUDIOCODES, INC. CODE GREEN NETWORKS E‐CORPORATEGIFTS.COM, INC. GLOBAL MARKETING ACCELL AUDIOVOX CODI INC EDGECORE GOLDENRAM ACCELLION AVAYA COMMAND COMMUNICATIONS EDITSHARE LLC GREAT BAY SOFTWARE INC. ACER AMERICA AVENVIEW CORP COMMUNICATION DEVICES INC. EMC GRIFFIN TECHNOLOGY ACTI CORPORATION AVOCENT COMNET ENDACE USA H3C Technology ADAPTEC AVOCENT‐EMERSON COMPELLENT ENGENIUS HALL RESEARCH ADC KENTROX AVTECH CORPORATION COMPREHENSIVE CABLE ENTERASYS NETWORKS HAVIS SHIELD ADC TELECOMMUNICATIONS AXIOM MEMORY COMPU‐CALL, INC EPIPHAN SYSTEMS HAWKING TECHNOLOGY ADDERTECHNOLOGY AXIS COMMUNICATIONS COMPUTER LAB EQUINOX SYSTEMS HERITAGE TRAVELWARE ADD‐ON COMPUTER PERIPHERALS AZIO CORPORATION COMPUTERLINKS ETHERNET DIRECT HEWLETT PACKARD ENTERPRISE ADDON STORE B & B ELECTRONICS COMTROL ETHERWAN HIKVISION DIGITAL TECHNOLOGY CO. LT ADESSO BELDEN CONNECTGEAR EVANS CONSOLES HITACHI ADTRAN BELKIN COMPONENTS CONNECTPRO EVGA.COM HITACHI DATA SYSTEMS ADVANTECH AUTOMATION CORP. BIDUL & CO CONSTANT TECHNOLOGIES INC Exablaze HOO TOO INC AEROHIVE NETWORKS BLACK BOX COOL GEAR EXACQ TECHNOLOGIES INC HP AJA VIDEO SYSTEMS BLACKMAGIC DESIGN USA CP TECHNOLOGIES EXFO INC HP INC ALCATEL BLADE NETWORK TECHNOLOGIES CPS EXTREME NETWORKS HUAWEI ALCATEL LUCENT BLONDER TONGUE LABORATORIES CREATIVE LABS EXTRON HUAWEI SYMANTEC TECHNOLOGIES ALLIED TELESIS BLUE COAT SYSTEMS CRESTRON ELECTRONICS F5 NETWORKS IBM ALLOY COMPUTER PRODUCTS LLC BOSCH SECURITY CTC UNION TECHNOLOGIES CO FELLOWES ICOMTECH INC ALTINEX, INC.
    [Show full text]
  • For Personal Use Only Use Personal for System on a Range of Other Products from Smart Tvs to Refrigerators
    ASX AND MEDIA RELEASE 20 July 2016 Zipt Selected by Samsung as a Marquee App for Tizen Developers to deliver Tizen version of Zipt for August 2016 handset launch Zipt has been approached and subsequently selected by Samsung to feature on the Tizen Platform. Tizen is Samsung’s new operating system which will underpin new Samsung mobile devices and is being rolled out in selected markets. Tizen developers will deliver a Tizen version of Zipt in time for Samsung’s planned launch events in August 2016. Zipt will be showcased at this launch and going forward will be featured as a marquee application on the Tizen Application Store (one of 40 Apps). Zipt and WhatsApp will be the only two featured communication apps on the Tizen Application Store. Tizen currently has 5 million+ users, with this number expected to grow to 15-20 million by the end of 2016 with new mobile handset launches. Development of the Tizen version of Zipt will be completed by world class developers at no cost to ZipTel. ZipTel Limited (“ZipTel” or “the Company”, ASX: ZIP) is pleased to advise that it has been selected and invited to feature as a marquee application on Samsung’s Tizen Platform. In this regard, ZipTel has entered into an arrangement with leading Tizen Developers under the direction of Samsung to develop and roll out a Tizen version of Zipt to coincide with the global launch of the latest Samsung Tizen mobile in August 2016. Under the arrangement, Zipt will benefit from the expertise of leading Tizen developers who will prepare a Tizen version of Zipt for the new operating system under direction from Samsung.
    [Show full text]