Skip to content

Instantly share code, notes, and snippets.

View LeHoangTuanbk's full-sized avatar
🎯
Focusing

toan rehoan LeHoangTuanbk

🎯
Focusing
  • HapIns
  • Tokyo
View GitHub Profile
#################################################################
# _` #
# _ooOoo_ #
# o8888888o #
# 88" . "88 #
# (| -_- |) #
# O\ = /O #
# ____/`---'\____ #
# .' \\| |// `. #
# / \\||| : |||// \ #
@LeHoangTuanbk
LeHoangTuanbk / css-selectors.md
Created December 1, 2020 04:20 — forked from magicznyleszek/css-selectors.md
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Element selectors

Element -- selects all h2 elements on the page

h2 {
    foo: bar;
@LeHoangTuanbk
LeHoangTuanbk / EPQ.cpp
Created September 27, 2020 15:53
C++ Battleship simple game (EPQ)
#include "stdafx.h"
#include <iostream>
#include <time.h>
#include <stdlib.h>
#include <string>
#include <Windows.h>
using namespace std;
class BattleShips // used a class as will have 2 instances, one for computer, one for human