Skip to content

Instantly share code, notes, and snippets.

View EdvinasBa's full-sized avatar

Edvinas Balčiūnas EdvinasBa

  • Lithuania
View GitHub Profile
@EdvinasBa
EdvinasBa / scrobbles.json
Last active April 9, 2019 08:42
My last.fm scrobbles up until 2019-04-07 in json
This file has been truncated, but you can view the full file.
[
{
"Artist": "The Growlers",
"Album": "",
"Track": "Mama Said Live",
"Date": "09 Apr 2019 04:28"
},
{
"Artist": "The Growlers",
"Album": "",
@EdvinasBa
EdvinasBa / gist:ac6e577358ef3a6013a0
Last active August 29, 2015 14:02
Tic Tac Toe In C++
#include <iostream>
#include <cstdlib>
using namespace std;
char tile[8];
char turn = 'o';
bool gameEnd;
void resetBoard ()