Before building the application, it's recommended to clear the Metro Bundler cache to avoid potential issues with stale or corrupted data:
npm start -- --reset-cache| #!/bin/bash | |
| # Script to convert videos (mainly .mov) to .mp4 with efficient compression | |
| # Usage: ./video.sh /path/to/video.mov | |
| # ./video.sh "/Users/velrino/Documents/screenshots/Screen Recording 2025-11-24 at 15.58.38.mov" | |
| # This script will: | |
| # - Convert video to H.264/AAC MP4 format | |
| # - Compress the file efficiently while maintaining good quality | |
| # - Save the output to ~/Documents/videos-ffmpeg/ | |
| # |
The last SDK is available in https://dl.google.com/android/repository/platform-tools-latest-windows.zip
Please do a favor to yourself and dont extract to root of your C drive.
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
| { | |
| "type": "ListView", | |
| "children": [ | |
| { | |
| "type": "Container", | |
| "color": "#ec7000", | |
| "padding": "10,30,10,50", | |
| "child": { | |
| "type": "Center", | |
| "child": { |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| home: Scaffold( | |
| body: ListView( |
Delete all containers
$ docker ps -q -a | xargs docker rm
-q prints only the container IDs -a prints all containers
Notice that it uses xargs to issue a remove container command for each container ID