GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables …
Telegram API
Telegram provides REST APIs in order to integrate itself into other web applications. There are 2 kind of APIs – Main API and Bot API. Bot API is widely used when developing telegram bots but in some cases it is not suitable because Bot API has some restrictions and it’s not permitted to carry out …
Gatsby
Gatsby is a React framework to develop websites in short time. It is a fast modern site generator. Gatsby provides convenient functionalities to develop landing pages very quickly. Also according to Gatsby’s documentations it is widely used in E-Commerce website development. It’s very easy to learn for the developers who knows React.js very well. https://www.gatsbyjs.org/docs/
I need libphp7.so module to configure apache on Mac OSX/ Centos
I’ll split my answer into two parts. The first part describes how your problem occurred, the second part is the actual answer to your issue. Description Disclaimer: Most of my description is basically speculation, as I cannot really know what you did. But it’s the most likely scenario, as I cannot think of another way …
Integrate Craft CMS with MVC frameworks
CraftCMS provides API to provide its contents to third parties. This functionality is very useful in large scale projects. We can develop core engines using MVC frameworks and store various contents in Craft CMS. We can fetch those contents by using APIs provided by Craft CMS and display it in MVC frameworks like Laravel.
PostgREST – postgreSQL based RESTful API
PostgREST serves a fully RESTful API from any existing PostgreSQL database. It provides a cleaner, more standards-compliant, faster API than you are likely to write from scratch. Motivation Using PostgREST is an alternative to manual CRUD programming. Custom API servers suffer problems. Writing business logic often duplicates, ignores or hobbles database structure. Object-relational mapping is …
Node.js crypto package
Jwt auth libraries have one issue. Jwt tokens are base64 encoded and easily decoded so user information like user id, expiration date can be exposed to others.In order to prevent this, Node.js provides a Npm package called crypto. The token generated by crypto package is not decoded.https://nodejs.org/api/crypto.html
Infinite Scroll
Infinite scrolling is a technique that allowing users to scroll through a massive chunk of content with no finishing-line in sight. This technique simply keeps refreshing a page when you scroll down it. Tempting as it may sound, the technique isn’t a one-size-fits-all solution for every site or app. When we need to implement the …
Height of the hidden element
In some cases, we need to get the height of the hidden element in HTML. But the default jquery functionalities getting heights are not working for the hidden element. That is, all of the following functionalities doesn’t work. height() outerHeight() innerHeight() To fix this issue, we can use the following library to get the height …
Migration in Truffle Framework
There is a default migration script (1_initial_migration.js) in truffle. This migration script is important and if it is removed, truffle can not work. https://truffleframework.com/ https://github.com/trufflesuite/truffle









