LitMy.ru - литература в один клик

  • Добавил: Chipa
  • Дата: 22-07-2024, 14:09
  • Комментариев: 0

Название: Obsidian.md. Крепкий фундамент системы заметок
Автор: Антон Дворкин
Издательство: Stepik
Год: 2024
Формат: HTML
Страниц: много
Размер: 38 Mb
Язык: Русский

Obsidian - отличный инструмент для ведения заметок, сохранения и последующего поиска полезной и справочной информации, работы с задачами, творчества и других целей. В рамках обучающей программы вы изучите Obsidian так, чтобы смочь быстро начать в нем работать, и делать это стабильно и эффективно. Но не только - также вы освоите фундамент работы с персональными базами знаний, который сможете применить в разных приложениях.


  • Добавил: literator
  • Дата: 22-07-2024, 03:01
  • Комментариев: 0
Название: Deep Learning for Finance: Creating Machine & Deep Learning Models for Trading in Python
Автор: Sofien Kaabar
Издательство: O’Reilly Media, Inc.
Год: 2024
Страниц: 362
Язык: английский
Формат: pdf (true), epub (true)
Размер: 16.0 MB

Deep Learning is rapidly gaining momentum in the world of finance and trading. But for many professional traders, this sophisticated field has a reputation for being complex and difficult. This hands-on guide teaches you how to develop a deep learning trading model from scratch using Python, and it also helps you create and backtest trading algorithms based on Machine Learning and reinforcement learning. Sofien Kaabar—financial author, trading consultant, and institutional market strategist—introduces Deep Learning strategies that combine technical and quantitative analyses. By fusing Deep Learning concepts with technical analysis, this unique book presents outside-the-box ideas in the world of financial trading. This A-Z guide also includes a full introduction to technical analysis, evaluating machine learning algorithms, and algorithm optimization. Deep Learning is a slightly more complex and more detailed field than Machine Learning. Machine Learning and Deep Learning both fall under the umbrella of Data Science. As you will see, Deep Learning is mostly about neural networks, a highly sophisticated and powerful algorithm that has enjoyed a lot of coverage and hype, and for good reason: it is very powerful and able to catch highly complex nonlinear relationships between different variables. The book assumes you have basic background knowledge in both Python programming (professional Python users will find the code very straightforward) and financial trading. I take a clear and simple approach that focuses on the key concepts so that you understand the purpose of every idea.
  • Добавил: literator
  • Дата: 21-07-2024, 13:50
  • Комментариев: 0
Название: Excel with AI: A Comprehensive Guide to CoPilot and Python Integration
Автор: Hayden Van Der Post
Издательство: Reactive Publishing
Год: 2024
Страниц: 664
Язык: английский
Формат: pdf, epub, azw3, mobi
Размер: 10.1 MB

Unlock the Ultimate Power of Excel with AI at Your Fingertips. Dive into the depths of advanced Excel techniques with "Excel with AI", the definitive guide for enthusiasts eager to harness the full potential of Excel through Artificial Intelligence (AI) and programming. Tailored for those who have mastered the basics and are now ready to explore uncharted territories, this book goes beyond the fundamentals to reveal sophisticated methods that will revolutionize your data analysis and automation skills. Discover how to seamlessly integrate Python within Excel using the groundbreaking Py function, unleashing new possibilities for data manipulation, visualization, and analysis. Learn to collaborate effortlessly with AI-powered COPILOT, enhancing your productivity and efficiency. Explore the harmonious synergy between Python and Excel, crafting dynamic solutions that were once unimaginable. And for those who relish the control and flexibility of VBA, delve into advanced scripting techniques to automate complex tasks with precision. Whether you’re a data scientist, analyst, or developer, "Excel with AI" is your comprehensive resource for staying ahead in a world where Excel and AI converge. Packed with real-world examples, step-by-step tutorials, and expert insights, this book ensures you not only understand the concepts but also apply them to solve practical problems.
  • Добавил: literator
  • Дата: 21-07-2024, 13:10
  • Комментариев: 0
Название: Learning C# Through Small Projects
Автор: Denis Panjuta, Jafar Jabbarzadeh
Издательство: Springer
Год: 2024
Страниц: 398
Язык: английский
Формат: pdf (true)
Размер: 22.9 MB

In the ever-evolving world of software development, the ability to adapt, learn, and innovate is paramount. C# has emerged as a versatile and powerful language, enabling developers to craft everything from enterprise applications to captivating games. However, the journey to mastering C# can be daunting, especially when faced with dense textbooks and abstract concepts. Learning C# by Small Projects seeks to bridge this gap, offering a hands-on approach to understanding advanced C# concepts through engaging projects and minigames. The rationale behind this book is simple: learning by doing. Instead of wading through pages of theory, you’ll be diving straight into the action, building 11 distinct projects that range from an interactive storytelling program to a responsive Discord chatbot. Each project is meticulously designed to introduce and reinforce specific C# concepts, ensuring that you not only understand the theory but can also apply it in real-world scenarios. The book is structured to provide a gradual learning curve. The initial chapters lay the foundation, introducing you to the basics of C# programming. As you progress, the projects become more intricate, delving into advanced topics such as asynchronous operations, data integrity, and API integration. By the end of the book, you'll have a comprehensive understanding of C# and a portfolio of projects to showcase your skills.
  • Добавил: literator
  • Дата: 21-07-2024, 12:25
  • Комментариев: 0
Название: Effective Go Recipes: Fast Solutions to Common Tasks
Автор: Miki Tebeka
Издательство: Pragmatic Bookshelf
Год: April 2024 (Version: P1.0)
Страниц: 269
Язык: английский
Формат: True PDF, True EPUB (Retail EPUB)
Размер: 10.1 MB

Programmers love Go because it is lightweight, easy to work with, and easy to read. Go gives you the benefits of dynamically typed languages (speed of development) while keeping the upsides of strongly typed languages (security and performance). Go is a simple language, but programming in Go is about more than just mastering syntax. There's an art to using Go effectively. Squeeze out the full use of advanced networking and multi-core power for which Go was designed. Save precious coding hours with recipes that help you manage objects, collect garbage, and safely use memory. Tackle Unicode, concurrency, and serialization with ease. All the clean, reusable solutions you need for a wide variety of problems common to Go development. Outfitted with these recipes, your next apps will be more polished and more maintainable than ever. Start out by tackling time and see how the Go time packager provides types that will do most of the heavy lifting for you. Next, work on recipes tailored to the nuances of processing text, like normalizing strings to avoid bugs. From there, whip up some functions on-the-fly and store functions in variables and data structures. Ever wondered why Go seems to be peppered with error handling? Working through the next recipes, you'll discover the benefits, which include more robust code. In the section on HTTP, you'll learn tricks like running multiple HTTP servers on the same port and setting timeouts. With concurrency recipes, you'll limit the number of goroutines to improve performance, give your code awareness of timeouts, and decide when to keep your code sequential instead of making it concurrent. Throughout the book, you'll make Go sizzle following simple recipes and tweaking them to fit your own apps. Using tools like strong typing and concurrency primitives, build a Go codebase that stays maintainable at scale.
  • Добавил: literator
  • Дата: 21-07-2024, 08:09
  • Комментариев: 0
Название: Java Testing with Selenium: A Comprehensive Syntax Guide for Automation
Автор: Sujay Raghavendra
Издательство: Apress
Год: 2024
Страниц: 345
Язык: английский
Формат: pdf (true), epub (true), azw3, mobi
Размер: 10.1 MB

Master the art of automated testing using Selenium with Java in this comprehensive guide. Whether you're a beginner or an experienced tester, the book equips you with the knowledge and techniques to build robust and maintainable test suites, ensuring the quality and reliability of your web applications. This book starts introducing the basics of automated testing and the importance of Selenium. It then covers the setup and configuration of the Selenium WebDriver in Java, providing a solid foundation for your testing environment. You'll learn essential aspects of Selenium testing in Java, including working with different browsers, locating web elements using locators, and performing actions on them. From there, you’ll explore how to handle dynamic web pages and effective wait mechanisms and verifications to ensure accurate and reliable test results. The book also guides you in setting up Selenium in Java for continuous integration and emphasizes best practices for test codeorganization and maintainability, such as the Page Object Model (POM) and structuring test suites effectively. By the end, you’ll have the expertise to address advanced scenarios, such as working with iframes, and know how TestNG enhances Selenium automation, enabling structured tests, data-driven insights, and swift parallel executions. Throughout the book, you'll benefit from real-world examples and practical exercises that reinforce the concepts. The clear explanations and step-by-step guidance make it easy to follow along and apply the knowledge to your own testing projects. For software testers, quality assurance professionals, and developers interested in mastering automated testing with Selenium and Java. Suitable for various experience levels.
  • Добавил: literator
  • Дата: 21-07-2024, 07:33
  • Комментариев: 0
Название: Beginning Python: From Novice to Professional, 4th Edition
Автор: Magnus Lie Hetland, Fabio Nelli
Издательство: Apress
Год: 2024
Страниц: 620
Язык: английский
Формат: pdf (true), epub (true)
Размер: 39.3 MB

Gain a fundamental understanding of Python’s syntax and features with this revised introductory and practical reference. Covering a wide array of Python–related programming topics, including addressing language internals, database integration, network programming, and web services, you’ll be guided by sound development principles. Updated to reflect the latest in Python programming paradigms and several of the most crucial features found in Python 3, Beginning Python, Fourth Edition also covers advanced topics such as extending Python and packaging/distributing Python applications. Ten accompanying projects will ensure you can get your hands dirty in no time. In the Chapter 1, you learn how to take control of your computer by speaking a language it understands: Python. Nothing here is particularly difficult, so if you know the basic principles of how your computer works, you should be able to follow the examples and try them out yourself. I’ll go through the basics, starting with the excruciatingly simple, but because Python is such a powerful language, you’ll soon be able to do pretty advanced things. The Chapter 2 introduces a new concept: data structures. A data structure is a collection of data elements (such as numbers or characters, or even other data structures) that is structured in some way, such as by numbering the elements. For programmers, novice and otherwise, seeking a comprehensive introduction to the Python programming language.
  • Добавил: literator
  • Дата: 21-07-2024, 02:03
  • Комментариев: 0
Название: The Ultimate Django Guide: From Beginner to Advanced Web Development | 1st Edition | 2024
Автор: Jiho Seok
Издательство: Independently published
Год: 2024
Страниц: 268
Язык: английский
Формат: epub
Размер: 12.6 MB

This book is meticulously designed to take you from the initial setup of your Django development environment to mastering advanced topics essential for building robust, scalable web applications using the latest tools and Django 5.0.7. Welcome to the world of Django, a high-level Python web framework that encourages rapid development and clean, pragmatic design. Whether you are an aspiring web developer, a seasoned programmer looking to expand your skill set, or simply someone with a keen interest in web technologies, this book is crafted with you in mind. Why Django? Django has gained immense popularity in the web development community due to its simplicity, flexibility, and scalability. It's the backbone of numerous high-traffic websites and applications, making it a powerful tool in the arsenal of modern developers. But beyond its technical merits, Django embodies a philosophy that prioritizes developer experience and efficiency, allowing you to focus on writing your application without needing to reinvent the wheel. This book is designed to be your comprehensive guide through the landscape of Django, starting from the very basics and gradually building up to more advanced topics. We begin with setting up your development environment, ensuring you have all the necessary tools to start your journey. From there, we'll dive into the core components of Django, exploring models, views, templates, forms, and beyond. Each chapter is meticulously structured to provide a deep understanding of each concept, supported by practical examples and real-world applications. Our goal is to not only teach you how to use Django but also to help you understand the principles and best practices that underpin its design.
  • Добавил: literator
  • Дата: 21-07-2024, 01:27
  • Комментариев: 0
Название: Hallo .NET 8.0: Practical ASP.NET Core Minimal API
Автор: Agus Kurniawan
Издательство: Leanpub
Год: 16 December 2023
Страниц: 303
Язык: английский
Формат: pdf, epub
Размер: 10.7 MB

Dive into Hallo .NET 8.0: Practical ASP.NET Core Minimal API to master web development with 20 hands-on labs. From basics to advanced features, this guide is your key to unlocking the powerful capabilities of ASP.NET Core 8.0. Start your journey today! Hallo .NET 8.0: Practical ASP.NET Core Minimal API is a meticulously crafted guide that takes you on an explorative journey into the world of ASP.NET Core 8.0. Designed for a broad audience, from beginners to seasoned developers, this book dives deep into the practical aspects of Minimal API development. It starts with an introductory section that sets the foundation, highlighting the evolution and significance of Minimal APIs in the .NET framework. The core of the book is structured into comprehensive sections covering ASP.NET Core Minimal API development, database integrations, and critical aspects of web security. It stands out with its 20 hands-on lab exercises, each carefully designed to reinforce learning through practical application. From setting up development environments and building your first API to delving into complex topics like data security and efficient database handling, the book ensures a thorough understanding of each concept. In its final chapters, the book transitions into crucial topics like monitoring and deployment, preparing readers to not only build but also sustain and optimize applications in real-world settings. This section is pivotal for understanding the lifecycle of web applications and equips readers with the skills to deploy and maintain their projects effectively.
  • Добавил: literator
  • Дата: 20-07-2024, 17:44
  • Комментариев: 0
Название: Mastering GitHub Enterprise Management and Administration: A Guide for Seamless Management and Collaboration
Автор: Balu Nivrutti Ilag, AjayKumar P. Baljoshi, Ganesh J. Sangale, Yogesh Athave
Издательство: Apress
Год: 2024
Страниц: 881
Язык: английский
Формат: pdf (true), epub
Размер: 19.7 MB

This book is a comprehensive guide to GitHub Enterprise Cloud and provides a detailed overview of how to set up, manage, administer, and configure GitHub for organizations. In addition to this, you will also learn identity management and the CI/CD pipeline. The book starts with a thorough introduction to GitHub administration and its benefits. You will then learn how to set up and manage a GitHub Enterprise account and organization, guiding administrators through each step. Next, you will go through GitHub Repository Secure Management and Best Practices along with an understanding of how to manage access to GitHub using SAML SSO. GitHub enterprise support strategies and their usage and adoption are discussed next in detail. Moving ahead, you will learn about GitHub Action and Packages followed by GitHub Copilot management. How to automate repetitive tasks and workflows using GitHub Actions and enhancing productivity is discussed in detail with the help of case studies. Towards the end, you will demonstrate securing the software development lifecycle through advanced security and use GitHub Actions for automating business processes. After reading this book, you will be able to leverage the full potential of GitHub Enterprise Cloud for your software development needs. For Software Development teams, DevOps engineers, and IT professionals who are looking to use GitHub Enterprise Cloud for code collaboration, management, and deployment.