9781786469656 Preview.Pdf

Total Page:16

File Type:pdf, Size:1020Kb

9781786469656 Preview.Pdf Laravel 5.x Cookbook A recipe-based book to help you effciently create amazing PHP-based applications with Laravel 5.x Alfred Nutile BIRMINGHAM - MUMBAI Laravel 5.x Cookbook Copyright © 2016 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: August 2016 Production reference: 1290816 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78646-208-4 www.packtpub.com Credits Author Project Coordinator Alfred Nutile Sheejal Shah Reviewer Proofreader Andrew Cavanagh Safs Editing Commissioning Editor Indexer Amarabha Banerjee Tejal Daruwale Soni Acquisition Editor Graphics Reshma Raman Abhinash Sahu Content Development Editor Production Coordinator Parshva Sheth Aparna Bhagat Technical Editor Cover Work Gebin George Aparna Bhagat Prajakta Mhatre Copy Editor Safs Editing About the Author Alfred Nutile is an Enterprise Architect and Laravel lead based in Western Massachusetts. He's been working in the industry since the mid 90's. He started in PHP and MySQL back around that time and has worked with Ruby on Rails, Drupal, and Angular along the way. He introduced Laravel into an enterprise web stack, where he is currently contracted at, as Laravel proved itself as an amazing framework to build API's and Angular heavy application. You can read more about him and checkout his blog at http://www.alfrednutile. info/ or follow him on Twitter at https://twitter.com/alnutile Make sure to checkout the discount LaraCasts is offering those who buy the book! Get a coupon for 50% on your frst bill. Make it a yearly subscription and save $43! Coupon Code: LaracastsLovesPackt https://laracasts.com/signup?plan=yearly&coupon=LaracastsLovesPackt. First let me say thanks to Taylor Otwell, I moved away from PHP to Rails and really was missing PHP only to be pointed to Laravel and have not looked back since. The framework makes my day to day work a pleasure and sometimes I feel guilty how easy it has made getting work done. And Jeffrey Way for offering an amazing service that helped me to grow in understanding practical programming skills, keeping things simple, best practices and Laravel. Of course I would like to thank Andrew Cavanagh for taking time to tediously edit this book. We have worked in the industry together for a number of years and currently both working on Laravel daily. And then there is my family who keeps me from getting too out of balanced since it is so easy to lose myself in the joy of building things on the computer! About the Reviewer Andrew Cavanagh is an experienced PHP developer whose background includes Drupal, Laravel, AngularJS, managing *nix servers (Apache and Nginx), project/budget/team management, and general haberdashy. He's currently focused on building enterprise web applications and tools. Andrew also enjoy cooking, amateur mycology, brewing, and long walks in imaginary places. www.PacktPub.com eBooks, discount offers, and more Did you know that Packt offers eBook versions of every book published, with PDF and ePub fles available? You can upgrade to the eBook version at www.PacktPub.com and as a print book customer, you are entitled to a discount on the eBook copy. Get in touch with us at [email protected] for more details. At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters and receive exclusive discounts and offers on Packt books and eBooks. TM https://www2.packtpub.com/books/subscription/packtlib Do you need instant solutions to your IT questions? PacktLib is Packt's online digital book library. Here, you can search, access, and read Packt's entire library of books. Why Subscribe? f Fully searchable across every book published by Packt f Copy and paste, print, and bookmark content f On demand and accessible via a web browser Table of Contents Preface v Chapter 1: Setting Up and Installing Laravel 1 Introduction 1 Setting up Homestead 1 Setting composer and PHP on your local machine for faster Workfows 4 Setting up your frst application in Homestead 6 Using .env for your local build 9 Using sequel pro and connecting to local and remote databases 12 Setting up Gulp and Elixir 14 Chapter 2: Using Composer Packages 17 Introduction 17 Working with Composer install command and avoiding Composer update 17 Making a provider 21 Using the Facade pattern 27 Using private packages 29 Chapter 3: Routing 33 Introduction 33 Building an API / JSON based route for searching 33 Testing your route in PHPUnit 37 Building a view based route 40 Testing your view based route in PHPUnit 42 Creating named routes 45 Chapter 4: Building Views and Adding Style 49 Introduction 49 Organizing your Blade fles 49 Installing a WrapBootStrap theme 55 Making your authentication pages 61 i Table of Contents Implementing an error message template 65 Building your main search page 70 Adding a static page 76 Chapter 5: Working with Data 79 Introduction 79 Setting up users and running migrations 79 Altering a migration 81 Using factories for migrations and tests 84 Using a generator to scaffold your user wishlist area 90 Seeding so you can see how your app looks 95 Adding a fle upload to user profle 99 Validating the fle upload 108 Saving fles to S3 112 Chapter 6: Adding Angular to Your App 123 Introduction 123 Adding Angular search to our search page 130 Handling Angular and Ajax requests 138 Paginating our Angular results 149 Testing an angular page with Behat 157 Creating a relationship with favorites 161 Building a favorites Ajax widget in Angular 164 Validating incoming input 173 Using the CORS protection 176 Using Elixir and Gulp to set up Angular 183 Chapter 7: Authentication, Security, and Subscriptions 191 Introduction 191 Using policies and guard to protect user pages 192 Adding feature fags to hide features from users 196 Implementing Socialite to allow users to login with Facebook 201 Adding custom middleware to protect user admin area 206 Using Laravel to set up a subscription site 211 Creating an interface for the user to manage subscriptions 222 Creating an admin interface for subscriptions 225 ii Table of Contents Chapter 8: Testing and Debugging Your Application 233 Introduction 233 Generating tests 234 Using tests to think through your code TDT (Test Driven Thinking) 236 Getting your code onto GitHub 244 Using VCR for API testing 247 Using Travis to run tests with every push 252 Launching Gulp watch into your workfow 259 Using mockery to test your controllers 261 Troubleshooting your application 268 Chapter 9: Adding Advanced Features to Your App 271 Introduction 271 Building an Artisan command 272 Creating scheduler to notify users of new comics 277 Setting up e-mail notices 280 Adding clean URLS for the users profle page 287 Using pusher for live notifcations 293 Adding a blog area to update users on new features 303 Chapter 10: Deploying Your App 323 Introduction 323 Setting up Forge, AWS, and CodeDeploy 324 Setting up Travis to auto deploy when all is passing 353 Working with your .env fle 355 Testing your app on Production with Behat 359 Making a composer package out of our client 366 Index 381 iii Preface Laravel is a prominent member of a new generation of web frameworks. It is one of the most popular PHP frameworks and is also free and an open source. Laravel 5 is a substantial upgrade with a lot of new and more effcient workfows, at the same time retaining the features that made Laravel wildly successful. It comes with plenty of architectural as well as design-based changes. The book is a blend of numerous recipes that will give you all the necessary tips you need to build an application. It starts with basic installation and confguration tasks and will get you up-and-running in no time. You will learn to create and customize your PHP app and tweak and re-design your existing apps for better performance. You will learn to implement practical recipes to utilize Laravel's modular structure, the latest method injection, route caching, and interfacing techniques to create responsive modern-day PHP apps that stand on their own against other apps. Effcient testing and deploying techniques will make you more confdent with your Laravel skills as you move ahead with this book. Towards the end of the book, you will understand a number of add-ons and new features essential to fnalize your application to make it ready for subscriptions. You will be empowered to get your application out to the world. What this book covers Chapter 1, Setting Up and Installing Laravel, helps you setup Laravel on your local machine. Chapter 2, Using Composer Packages, this will cover some key concepts to getting comfortable with this amazing tool. Chapter 3, Routing, the heart of any web framework, this will dig into some use cases of Laravel routing.
Recommended publications
  • ACS – the Archival Cytometry Standard
    http://flowcyt.sf.net/acs/latest.pdf ACS – the Archival Cytometry Standard Archival Cytometry Standard ACS International Society for Advancement of Cytometry Candidate Recommendation DRAFT Document Status The Archival Cytometry Standard (ACS) has undergone several revisions since its initial development in June 2007. The current proposal is an ISAC Candidate Recommendation Draft. It is assumed, however not guaranteed, that significant features and design aspects will remain unchanged for the final version of the Recommendation. This specification has been formally tested to comply with the W3C XML schema version 1.0 specification but no position is taken with respect to whether a particular software implementing this specification performs according to medical or other valid regulations. The work may be used under the terms of the Creative Commons Attribution-ShareAlike 3.0 Unported license. You are free to share (copy, distribute and transmit), and adapt the work under the conditions specified at http://creativecommons.org/licenses/by-sa/3.0/legalcode. Disclaimer of Liability The International Society for Advancement of Cytometry (ISAC) disclaims liability for any injury, harm, or other damage of any nature whatsoever, to persons or property, whether direct, indirect, consequential or compensatory, directly or indirectly resulting from publication, use of, or reliance on this Specification, and users of this Specification, as a condition of use, forever release ISAC from such liability and waive all claims against ISAC that may in any manner arise out of such liability. ISAC further disclaims all warranties, whether express, implied or statutory, and makes no assurances as to the accuracy or completeness of any information published in the Specification.
    [Show full text]
  • Archive Utility Download
    archive utility download mac Question: Q: finding archive utility app and uninstalling winzip? i have zip files that now default to WINZIP which i downloaded for a demo and never uninstalled. can someone remind me how to uninstall it again? ALSO, i am trying to set ZIPPED files to open with ARCHIVE UTILITY but i don't see anywhere to set this with the OPEN WITH dialogs. i checked in the UTILITY FOLDER in applications but it is not there. i forget if this is something obvious or what. Mac Pro, macOS 10.13. Posted on Jul 15, 2020 11:46 AM. Anyone who has purchased the product from the WinZip store* within 30 days can get a refund of the purchase price. If you want to arrange a refund, please contact WinZip Service or mail a request to: Mansfield, CT 06268-0540. Please include your name, order number, and postal address in your request. To qualify for a refund, please remove the software from any computers on which you've installed it. Also, please destroy the CD, if you received one. The best way to remove WinZip Mac from your computer is as follows: Click the WinZip icon on the dock Click the WinZip drop down menu and then the Uninstall menu item. Then contact WinZip Service, state that you have removed the software from any computers on which you've installed it (and have destroyed the CD if applicable), and also state that you will no longer be using the software. * Note: If you have purchased WinZip through the Apple Store and believe you are in need of a refund, you must contact the Apple Store.
    [Show full text]
  • SQL Server on Linux
    SQL Server on Linux Configuring and administering Microsoft's database solution Jasmin Azemović BIRMINGHAM - MUMBAI SQL Server on Linux Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: August 2017 Production reference: 1100817 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78829-180-4 www.packtpub.com Credits Author Copy Editor Jasmin Azemović Safis Editing Reviewer Project Coordinator Marek Chmel Nidhi Joshi Commissioning Editor Proofreader Amey Varangaonkar Safis Editing Acquisition Editor Indexer Tushar Gupta Pratik Shirodkar Content Development Editor Graphics Cheryl Dsa Tania Dutta Technical Editor Production Coordinator Prasad Ramesh Melwyn Dsa About the Author Jasmin Azemović is a university professor active in the database systems, information security, data privacy, forensic analysis, and fraud detection fields.
    [Show full text]
  • Expert Python Programming Third Edition
    Expert Python Programming Third Edition Become a master in Python by learning coding best practices and advanced programming concepts in Python 3.7 Michał Jaworski Tarek Ziadé BIRMINGHAM - MUMBAI Expert Python Programming Third Edition Copyright © 2019 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Kunal Chaudhari Acquisition Editor: Chaitanya Nair Content Development Editor: Zeeyan Pinheiro Technical Editor: Ketan Kamble Copy Editor: Safis Editing Project Coordinator: Vaidehi Sawant Proofreader: Safis Editing Indexer: Priyanka Dhadke Graphics: Alishon Mendonsa Production Coordinator: Shraddha Falebhai First published: September 2008 Second edition: May 2016 Third edition: April 2019 Production reference: 1270419 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78980-889-6 www.packtpub.com To my beloved wife, Oliwia, for her love, inspiration, and her endless patience.
    [Show full text]
  • CRIS Automated Interface Guide
    Automated Interface Guide Public and Standard Extracts v18.0 Crash Data and Analysis, Traffic Safety Division Table of Contents 1. Document Information ............................................. 3 1.1 Version Control ......................................................................................................................................... 3 2. Overview .................................................................... 5 3. CRIS Operating System and Browser Support Matrix 5 4. Public Interface ......................................................... 5 4.1 Self-Registration....................................................................................................................................... 5 4.2 Accessing Public Interface ...................................................................................................................... 9 4.3 Create Interface Request ..................................................................................................................... 10 4.4 Download Extracts ................................................................................................................................ 12 5. Standard Interface ................................................ 15 5.1 Self-Registration.................................................................................................................................... 15 5.2 Accessing Standard Interface .............................................................................................................
    [Show full text]
  • Unzip Rar Files Free Software
    Unzip rar files free software Packing / unpacking: 7z, XZ, BZIP2, GZIP, TAR, ZIP and WIM; Unpacking only: AR, ARJ, CAB, CHM, CPIO, We compared 7-Zip with WinRAR Archiver, Mozilla Firefox, Google Earth. 65 files 85 bytes, files And 7-Zip compresses to zip format % better than most of other zip compatible programs.​Download · ​7z Format · ​FAQ · ​Support. WinRAR, free and safe download. WinRAR latest version: The king of compressed files. WinRAR is a program that can be used to open, create and decompress. RAR files can be split into multi-volume archives when dealing with large file sets. Click 1-click Unzip and choose Unzip to PC or Cloud in the WinZip toolbar. Free RAR Extract Frog extracts RAR archive files. RAR files aren't uncommon, but some ZIP tools don't handle the format; even if they do, it's often quicker and. Unzip RAR is a free file decompressing (unzip) tool for RAR archives, it can quickly open and extract files and folders in RAR archives, simple and easy to use. Software provides preview function, it will read RAR archives and show all. free Rar files software. Open, extract 7Z ACE CAB RAR TAR ZIP archives, support + formats. Extract Rar files, free Zip Unzip software. PeaZip Portable. Free portable Zip software, extract Rar files. This is the best solution to bring a complete zip & unzip / unrar utility with you (i.e. on an USB drive), make it. To Open RAR files, you need to install WinRar which is not a free application. Files\RAR File Open Knife - Free Opener\); Use notepad to create a text file.
    [Show full text]
  • Linux Lite 1.0.2 – Basic Computer And
    computer literacy movement construction e - learning of a modern ITdesk.info – society project of computer e-education with an open access - digital literacy handbook human rights e - inclusion to education and information open access Linux Lite 1.0.2 – Basic computer and file managing HANDBOOK Author: Melani Max ITdesk.info – project of computer e-education with open access Original: Author: Gorana Čelebić Subtitle: Osnovno korištenje računala i upravljanje datotekama – Windows 7, priručnik ISBN: 978-953-56758-1-5 Publisher: Otvoreno društvo za razmjenu ideja (ODRAZI), Zagreb Expert review: EdukaCentar, ustanova za obrazovanje, Zagreb Proofreading: Ema Čišić Place and year of publication: Zagreb, 2011. Adjusted for the Linux Lite operating system by: Author: Melani Max Main title: ITdesk.info – projekt računalne e-edukacije sa slobodnim pristupom Subtitle: Linux Lite 1.0.2 - Basic computer and file managing, handbook Translation: Una Šijan Proof-reading: Manuela Sánchez Expert review: Kundan Singh Publisher: Otvoreno društvo za razmjenu ideja (ODRAZI), Zagreb ISBN: 978-953-56758-1-5 Place and year of publication: Zagreb, 2013. Copyright: Feel free to copy, print and re-distribute the whole or a part of this publication, including for the educational purposes, whether public or private educational organizations, but exclusively in non- commercial purposes (therefore, without charging the end users of publication) and with a reference to the source (source: www.ITdesk.info – computer e-education project with a free access). Derivative works without prior approval of the copywright holder (Open Society for the Exchange of Ideas-ODRAZI) are not permitted. Contact for permission for derivative works: [email protected]. ITdesk.info – project of computer e-education with open access PREFACE Today’s society is marked by a sudden growth and development of information technology (IT) field, which has resulted in society being greatly dependent, in a broader sense, on the knowledge and competence of the people working in the IT sector.
    [Show full text]
  • Senomix Timesheets for Mac OS X Self-Installed Server Installation
    Senomix Timesheets for Mac OS X Self-Installed Server Installation Guide v5.2 © 2017 Senomix Software Inc. www.senomix.com Table of Contents 1.0 - Timesheets Server Installation and Use .............................................. 1 2.0 - Server Operation ................................................................................ 7 3.0 - Network Configuration ........................................................................ 8 General Firewall Configuration ................................................................. 8 Network Configuration for External Connections ...................................... 8 VPN Troubleshooting ............................................................................... 9 4.0 - System Uninstall ............................................................................... 10 Appendix I - Installing the Server as a Daemon Process .......................... 11 Senomix Timesheets Macintosh OS X Installation Guide 1.0 - Timesheets Server Installation and Use The Senomix Timesheets Server is the program which will collect all of your office’s time and expense tracking data. To extract your Senomix Server data files from their .zip package, we recommend using the default Mac .zip archive program rather than a third-party tool (such as Zipeg, which can change the application permissions of your Senomix programs and prevent them from running). Please Note: If your server computer uses an anti-virus security system with active scanning, you must whitelist all Senomix applications running on
    [Show full text]
  • Open Rar Free
    Open rar free click here to download 7-Zip is free software with open source. The most of the code is under the GNU LGPL license. Some parts of the code are under the BSD 3- clause License. WinRAR, free and safe download. WinRAR latest WinRAR is a file compression program that can be used to open, create and decompress RAR, ZIP and. Open any RAR file in seconds, for free! New update: Now in addition to RAR, it handles dozens of popular archives, like 7Z, Zip, TAR, LZH, etc. RAR Opener is a . Free RAR files opener, extractor utility. How to open, extract RAR format free, unzip. Work with WinRar archives extraction. Windows, Linux unrar software. Zip, unzip, rar files online. Extract files from archive online, no installation, safe and free. Unzip, unrar decompression in cloud. Uncompress, unzipping tool. Archive Extractor is a small and easy online tool that can extract over 70 types of compressed files, such as 7z, zipx, rar, tar, exe, dmg and much more. WinZip opens RAR files. Use WinZip, the world's most popular zip file utility, to open and extract content from RAR files and other compressed file formats. You cannot put RAR File Open Knife on a portable or flash drive and have it function correctly. However, there is an alternative tool called “RarZille Free Unrar. If you want to create RAR files, WinRAR is your best bet. However, if you just need to extract a RAR file, the free and open source 7-Zip app is a. UnRarX is a free WinRAR- style tool for Mac which allows you to unzip RAR files.
    [Show full text]
  • Juhtolv-Fontsamples
    juhtolv-fontsamples Juhapekka Tolvanen Contents 1 Copyright and contact information 3 2 Introduction 5 3 How to use these PDFs 6 3.1 Decompressing ............................... 6 3.1.1 bzip2 and tar ............................. 8 3.1.2 7zip .................................. 11 3.2 Finding right PDFs ............................. 12 4 How to edit these PDFs 16 4.1 What each script do ............................ 16 4.2 About shell environment .......................... 19 4.3 How to ensure each PDF take just one page .............. 20 4.4 Programs used ................................ 20 4.5 Fonts used .................................. 23 4.5.1 Proportional Gothic ......................... 24 4.5.2 Proportional Mincho ........................ 26 4.5.3 Monospace (Gothic and Mincho) ................. 27 4.5.4 Handwriting ............................. 28 4.5.5 Fonts that can not be used .................... 29 5 Thanks 30 2 1 Copyright and contact information Author of all these files is Juhapekka Tolvanen. Author’s E-Mail address is: juhtolv (at) iki (dot) fi This publication has included material from these dictionary files in ac- cordance with the licence provisions of the Electronic Dictionaries Research Group: • kanjd212 • kanjidic • kanjidic2.xml • kradfile • kradfile2 See these WWW-pages: • http://www.edrdg.org/ • http://www.edrdg.org/edrdg/licence.html • http://www.csse.monash.edu.au/~jwb/edict.html • http://www.csse.monash.edu.au/~jwb/kanjidic_doc.html • http://www.csse.monash.edu.au/~jwb/kanjd212_doc.html • http://www.csse.monash.edu.au/~jwb/kanjidic2/ • http://www.csse.monash.edu.au/~jwb/kradinf.html 3 All generated PDF- and TEX-files of each kanji-character use exactly the same license as kanjidic2.xml uses; Name of that license is Creative Commons Attribution-ShareAlike Licence (V3.0).
    [Show full text]
  • Introducing Postgresql
    PostgreSQL Administration Cookbook 9.5/9.6 Edition Effective database management using PostgreSQL 9.5/9.6 Simon Riggs Gianni Ciolli Gabriele Bartolini BIRMINGHAM - MUMBAI PostgreSQL Administration Cookbook 9.5/9.6 Edition Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: April 2017 Production reference: 1250417 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78588-318-7 www.packtpub.com Credits Authors Copy Editor Simon Riggs Safis Editing Gianni Ciolli Gabriele Bartolini Reviewer Project Coordinator Sheldon Strauch Shweta H Birwatkar Commissioning Editor Proofreader Amey Varangaonkar Safis Editor Acquisition Editor Indexer Ajith Menon Aishwarya Gangawane Content Development Editor Graphics Amrita Noronha Tania Dutta Technical Editor Production Coordinator Sneha Hanchate Melwyn Dsa About the Authors Simon Riggs is the CTO of 2ndQuadrant and an active PostgreSQL committer.
    [Show full text]
  • Capacitació Digital Bàsica I Navegacio I Comunicacio I
    Capacitació digital bàsica I NAVEGACIO I COMUNICACIO I NAVEGACIÓ I COMUNICACIÓ I - 1 Navegació i comunicació I ICONES VEURE TAMBÉ ex. VEURE EXEMPLE CONTINGUT COMPLEMENTARI PER SABER-NE MÉS ACTIVITAT SOLUCIÓ Navegació i comunicació I INDEX Presentació ..............................................................................4 Personalitzar el navegador .....................................................5 Barres d’eines ......................................................................................... 5 Complements i extensions ..................................................................... 8 Traductors i visualitzacions prèvies ...................................................... 13 Còpies del navegador .......................................................................... 16 Les barres de navegació ...................................................................... 17 Activitats ................................................................................................ 19 Localitzar informació ............................................................20 Els motors de cerca ............................................................................... 20 Altres eines de localització ................................................................... 24 Estratègies de cerca ............................................................................. 33 Cerca avançada ................................................................................... 34 Activitats ...............................................................................................
    [Show full text]