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
##################################################################### | |
# Automatically generated by qmake (3.0) Sa. Sep. 6 01:08:04 2014 | |
###################################################################### | |
CONFIG += console | |
QT += network | |
TEMPLATE = app | |
TARGET = test | |
INCLUDEPATH += . |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Meine erste Videoapplikation</title> | |
<script src="https://code.jquery.com/jquery-1.10.1.min.js"></script> | |
<script src="https://raw.github.com/Wolfy87/EventEmitter/master/EventEmitter.min.js"></script> | |
<script src="https://raw.github.com/palavatv/palava-client/master/palava.min.js"></script> | |
<script type="text/coffeescript"> |
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 <stdio.h> | |
#include <unistd.h> | |
#define BLOCK_SIZE 512 | |
#define min(a, b) ((a) < (b) ? (a) : (b)) | |
inline void swap(char* buf, size_t a, size_t b) { | |
char tmp = buf[a]; | |
buf[a] = buf[b]; |
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/env python | |
import sys | |
import random | |
import json | |
class QuadPuzzle: | |
def __init__(self, big, data, rand=True): | |
self.big = big |
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/env python | |
############################################################################## | |
## | |
## Copyright (C) 2010 Thammi | |
## | |
## This program is free software: you can redistribute it and/or modify | |
## it under the terms of the GNU General Public License as published by | |
## the Free Software Foundation, either version 3 of the License, or | |
## (at your option) any later version. | |
## |