First Download the Android SDK Commandline Tool only.
https://developer.android.com/studio/
Goto Download Options
Find Commandline tools only Section
| const readline = require("readline").createInterface({ | |
| input: process.stdin, | |
| output: process.stdout, | |
| }); | |
| // Create an array and populate it with values from 1 to 9, to represent the boxes in the game. | |
| let boxes = []; | |
| for (let i = 1; i <= 9; i++) { | |
| boxes.push(`${i}`); | |
| } |
First Download the Android SDK Commandline Tool only.
https://developer.android.com/studio/
Goto Download Options
Find Commandline tools only Section
| HTTP status code symbols for Rails | |
| Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings. | |
| Status Code Symbol | |
| 1xx Informational | |
| 100 :continue | |
| 101 :switching_protocols | |
| 102 :processing |