Skip to content

Instantly share code, notes, and snippets.

View iamnevets's full-sized avatar
🏠
Working from home

iam_nevets iamnevets

🏠
Working from home
View GitHub Profile
@iamnevets
iamnevets / tic-tac-toe.js
Last active January 17, 2023 10:00
A simple JavaScript tic-tac-toe console game
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}`);
}
@iamnevets
iamnevets / AndroidEmulator.md
Created June 22, 2022 07:14 — forked from Try-Parser/AndroidEmulator.md
Running emulator without Android Studio in Windows With Flutter

Android Emulator Setup without Android Studio in Windows with Flutter

First Download the Android SDK Commandline Tool only.

https://developer.android.com/studio/

Goto Download Options

Find Commandline tools only Section

@iamnevets
iamnevets / rails http status codes
Created April 6, 2022 09:13 — forked from mlanett/rails http status codes
HTTP status code symbols for Rails
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