This file contains 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 time | |
class Measurement(object): | |
def __init__(self, name): | |
self.name = name | |
return | |
def __enter__(self): | |
self.t_start = time.time() | |
return |
This file contains 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 System.Text; | |
#if UNITY_EDITOR | |
using System.Net.Sockets; | |
using System.Threading; | |
#else | |
using Windows.Networking.Sockets; | |
using Windows.Storage.Streams; | |
using System.Threading.Tasks; | |
using System.IO; | |
using Windows.Networking; |
This file contains 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
public class BroadcastReceiver : IDisposable | |
{ | |
//OnMessageReceived | |
public delegate void AddOnMessageReceivedDelegate(string message, IPEndPoint remoteEndpoint); | |
public event AddOnMessageReceivedDelegate MessageReceived; | |
private void OnMessageReceivedEvent(string message, IPEndPoint remoteEndpoint) | |
{ | |
if (MessageReceived != null) | |
MessageReceived(message, remoteEndpoint); | |
} |
This file contains 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
def weirdimport(*paths): | |
import os, sys | |
fullpath = os.path.abspath(os.path.join(*paths)) | |
global project | |
sys.path.append(os.path.dirname(fullpath)) | |
try: | |
project = __import__(os.path.basename(fullpath)) | |
sys.modules['project'] = project | |
finally: | |
del sys.path[-1] |
This file contains 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 imageio | |
import os, sys | |
class TargetFormat(object): | |
GIF = ".gif" | |
MP4 = ".mp4" | |
AVI = ".avi" | |
def convertFile(inputpath, targetFormat): | |
"""Reference: http://imageio.readthedocs.io/en/latest/examples.html#convert-a-movie""" |
NewerOlder