Spark is designed with only one goal in mind, to make scaffolding out a billing system for a SaaS app easy. If you’ve ever built out team management and a billing system then you already know how time-consuming and painful this process. Spark already integrated those functionalities and makes it easy to develop system.You can …
Styled component
Instead of separating HTML and CSS, we can embed all CSS styles into HTML. especially in React components. The advantage of Styled component is that we can use variables inside CSS styles without any limitation. This feature is very useful when implementing mobile responsive. https://www.styled-components.com/docs/basics
Autosizer Library
Autosizer is a React component which is convenient to use when implementing mobile responsive. We can wrap any component using Autosizer, and Autosizer propagates width and height of the component to it’s child components. Child components can use this width and height to implement responsive. Autosizer is especially useful when used together with Styled Components. …
PNG to icns online converter
Windows uses .ico format and MacOS uses .icns format for icon files. There are several online converters to convert images to icon format. Many converters don’t work properly when converting to .icns and here is a powerful converte https://iconverticons.com/online/
SPA and Google SEO
Nowadays SinglePageApplication is everywhere, providing great performance and user experience. But what about SEO / Will search engine bots be able to see SPAs correctly? Along time ago, when computers are not powerful enough, most search engine bots were just checking HTML static pages.But nowadays, bots got much cleaver and powerful. Google bot surely supports …
Ngrok for webhook testing.
When you develop your web applications, you will have situation to test 3rd party API integration in the local development environment. The tricky problem here is most of 3rd party APIs are callback based. In a word, most of 3rd party APIs send data/status as callbacks/webhook to original client. However when you wants to test …
Milestone Mobile
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 …