- Table View
- List View
10 Rules for Impossible Projects: Surprising – But True – Advice on How to Successfully Deliver Difficult and Complex Projects
by Marcin DąbrowskiThis book is a collection of key principles that should be used to "deliver" difficult and unrealistic projects. These principles are independent of the chosen project management methodology - they remain complementary to them and help to successfully complete even those projects that seem unrealistic: in terms of time, scope, finances and other aspects. These holistic rules cover broad aspects from management, negotiation, psychology and business. It&’s full of real life examples of various international projects which were both successful or failed. The book shows that beyond certifications, methodologies, and manuals, project management professionals need to learn how to face crisis situations, changing scopes and toxic work environments and then successfully deliver a project. What You Will Learn Holistic view on project lifecycle from sales to delivery What is really important for customers in IT projects Key aspects of proactive attitudes needed for successful project delivery Who This Book is For Project Managers, Team Leaders, Unit Managers, IT managers, IT directors, CIOs
10 mandamientos de ventas exitosas
by Rahul MookerjeeEn el invierno de 2007, me uní a una pequeña empresa nueva como gerente de ventas y "persona sénior". La compañía era una startup de rango. Tenían literalmente tres personas trabajando allí, incluyéndome a mí, y los otros dos eran los gerentes de recursos humanos y operaciones. La empresa matriz es una empresa de BPO bastante exitosa y ha estado en el negocio durante aproximadamente 8 años. Estaban buscando expandirse al desarrollo web y no tenían ni idea de cómo conseguir clientes, a pesar de... …tener un gerente de ventas MUY exitoso al mando en términos de operaciones de BPO. Ha estado allí desde el inicio de la empresa y probablemente todavía ESTÁ trabajando allí.
100 C++ Mistakes and How to Avoid Them
by Rich YontsLearn how to handle errors, inefficiencies, and outdated paradigms by exploring the most common mistakes you&’ll find in production C++ code.100 C++ Mistakes and How To Avoid Them reveals the problems you&’ll inevitably encounter as you write new C++ code and diagnose legacy applications, along with practical techniques you need to resolve them. Inside 100 C++ Mistakes and How To Avoid Them you&’ll learn how to: • Design solid classes • Minimize resource allocation/deallocation issues • Use new C++ features • Identify the differences between compile and runtime issues • Recognize C-style idioms that miss C++ functionality • Use exceptions well 100 C++ Mistakes and How To Avoid Them gives you practical insights and techniques to improve your C++ coding kung fu. Author Rich Yonts has been using C++ since its invention in the 1980s. This book distills that experience into practical, reusable advice on how C++ programmers at any skill level can improve their code. Unlike many C++ books that concentrate on language theory and toy exercises, this book is loaded with real examples from production codebases. About the technology Over ten billion lines of C++ code are running in production applications, and 98-developers find and fix mistakes in them every day. Even mission-critical applications have bugs, performance inefficiencies, and readability problems. This book will help you identify them in the code you&’re maintaining and avoid them in the code you&’re writing. About the book 100 C++ Mistakes and How To Avoid Them presents practical techniques to improve C++ code, from legacy applications to modern codebases that use C++ 11 and beyond. Author Rich Yonts provides a concrete example to illustrate each issue, along with a step-by-step walkthrough for improving readability, effectiveness, and performance. Along the way, you&’ll even learn how and where to replace outdated patterns and idioms with modern C++. What's inside • Design solid classes • Resource allocation/deallocation issues • Compile and runtime problems • Replace C-style idioms with proper C++ About the reader Covers C++ 98 through 23, with an emphasis on diagnosing and improving legacy code. About the author Rich Yonts is a Senior Software Engineer at Teradata and a long-time software engineer using C++, Java, and Python. He has held a number of technical and leadership roles during his many years at IBM and Sony. Table of Contents 1 C++: With great power comes great responsibility Part 1 2 Better modern C++: Classes and types 3 Better modern C++: General programming 4 Better modern C++: Additional topics Part 2 5 C idioms 6 Better premodern C++ Part 3 7 Establishing the class invariant 8 Maintaining the class invariant 9 Class operations 10 Exceptions and resources 11 Functions and coding 12 General coding
100 Go Mistakes and How to Avoid Them
by Teiva HarsanyiSpot errors in your Go code you didn&’t even know you were making and boost your productivity by avoiding common mistakes and pitfalls.100 Go Mistakes and How to Avoid Them shows you how to: Dodge the most common mistakes made by Go developers Structure and organize your Go application Handle data and control structures efficiently Deal with errors in an idiomatic manner Improve your concurrency skills Optimize your code Make your application production-ready and improve testing quality 100 Go Mistakes and How to Avoid Them puts a spotlight on common errors in Go code you might not even know you&’re making. You&’ll explore key areas of the language such as concurrency, testing, data structures, and more—and learn how to avoid and fix mistakes in your own projects. As you go, you&’ll navigate the tricky bits of handling JSON data and HTTP services, discover best practices for Go code organization, and learn how to use slices efficiently. About the technology Understanding mistakes is the best way to improve the quality of your code. This unique book examines 100 bugs and inefficiencies common to Go applications, along with tips and techniques to avoid making them in your own projects. About the book 100 Go Mistakes and How to Avoid Them shows you how to replace common programming problems in Go with idiomatic, expressive code. In it, you&’ll explore dozens of interesting examples and case studies as you learn to spot mistakes that might appear in your own applications. Expert author Teiva Harsanyi organizes the error avoidance techniques into convenient categories, ranging from types and strings to concurrency and testing. What's inside Identify and squash code-level bugs Avoid problems with application structure and design Perfect your data and control structures Optimize your code by eliminating inefficiencies About the reader For developers proficient with Go programming and syntax. About the author Teiva Harsanyi is a senior software engineer at Docker with experience in various domains, including safety-critical industries like air traffic management. Table of Contents 1 Go: Simple to learn but hard to master 2 Code and project organization 3 Data types 4 Control structures 5 Strings 6 Functions and methods 7 Error management 8 Concurrency: Foundations 9 Concurrency: Practice 10 The standard library 11 Testing 12 Optimizations
100 Java Mistakes and How to Avoid Them
by Tagir ValeevDodge the common mistakes that even senior developers make, take full advantage of static analysis tools, and deliver robust and error-free Java code.Whenever you make a mistake writing Java, it&’s almost guaranteed that someone else has made it before! In 100 Java Mistakes and How To Avoid Them you&’ll learn about the common and the not-so-common antipatterns, errors, and tricky bits that trip up almost every Java developer. Inside 100 Java Mistakes and How To Avoid Them you will learn how to: Write better Java programs Recognize common mistakes during programming Create fewer bugs and save time for debugging and testing Get help from static analyzers during programming Configure static analysis tools to reduce the number of false reports Extend static analysis tools with custom plugins Each Java mistake in this handy guide comes with an illustrative code sample, an explanation of why the mistake occurs, and an actionable &“ways to avoid this&” section to help you dodge the error. Plus, you&’ll benefit from useful static analysis sidebars that let you know when mistakes will—and won&’t—be spotted by static analysis tools. Foreword by Cay Horstmann. About the technology Minor bugs in development can become major problems in production. It&’s much better to spot and fix your mistakes before they get that far! This one-of-a-kind book shines a light on the most common Java slip-ups and shows you exactly how to avoid making them in the first place. About the book 100 Java Mistakes and How To Avoid Them highlights 100 Java coding errors—from beginner missteps to mistakes even Java experts don&’t know they&’re making. Each case includes clear examples to show you what to look for and concrete troubleshooting advice. You&’ll learn to use static analysis tools like IntelliJ IDEA and SonarLint to ensure you&’re consistently delivering exceptional Java, discover how unit tests and defensive coding can keep your code clean, and even learn to write your own bug-busting plugins. What's inside Recognize bugs and antipatterns during programming Highly-effective debugging and testing Get help from static analyzers About the reader For Java developers of all skill levels. About the author Tagir Valeev is a technical lead in JetBrains and a Java Champion. He designed and developed many code inspections for IntelliJ IDEA built-in static analyzer. The technical editor on this book was Jean-François Morin. Table of Contents 1 Managing code quality 2 Expressions 3 Program structure 4 Numbers 5 Common exceptions 6 Strings 7 Comparing objects 8 Collections and maps 9 Library methods 10 Unit testing A Static analysis annotations B Extending static analysis tools
100 Practical Ways to Improve Customer Experience: Achieve End-to-End Customer Engagement in a Multichannel World
by Martin Newman Malcolm McDonaldVirtually all consumer-facing businesses talk about putting the customer first, but in reality, few deliver on this as effectively as they could. 100 Practical Ways to Improve Customer Experience walks readers through a wealth of practical tips, tools, guidelines and frameworks, for implementing customer-focused marketing strategies at every step of the customer journey. By ensuring that the customer remains the key focus, companies can identify areas in need of improvement and implement relevant steps throughout the value chain to transform their business. A unique blend of strategy and best practice, 100 Practical Ways to Improve Customer Experience has a particular focus on multi-channel industries such as retail, FMCG, travel, financial services, leisure, food and beverage, and automotive. These industries are all facing major disruption from trendsetting brands such as Uber, AirBnB and Amazon, and as such, now face more pressure than ever to adopt new practices and remain relevant in a continually competitive marketplace. Featuring case studies packed full of practical examples, this book is a unique and valuable resource for both senior industry professionals looking to transform their business and MBA students.
100 Questions and Answers to Help You Land Your Dream iOS Job: Or to Hire the Right Candidate!
by Enrique López MañasAre you an iOS developer, looking forward to your next career move? Or are you interviewing for positions at your company or start-up? Either way, "100 Questions and Answers to help you land your Dream iOS Job" has been thought for you. With 100 Questions and Answers categorized by seniority and with reviews from some of the top iOS engineers worldwide, this book will level up how you make interviews for your favorite platform.
100 SQL Server Mistakes and How to Avoid Them
by Peter CarterAll the mistakes you might make with SQL Server—and how to avoid them!100 SQL Server Mistakes and How to Avoid Them prepares you for the pitfalls database professionals often encounter—from administration to development, availability, and security. You'll learn to sidestep common errors that slow down your T-SQL code and ensure your SQL Server is installed and configured to handle anything your organization throws at it. Inside 100 SQL Server Mistakes and How to Avoid Them you'll learn to avoid: • Development errors when writing T-SQL • Installation and administration mistakes • Optimization missteps • Common pitfalls relating to high availability and disaster recovery (HA/DR) • Security oversights that can endanger your data 100 SQL Server Mistakes and How to Avoid Them doesn't focus on the "happy path"—instead, it covers all the errors and problems you might face as a SQL Server developer or administrator. Each chapter is filled with real-world issues drawn from author Peter A. Carter&’s two-decade-long career in SQL Server. Peter's seasoned advice helps dispel myths, debunk misconceptions, and set you on the right road. About the technology Perfecting a SQL Server system can be a complex balancing act. Why is T-SQL running so slowly? Is the right data available? Are we protected against data theft? What about that new server instance I need to administer? Even the most skilled SQL Server experts make mistakes that cost time and performance. This book can help you get it right the first time. About the book 100 SQL Server Mistakes and How to Avoid Them focuses exclusively on the errors that you might—and probably will—make as a SQL Server admin or developer. Real-world examples, code samples, and helpful diagrams make it easy to understand each issue and its solution. You&’ll learn how to write performant code, design efficient database schemas, implement error handling, work with complex data types, and much more, all in a friendly, common-sense problem/solution format. What's inside • T-SQL development • Installation, administration, and optimization • High availability and security About the reader Readers need to understand basic SQL Server concepts and SQL queries. Perfect for junior database admins, full-stack developers, and &“accidental&” DBAs. About the author Peter A. Carter is a SQL Server expert with experience developing, administering, and architecting data-tier applications and SQL Server platforms. Table of Contents 1 Introducing SQL Server 2 Development standards 3 Data types 4 Database design 5 T-SQL development 6 SSIS development 7 Error handling, testing, source control, and deployment 8 SQL Server installation 9 Instance and database management 10 Optimization 11 Indexes 12 Backups 13 Availability 14 Security
100 Things We've Lost to the Internet
by Pamela PaulThe acclaimed editor of The New York Times Book Review takes readers on a nostalgic tour of the pre-Internet age, offering powerful insights into both the profound and the seemingly trivial things we've lost.Remember all those ingrained habits, cherished ideas, beloved objects, and stubborn preferences from the pre-Internet age? They&’re gone.To some of those things we can say good riddance. But many we miss terribly. Whatever our emotional response to this departed realm, we are faced with the fact that nearly every aspect of modern life now takes place in filtered, isolated corners of cyberspace—a space that has slowly subsumed our physical habitats, replacing or transforming the office, our local library, a favorite bar, the movie theater, and the coffee shop where people met one another&’s gaze from across the room. Even as we&’ve gained the ability to gather without leaving our house, many of the fundamentally human experiences that have sustained us have disappeared.In one hundred glimpses of that pre-Internet world, Pamela Paul, editor of The New York Times Book Review, presents a captivating record, enlivened with illustrations, of the world before cyberspace—from voicemails to blind dates to punctuation to civility. There are the small losses: postcards, the blessings of an adolescence largely spared of documentation, the Rolodex, and the genuine surprises at high school reunions. But there are larger repercussions, too: weaker memories, the inability to entertain oneself, and the utter demolition of privacy.100 Things We&’ve Lost to the Internet is at once an evocative swan song for a disappearing era and, perhaps, a guide to reclaiming just a little bit more of the world IRL.
100 sposobów na Excel 2007 PL. Tworzenie funkcjonalnych arkuszy
by David Hawley Raina HawleyWykorzystaj wszystkie mo?liwo?ci Excela, aby tworzy? funkcjonalne i efektowne arkuszeJak analizowa? dane i zarz?dza? nimi?Jak optymalnie wykorzystywa? tabele przestawne?Jak tworzy? spersonalizowane wykresy?Wi?kszo?? u?ytkowników Excela zna tylko drobn? cz??? dost?pnych w nim mo?liwo?ci. Istnieje jednak wiele metod pozwalaj?cych znacz?co poszerzy? wydajno?? tego programu i tworzy? efektowne arkusze kalkulacyjne bez potrzeby czasoch?onnego zdobywania wiedzy. Nowa wersja Excela umo?liwia chocia?by ?atwiejsze korzystanie z mechanizmu tabel przestawnych, formatowania warunkowego i nazw zakresów, podgl?du "na ?ywo", galerii predefiniowanych stylów oraz grafik SmartArt. Wszystko to sprawia, ?e ka?dy mo?e dzi? w swoich arkuszach u?ywa? bardziej skomplikowanych elementów wizualnych i graficznych.Obecnie, kiedy wszystko dzieje si? coraz szybciej, czas staje si? jedn? z najistotniejszych i po??danych warto?ci. Ksi??ka "100 sposobów na Excel 2007 PL. Tworzenie funkcjonalnych arkuszy" pozwala Ci w?a?nie zyska? na czasie - oferuje ponad sto gotowych metod tworzenia funkcjonalnych i efektownych arkuszy, szybkich i niezawodnych rozwi?za? skomplikowanych problemów. Warto tak?e wykorzysta? te metody do przeanalizowania oraz zastosowania niektórych mo?liwo?ci j?zyka Visual Basic for Applications (VBA) - dzi?ki temu b?dziesz móg? zaadaptowa? wszystkie zawarte tu propozycje do w?asnych potrzeb.Skoroszyty i arkuszeWbudowane mechanizmy do analizy danych i zarz?dzania nimiMetody tworzenia nazw i zakresów komórekTabele przestawneFormu?y i funkcjeWykresy i makraWspó?praca Excela z innymi aplikacjami pakietu OfficeWszystko, co chcia?by? widzie? o Excelu, aby natychmiast z niego skorzysta?. Poznaj ponad setk? sposobów skutecznego radzenia sobie z Excelem!
100 sposobów na Perl
by Damian Conway Curtis Ovid" PoeZbiór skutecznych rozwišza? dla programistów aplikacji internetowych Zwi?kszanie produktywno?ci pracy Tworzenie interfejsów u?ytkownika Wyszukiwanie i usuwanie b??dów Perl, od swojego zaistnienia na rynku, wyewoluowa? od prostego narz?dzia do przetwarzania tekstów i budowania raportów do formy zaawansowanego j?zyka programowania pozwalajšcego na tworzenie praktycznie ka?dej aplikacji dzia?ajšcej w sieci. Mimo do?? zaawansowanego "wieku", nie traci nic na popularno?ci. W sieci pojawiajš si? coraz nowsze wersje, a grono programistów korzystajšcych z Perla stale ro?nie. Spo?eczno?? u?ytkowników tego j?zyka skupiona wokó? portalu CPAN udost?pnia napisane przez siebie skrypty, wskutek czego z wieloma problemami programistycznymi mo?na sobie poradzi?, korzystajšc z gotowych rozwišza? lub si?gajšc do innych ?róde?. Dzi?ki ksiš?ce "100 sposobów na Perl" odkryjesz ma?o znane i mniej typowe zastosowania tego j?zyka. Czytajšc jš, dowiesz si?, w jaki sposób wykorzysta? Perl do ró?nych zada?. Nauczysz si? zwi?ksza? efektywno?? swojej pracy, tworzy? elementy interaktywne i przetwarza? pliki tekstowe w nietypowy sposób. Zapoznasz si? z odczytywaniem danych z baz i arkuszy kalkulacyjnych, pracš z modu?ami oraz programowaniem obiektowym. Znajdziesz tu tak?e informacje o testowaniu kodu, usuwaniu b??dów i optymalizowaniu wydajno?ci programów napisanych w Perlu. Korzystanie z biblioteki CPAN Automatyczne formatowanie kodu w edytorze Emacs Generowanie elementów graficznych Przetwarzanie arkuszy kalkulacyjnych Praca z bazami danych Tworzenie zestawu narz?dziowego modu?ów Korzystanie z obiektów Testowanie kodu ?ledzenie wykonywania programu
100 sposobów na SQL
by Andrew Cumming Gordon RussellZbiór praktycznych porad dla programistów i projektantów baz danych Jak obs?ugiwa? ró?ne typy danych? W jaki sposób optymalizowa? wydajno?? baz danych? Jak budowa? raporty za pomoc? j?zyka SQL? Jeste? programist?, któremu przypad?o w udziale opracowanie aplikacji bazodanowej? Szukasz sposobu na zoptymalizowanie dzia?ania zapyta? SQL? A mo?e zastanawiasz si?, w jaki sposób sprawnie zarz?dza? kontami u?ytkowników bazy danych? J?zyk SQL to pot??ne narz?dzie, którego opanowanie pozwoli Ci na sprawne poruszanie si? w g?szczu tabel ka?dej bazy danych. Za pomoc? odpowiednio sformu?owanych instrukcji mo?na manipulowa? danymi, zarz?dza? kontami u?ytkowników i generowa? raporty. Jednak, pomimo stosunkowo niewielkiej ilo?ci polece?, j?zyk SQL kryje w sobie wiele zawi?o?ci. Dzi?ki ksi??ce "100 sposobów na SQL" nie b?dziesz musia? odkrywa? ka?dej z nich samodzielnie. W ka?dym z rozdzia?ów znajdziesz praktyczne porady i sposoby rozwi?zywania typowych zada? programistycznych zwi?zanych z bazami danych i j?zykiem SQL. Poznasz podstawy j?zyka, dowiesz si?, w jaki sposób przetwarza? ró?ne typy danych i korzysta? z symboli zast?pczych. Nauczysz si? tworzy? aplikacje sieciowe, optymalizowa? wydajno?? tabel i zapyta? SQL oraz tworzy? raporty. Przeczytasz ponadto o administrowaniu serwerem bazy danych i udost?pnianiu tabel u?ytkownikom. Podstawowe elementy j?zyka SQL ??czenie tabel Przetwarzanie danych tekstowych Operacje na liczbach i datach Bazy danych w aplikacjach sieciowych Zapytania niezale?ne od tabel Maksymalizowanie wydajno?ci zapyta? Tworzenie raportów Administrowanie kontami u?ytkowników Udost?pnianie informacji Zosta? ekspertem w programowaniu baz danych!
1000 Platforms: Ensembles as Ontological Experiments (Dis-positions: Troubling Methods and Theory in STS)
by Adrian MackenzieIn today’s digital world, platforms are everywhere, shaping our social and cultural landscapes. This groundbreaking book shows how platforms are not just technical systems, but complex networks involving diverse people, practices and values. It explores a wide range of digital platforms, using insights from science and technology studies, anthropology, sociology and cultural theories to offer fresh perspectives on how platforms, media and devices function and evolve. Blending ethnographic work with technical analysis, this is essential reading for anyone wanting a deeper understanding of the digital age.
1001 Incredible Things to Do on the Internet
by Ken LeebowFrom the bestselling self-published series "300 Incredible Things to Do On the Internet" comes a comprehensive guide to quality sites on the Web. Cartoons throughout.
1001 Video Games You Must Play Before You Die: You Must Play Before You Die (1001)
by Tony MottIn fewer than fifty years videogames have become one of the most popular forms of entertainment, but which are the best games, the ones you must play? This action packed book presents the best videogames from around the world - from 80's classic Donkey Kong to Doom, Frogger and Final Fantasy. Covering everything from old favourites to those breaking new ground, these are the games that should not be missed.Video game expert Tony Mott presents 1001 of the best video games from around the world and on all formats, from primitive pioneering consoles like Atari's VCS to modern-day home entertainment platforms such as Sony's PlayStation 3. 1001 VIDEO GAMES defines arcade experiences that first turned video gaming into a worldwide phenomenon such as Space Invaders, Asteroids, and Pac-Man - games that made the likes of Atari, Sinclair and Commadore household names. It also includes the games that have taken the console era by storm from Nintendo Wii to Sony Playstation and beyond - games of the modern era that have become cultural reference points in their own right including multi-million selling series such as Halo, Grand Theft Auto and Resident Evil.For aficionados this is a keepsake - charting the highlights of the past fifty years giving them key information for games they must play. For those just discovering the appeal of gaming this extensive volume will provide everything they need to ensure they don't miss out on the games that revolutionized this overwhelmingly popular medium.
101 Cool Things to Do in Minecraft
by Welbeck Children's BooksMinecraft gives everyone so many opportunities for open-ended play... but when you have the whole world to explore what do you do?This book solves that problem, with 101 amazing ideas for fun challenges and quests in Minecraft. From finding every animal to making your own food factory, creating the ultimate underwater base to challenging your friends to an online dance-off, you won't believe the crazy tasks within. In-game activities range from combat quests to building challenges, and even mad stunts. This is the perfect book for anyone who wants to increase their Minecraft fun 101 times over!
101 Design Ingredients to Solve Big Tech Problems
by Eewei ChenPrinted in full color.Tough technology and business challenges face you at every stage of a project. The one-page ingredients in 101 Design Ingredients show you how to solve problems using practical examples you can apply right away. Case studies explain how leading companies combined these ingredients into their own unique recipes to catapult their businesses, and how you can, too. One page, one ingredient. 101 reasons to become more successful at solving those big technology problems. 101 Design Ingredients will help your technology team identify problems, share responsibilities, and work better together.In parts 1 through 4, you'll find 101 problem-solving ingredients grouped into project stages, to help you apply the right ingredient at the right time. Start at any point and page through the humorously illustrated ingredients until you find one that matches your needs best. The ingredients cover the spectrum your business needs to be successful, with tips on team-building, creating a business model, product launch, productivity, and much more. Each ingredient includes three practical suggestions to get you started right away.In part 5, you'll see examples of how companies can blend some of the ingredients used in this book to solve specific business requirements for investment, innovation, leadership, and more. Each recipe shows how a company fine-tuned six of the ingredients to build their own unique solution. You'll learn how to mix and match ingredients to create your own recipes for success, tailored to your company's needs.The ingredients and recipes in this book can be applied by beginners starting out on their first technology project, as well as seasoned professionals who have been tackling the same big problems for years and need a fresh new approach to problem solving.
101 Excel 2013 Tips, Tricks and Timesavers
by John WalkenbachGet the most out of Excel 2013 with this exceptional advice from Mr. Spreadsheet himself!Excel 2013 is excellent, but there's lots to learn to truly excel at Excel! In this latest addition to his popular Mr. Spreadsheet's Bookshelf series, John Walkenbach, aka "Mr. Spreadsheet," shares new and exciting ways to accomplish and master all of your spreadsheet tasks. From taming the Ribbon bar to testing and tables, creating custom functions, and overcoming "impossible" charts, mixing nesting limits, and more, 101 Excel 2013 Tips, Tricks, & Timesavers will save you time and help you avoid common spreadsheet stumbling blocks.Reveals ways to maximize the power of Excel to create robust applicationsDraws on John Walkenbach's years of experience using Excel and writing more than 50 booksShares tips and tricks for dealing with function arguments, creating add-ins, using UserForms, working with dynamic chart data, and changing data entry orientationProvides shortcuts and helpful techniques for sorting more than three columns, entering fake data for testing purposes, and setting up powerful pivot tables101 Excel 2013 Tips, Tricks, & Timesavers is packed with information that you need to know in order to confidently and seamlessly master the challenges that come with using Excel!
101 Extreme Survival Techniques for Fortniters: An Unofficial Guide to Fortnite Battle Royale (Master Combat)
by Jason RichTake control of your game and win at all cost with 101 Extreme Survival Techniques. This all-new, unofficial, illustrated guide series will turn you into a master Fortnite: Battle Royale gamer by uncovering all the best strategies and secrets of this wildly popular game. Whether you play Fortnite: Battle Royale on a PC, Mac, Xbox One, PlayStation 4, or your mobile device, you&’ll find everything you need to stay at the top of your game. Each book is packed with useful insider tips on topics like, staying alive longer, exploring, collecting a powerful arsenal, building, and snagging more victories during each match. When it comes to achieving #1 Victory Royale, the Fortnite Battle Royale: Master Combat Series provides the ultimate competitive edge. Whether you&’re a determined newb or a pro gamer, this unofficial, illustrated, how-to guide will give you the knowledge boost you need to take your Fortnite skills to the next level. Thanks to this comprehensive collection of over 100 insider tips and secrets, you&’ll be better equipped to launch ambushes, outsmart your adversaries, defeat more enemies, collect better loot, and gather the most powerful arsenal possible. With detailed explanations and colorful action-packed screenshots, Master Combat: 101 Extreme Survival Techniques is designed to improve your fighting and survival skills during every Fortnite: Battle Royale match. Add these proven strategies to your arsenal of tricks and play like a #1 Victory Royale champion.
101 Ready-to-Use Excel Formulas
by Michael Alexander Dick KusleikaMr. Spreadsheet has done it again with 101 easy-to-apply Excelformulas 101 Ready-to-Use Excel Formulas is filled with the mostcommonly-used, real-world Excel formulas that can be repurposed andput into action, saving you time and increasing your productivity.Each segment of this book outlines a common business or analysisproblem that needs to be solved and provides the actual Excelformulas to solve the problem--along with detailed explanationof how the formulas work.Written in a user-friendly style that relies on a tips andtricks approach, the book details how to perform everyday Exceltasks with confidence. 101 Ready-to-Use Excel Formulas issure to become your well-thumbed reference to solve your workplaceproblems. The recipes in the book are structured to first presentthe problem, then provide the formula solution, and finally showhow it works so that it can be customized to fit your needs. Thecompanion website to the book allows readers to easily test theformulas and provides visual confirmation of the conceptspresented.Teaches you how to implement the required Excel formulaExplains and details how the formulas workLets you reuse or customize the given formula to address yourparticular needsHelps you make the formulas a regular part of your new, moreefficient workflowSpecific real-world scenarios are used to demonstrate how tomost effectively apply Excel and its powerful formulas to completetasks faster and with greater accuracy than ever before. Now youcan save time, automate, and be more efficient and productive with101 Ready-to-Use Excel Formulas.
101 Ready-to-Use Excel Macros
by John Walkenbach Michael AlexanderSave time and be more productive with this helpful guide to Excel macros! While most books about Excel macros offer only minor examples, usually aimed at illustrating a particular topic, this invaluable resource provides you with the tools needed to efficiently and effectively program Excel macros immediately. Step-by-step instructions show you how to create VBA macros and explain how to customize your applications to look and work exactly as you want them to. By the end of the book, you will understand how each featured macro works, be able to reuse the macros included in the book and online, and modify the macro for personal use. Shows you how to solve common problems with the featured macros, even if you lack extensive programming knowledge Outlines a problem that needs to be solved and provides the actual Excel macro, as well as the downloadable code, to solve the problem Provides an explanation of how each macro works and where to use the macro With 101 Ready-to-Use Excel Macros, Microsoft MVP Michael Alexander helps you save time, automate tasks, and ultimately be more productive.
101 Secrets from a Pokémon Master
by Justin RyanSimply put, this book has 101 tips from a professional Pokémon player, in an easy-to-read format. These are much more advanced than the typical hack books and are current with all the new updates to the game. 101 Secrets from a Pokémon Master includes tips and techniques on battling, catching, evolving and leveling up-things you can't get anywhere online!
101 Top Tips for Black & White Digital Photography: The Art of Black & White Brought into the Digital Age
by John BeardsworthA comprehensive look at black & white photography by one of today's leading experts on digital-editing software and black & white conversion techniques.John Beardsworth explores the most powerful software for converting your color shots into stunning, high-quality black-and-white photos, with detailed explanations of how each tool works and why to try it out on your own images. His streamlined methods will optimise your workflow and inspire your photography.In addition to providing an abundance of step-by-step instructions with brilliant imagery, Beardsworth also teaches the aesthetic value of black and white, and how to visualise the creative potential of each shot. With its fun and approachable tips-based structure, this book will motivate you to experiment with impressive effects and innovative tools, ensuring that you make full use of the B&W software at your disposal.
101 Top Tips for DSLR Video
by David Newton Adam JuniperAll the information a photographer or film-maker needs to create cinema-quality movies with their digital SLR.
101 Top Tips for Digital Landscape Photography: Capturing Great Landscapes With Your Camera (101 Top Tips Ser.)
by Carl Heilman IIA comprehensive guide to improving your landscape photography by one of today's foremost landscape photographers.Landscape photography is perhaps the single most popular genre among DSLR owners. In 101 Top Tips for Digital Landscape Photography, experienced professional landscape guru Carl Heilman II gives the benefit of a lifetime spent shooting spectacular wilderness and mountain shots, offering a host of targeted tips and tricks that will allow photographers of all abilities to lift their landscape work to the next level.The reader will learn how to harness natural drama, use difficult lighting situations to your advantage and capture unusual perspectives, all the while benefiting from Carl's clear instruction and beautiful landscape work.