Skip to content

Instantly share code, notes, and snippets.

View umutambyi-gad's full-sized avatar
💻
Coding...

Umutambyi Gad umutambyi-gad

💻
Coding...
View GitHub Profile
Process for setting up github pages with namecheap domain.
1. Go to namecheap.com, select and buy domain name.
2. Login to namecheap, go to username drop down and select dashboard.
3. Go to DomainList
4. Click manage button
5. Click Advanced DNS tab
6. Click add record and add three records:
Type: A Record | Host: @ | Value: 192.30.252.153 | TTL: Automatic
Process for setting up github pages with namecheap domain.
1. Go to namecheap.com, select and buy domain name.
2. Login to namecheap, go to username drop down and select dashboard.
3. Go to DomainList
4. Click manage button
5. Click Advanced DNS tab
6. Click add record and add three records:
Type: A Record | Host: @ | Value: 192.30.252.153 | TTL: Automatic
@travisjeffery
travisjeffery / tictactoe.c
Last active November 17, 2022 15:41
tic tac toe in c
#include <stdlib.h>
#include <stdbool.h>
typedef enum {
BLUE = -1,
NONE,
RED
} Player;
typedef struct {