Discussion

GraphQL Code Generator

GraphQL Code Generator is a tool that generates code out of your GraphQL schema. Whether you are developing a frontend or backend, you can utilize GraphQL Code Generator to generate output from your GraphQL Schema and GraphQL Documents (query/mutation/subscription/fragment). By analyzing the schema and documents and parsing it, GraphQL Code Generator can output code at …

Discussion

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 …

ios Mobile React Native

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
Discussion

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 …

Discussion

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 …