blog
blog copied to clipboard
🍁 What you don't know is what you haven't learned
We need to care about security nowadays, here are some links I find useful to read more about this matter - https://github.com/Naituw/IPAPatch - https://github.com/cyanzhong/Retriever - https://github.com/KJCracks/Clutch - https://github.com/pjebs/Obfuscator-iOS - https://github.com/UrbanApps/UAObfuscatedString...
We can use `Logger` to log and `OSLogStore` to retrieve logs ```swift import OSLog import ReuseAcross final class LogService { static let shared = LogService() let logger = Logger( subsystem:...
[Hapi.js](https://hapi.dev/), commonly referred to as Hapi, is an open-source, back-end web application framework for building and deploying web applications and APIs in Node.js In Hapi.js, you can use the Boom...
Are you looking to grab images directly from your clipboard with a button click on your web page? The Async Clipboard API makes this quite easy and efficient. Let's break...
Git is a helpful tool for managing code and projects, but sometimes you want to ignore certain files or folders only on your computer without affecting everyone else. That's where...
The use of `useCallback` and `useMemo` in React hooks is an adaptation to address certain limitations inherent in the functional programming style adopted by React. In JavaScript, every entity, whether...
In JavaScript, classes are a template for creating objects. They encapsulate data with code to work on that data. ES6 introduced a class syntax to the JavaScript language to create...
In JavaScript, particularly in modules used in frameworks like React, `export` statements are used to expose code—such as functions, classes, or constants—from one module so that they can be imported...
In the world of Swift programming, we often come across situations where we need to work with string literals that contain special characters. These characters can include new lines, tabs,...
[Fill](https://nextjs.org/docs/pages/api-reference/components/image#fill) parent div A boolean that causes the image to fill the parent element, which is useful when the [width](https://nextjs.org/docs/pages/api-reference/components/image#width) and [height](https://nextjs.org/docs/pages/api-reference/components/image#height) are unknown. The parent element must assign position:...