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
Install-Package Newtonsoft.Json -Version 9.0.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
/*! | |
Math.uuid.js (v1.4) | |
http://www.broofa.com | |
mailto:[email protected] | |
Copyright (c) 2010 Robert Kieffer | |
Dual licensed under the MIT and GPL licenses. | |
*/ | |
/* |
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
cat test\test.als | gunzip | grep "<.*PlugName\|EffectiveName" | sed -e 's/^[\t]*//g' |
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 glob | |
import os.path | |
from moviepy.editor import * | |
dir = '.' | |
files = glob.glob(os.path.join(dir, '*.mp4')) | |
L=list() | |
#print (len(files)) | |
for file in files: | |
L.append(VideoFileClip(file,audio=True)) | |
final_clip = concatenate_videoclips(L,method="compose") |
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
[CONFIG] | |
INPUT_AUDIO = resources\guitars.mp3 | |
INPUT_VIDEO = resources\merged.mp4 | |
START_OFFSET = 60 | |
END_OFFSET = 60 | |
INTERVAL_MULTIPLIER = 3 | |
OUTPUT_PATH = resources\output.mp4 | |
SHUFFLE = True |
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 <windows.h> | |
#include <string> | |
#include <iostream> | |
using namespace std; | |
int main() { | |
string url; cin >> url; | |
url = "http://www.mcgov.co.uk/riddles/" + url + ".html"; | |
ShellExecute(NULL, "open", url.c_str(), "", ".", SW_SHOWNORMAL); | |
return 0; | |
} |
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 UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class DefamationMangler : MonoBehaviour | |
{ | |
[MenuItem("Tools/DefamationMangler %#d")] | |
static void AlignMeshVertices() | |
{ |
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.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
public class FindFilesUtility | |
{ | |
public static string ConvertPath(string aPath) | |
{ |
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
''' | |
@author AlexHuleatt | |
Generate a simple, connected dungeon. Focus is on rooms, not maze-like features. | |
Output of get_dungeon is two sets: | |
1. A set of (y,x) tuples representing the position of walls | |
2. A set of (y,x) tuples representing the walls removed to make doors | |
Guaranteed connectedness between all open cells. |
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
<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"XMP Core 5.1.2\"> | |
<rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"> | |
<rdf:Description rdf:about=\"\" xmlns:xmp=\"http://ns.adobe.com/xap/1.0/\" xmlns:mwg-rs=\"http://www.metadataworkinggroup.com/schemas/regions/\" xmlns:stDim=\"http://ns.adobe.com/xap/1.0/sType/Dimensions#\" xmlns:stArea=\"http://ns.adobe.com/xmp/sType/Area#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmp:ModifyDate=\"2018-07-09T23:14:23+01:00\"> | |
<mwg-rs:Regions rdf:parseType=\"Resource\"> | |
<mwg-rs:AppliedToDimensions stDim:w=\"900\" stDim:h=\"1200\" stDim:unit=\"pixel\"/> | |
<mwg-rs:RegionList> | |
<rdf:Bag> | |
<rdf:li> | |
<rdf:Description mwg-rs:Name=\"Jean\" mwg-rs:Type=\"Face\"> | |
<mwg-rs:Area stArea:x=\"0.496936\" stArea:y=\"0.453125\" stArea:w=\"0.064134\" stArea:h=\"0.057598\" stArea:unit=\"normalized\"/> |