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
| TOTAL_FILES=16014 | |
| def slugify(value): | |
| value = str(value) | |
| value = unicodedata.normalize('NFKD', value).encode('ascii', 'ignore').decode('ascii') | |
| value = re.sub(r'[^\w\s-]', '', value).strip().lower() | |
| return re.sub(r'[-\s]+', '-', value) | |
| response = urllib.request.urlopen("http://bbcsfx.acropolis.org.uk/assets/BBCSoundEffects.csv") | |
| csv_text = response.read().decode('utf-8') |
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
| use std::collections::HashMap; | |
| use std::collections::VecDeque; | |
| use std::thread; | |
| use std::sync::Arc; | |
| use std::sync::Mutex; | |
| use std::time; | |
| type ActorId = u32; | |
| struct Actor { |
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
| #!/bin/sh | |
| if [ -z "$1" ] | |
| then | |
| echo "No file specified" | |
| exit 1 | |
| fi | |
| FILEPATH=`winepath -u "$1"` | |
| gvim --servername unity --remote-tab-silent +$2 "$FILEPATH" || gvim +$2 "$FILEPATH" |