Skip to content

Instantly share code, notes, and snippets.

View GabsGear's full-sized avatar
🐢
Baby steps

Gabriel Ghellere GabsGear

🐢
Baby steps
View GitHub Profile
@marcoscastro
marcoscastro / n_rainhas.cpp
Created November 1, 2015 20:20
C++ - Solução para o problema das N rainhas
/*
Solução do problema das n-rainhas (N-Queens Problem)
Autor: Marcos Castro
www.GeeksBR.com
*/
#include <iostream>
#include <vector>
using namespace std;
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 25, 2024 09:23
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

@leocomelli
leocomelli / git.md
Last active June 25, 2024 23:57
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@vgoklani
vgoklani / app.py
Last active December 19, 2022 09:13
Using Flask to output Python data to High Charts
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
@app.route('/index')
def index(chartID = 'chart_ID', chart_type = 'bar', chart_height = 350):
chart = {"renderTo": chartID, "type": chart_type, "height": chart_height,}
series = [{"name": 'Label1', "data": [1,2,3]}, {"name": 'Label2', "data": [4, 5, 6]}]
title = {"text": 'My Title'}