Skip to content
View 5cotts's full-sized avatar

Block or report 5cotts

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. tic_tac_terminal_toe.py tic_tac_terminal_toe.py
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    # 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.
  2. 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
    
                  
  3. 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.
  4. tic_tac_terminal_toe.c tic_tac_terminal_toe.c
    1
    /* 
    2
    Tic Tac Toe
    3
    4
    Write a program that lets two humans play a game of Tic Tac Toe in a terminal.
    5
    The program should let the players take turns to input their moves.