Discussion

RabbitMQ

RabbitMQ is the most widely deployed open source message broker. With more than 35,000 production deployments of RabbitMQ world-wide at small startups and large enterprises, RabbitMQ is the most popular open source message broker. RabbitMQ is lightweight and easy to deploy on premises and in the cloud. It supports multiple messaging protocols. RabbitMQ can be …

Discussion React Native React.js

React Native Web

React Native is a multi-platform solution developed by Facebook that lets you build mobile apps using JavaScript. These mobile apps are considered multi-platform because they’re written once and deployed across many platforms, like Android, iOS and the web. Today, we’ll see how we can utilize this powerful technology to build platform-focused applications on the web. …

Discussion Others

Design, prototype, and collaborate all in the browser—with Figma.

https://figma.com Collaborate with everyone, at every phase Each contributor owns their part of the creative process and stays in sync along the way—across any platform. Your designers Collaborate in context and in real time. Never worry about your files being out of date or overwriting each other’s work. Your stakeholders Simply send a link to …

Shopify

Integration of sub category functionality and filtering functionality on Shopify

When we are going to manage the collections using sub-category in the Shopify projects, we can implement it using tags. In this case, we will likely need to implement the filtering functionality. But the default filtering url doesn’t work for sub categories. In order to figure out this issue, we can adjust the URLs properly …

React.js

A simple, fast and useful progressive web application https://qrcodescan.in

QRCode Scanner – a simple, fast and useful progressive web application Features App Shell. Secure via https using cloudflare free ssl Works offline. Fully Responsive. Add to home screen, Splash screen. Supported Browser – Google Chrome, Firefox, Opera (Both Desktop & Mobile), Microsoft Edge ((Insider Preview build)) and now supports iOS as well. Installation Clone this repo …

Discussion Security

A method to block CORS attacks.

Cross-Origin Resource Sharing (CORS) is a mechanism that uses additional HTTP headers to tell a browser to let a web application running at one origin (domain) have permission to access selected resources from a server at a different origin. A web application executes a cross-origin HTTP request when it requests a resource that has a different origin (domain, protocol, and …

React.js

qrcode.react – A React component to generate QR codes.

qrcode.react will pass through any additional props to the underlying DOM node (<svg> or <canvas>). This allows the use of inline style or custom className to customize the rendering. One common use would be to support a responsive layout. Note: In order to render QR Codes in <canvas> on high density displays, we scale the canvas element to contain an appropriate number of pixels and …

Backend Discussion Frontend Javascript NodeJS

Managing node.js project with multiple packages using lerna.js

Lerna is a tool that optimizes the workflow around managing multi-package repositories with git and npm. Splitting up large codebases into separate independently versioned packages is extremely useful for code sharing. However, making changes across many repositories is messy and difficult to track, and testing across repositories gets complicated really fast. To solve these (and many other) …