Skip to content

Instantly share code, notes, and snippets.

@thabetx
thabetx / GSoC_Tiled_2017.md
Last active August 28, 2017 15:43
Google Summer of Code 2017: Reusable Object Templates Final Report

Summary

This project aims to create a template system in Tiled. Any created object can be saved as a template. These templates can be instantiated elsewhere as objects that inherit the template’s properties.

Code and Work Details

These are the pull requests created during the project period (Note that all of these changes are merged into the master branch):

Reusable Object Templates #1587

@thabetx
thabetx / files.cpp
Created April 6, 2017 17:57
input and output using files
#include <iostream>
#include <stdio.h>
using namespace std;
int main() {
// use in.txt as the input stream
freopen("in.txt", "r", stdin);
// use out.txt as the output stream
@thabetx
thabetx / 0_reuse_code.js
Created March 10, 2017 07:50
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console