blog icon indicating copy to clipboard operation
blog copied to clipboard

🍁 What you don't know is what you haven't learned

Results 195 blog issues
Sort by recently updated
recently updated
newest added

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...

iOS

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:...

swift

[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...

javascript
react

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...

react

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...

git

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...

javascript
react

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...

javascript

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...

javascript

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,...

iOS
swift

[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:...

swift