Skip to content

Instantly share code, notes, and snippets.

@ceffiong
ceffiong / rock_paper_scissors_game_logic.py
Created March 27, 2020 17:29
Rock-paper-scissors game logic source codes
def game_logic(you, opponent):
winner = ""
rock = "rock"
paper = "paper"
scissors = "scissors"
player0 = "you"
player1 = "opponent"
if you == opponent:
winner = "draw"
@masih
masih / fish_shell_local_install.sh
Last active November 7, 2022 10:19
Installs Fish Shell without root access
#!/bin/bash
# Script for installing Fish Shell on systems without root access.
# Fish Shell will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
FISH_SHELL_VERSION=2.1.1