Skip to content

Instantly share code, notes, and snippets.

View FaikYY's full-sized avatar
💭
Learning

Faik Yeşilyaprak FaikYY

💭
Learning
View GitHub Profile

Install Android SDK CLI Ubuntu 20.04 WSL2 (Work in Progress)

Install Java 8

sudo apt install openjdk-8-jdk-headless

Android SDK

/*
Positive number
Use the keyboard to enter three integers. Display the number of positive numbers in the original set.
*/
import java.io.*;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) throws Exception {
@bradtraversy
bradtraversy / vscode_shortcuts.md
Last active July 22, 2024 10:30
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands

@Rdilorenzo73
Rdilorenzo73 / Description.md
Last active March 29, 2022 12:43
Whack A Mole Console Game

A Java assignment taken from the course: Software Development Fundamentals

I did not create this assignment. The coded solution is mine. This was a Java practice project which helped me remember how to work with a 2D array.


Create a class called WhackAMole.

It contains three integer instance variables called score, molesLeft, and attemptsLeft. Make one more instance variable called moleGrid which is a 2-dimensional array of chars.