Pinned Loading
-
tic_tac_terminal_toe.py
tic_tac_terminal_toe.py 1#!/usr/bin/env python3
23# Write a program that lets two humans play a game of Tic Tac Toe in a terminal.
4# The program should let the players take turns to input their moves.
5# The program should report the outcome of the game.
-
postgres_replication_slot_queries.sql
postgres_replication_slot_queries.sql 1-- Logical replication works by sending write ahead logs (WALs) from the source DB to the target DB.
2-- If the WALs are not consumed by the source DB, the WALs build up in the target DB, consuming free storage space.
3-- This can lead the RDS to reach "Storage Full" status and crash the database.
4-- WALs are stored in replication slots on the source DB.
5 -
Hello, world! in x 86-64 Assembly La...
Hello, world! in x 86-64 Assembly Language 1; Adapted from:
2; https://www.youtube.com/watch?v=VQAKkuLL31g
3;
4; This will only run on x86_64 GNU/Linux
5; Run `uname -a` in terminal to determine what you are running.
-
tic_tac_terminal_toe.c
tic_tac_terminal_toe.c 1/*
2Tic Tac Toe
34Write a program that lets two humans play a game of Tic Tac Toe in a terminal.
5The program should let the players take turns to input their moves.
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.