Cargando…

Dart Cookbook /

If you are a Dart developer looking to sharpen your skills, and get insight and tips on how to put that knowledge into practice, then this book is for you. You should also have a basic knowledge of HTML, and how web applications with browser clients and servers work, in order to build dynamic Dart a...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Balbaert, Ivo (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, 2014.
Colección:Quick answers to common problems.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 a 4500
001 EBSCO_ocn894171178
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 141101s2014 enka o 000 0 eng d
040 |a EBLCP  |b eng  |e pn  |c EBLCP  |d IDEBK  |d DEBSZ  |d E7B  |d YDXCP  |d S4S  |d WAU  |d COO  |d OCLCQ  |d OCLCO  |d OCLCF  |d OCLCQ  |d FEM  |d N$T  |d UMI  |d DEBBG  |d VT2  |d CNNOR  |d K6U  |d CCO  |d PIFAG  |d FVL  |d OCLCQ  |d ZCU  |d AGLDB  |d MERUC  |d OCLCQ  |d REB  |d D6H  |d VTS  |d ICG  |d TEFOD  |d NLE  |d UKMGB  |d OCLCQ  |d WYU  |d STF  |d DKC  |d OCLCQ  |d UKAHL  |d OCLCQ  |d AJS  |d OCLCO  |d OCLCQ  |d OCLCO 
016 7 |a 018007112  |2 Uk 
019 |a 895288471  |a 906024891  |a 968040477  |a 968995693 
020 |a 9781783989638  |q (electronic bk.) 
020 |a 1783989637  |q (electronic bk.) 
020 |z 9781783989621 
020 |z 1783989629 
029 1 |a AU@  |b 000062347826 
029 1 |a CHNEW  |b 000708135 
029 1 |a CHNEW  |b 000889204 
029 1 |a CHVBK  |b 374479232 
029 1 |a DEBBG  |b BV042490200 
029 1 |a DEBBG  |b BV043613259 
029 1 |a DEBSZ  |b 420095713 
029 1 |a DEBSZ  |b 434833800 
029 1 |a DEBSZ  |b 493152903 
029 1 |a DKDLA  |b 820120-katalog:999929183905765 
029 1 |a GBVCP  |b 815146183 
029 1 |a UKMGB  |b 018007112 
035 |a (OCoLC)894171178  |z (OCoLC)895288471  |z (OCoLC)906024891  |z (OCoLC)968040477  |z (OCoLC)968995693 
037 |a 3801653449660566619  |b TotalBoox  |f Ebook only  |n www.totalboox.com 
037 |a C2832537-34EB-42F5-B4AF-5B3BC101A3FF  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.9.U83 .B384 2014 
072 7 |a COM  |x 060160  |2 bisacsh 
072 7 |a COM  |x 060130  |2 bisacsh 
072 7 |a COM  |x 060080  |2 bisacsh 
072 7 |a COM  |x 051230  |2 bisacsh 
082 0 4 |a 005.268 
049 |a UAMI 
100 1 |a Balbaert, Ivo,  |e author. 
245 1 0 |a Dart Cookbook /  |c Ivo Balbaert. 
260 |a Birmingham :  |b Packt Publishing,  |c 2014. 
300 |a 1 online resource (iv, 331 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Quick answers to common problems 
588 0 |a Print version record. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Working with Dart Tools; Introduction; Configuring the Dart environment; Setting up the checked and production modes; Rapid Dart Editor troubleshooting; Hosting your own private pub mirror; Using Sublime Text 2 as an IDE; Compiling your app to JavaScript; Debugging your app in JavaScript for Chrome; Using the command-line tools; Solving problems when pub get fails; Shrinking the size of your app; Making a system call; Using snapshotting. 
505 8 |a Getting information from the operating systemChapter 2: Structuring, Testing, and Deploying an Application; Introduction; Exiting from an app; Parsing command-line arguments; Structuring an application; Using a library from within your app; Microtesting your code with assert; Unit testing a polymer web app; Adding logging to your app; Documenting your app; Profiling and benchmarking your app; Publishing and deploying your app; Using different settings in checked and production mode; Chapter 3: Working with Data Types; Introduction; Concatenating strings; Using regular expressions. 
505 8 |a Strings and UnicodeUsing complex numbers; Creating an enum; Flattening a list; Generating a random number within a range; Getting a random element from a list; Working with dates and times; Improving performance in numerical computations; Using SIMD for enhanced performance; Chapter 4: Object Orientation; Introduction; Testing and converting types; Comparing two objects; Using a factory constructor; Building a singleton; Using reflection; Using mixins; Using annotations; Using the call method; Using noSuchMethod; Making toJSON and from JSON methods in your class. 
505 8 |a Creating common classes for client and server appsChapter 5: Handling Web Applications; Introduction; Responsive design; Sanitizing HTML; Using a browser's local storage; Using application cache to work offline; Preventing an onSubmit event from reloading the page; Dynamically inserting rows in an HTML table; Using CORS headers; Using keyboard events; Enabling drag-and-drop; Enabling touch events; Creating a Chrome app; Structuring a game project; Using WebGL in your app; Authorizing OAuth2 to Google services; Talking with JavaScript; Using JavaScript libraries. 
505 8 |a Chapter 6: Working with Files and StreamsIntroduction; Reading and processing a file line by line; Writing to a file; Searching in a file; Concatenating files; Downloading a file; Working with blobs; Transforming streams; Chapter 7: Working with Web Servers; Introduction; Creating a web server; Posting JSON formatted data; Receiving data on the web server; Serving files with http_server; Using sockets; Using WebSockets; Using secure sockets and servers; Using a JSON web service; Chapter 8: Working with Futures, Tasks, and Isolates; Introduction; Writing a game loop. 
500 |a Error-handling with Futures. 
520 |a If you are a Dart developer looking to sharpen your skills, and get insight and tips on how to put that knowledge into practice, then this book is for you. You should also have a basic knowledge of HTML, and how web applications with browser clients and servers work, in order to build dynamic Dart applications. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Programming languages (Electronic computers) 
650 0 |a Web site development. 
650 0 |a Application software  |x Development. 
650 0 |a Web sites  |x Design. 
650 6 |a Sites Web  |x Développement. 
650 6 |a Logiciels d'application  |x Développement. 
650 6 |a Sites Web  |x Conception. 
650 7 |a COMPUTERS  |x Web  |x Web Programming.  |2 bisacsh 
650 7 |a COMPUTERS  |x Web  |x Design.  |2 bisacsh 
650 7 |a COMPUTERS  |x Web  |x General.  |2 bisacsh 
650 7 |a COMPUTERS  |x Software Development & Engineering  |x General.  |2 bisacsh 
650 7 |a Application software  |x Development  |2 fast 
650 7 |a Programming languages (Electronic computers)  |2 fast 
650 7 |a Web site development  |2 fast 
650 7 |a Web sites  |x Design  |2 fast 
776 0 8 |i Print version:  |a Balbaert, Ivo.  |t Dart Cookbook.  |d Birmingham : Packt Publishing, ©2014  |z 9781783989621 
830 0 |a Quick answers to common problems. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=879008  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH27184797 
938 |a EBL - Ebook Library  |b EBLB  |n EBL1825959 
938 |a ebrary  |b EBRY  |n ebr10962325 
938 |a EBSCOhost  |b EBSC  |n 879008 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis30008056 
938 |a YBP Library Services  |b YANK  |n 12139183 
994 |a 92  |b IZTAP