NPM – react-native-redash
Utility library for React Native Gesture Handler and Reanimated. Installation yarn add react-native-redash ⚠️ v1 Users ⚠️ v1 documentation: https://wcandillon.github.io/react-native-redash-v1-docs/ To access functions that work with Reanimated v1 nodes, use the following import: import {usePanGestureHandler} from “react-native-redash/lib/module/v1”; To add TypeScript support for the v1 functions, add the following type to your tsconfig: “include”: [“node_modules/react-native-redash/lib/typescript/v1/index.d.ts”] Animations …
React Native React/RCT*.h not found (1)
React Native is always painful to use 3rd party libraries with native code.One of the issues we often face is React/RCT*.h file not found. Specific case we are going to inspect today is when using outdated 3rdparty package which is not providing autolinking. Projects for iOS that does not provides autolinking means the project does …
Creating an efficient development workflow for Hubspot
Setting up an efficient developer workflow will help you work more effectively when building websites on the HubSpot CMS. Depending on the nature of your web development team, or the nature of a specific project, your workflow may differ. For example, a single developer building out a new site in a new HubSpot CMS account …
Migrate Mongo
migrate-mongo is a database migration tool for MongoDB running in Node.js https://github.com/seppevs/migrate-mongo
CKEditor – Content Filtering
Advanced Content Filter (ACF) is a CKEditor core feature that filters incoming HTML content by transforming and deleting disallowed elements, attributes, classes and styles. If you paste content into CKEditor 4 and notice that some elements are removed, then chances are high that it was removed by ACF. Allow everything (disable ACF) config.allowedContent = true; // Allow …
Laravel API Documentation Generator
Automatically generate your API documentation from your existing Laravel/Lumen/Dingo routes. PHP 7.2 and Laravel/Lumen 5.7 or higher are required. If your application does not meet these requirements, you can check out the 3.x branch for older releases. Check out the documentation at the Beyond Code homepage.
Laravel API Rate Limit.
When we send API request to Laravel backend frequently in short time. (for example 5 times in 1 second), we get 429 (Too many request error). In order to avoid this error, we can use throttle middleware. https://laravel.com/docs/7.x/routing#rate-limiting