Udemy Products ExcitingAds :: Exciting Ads

Pass the CPA in 3 weeks with Surgent CPA Review! Learn about our Premier Pass course!

Sitemap

 
"Career Help - How SMART People Use Their Smartphone"
"Hi I'm James Davey The Exam Coach, and welcome to this short course on How SMART People Use Their Smartphones. This course will show you:How to use your smart phone to achieve your long term goalsHow to build positive usage habits around your own smartphoneHow to think about your smartphone so that you can stay on top of the important stuff in lifeCourse Context:Around 80% of the world's population owns a mobile device. That's around 5 billion people. Of those which are smart devices the average person spends 4.7 hours a day on this smart device, 3 of these hours are spent doing non-voice activities. Smart devices are those which perform the same functions as a computer, for example, internet access and contain an operating system capable of running downloadable apps - in other words, they work on the move, where ever when ever. Popular examples are the iPhone and Samsung Galaxy.To think that the first fully functioning smartphone to sell at significant global scale was only release on 2007 is staggering. What's even more astonishing is there's is no best practice around how to use these devices to be their most effective. Do we really know how to use the power and problem-solving potential within these devices? Do you know exactly how your friends use their phones? Do you know how they think about the content they receive and push out across their network every day? How they prioritise their time and attention?The answer is, you probably dont. In fact, most people feel uncomfortable having someone else, even a family member, look at or even have knowledge of the information on their phone. Its personal. We dont always want to share the private conversations, thoughts and hobbies that lay stowed away on our personal devices.For this reason, the way in which people actually use and think about their mobile devices and how that impacts the really big things we care about in life remains a mystery.This course contains my suggestion on how you might be able to make a few changes that could help you setup more structure around how you tap into the potential of your smartphone to help you achieve your long term goals. Ill show you how I use my smartphone to enable me to do the things I care about, to help take me a step closer to long term goals, to enhance my physical and mental quality of life as opposed to taking away from it."
Price: 19.99


"The Greeting Card Business: Design and Sell Your Own Cards"
"This class is for the artist, cartoonist, photographer or crafter who wants to learn aboutthegreeting card business.Whether you want to sell cardsinto stores, sell online, license to publishers, or work at a company, this course will cover the fundamentals ofhow to get started in thegreeting card business.Topics of this course include the professional card design such as themes,colors, patterns,text, and sizes,and how to get your cardsinto the marketplace through stores, apps and licensing. There is a final project tocreate six cards and the option to post them in an onlinecommunity gallery.This class is taught by Kate Harper,a designer whohas worked in the card industry for 20 years and has published over a 1,000 cards. Shewrites a blog on new trends in the greeting card businessand doesinterviews andindustryresearch on the market. She alsomoderatesa greeting card designcommunity group."
Price: 19.99


"Build a Real-Time Online Game with Laravel"
"Learn advanced programming techniques, and take advantage ofthe latest tools on the web to create a fully functionalonline game using PHP and MySQLCreate a web application using the latestLaravel Framework withlive notifications and events in real time.By the end of this course, you willacquire advance techniques on:Laravel 5.4MySQLBootstrap CSS 3JQuery and AJAXTake Your PHP knowledge To The Next LevelWe are going beyond the regularTo-Do List, or Blog project. We are making an online game. Not only that, our web application will respond to events in real time without having to reload the page!The knowledge acquired at the end of this course will serve you to create great looking applicationsthat can display information live, without user interaction. Like customer service chats or companydashboards with real time sales, just to name a few examples."
Price: 59.99


"Test Driven Laravel - Building a customisable sidebar menu"
"Learn how to apply Test Driven Development in Laravel 5.4 while creating a small but useful project.Create an administration panel with a customisable sidebar. Create, update and delete menu items and assign them to users to see the sidebar update immediately.By the end of this course, you willacquire advance techniques on:Laravel 5.4Test Driven DevelopmentAcceptance and Unit testingSQLite in-memory database for tests"
Price: 59.99


"TDD Laravel - Lets Build Personal Budget Website"
"The toughest part of learning Test Driven Development is where to start. Here, you get a quick jumpstart by creating an entire project using TDD & LaravelCreate a personal budget web application using TDD and the latestLaravel Framework.By the end of this course, you willacquire sufficient knowledge on:Feature & Unit TestingTest Driven DevelopmentDevelop faster and deliver better productsBy using Test Driven Development, you will not only discover how much it improves your development speed, but also how much moreconfident you are about your final product, knowing that it has been thoroughly tested and it works as intended."
Price: 89.99


"Build a Task Scheduler Admin Panel with Laravel"
"Improve your Laravel knowledge by creating a real-life project that uses advanced techniques like task scheduling, events and notifications.Create a task scheduler admin panel using the latestLaravel Framework.By the end of this course, you willacquire sufficient knowledge on:Task SchedulingEvents and ListenersModel notificationsBy using Laravel, you not only can improve your development speed but you also deliver better looking projects."
Price: 19.99


"Object Oriented Analysis, Design & Programming with UML"
"This Object Oriented Analysis, Design & Programming course is a unique course that teaches students how to use object-oriented techniques to build software. The course will start with requirements gathering & end with implementation. In the process, you'll learn how to analyze and design classes, their relationships to each other in order to build a model of the problem domain. You'll also use common UML diagrams throughout this process, such as use-case, class, activity & other diagrams. The diagrams will be created through a free tool. Lot of emphasis is placed on use cases to capture and manage requirements. Those are subsequently used to enforce OO concepts that produce a reusable design of the system that adapts to change. Finally, the design is implemented & programmed in three different programming languages - Java, C# & C++. During the implementation, you'll learn about the object-oriented concepts such as Abstraction, Encapsulation, Hierarchy, Polymorphism, interfaces, etc. All these concepts are explained with examples in all the three languages.Finally, all the important concepts are applied in a textual game called Reckless Driver. Consequently, you'll have understood the entire process of Object Oriented Analysis, Design & Programming & you can implement these concepts in your own software."
Price: 199.99


"C/C++ Pointers & Applications"
"C &C++ are very powerful languages when it comes to performance &flexibility. But there are some features that are complex and take time to master. One of such features is pointers. Pointers is what separates C/C++ from other languages. These are incredibly powerful as they allow programs toaccess memory directly and manipulate it.This course focuses on pointers and their applications.It leans more towards implementation in C++, rather C.You'll learn the basics of pointers and then move on to understanding and implementing arrays, pointers to arrays &heap based arrays. You'll also learn advanced memory management by creating a custom dynamic array (just like std::vector<T>in standard C++ library). You'll use placement new &delete to directly place objects in a memory pool allocated through operator new function. As you'll see later in the course, this is a powerful mechanism to optimize usage of heap memory with user-defined objects.After arrays, you'll learn how to use pointers to create node-based data structures. We'll focus on two types of linked lists - singly &doubly linked lists. You'll understand the differencebetween arrays and lists and also learn how to access the elements of both the data structures without having to know their internal structure. This is possible by creating context variables that allows access in a container-agnostic manner.Pointers are invaluable while working with strings. You'll learn how to create dynamic strings using pointers. This will be shown with an implementation of a string class.The next important topic you'll learn and implement will be function pointers. You'll understand how function pointers work and how we can simplify their syntax. You'll also master the complexity of creating arrays of function pointers and functions that return function pointers. On top of that, you'll be comfortable with functions returning pointer to functions that themselves return pointer to other functions. Confused? See the section on function pointers.That's not all. You'll also learn how to create pointer to members (which have even a more complex syntax than function pointers).Furthermore, you'll learn how to create callbacks through functions pointers. This course will show you how to optimize the callbacks through function objects. Function objects are more powerful than functions pointers as callbacks.We'll use this knowledge and apply it in many examples to reinforce the concept of pointers to functions.This course also introduces some commonly used containers of the C++standard template library (STL), such as std::array, std::vector&std::list. By the time you hit these topics,you'll already know how these are implemented internally. How about that!This course relies on some modern C++ (C++11) features to simplify things, such as auto, std::initializer_lists, type aliases.Even if you don't know about these features, the course has videos on these topics to getyou started. Additionally, there are four full length videos dedicated to discussion on move semantics.I hope you enjoy this course!"
Price: 199.99


"Detecting Memory Leaks in C/C++ Applications"
"C++ is a large and complex language, but it gives programmers complete freedom when it comes to management of dynamic memory. This allows the programmers to allocate memory and manipulate it at runtime. That is why C++ is still a favorite language for high performance applications in various domains such as gaming, telecom, finance, aerospace, etc.However, it requires programmers to take great care while using dynamic memory, such as releasing acquired memory, taking care not to overstep memory boundary, etc. Otherwise, it could lead to problems such as dangling pointers, memory corruption, memory leaks, etc. This course will help you overcome all these problem by leveraging the excellent features that Visual Studio provides. It has a rich set of functions provided by the C/C++ runtime heap library. These functions can help detect memory leaks, overflows, etc. You'll learn how to use these functions effectively and make your programs bug-free.In this course, you'll start with the basics of heap memory management and understand C & C++ allocation functions/operators in depth. You'll also learn how to effectively use them to avoid memory problems. Afterwards, you'll learn about the Visual Studio heap library functions and understand how to use them in your code.By the end of this course, you'll have a deep understanding of dynamic memory management. You'll be able to use CRT heap functions effectively to detect & isolate memory problems. You'll also implement the Visual Studio functions so that they can be used with any C++ compiler.Note:This course requires Visual Studio 2017 or a higher version."
Price: 99.99


"Assertiveness - learn to be the best of you"
"If you havehard time saying NO to people oryou feel you cannot offer your real opinion on different topics because this may create conflict, you have come in the right place.Doyou lack of courage to speak up for yourself because if you are not saying in the right way you will live the consequences? If you like to learn more about how to better express yourself, you are in the right place.This course is design with:clear information,examples to improve your understanding of assertiveness and help you implement the methods to enhance your communication.practical exercises and quizzesHere is what we will cover:1. Understanding AssertivenessPassivenessAggressiveness Passive-aggression Assertiveness2. Understanding Self-esteemSelf-confidence and Efficacy Self-respect and self-worth Differences between Low self-esteem, Healthy self- esteem, and False Ego 3. Self-perceptionBill of rights Self-talkPractices that increase Self-respect and healthy self-worth4. Peoples perception Walk the walk Talk the talk 5. Your personal level of assertiveness Personality typesRolesStrategies6. Appropriate personal assertivenessCommunicating with the significant otherParenting childrenBeing assertive with your parentsParenting parents7. Appropriate workplace/business assertiveness Examples of workplace assertiveness Constructive Criticism FeedbackAvoiding Passive Aggression at WorkHow to assertively ask for a raise8. How to be an Assertive Buyer Passive consumersAggressive customersAssertive consumer9. Raising assertive children Teaching assertiveness by tellingTeaching assertiveness by modeling10. Myths that Discourage Assertive BehaviorAnxiety Modesty Good friend Obligation Gender role myths Strength of an issue"
Price: 144.99


ppt_voice
IC2019.12.5
Price: 4800.00


"PyTorch for Deep Learning and Computer Vision"
"PyTorch has rapidly become one of themost transformative frameworks in the field of Deep Learning. Since its release, PyTorch has completely changed the landscape in the field of deep learning due to its flexibility, and how easy it is to use when building Deep Learning models.Deep Learning jobs commandsome of the highest salaries in the development world. This course is meant to take you from the complete basics, to building state-of-the art Deep Learning and Computer Vision applications with PyTorch. Learn & Master Deep Learning with PyTorch in this fun and exciting coursewith top instructor Rayan Slim. With over 44000 students, Rayan is a highly rated and experienced instructor who has followed a ""learn by doing"" style to create this amazing course.You'll go from beginner to Deep Learning expert and your instructor will complete each task with you step by step on screen.By the end of the course, you will have builtstate-of-the art Deep Learning and Computer Vision applications with PyTorch.The projects built in this course will impress even the most senior developers and ensure you have hands on skillsthat you can bringto any project or company.This course will show you to:Learn how to work with the tensor data structureImplement Machine and Deep Learning applications with PyTorchBuild neural networks from scratchBuild complex models through the applied theme of advanced imagery and Computer VisionLearn to solve complex problems in Computer Vision by harnessing highly sophisticated pre-trained modelsUse style transfer to build sophisticated AI applications that are able to seamlessly recompose images in the style of other images.No experience required. This course is designed to take students with no programming/mathematics experience to accomplished Deep Learning developers.This course also comes with all the source code and friendly support in the Q&A area.Who this course is for:Anyone with an interest in Deep Learning and Computer VisionAnyone (no matter the skill level) who wants to transition into the field of Artificial IntelligenceEntrepreneurs with an interest in working on some of the most cutting edge technologiesAll skill levels are welcome!"
Price: 199.99


"Learn how to sing in 10 lessons"
"This course is for beginner singers, it is also good for music lovers who want to discover their singing voice. I am a professional musician and I designed this course to help you get better in 10 lessons. My course has breathing exercises, professional vocal warm-ups, vocal technique exercises, practical advice and pro guidance. The things you will learn are the ones used by all great singers.Lesson 1- Relax before singingLesson 2- BreathingLesson 3- Find your singing voiceLesson 4- Vocal warm-upLesson 5-Vocal technic exercises 1Lesson 6- Vocal technic exercises 2Lesson 7- Belting technicLesson 8- Twang technicLesson 9- Riffs and runsLesson 10- Apply the technics"
Price: 49.99


"Music Theory: Read and feel musical rhythms like a pro"
"Read and feel musical rhythms like a prohas 8 lessons and rhythm exercises for beginners. The sections are:Time signature. Note values Simple rhythm in 2/4 Simple rhythm in 3/4 and 4/4 Tied notes 6/8, 9/8 and 12/8 Tied notes in 6/8, 9/8 and 12/8 Irregular rhythms Complex time signatures This is a music theory course and it is very helpful for beginner musicians. At the end of the course you will be able to read simple and complex rhythm, you will understand specific musical terms, you will have a better sense of rhythm. If you play or sing and you want to have a good rhythm, this is the perfect course for you!Good luck!"
Price: 29.99


"Mental Training for Musicians"
"In this course I propose some exercises to help musicians overcome stage fright and performance anxiety. Practice is the key to success, so don't expect for immediate results, have patience with yourself!Lesson 1 talks about 2 very important ideas:You are not the mistakes you makeMusical performance is about sharingLesson 2 talks about the importance of inner positive dialog.Lesson 3 is about exercises to connect your mind with your body, and to reduce stress level.Lesson 4 gives hints for overcoming performance anxiety."
Price: 39.99


"MySQL Replication (Beginner)"
"Welcome to the MySQLReplication course for beginners. I've created this course to teach students how to setup MySQLreplication at a basic level using a hands on approach. I've developed a sandboxto ensure that what you see on my screen should be the same on yours. Being a forever student of technology myself, I've found it frustrating while learning a new subject to have to deal with environmental differences between my system and the instructors. My goal is to eliminate such differences as much as possible.The course is going to be the first in a three part series that I'm creating on MySQLreplication. The lessons in this course are meant to be taken in order as I'll be building upon pieces learned in previous lessons. I've personally found this to be a better approach to learning technology so you don't become overwhelmed with complex topics you may not be ready for yet."
Price: 24.99


"Learn to Sew : Make Buttoned Pillow Cover & Zip Pencil Case"
"This course is laid out into sections and lectures. It is a follow on to my Learn to sew with a sewing machine course, were you learnt some basic skills in sewing. The techniqueyou will learn in this course forms building blocks for any and every sewing projects. We would dive into the world of seams, buttons, buttonholes and zips.The techniques you learn would be applied in the sewing projects which are part of this course.As with learning a new skill, practise is paramount, download the resources provided and practise alongside the video."
Price: 19.99


"How to sew a lined skirt without a pattern"
"On this courseyou will draft and sew your skirt without a commercial pattern.Learn to draft,cutand sew your skirt with your own body measurement not that of a stranger. You will add a lining to your skirt, to get that smooth luxury feelto your skirt. What will be cover includesDrafting a skirt from your own body measurementCutting the front section of the SkirtCutting the back section of the skirtFixing a standard zipSewing a slit into your skirtAnd sewing your skirtThen went ahead toAdd lining to our skirtSew the Skirt Band and hem our skirt."
Price: 19.99


"Pattern Making for Fashion Design - beginner's guide"
"Would you like to make clothes that actually fit you? Or do you want to design, and realise your own patterns? Then learn the techniques of pattern drafting with your own measurements to create paper patterns that fit your body perfectly. This is a practical organised course aim to teach you the fundamentals of Pattern drafting from scratch, by creating your own bespoke block/sloper, transforming your block/sloper into fashion styles and designs."
Price: 19.99


"How to style a basic pattern - to sew different styles"
"Would you like to make stylish clothes that actually fit you? Or do you want to design, and style your own patterns? Then learn the techniques of styling a draft pattern. A basic pattern is the first step the next is to style your pattern.This is a practical organised course aim to teach you the fundamentals of styling a basic pattern or sloper block into fashion awesome styles and designs."
Price: 19.99


"Aghh! Coping with Difficult People (With Dr. Susan Harrison)"
"Ditch the robotic, boringspeakers, the deadly PowerPoint slides, and the courses full of fluffyou deserve better. YOUR TRAINER: Dr. Susan Harrisonisan expert in communication and conflict, and has a doctorate in education. As aprofessional motivational speaker and edutainer (educational entertainer) she's fun, energetic, and will keep you engaged with her stories, wisdom, and humor. Dr. Sue has helpedthousands of men and women all over the United States and in Europeto deal with difficult people and to develop their social skills. And they keep coming for more because her strategies work! IMAGINE YOUR LIFE AFTER TAKING THIS COURSE: Picture yourself peacefully in your office (or home), because youre confident in your ability to stop that difficult person in his or her tracks.You wont dread meeting with that bully, you wont feel attacked by that blamer, or dragged down by that naysayer. Drama queens wont get to you, complainers wont cause you anxiety, and gossipers wont involve you in office (or family) soap operas. Replace the frustration, fear, or stress you've been feeling with a drama free life.Youll be in control of your own emotions, because that difficult person youve been having to live with will no longer be able to manipulate you. No more wanting to cry, hide, run, or choke him or her!Imagine his or her face when this person sees he or she can no longer use you or abuse like in the past!AFTER TAKING THIS COURSE YOULL BE ABLE TO: Understand yourself and the other persons personality traits better, so you can have less conflict and drama in your life. Decode people: Youll be able to read other people like open books. Youll learn the secrets of body language and visual cues, listen to what they dont say, and use that knowledge to get more of what you want. Youll be able to confront the difficult person because you will know how to prepare for that confrontation and how to be more confident. This will reduce the stress youre having now! You'll be free. You wont be manipulated again, because youll be able to identify the techniques bullies, naysayers, drama queens, complainers, blamers, and other difficult people use.Youll know their dirty tricks and will use them to set boundaries in a way that wont backfire. COURSE DESIGN:We designed this as a short course because we know you have no time for useless information, and you dont want to become a psychologist: You just need to be able to deal with this problem NOW. So thats what you get.We go from the general to the specific, so this course is divided into two parts: In the first part you develop the emotional intelligence and skills you need to keep the difficult people at bay. These skills will also allow you to improve any relationship in your life, by the way.In the second part we dive deeper and focus on each specific type of difficult person.IS THIS COURSE FOR YOU?If you answer Yes to one or more of the following questions, this course is for you: Do you have to interact with at least one difficult person at work, at home, at school, at family reunions, at your kids events, or any other place? Is there someone in your life whom just the thought of having to see causes you distress, anxiety, worry, or fear? Have you found yourself thinking ,God, please make this person so away, please, please! Is working orliving with someone a toughchallenge? Is there someone in your life who causes you pain, frustration, or drama? Do you want to get better at reading people? Be decisive and confidentthe solution youve been wishing for is here, so enroll in this course right now. Dont wait to get that person offyour back (without hurting your career.)"
Price: 19.99


"Shh! 12 Secrets Only the Best Administrative Assistants Know"
"90% of students who enroll in this course finish it (which for Udemy courses is WAY WAY above average!). What does that tell you? That this course is well worth taking!Have you wondered why some admins orexecutive assistants seem to have their act together, and navigate life with poise and confidencewhile others suffer, get pushed around, work super hard without being recognized,or live in stress?Successful admins know the secrets that make people around like them and support them. They look like they're under control, they have a fantastic attitude, and theyeven know how to toot their own horn, how to say no, and how tomanage their boss, allwithout making enemies orseeming bossy!Dr. Susan Harrison has trained thousands of admins, and she will be your mentor. She'll help you gain practical skills that willmake you more productive and more valuable than ever before.Learn better ways to deal with a difficult boss, to look andget organized, tostay motivated, get support from others, use your power effectively (you have more power than you may think!)and handle the pressure of multiple tasks, deadlines and bosses.It's not ""common sense"". It's a skill successful admins havetaken time to develop. Dr. Harrison is here to help you get started. After just one a half hour, you'll have a different perspective: theone that will take you places.Enroll now.You owe it to yourself to improve by studying this course. Remember:if you don't invest in yourself, why would anybody else?What are you waiting for? Start showing your value by being proactive!-"
Price: 19.99


"Mastering Cubase 9: The Beginners Bible Edition"
"TheMastering Cubase 9 Series arededicated to one of the most popular and powerful DAWs available today.Join me to learn EVERYTHINGyou need to get up and running fast, all the way to exporting your first song,with these in-depth Cubase 9 video tutorials.Ill be first walking you through the installation, authorization and registration process moving into setting up your external audio hardware to work within Cubase.Youll learn how to setup a project from scratch making sure all of Cubase configurations are ready to work.Youll also be able to compose music entirely using Cubase by learning all about the Media Bay and the Steinberg factory content that comes with the software and wich includes samples, loops and presets for you to kickstart your project.Want to get going with Cubase 9? Watch Mastering Cubase 9: Beginners Bible Edition today!"
Price: 114.99


"Mastering Cubase 9.5: The Beginners Bible Edition - Part II"
"TheMastering Cubase 9.5 Series is dedicated to one of the most popular and powerful DAWs available today.Join me to learn EVERYTHINGyou need to get your projects up and running fast with these in-depth Cubase 9.5 video tutorials.Introducing now the 5thEdition of the Mastering Cubase 9.5 Series. Wow! A big THANK YOU to all of ourpreviousstudents! And abigger WELCOME to those to come :)The first Edition was dedicated to the installation, configuration and overall study of the menus, bars, tools, and commands within Cubase. Then, we used all ofour newly acquired knowledge to craft someawesome Deep House tracks duringthe second Edition of theSeries.After that, it was time to actually dive in abit further into the theory and practice behind the mixing and production plugins Cubase has to offer.On our last release, we wanted to learn about production! We wanted to look at synthesizers and learn more about MIDI to make our tracks sound real, professional and finished!Youll now learn all about the small functions that make up your everyday routine.Youll find answers to which version of Cubase should you get, whats the difference between 32 bit and 64 bit, where are presets stored and more.Later on, youll learn about what is a bus, a macro, and a template, youll learn how to backup projects, how to export as wave and mp3 and how to handle direct offline processing.Finally, well take a look at the on-screen keyboard, hitpoints, normalization and fades.Want to get going with Cubase 9? Watch Mastering Cubase 9.5: The Beginners Bible Edition - Part II today!Happy Learning :)"
Price: 139.99


"Earning an Income Online: The Fiverr Edition"
"Hi, my name is Federico and I work from home.If youre a musician, composer, DJ, mixing, mastering or recording engineer, sound designer or even just an audio enthusiast, in general, you could be making earning an income today.If youre tired of composing top-quality music that ends up in SoundCloud, Spotify or YouTube without ever reaching enough views or subscribers to generate any ad revenue, then let me present you the side of the music industry that actually earns you royalties.I use only a laptop and a pair of headphones to earn an income online that has allowed me to take care of bills, rent and even travel.Im here to tell you that Fiverr has been responsible for a third of that salary each month since I joined in April 2017.After setting up an account on the Fiverr site I started receiving work without even asking for it.According to the Alexa rank, Fiverr is currently 396 in the list of websites with most traffic in the world, meaning theres a massive amount of people searching for musicians and engineers like you and me to assist them in their projects every single day.And the best part is that theyre willing to pay for it, to pay for your skills and for your time.Those of you who are familiarized with my online work may have noticed that Ive been covering how to use Cubase across 7 different online courses.Now its time actually teach you how to monetize your knowledge, no matter your level of skill, your language, your age, or the amount of time you have at your disposal.This is why I developed a new series of courses called: Earning an Income Online with Cubase, where Ill be teaching you how to be your own boss, manage your own schedule and support your family both financially and emotionally by being there for the best moments instead of being stuck in a cubicle all day.Cubase has allowed me to work as a podcast editor, a mixing engineer for films, music, and ads, a sound designer for trailers, tv shows, and youtube videos, a producer and editor for audiobooks, a support technician and teacher, a mastering engineer for meditation sessions and voiceovers, and even a game composer.Some of my clients include the inspirational speaker and entrepreneur Peter Sage, BMWs MINI, animation studio Beluga Animation, real state investment education podcast For Investors By Investors, True Local, Greenlight Medical, Soul Connect Hypnotherapy, Next Actor FIlms, Gerber & Co Inc. and many more!Throughout my career working as a freelance Fiverr seller, Ive made many mistakes that cost me clients, reputation, and time.If youd like to quickly learn how to avoid these mistakes then this course is for you.Ive helped clients on more than 175 projects across 16 countries and now Id like to teach you how to do it yourself.Doesnt matter if youre an electronic producer, a singer, a voiceover artist, or even a cellist.There is a job for you! In fact, lots of them.There are many job opportunities like transcribing music into sheets, creating podcast intros and outros, being the voice of ads or audiobooks, the list is endless.Youll be learning how the interface works, how to chat and create offers for clients, how to apply for jobs, how to set up your account, how to deal with cancellations and how to create gigs for people to hire you even when youre offline.Ill also be teaching you how to perform all the above-mentioned tasks in Cubase as best as possible, using the experience Ive gathered from all my clients to ensure youll have a high success rate in the platform.There are certain specific things that the vast majority of clients want but dont always ask, and there are these practices the ones that earn you 5-star reviews, juicy tips, and returning customers.Well be learning how Edit, Mix and Master Podcasts, Meditation Sessions, Audiobooks and even Short Films.As a bonus, Ill share with you all my custom response templates for you to use freely with your clients.I guarantee theyll make you look professional, ready to work and theyll help you convert more clients into sales without effort.Feel free to take a look at some of the free lecture previews and when youre ready, enroll in course!Without further due, this is the first edition of the Earning an Income Online with Cubase Series: The Fiverr Edition.See you inside!"
Price: 74.99


"Curso Bsico de Sibelius"
"Este curso te permitir aprender las funciones bsicas de Sibelius, de modo que puedas utilizarlo con comodidad y confianza para producir partituras simples, como una pieza sencilla para piano ola partitura de una cancin.Aprende a utilizar el programa de creacin de partituras ms popular del mercado, que cuentacon cientos de miles de usuarios alrededor del mundo!Crea partituras con facilidad y flexibilidad desde tu ordenadorEscribe arreglos de tu msica favoritaTranscribe canciones y piezas simples para ti o para tus alumnosSi nunca has utilizado Sibelius antes, este es el curso ideal para dar tus primeros pasos en el manejo delprograma.En este curso, aprenders a crear una partitura desde cero y a ingresar msica en ella. Te mostrar cmo utilizar el programa para escribir los signos ms comunesde la notacin musical de modo que puedas crear partituras que lucen profesionales. Mis16 aos como usuario de Sibelius me brindan la experiencia necesaria para ensearte las mejores prcticas en el empleo del programa, de modo que no sufras los tropiezos que otros usuarios experimentan.Este es un curso auto-instructivo, es decir, est diseado para que lo realices t mismo ya tu propio ritmo. Consiste, en su mayora, envideos de captura de pantalla en los que escuchars mi voz mientras te muestro las distintas funcionesdel programa. Al finalizar cada seccin, podrs realizar una actividad de repaso de los temas tratados en ella, la cual consistir en realizar operaciones en unarchivo de Sibelius proporcionado por mi oque t mismo hayas creado."
Price: 69.99


"Sibelius Intermedio"
"Este curso te permitir aprender funciones especiales de Sibelius, de modo que puedas utilizarlo con comodidad y confianza para producir partituras ms elaboradas que las que permiten las funciones bsicas del programa, como un cuarteto de cuerdas,una pieza para Big Band o una obra sinfnica sencilla.Aprende a utilizar el programa de creacin de partituras ms popular del mercado, que cuentacon cientos de miles de usuarios alrededor del mundo!Crea partituras con facilidad y flexibilidad desde tu ordenadorEscribe arreglos de tu msica favoritaTranscribe canciones y piezas simples para ti o para tus alumnosSi ya empleas Sibelius pero solo dominas los aspectos bsicos del programa, este es el curso ideal para profundizar ms en tu conocimiento de sus funciones.En este curso aprenders a modificarla forma en la que Sibelius muestra la msica en la partitura, de modo que podrs ir ms all de los ajustes automticosque realiza el programa y crear partituras que empleannotacin ms especializada. Mis16 aos como usuario de Sibelius me brindan la experiencia necesaria para ensearte las mejores prcticas en el empleo del programa, de modo que no sufras los tropiezos que otros usuarios experimentan.Este es un curso auto-instructivo, es decir, est diseado para que lo realices t mismo ya tu propio ritmo. Consiste, en su mayora, envideos de captura de pantalla en los que escuchars mi voz mientras te muestro las distintas funcionesdel programa. Al finalizar cada seccin, podrs realizar una actividad de repaso de los temas tratados en ella, la cual consistir en realizar operaciones en unarchivo de Sibelius proporcionado por mi."
Price: 69.99


"Microsoft Excel: Data Reporting and Dashboards From Scratch!"
"This course gives you a perfect start to the ""DataAnalytics world"".""If you feel something is complicated or not your cup of tea, its majorly because you tried jumping on the advanced conceptsrather than absorbingthe basics first"" -This course is an effort to provide ample background of each concepts and stresses on the fundamental areastoensure that you learn it correctlyand can re-implement the concepts when required.This course is not designed to teach you certain functionalities of Excel; But, to teach you the right skills which you can re-implement on other problems too...The course is structured to coverall major Excel Concepts while Explainingthe Data Reporting concepts.Data Understanding - Using concepts that will help you understand the framework of your Data in ExcelData Cleaning - Using various tools like - Got To special, Remove duplicates, etcData Preparation - Using various Functions like Vlookup, Text Functions, Date Functions, Logical Functions, etcData Summarizing - Explained using Functions and Pivot TablesData Presentation - Explained using Different chart types we should use depending on the requirement.Reporting & Dashboards -Explained using Form/ActiveX controls and Pivot Table with the help of SlicersAll of this using Microsoft Excel. The course flow ordered exactly like the points above. This order should be followed while working on Excel as well.After completing this course you will be able to:Work confidently andSave yourtime and effort by using smart functionalities of Excel.Create your owninteractiveReports and DashboardsRe implement the concepts to different problemsBe ready to answer Interview questions.Start Loving Excel (in case you currently don't)Looking forward to hear back from you about the course."
Price: 189.99


"Excel Automation: Learn VBA & Macros From Scratch!"
"This course is built for Existing Excel users who would like to make their life more simpler and smarter by automatingmanual/repetitivework in Excel.------------------------------------------------------------------------------------------------------------------------------------------------------------------------FAQsQ:I've never done coding before and have no background to VBA. Can i still learn it?A:Yes, This course is mainly targeted to those who are absolutely new to coding/programming. I've trained over 1000 students with no programming background successfully.Q: I'm not a great learner, I find difficulty understanding and working withcodes/programming. can i learn it?A:I consider myself as the worst student. So if i can learn it, you can too.Q:Why is coding/programming considered so difficult? Can a person with not a great memory learn it?A:Anything is difficult to remember and understand, if you do not have ample background to it, which answers the ""WHYs?"" of those concepts.Moreover, I'm myselfthe person who's not too great at memory, and that makes me ensure that I usesimple language, withrelatable examplesand provide amplebackgroundtothe concepts in my course.Q: I know how to record macros and I'm doing pretty well? What more this course has to offer?A: Recording is just one part of your learning. there are many more concepts in VBA which a person should know, to get smarter and more efficient at coding. This course doesn't revolve around recordingthe macros only.It focuses more on how to Write the macros from scratch. The idea is to make sure you are able to understand the codes so well, that it becomes easy for you to make more smarter macros going forward. Refer to the course contents of this course to know the details of what will be covered in this course.-------------------------------------------------------------------------------------------------------------------------------------------------------------------------""If you feel something is complicated or not your cup of tea, its majorly because you tried jumping on the advanced conceptsrather than absorbingthe basics first"" -This course is an effort to provide ample background of each concepts and stresses on the fundamental areastoensure that youlearn it correctlyand canre-implementthe concepts when required.--------------------------------------------------------------------------------------------------------------------------------------------------------------------------After completing this course you will be able to:Build your own full fledgedmacros from scratch!Write your macrosUnderstand your macrosEdit/Modify your macros to improve performanceCreate your own User DefinedFunctionsAuto execute Macros on Several Events.Re implement the concepts to different problemsStart Loving to code(in case you currently don't)Looking forward to having more interactions with you inthe course.Happy Learning!"
Price: 189.99


"Information Security Awareness: An introduction for UK SMEs"
"What Will I Learn? The value of stolen information and how to recognise UK SME cyber security threats including viruses, spyware, malware, impersonation, denial-of-service, hacking, identity theft and corporate identity fraud,How social engineering attacks operate and how to protect yourself through cautious behaviour, call verification and by applying email precautions,Sound practices to safely handle email attachments and follow hyperlinks, identify fake emails, and recognise common business scams,To recognise and avoid social media dangers including identity theft, social engineering attacks and malware, by adopting sound social media practices,To securely manage your passwords. Requirements An appreciation of the small business workplace,A general familiarity with internet browsing and common office applications.Description UK SMEs are at risk of cyber-attack. Security awareness training helps SMEs defend themselves. This introductory, non-technical information security awareness course, avoids (almost all) jargon to outline key SME workplace security threats and give you actionable solutions. Develop a security-mindset based on a realistic, evidence-based UK SME threat awareness Know who the attackers target and why,Minimise your user-enabled security attacks,Defend yourself and your company against phishing and other lure-based attacks,Adopt safe, and avoid unsafe workplace social media practices,Improve your password management.Protect yourself and your SME SMEs with a security-aware culture are less likely to suffer an expensive cyber-attack. Educating yourself about workplace information security threats and adopting secure practices will help protect your company. This course introduces end-user focused, straightforward, non-technical security awareness topics. The course is particularly suited to micro (0-9 employees) and small (10-49 employees) SMEs. Some medium (50-249 employees) SMEs will benefit from parts of the course. Most examples and many references in the course are UK sourced. Individuals, families, small businesses and large organisations share many information security threats. How SMEs should prepare for and respond to these threats differs from the other categories of user. Defensive techniques and tips offered in this course are UK SME oriented. Key information security awareness topics are presented in a straightforward, accessible and practical manner. At the end of each topic, use the workbooks to determine further security awarenessactions. Course content and overview Actionable end-user security awareness training is structured around five key, standalone topics:You are a target,Social engineering,Dangerous email and links,Social media issues,Password risks. This course comprises of 33 lectures and around2 hours of lecture content. Each topic divides into several short lectures. Lectures typically last 4-8 minutes. Following each topic, are practice activities and resources: e.g. a downloadable lecture pdf, an online quiz providing immediate feedback, a downloadable workbook and a topic bibliography. A course completion certificate is also available. Course topics You are a target This topic considers the value of personal or company information and how it is sold on darknet markets. It introduces identity theft, highlighting the type of people deliberately targeted. Corporate identity fraud and basic protection approaches are addressed. Common workplace information security threats, as identified by a UK government survey, are introduced. Social engineering This topic introduces social engineering is and explains its popularity amongst attackers. Three main malicious social engineering techniques are introduced. Mainly UK social engineering examples are given. Defensive techniques against social engineering attacks are outlined. Dangerous email and links This topic considers email attachment dangers. The reasons attackers favour email are given. Email protection steps are provided. Hyperlinks and their dangers are explained. How to distinguish between real and fake email is explored. Scams targeting UK SMEs and protection advice are introduced. A specific attack type spear phishing is also considered. Social media issues This topic introduces workplace social media. SME social media concerns are outlined. Key social media dangers including identity theft, social engineering attacks, malware infection, plus employee and employer risks are discussed. Social media advice for UK SME employees and employers is provided. Password risks This topic considers key password issues including the worst passwords, too many passwords, forgotten passwords and main types of password attack. Technical security controls for passwords and their limitations are outlined. The contrast between how users manage passwords and how they should manage their passwords is explored. Poor password hygiene practice is demonstrated. Good practice password hygiene is explained. Two-factor authentication is outlined. SME password security managing multiple logins and passwords plus security tips for passwords are introduced."
Price: 99.99


"GDPR - in a nutshell"
"The EU General Data Protection Regulation (GDPR) was enforced in May 2018. It affects all organisations and businesses anywhere in the world, that process the personal data of EU citizens.The GDPR headlines are all about the fines up to 20 million or 4% of global turnover. Fortunately, the supervisory authorities aim to encourage organisations and businesses to apply sound data protection principles. Thats what this GPDR in a nutshell course is all about. It explains the rationale for data protection regulation and provides an overview of the GDPR. It outlines the six data protection principles and theaccountability principle. It explains the new and enhanced data subjects rights. Significant compliance issues, such as subject access requests, the impact on direct marketing and personal data breach reporting are considered. This is an introductory, GPDR staff awareness course. It concentrates on the compliance issues and concerns faced by small businesses and organisations. Course content and overview This GDPR awareness training is structured around four topics GDPR rationale and overview Principles and accountability Individual rights Applying the GDPR This course comprises of 25 lectures and around1.5 hours of lecture content. Each topic divides into several short lectures. Lectures typically last 4-10 minutes. There are practice activities andresources: i.e. content-based and scenario-based quizzes,a downloadable lecture pdf and a topic bibliography. Course topics GDPR rationale and overview This topic introduces the GDPR. The GDPRs background, key roles and definitions are outlined. The increased penalties and exemptions are described. Principles and accountability This topic introduces the six data protection principles underpinning the GDPR. The overarching accountability principle is explained. Individual rights This topic outlines the individual rights that EU citizens have under the GDPR. It also considers the business impact of serving those rights. Applying the GDPR This topic considers three challenging GDPR compliance subjects. These are: subject access requests (SARs), the impact on direct marketing and personal data breach reporting."
Price: 24.99