Skip to content

Instantly share code, notes, and snippets.

View sp0oks's full-sized avatar

Gabriel Alves sp0oks

  • São Carlos, São Paulo, Brazil
View GitHub Profile
% Predicados
problema(preparador_fisico) :- ruim(preparo_fisico).
problema(equipe_tecnica) :- constantes(atritos), ruim(situacao_psicologica).
problema(time) :- bom(preparo_fisico), ruim(situacao_de_gols).
constantes(atritos) :- jogador(X), discute_tecnico(X).
ruim(situacao_psicologica) :- jogador(X), suspenso(X).
ruim(situacao_de_gols) :- gols_sofridos(X), gols_feitos(Y), X > Y.
suspenso(X) :- cartao_vermelho(X).
% Base de Conhecimento

Keybase proof

I hereby claim:

  • I am cptspookz on github.
  • I am cptspooks (https://keybase.io/cptspooks) on keybase.
  • I have a public key ASBzTsjFw4GeJ3H1OAezQArNrSuL2oMinXzs4AETY-yVDwo

To claim this, I am signing this object:

@sp0oks
sp0oks / am-i-ready-to-open-source-this.md
Created June 26, 2017 03:47 — forked from PurpleBooth/am-i-ready-to-open-source-this.md
Checklist to see if your open source repo is primetime ready!

Am I ready to Open Source This?

The checklist:

  1. A readme following a good template
  2. A contributing.md with a code of conduct.
  3. A license
  4. Travis configuration
  5. A way for people to raise issues
  6. Link to it
@sp0oks
sp0oks / README-Template.md
Created June 26, 2017 03:40 — forked from PurpleBooth/README-Template.md
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

@sp0oks
sp0oks / data_structures.h
Last active November 17, 2017 10:28
Abstract data types library in C++
/* My personal project of a library that includes different types of template container structures.
*
* A work in progress with the objective of implementing the most useful data structures in C++ for later reuse in real projects and also studying data structures themselves.
*
* Implemented and tested structures until latest revision:
* Node
* Stack
* Queue
* List
* KeyNode