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 …

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 …

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 …

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 …

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 …

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) …