Skip to content

Instantly share code, notes, and snippets.

View futjikato's full-sized avatar

Moritz Spindelhirn futjikato

  • TimberTom GmbH
  • Hamburg
View GitHub Profile
@futjikato
futjikato / gist:5bb5016cc6c0fbdfb348
Last active August 29, 2015 14:15
CoOptional 19.02.2015
0:09 Dragon Age
0:15 [cmp?] Far Cry ( performance, bug comparison )
0:20 H1Z1
0:22 Everquest Landmark / Next
0:30 Wildstar
0:41 Evolve
0:53 Darkest Dungeon
---- break
1:01 Gems of war ( iOS )
1:04 Star Trek Online
@futjikato
futjikato / gist:15bc8c978975fe9cde9f
Created February 26, 2015 20:34
CoOptional 26.02.2015
0:17 The Order 1886
0:23 Hurt me plenty
0:29 Succulent
0:31 Fractured Soul
0:34 Kirby and the rainbow curse
0:35 Loveletter
0:41 Fibbage / Cards against humanity
0:44 Slash
0:46 Exploding Kittens
--------- break
@futjikato
futjikato / gist:ee9aec2c93551a7ef07f
Last active August 29, 2015 14:16
CoOptional 05.03.2015
0:12 War Thunder
0:34 Succulent
0:36 A Druid's Duel
- stuff missing
--------- break
0:58 The dear god
@futjikato
futjikato / gist:eb45017b6d1a149eb779
Last active August 29, 2015 14:16
CoOptional Podcast 12.03.2015
[0:20] Codename Steam
[0:22] DMC Definitive Edition
[0:34] Darkest Dungeon
[0:36] Shadow of Mordor
/**
* Measures the runtime for a given function.
*
* fn {function} Algorithm function to be measured. First parameter is the `done` callback that should be called on termination.
* iterations {int} How often the function should be called
* res {function} Function called with the resulting runtime in ms.
*
* Example
* ```javascript
* measureRt(function(done) {
@futjikato
futjikato / ooe.js
Last active August 29, 2015 14:18
Elevator.js OOP
{
init: function(elevators, floors) {
var MAX_FLOOR = 0,
ELEVATOR_COUNT = elevators.length;
/**
* Setup classes
*/
function InQueue() {
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>L&ouml;sungsblatt Vorlage</title>
<!-- morris graph lib -->
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
@futjikato
futjikato / DepthOperation.php
Created January 23, 2016 17:54
Neos FlowQuery Depth filter
<?php
namespace TYPO3\NeosDemoTypo3Org\FlowQuery\Operation;
use TYPO3\Eel\FlowQuery\FlowQuery;
use TYPO3\Eel\FlowQuery\Operations\AbstractOperation;
class DepthOperation extends AbstractOperation
{
/**