This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting zwave-server: zwave-server /dev/zwave --config options.js --disable-dns-sd | |
2023-01-10T23:54:46.099Z DRIVER ββββββββ βββ βββ ββββββ βββ βββ ββββββββ βββ ββββββββ | |
ββββββββ βββ βββ ββββββββ βββ βββ ββββββββ βββ ββββββββ | |
βββββ βββ ββ βββ ββββββββ βββ βββ ββββββ ββββββ βββ ββββββββ | |
βββββ ββββββββββ ββββββββ ββββ ββββ ββββββ ββββββ ββ βββ ββββββββ | |
ββββββββ ββββββββββ βββ βββ βββββββ ββββββββ ββββββββ ββββββββ | |
ββββββββ ββββββββ βββ βββ βββββ ββββββββ ββββββ ββββββββ | |
2023-01-10T23:54:46.100Z DRIVER version 10.3.1 | |
2023-01-10T23:54:46.100Z DRIVER | |
2023-01-10T23:54:46.100Z DRIVER starting driver... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.handler = function (event, context, callback) { | |
var response = { | |
statusCode: 200, | |
headers: { | |
'Content-Type': 'text/html; charset=utf-8', | |
}, | |
body: 'Hello world!', | |
}; | |
callback(null, response); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(ExampleApp()); | |
class ExampleApp extends StatelessWidget { | |
final Widget icon = Icon(Icons.sentiment_very_satisfied, size: 100.0); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(ExampleApp()); | |
class ExampleApp extends StatelessWidget { | |
final items = List<String>.generate(20, (i) => "Swipe To The Left"); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(ExampleApp()); | |
class ExampleApp extends StatelessWidget { | |
final items = List<String>.generate(20, (i) => "Swipe To The Right"); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |