Milestone Mobile is a way to access your surveillance system on-the-go using smartphones and tablets. The application allows you to view, play-back and export video, listen to audio and speak through the camera using the Push-To-Talk button, as well as respond to Access Control requests and receive push notifications regarding events and triggered alarms directly …
Go Language
Go lang is good fit to build networking backbone. It provides powerful and easy code to implement networking module. So, almost crypto clients use Go and it will be useful to learn Go. It is also easy to learn Go. https://golang.org/doc/ https://medium.com/@kevalpatel2106/why-should-you-learn-go-f607681fad65
TeamCity – JetBrains
TeamCity is a Java-based build management tool and CI(continuous integration) server from JetBrains TeamCity supports the following version control systems: Subversion, CVS, Visual Studio Team Services, Microsoft Visual SourceSafe, Git, Mercurial, etc TeamCity is self-served CI server/agent application provided by JetBrains, so you can install teamcity on your local or other VM and use for …
Google API usage
Google APIs is a set of application programming interfaces (APIs) developed by Google which allow communication with Google Services and their integration to other services. Examples of these include Search, Gmail, Translate or Google Maps. Third-party apps can use these APIs to take advantage of or extend the functionality of the existing services. The APIs provide functionality like analytics, machine learning as …
Parcel
Parcel is a bundling tool which is similar to Webpack.Parcel uses worker processes to enable multicore compilation, and has a filesystem cache for fast rebuilds even after a restart.Parcel has out of the box support for JS, CSS, HTML, file assets, and more – no plugins needed.https://github.com/parcel-bundler/parcel Webpack is hard to use because it’s configuration …
NumPy is the fundamental package for scientific computing with Python
We will use the Python programming language for all assignments in this course. Python is a great general-purpose programming language on its own, but with the help of a few popular libraries (numpy, scipy, matplotlib) it becomes a powerful environment for scientific computing. We expect that many of you will have some experience with Python …
Integration of Postman and XDebug
When we send request from Postman to API, it is not detected by PHPStorm. In order to do this, we should send headers and query string when we send request. ?XDEBUG=PHP_STORM, COOKIE: XDEBUG=PHP_STORM (edited)
Improve querying speed in MongoDB
DB query speed is slowed down mainly when converting fetched data to MongoDB model format.For example we fetch JSON format data from db and convert it to MongoDB model format by embedding model methods.In order to avoid this and improve querying speed we can use lean function.The format is model.find({…}).lean(), then the result is retrieved …
ReactPHP – HIGH performance PHP development
ReactPHP is a low-level library for event-driven programming in PHP. At its core is an event loop, on top of which it provides low-level utilities, such as: Streams abstraction, async DNS resolver, network client/server, HTTP client/server and interaction with processes. Third-party libraries can use these components to create async network clients/servers and more. Using ReactPHP, …
Swagger API Documentation on Your Project
Swagger is an open source software framework backed by a large ecosystem of tools that helps developers design, build, document, and consume RESTful Web services.You can embed swagger API doc in any kinds of projects(Node, PHP, etc…). For example, you can user swagger-express-ui and swagger-jsdoc packages in express.js backend project. Also, there is public swagger …