Skip to content

Instantly share code, notes, and snippets.

View mastrobirraio's full-sized avatar
🏠
Working from home

Giuseppe Matranga mastrobirraio

🏠
Working from home
  • CodeStorm
  • Italy
View GitHub Profile
@mastrobirraio
mastrobirraio / tic-tac-toe.cpp
Created October 5, 2018 17:25
A simple tic tac toe game
#include <cstdlib>
#include <iostream>
using namespace std;
void board();
void player_choose(int player);
bool check_winner(int player);
void show_game(int player_winner);
char get_value(char mark);
@bmarshall511
bmarshall511 / CONTRIBUTING.md
Created October 18, 2016 14:26
Contributing

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@PurpleBooth
PurpleBooth / README-Template.md
Last active November 19, 2024 11:04
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@eugeniabahit
eugeniabahit / printr.py
Created September 9, 2012 21:49
Módulo Python que emula la función print_r() de PHP, para imprimir las propiedades de un objeto de forma recursiva
# -*- coding: utf-8 -*-
"""
printr is a module that allows to emulate the print_r() function of PHP by
printing the objects properties of a class instance and its internal
structure
Use:
You must get an object of a class instance and then, you can call to
the printr function