This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| /* Al useful imports */ | |
| import ( | |
| "flag" | |
| "fmt" | |
| "net" | |
| "strings" | |
| "strconv" | |
| "time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections; | |
| public class CollectionsExample : MonoBehaviour | |
| { | |
| void Start() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Intent: interface to the GodotPayments module (remember to add the java path in the project settings android>modules ) | |
| "Intent.gd" | |
| extends Node | |
| # Interface for the GodotPayments module | |
| # To use extend this script and save the result on the Global singleton 'Data' | |
| const STATIC_RESPONSE_NONE = 0 | |
| const STATIC_RESPONSE_ALL = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Delta Compression (Round 2) by Glenn Fiedler. | |
| This source code is placed in the public domain. | |
| http://gafferongames.com/2015/03/14/the-networked-physics-data-compression-challenge/ | |
| */ | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <assert.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Delta Compression by Glenn Fiedler. | |
| This source code is placed in the public domain. | |
| http://gafferongames.com/2015/03/14/the-networked-physics-data-compression-challenge/ | |
| */ | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <assert.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "MyWidget.h" | |
| #include "ui/UIText.h" | |
| USING_NS_CC; | |
| using namespace std; | |
| using namespace cocos2d::ui; | |
| MyWidget::MyWidget(){} | |
| Widget::ccWidgetTouchCallback MyWidget::onLocateTouchCallback(const string &callBackName) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os, sys | |
| markdown_name = sys.argv[1] | |
| name = markdown_name.split(".")[0] | |
| latex_name = name + ".tex" | |
| os.system("pandoc -f markdown -t latex %s -o %s" % (markdown_name, latex_name)) | |
| with open(latex_name, "r") as latex_file: | |
| latex_content = latex_file.read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.petebevin.markdown.MarkdownProcessor | |
| import org.xhtmlrenderer.pdf.ITextRenderer | |
| import org.ccil.cowan.tagsoup.Parser | |
| import org.apache.xalan.xsltc.trax.SAX2DOM | |
| import org.xml.sax.InputSource | |
| buildscript{ | |
| repositories { | |
| mavenCentral() | |
| mavenRepo urls: "http://scala-tools.org/repo-releases" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TEMP_DIR:=$(shell mktemp -d -t /tmp) | |
| MARKDOWN=perl Resources/Markdown.pl | |
| WKHTMLTOPDF=/usr/local/bin/wkhtmltopdf | |
| BUILD_DIR=Build | |
| MD_OUTPUT=Documentation.md | |
| HTML_OUTPUT=Documentation.html | |
| PDF_OUTPUT=Documentation.pdf | |
| COVER=__Couverture |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/jython | |
| # -*- coding: utf-8 -*- | |
| # Copyright : (c) SAEKI Yoshiyasu | |
| # License : MIT-style license | |
| # <http://www.opensource.org/licenses/mit-license.php> | |
| # last updated: 2011/02/26 | |
| from akka.actor import Actors, UntypedActor | |