Skip to content

Instantly share code, notes, and snippets.

View gedenata's full-sized avatar
:octocat:

Nata gedenata

:octocat:
  • 01:30 (UTC +08:00)
View GitHub Profile
@gedenata
gedenata / AdbCommands
Created February 17, 2022 02:48 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
ERROR Invariant Violation: inputRange must be monotonically non-decreasing 0,-11.428571428571445,188.57142857142856
This error is located at:
in CellRenderer (at VirtualizedList.js:807)
in AndroidHorizontalScrollContentView (at ScrollView.js:1107)
in AndroidHorizontalScrollView (at ScrollView.js:1238)
in ScrollView (at ScrollView.js:1264)
in ScrollView (at VirtualizedList.js:1250)
in VirtualizedListContextProvider (at VirtualizedList.js:1080)
in VirtualizedList (at FlatList.js:620)
INITIATING CONNECTION Nov 26 01:33:38.930 host:smtp.gmail.com -- port:587 -- socket:0x0 -- thread:0x60000289d7c0
CONNECTED Nov 26 01:33:38.973 [kCFStreamSocketSecurityLevelNone] -- host:smtp.gmail.com -- port:587 -- socket:0x6000016cb900 -- thread:0x60000289d7c0
READ Nov 26 01:33:40.544 [kCFStreamSocketSecurityLevelNone] -- host:smtp.gmail.com -- port:587 -- socket:0x6000016cb900 -- thread:0x60000289d7c0
220 smtp.gmail.com ESMTP j7sm4043386pfu.164 - gsmtp
WROTE Nov 26 01:33:40.581 [kCFStreamSocketSecurityLevelNone] -- host:smtp.gmail.com -- port:587 -- socket:0x6000016cb900 -- thread:0x60000289d7c0
EHLO [192.168.1.159]
{
"version": "0.0.1",
"configurations": [
{
"name": "Flutter Debug",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main_dev.dart",
"args": ["--flavor", "dev"]
@gedenata
gedenata / tipe-data-go.csv
Last active May 4, 2020 07:38
Go's predeclared identifiers
data type descriptions zero-value
bool bool is the set of boolean values. It can store set of untyped boolean value `true` or `false`. false
uint8 uint8 is the set of all unsigned 8-bit integers. Range: 0 through 255. 0
uint16 uint16 is the set of all unsigned 16-bit integers. Range: 0 through 65535. 0
uint32 uint32 is the set of all unsigned 32-bit integers. Range: 0 through 4294967295. 0
uint64 uint64 is the set of all unsigned 64-bit integers. Range: 0 through 18446744073709551615. 0
int8 int8 is the set of all signed 8-bit integers. Range: -128 through 127.
int16 int16 is the set of all signed 16-bit integers. Range: -32768 through 32767. 0
int32 int32 is the set of all signed 32-bit integers. Range: -2147483648 through 2147483647. 0
int64 int64 is the set of all signed 64-bit integers. Range: -9223372036854775808 through 9223372036854775807. 0