sdkmanager --update
sdkmanager --list
| Port 8090 | |
| BindAddress 0.0.0.0 | |
| MaxHTTPConnections 2000 | |
| MaxClients 1000 | |
| MaxBandwidth 5000 | |
| CustomLog - | |
| NoDaemon | |
| <Feed feed1.ffm> | |
| File /tmp/feed1.ffm |
| #!/bin/bash | |
| # Colors | |
| txtred='\e[0;31m' # Red | |
| txtgrn='\e[0;32m' # Green | |
| txtylw='\e[0;33m' # Yellow | |
| txtblu='\e[0;34m' # Blue | |
| undred='\e[4;31m' # Red | |
| undgrn='\e[4;32m' # Green | |
| undylw='\e[4;33m' # Yellow |
| import React, {Component, PropTypes} from 'react'; | |
| /** | |
| * createNthChild is a factory for NthChild components. | |
| * | |
| * Can set conditional styling meant to simulate css's nth-child pseudo selector | |
| * | |
| * @param {object} [options] - styles options to pass into the icon panel | |
| * @param {function} [styleFirst] - if isFirst, invoke styleLast(options.styles) |
| HTTPPort 8005 | |
| RTSPPort 8006 | |
| HTTPBindAddress SEU.IP.AQUI | |
| RTSPBindAddress SEU.IP.AQUI | |
| MaxClients 100 | |
| MaxBandwidth 10000 | |
| NoDefaults | |
| <Feed webcam.ffm> | |
| File /tmp/webcam.ffm |
| #!/bin/bash | |
| laravel new $1 | |
| cd $1 | |
| composer install | |
| yarn install | |
| touch README.md | |
| cp .env.example .env | |
| git init | |
| git add -A |
For an emulator that mimics a Pixel 5 Device with Google APIs and ARM architecture (for an M1/M2 Macbook):
List All System Images Available for Download: sdkmanager --list | grep system-images
Download Image: sdkmanager --install "system-images;android-30;google_atd;arm64-v8a"
| import 'dart:async'; | |
| import 'dart:math' show Random; | |
| final random = Random(); | |
| // Mock data for a list of messages | |
| const messageList = [ | |
| { | |
| 'message': 'Message 1', | |
| 'timestamp': 1, |