Directory structure
.
├── assets
│ └── icon.png
├── components.json
├── global.css
├── lib
│ ├── components
| Mac: | |
| system_profiler SPHardwareDataType | grep "Serial Number" && echo "System (IST): $(TZ=Asia/Kolkata date '+%d-%b-%Y %I:%M:%S %p IST')" && echo "Google (IST): $(TZ=Asia/Kolkata date -r $(date -juf '%a, %d %b %Y %H:%M:%S GMT' "$(curl -sI google.com | sed -n 's/[Dd]ate: //p' | tr -d '\r')" +%s) '+%d-%b-%Y %I:%M:%S %p IST')" | |
| Windows: | |
| wmic bios get serialnumber && powershell -c "echo ('System (IST): '+[TimeZoneInfo]::ConvertTimeBySystemTimeZoneId((Get-Date),'India Standard Time').ToString('dd-MMM-yyyy hh:mm:ss tt IST'));echo ('Google (IST): '+[TimeZoneInfo]::ConvertTimeBySystemTimeZoneId([datetime](Invoke-WebRequest google.com -Method Head -UseBasicParsing).Headers.Date,'India Standard Time').ToString('dd-MMM-yyyy hh:mm:ss tt IST'))" |
| #!/bin/bash | |
| # Set backup directory | |
| BACKUP_DIR="./docker_backups" | |
| DATE=$(date +%Y%m%d_%H%M%S) | |
| # Create backup directory if not exists | |
| mkdir -p "$BACKUP_DIR" | |
| # Loop through all running containers from docker-compose |
Directory structure
.
├── assets
│ └── icon.png
├── components.json
├── global.css
├── lib
│ ├── components
The package linked to from here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).| https://drive.google.com/file/d/1oaO2CUqztqmdLWHAGrFuwZKBtjRoYc4k/view?usp=sharing |
| Xcode build done. 444.6s | |
| Failed to build iOS app | |
| Error output from Xcode build: | |
| ↳ | |
| ** BUILD FAILED ** | |
| Xcode's output: | |
| ↳ | |
| /Users/flutter/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/webview_media-0.1.2/ios/Classes/FlutterWebView.m:407:20: warning: 'loadData:MIMEType:characterEncodingName:baseURL:' is only available on iOS 9.0 or newer [-Wunguarded-availability] |
| void main(){ | |
| results(); | |
| } | |
| void results()async{ | |
| await printNumber("A",100); | |
| printNumber("B",200); | |
| } | |
| Future<void> printNumber(var a,int delay)async{ |
| import java.io.*; | |
| import java.util.Scanner; | |
| class MatrixDemo { | |
| final int r,c; | |
| int i=0,j=0; | |
| int ip1[][]; | |
| int ip2[][]; | |
| int op[][]; |