Skip to content

Instantly share code, notes, and snippets.

View Nembie's full-sized avatar
👀
Learning

Luca Pacitto Nembie

👀
Learning
View GitHub Profile
@Nembie
Nembie / backblaze-s3-laravel.md
Last active January 30, 2024 14:59
🪣 How to Use Backblaze S3 Bucket in Laravel

🪣 How to Use Backblaze S3 Bucket in Laravel

⚠️ If you're new to Backblaze, use this guide before proceeding.

1. :dependabot: Install Necessary Dependencies

$ composer require league/flysystem-aws-s3-v3 "^3.0" --with-all-dependencies
@Nembie
Nembie / default-ios-simulator-rn.md
Last active October 13, 2023 12:48
Set a default iOS simulator in React Native
  1. Open package.json
  2. Edit (or add) this line
"scripts": {
    ...
    "android": "react-native run-android",
    "ios": "react-native run-ios --simulator=\"iPhone 15 Pro\"", // or other simulator
    ...
},
@Nembie
Nembie / running-rn-prod-mode.md
Last active October 13, 2023 12:47
Method for running react-native in production mode

Android

npx react-native run-android --variant release

iOS

npx react-native run-ios --configuration Release