• Tensodrone that do not break, and what does architecture, robotic manipulator and copter have in common

    • Translation
    We had ten broken drones in a year, test flights twice a day, three PhDs in the team, a prototype of sushi sticks and a desire to find a way to stop hitting drones.

    Very controversial, very unusual, very strange, but it works! At the intersection of architecture, collaborative robotics and unmanned aerial vehicles. 

    Introducing: Tensodrone™.



    Tensodrone is a multi-rotor UAV of a new design with collision protection, made on the principle of tensegrity. This approach allows for the combination of the protective cage and the airframe in one structure, increasing impact resistance with less weight. The project is a vivid example of the interaction of various teams of the Center for Competences of the National Technology Initiative in the field of «Robotics and Mechatronics» established at the Innopolis University in 2018.
    Read more →
  • Checking the Code of XMage, and Why You Won't Be Able to Get the Special Rare Cards of the Dragon's Maze Collection

      image1.png

      XMage is a client-server application for playing Magic: The Gathering (MTG). XMage's development was started in early 2010. Since then, it has seen 182 releases, attracted an army of contributors, and it's still being actively developed even now. All that makes it a good reason for us to contribute to its development too! So, today the PVS-Studio unicorn is going to check the code base of XMage and maybe even get into a fight with some entities.
      Read more →
    • Dark code-style academy: spoil if statement

        image


        Do you want to raise your salary? Do you want always to be in demand? Do you want to have your job as long as you want? It is absolutely real! You just need to change the way you write your code. Basically, you need to increase your job security. You have to write code which will be almost impossible to maintain for everyone except you. And in these series of articles, I will tell you how to achieve it. Welcome under the cut.

        Read more →
      • Top 10 Blockchain Development Companies To Partner With In 2020-21

          image

          Global Blockchain solutions spending is expected to surpass $15.9 billion in 2023. At the same time, this expenditure was $1.5 billion in 2018. Indeed, this is a huge influx in global spending, which depicts how companies will be investing more in blockchain solutions and blockchain-based mobile apps.

          In this group, the major contribution will be seen from industries including finance, banking, healthcare, agriculture, and more. Amidst, outsourcing Blockchain development companies will also gain prominent attention.

          If you are thinking about having Blockchain integration within your business solution, you must be having several questions in your mind, such as: what are the benefits of blockchain? Which are the best companies to hire? And more.
          Read more →
        • Delayed queue in Java and Redis

          • Translation

          Several years ago we had to solve how to enqueue events with an arbitrary delay, e.g. check a status of a payment 3 hours later, or send notification to a client in 45 minutes. At that point of time, we didn't find suitable libraries to accomplish this task, which didn't require us to spend time on configuration and maintenance. After analysing possible solutions we ended up building our own small library delayed queue in Java language on top of Redis storage engine. In this article I'll explain capabilities of this library, alternatives and problems we solved during creation process.

          Read more →
        • How to verify Switching-Mode Power Supply circuits

          It is always good practice to verify a circuit before using.

          Switching-Mode Power Supplies are the most used circuits nowadays. But there are some difficulties with verifying their circuits: vendors do not publish models for all controllers; a model can be locked to be used with some tool; there may be errors in a model; average models want correct parameters and you need some practice of using them; transient models take a lot of time to get small-signal response and also can have errors.

          Let’s try to verify one circuit using my favorite electronics design tool “Circuit Calculator”.
          Read more →
        • Tree Structure in EF Core: How to configure a self-referencing table and use it

          • Tutorial

          One of the very common questions I am getting from .NET community is how to configure and use the tree structures in EF Core. This story is one of the possible ways to do it.


          The common tree structures are file tree, categories hierarchy, and so on. Let it be folders tree for example. The entity class will be a Folder:


          public class Folder
          {
              public Guid Id { get; set; }
              public string Name { get; set; }      
              public Folder Parent { get; set; }
              public Guid? ParentId { get; set; }
              public ICollection<Folder> SubFolders { get; } = new List<Folder>();
          }
          Read more →
        • AdBlock has stolen the banner, but banners are not teeth — they will be back

          More
          Ads
        • 7 Ultimate Programming languages For Mobile App Development

            "image"

            Do you know that 21% of people open an app 50+ times per day? Yes, you heard that right. With the rapid development of technology, the mobile app now made many things possible, which was previously unthinkable.

            And that's why there is an incredible increase in the number of mobile users. According to a recent mobile app development stat, the number of mobile users worldwide is projected to increase to 6.95 billion by the end of 2020.

            In the last couple of years, the mobile app development industry has grown manifold, changing how businesses function around the world. If you are planning to jump into mobile app development, then choosing the right programming language will be the most significant challenge.

            There are more than 600 programming languages, and each one has its own perks and popularity. Are you pondering which language would be best for developing a stunning app?

            Several factors come to mind when making this choice, but the most important one is the language's demand. Here in this blog, I have listed the best programming language for mobile apps in terms of popularity and demand. Let's start!
            Read more →
          • Don't spoil Desktop Software Engineers with your Mobile First solutions, think about it

            image


            English translation of Philip Ranzim's post at his blog page here. (With author's permission)


            Once upon a time, my girlfriend started using Instagram. She asked me to sign up for it and subscribe to it. I tried — I couldn't do it because you couldn't register at Instagram from a desktop computer. I then thought — how weird people are. Well, what kind of fool would make a software product that can't be used with a normal computer? They won't succeed, and this Instagram will be a marginal service for a bunch of strange women, who for some reason don't like desktops.


            It has only been a few years, the market has put everything in place — and the biggest fool was me. And the geniuses at Instagram predicted how and where everything would develop. Today, most of the user applications are made primarily for mobile platforms. At best, they include a universal web client, which is still optimized for mobile phones. Because users love iPhones, not computers. Business people sat down, counted, and made a decision — let's make more money, let's have mobile First everywhere.

            Read more →
          • Static code analysis of the PMDK library collection by Intel and errors that are not actual errors

              PVS-Studio, PMDK

              We were asked to check a collection of open source PMDK libraries for developing and debugging applications with NVRAM support by PVS-Studio. Well, why not? Moreover, this is a small project in C and C++ with a total code base size of about 170 KLOC without comments. Which means, the results review won't take much energy and time. Let's go.
              Read more →
            • How to save energy with BARY: Smart Home

              • Translation


              Well, every modern person has at least once wondered: for how much longer can you pay such huge utility bills?! I am no exception. Electricity, gas, heating, water, rent, elevator, removal of solid waste, etc. etc.

              One of the reasons (far from the last) of creating the BARY application was the ability to collect statistics, analyze and reduce energy consumption. Europe has long passed into the regime of total economy; I think this fate will not bypass us. Therefore, to prepare for this in advance definitely will not be superfluous.

              I now propose that we examine how we managed to optimize the cost of electricity along with BARY: Smart Home.
              Read more →
            • How to make your home ‘smart’ without going crazy

              • Translation
              image

              Smart furniture, which keeps your house in order, is a must for almost any futuristic set. In fact, an auto-regulating climate, automatic lights and voice control over household devices — all this can be done and configured now. But it will take a little experience, basic knowledge of technology and sometimes programming, as well as a whole sea of ​​fantasy. In my case, I did in the way that just fantasy will be enough, but first things first…
              Read more →
            • Amazing Tactics to Improve Your Social Media Marketing Efforts

                image

                The benefits of a great social media strategy include increased brand awareness, customer loyalty, quality leads, and increased sales.

                However, these kinds of results are not easy to achieve.

                There’s fierce competition on social media and different ranking algorithms judging the content you post. Social media audiences also choose what content they deem relevant.

                You can no longer post content and hope that people will follow your account, engage with your content, and convert. Instead, you need to implement tactics that can help you gain market traction while enhancing your social presence.

                Moreover, a good social media app is what can actually bring you fruitful results. You can hire dedicated mobile app developers from reputed mobile app development companies to boost your social media marketing ROI.

                In this post, I’ll discuss some of the tactics you can implement to boost your social media marketing efforts.
                Read more →
              • Future of AI in Education; Such a Great Revolution

                  image

                  This is the time when everyone is aware of the magic that AI is doing all over the world. Yes, it is true and no one can deny the fact that AI is ruling all over the world almost in all the fields and is making our lives more exciting and autonomous. Like other fields, it is playing an important role in the field of education.

                  According to a survey, Artificial Intelligence (AI) recently started to penetrate into other industries in China. It was forecasted that by 2022 the Chinese market size of online education aided by artificial intelligence would amount to around 70.3 billion yuan.
                  Read more →
                • Using kconfig for own projects

                    Intro


                    Every Linux professional write scripts. Someеimes light, linear. Sometimes complex script with functions and libs(yes, you can write your bash-library for use in other scripts).


                    But some of the scripts need a configuration file to work. For instance, I wrote a script that builds the ubuntu image for pxe, and I need to change the build process without build-script changes. The best way to resolve this task is to add configuration files.

                    Read more →
                  • Modern COBOL: Package Tutorial

                    • Tutorial

                    You will learn and create an application-level library in COBOL. You will structure the package, implement automatic tests, deploy on GitHub and enable Continuous Integration workflow. Finally, you will publish the package in the COBOL package registry.

                    Read more →
                  • Unicorns break into RTS: analyzing the OpenRA source code

                      image1.png

                      This article is about the check of the OpenRA project using the static PVS-Studio analyzer. What is OpenRA? It is an open source game engine designed to create real-time strategies. The article describes the analysis process, project features, and warnings that PVS-Studio has issued. And, of course, here we will discuss some features of the analyzer that made the project checking process more comfortable.
                      Read more →
                    • IIoT platform databases – How Mail.ru Cloud Solutions deals with petabytes of data coming from a multitude of devices



                        Hello, my name is Andrey Sergeyev and I work as a Head of IoT Solution Development at Mail.ru Cloud Solutions. We all know there is no such thing as a universal database. Especially when the task is to build an IoT platform that would be capable of processing millions of events from various sensors in near real-time.

                        Our product Mail.ru IoT Platform started as a Tarantool-based prototype. I’m going to tell you about our journey, the problems we faced and the solutions we found. I will also show you a current architecture for the modern Industrial Internet of Things platform. In this article we will look into:

                        • our requirements for the database, universal solutions, and the CAP theorem
                        • whether the database + application server in one approach is a silver bullet
                        • the evolution of the platform and the databases used in it
                        • the number of Tarantools we use and how we came to this
                        Read more →
                      • Как с помощью HUAWEI ML Kit самостоятельно создать апплет для фото на документы

                          Общая информация


                          В предыдущей статье мы рассказали о том, как создать камеру для улыбок с помощью HUAWEI ML Kit. В этот раз я собираюсь представить вам новую функцию HUAWEI ML Kit.

                          Вас когда-нибудь просили на учебе или работе принести фотографию определенного размера с цветным фоном для документов? В большинстве случаев у человека не окажется под рукой подходящей фотографии. Однажды в институте нам решили оформить персональные пропуска, но фотостудия оказалась закрыта. Тогда я сфотографировался на телефон, использовав простыню в качестве фона. И получил выговор от преподавателя. Но с помощью инструмента HUAWEI ML Kit вы сможете интегрировать SDK для сегментации изображений в ваше приложение и разработать апплет, чтобы создавать фото на документы самостоятельно и решить проблему отсутствия нужных фотографий.

                          Самое главное, что этот SDK абсолютно бесплатный и работает на всех телефонах на базе Android.

                          Разработка апплета для фото на документы самостоятельно


                          1. Подготовка


                          1.1 Добавьте репозиторий Maven Huawei в файл на уровне проекта build.gradle


                          Откройте файл build.gradle в корневом каталоге вашего проекта Android Studio.

                          image

                          Read more →
                        • What is a CRM system and how to choose it correctly

                          • Translation

                          In modern business the need of automation in various processes have already become commonplace. It is already becoming difficult to imagine a warehouse or accounting without the use of specialized software. The representatives engaged in trade use a special application for registration and sending the order to office directly from pads or mobile phones. Mostly the orders that are ordered from the website are delivered in the form ready for processing. But at the same time customer relationships, at least in the medium and small business for some reason, very often maintain without the integration of automation and sufficient attention to the account.

                          Read more →