- 14:24 "We added telemetry and feedback systems": in game feedback form, all feedbacks are public
- feedback tickets: https://subnautica.unknownworlds.com/feedback/tickets
- 16:00 feedback includes position on map
- 19:26 "people were telling us we were making a horror game, which was never our intent"
- 19:42 on how to set priorities for increasing sales during early access
- "look at your spikes, focus on what makes your game stand out, do more of that"
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
''' | |
Python 2.x essentials. | |
This requires Python 2.5 or later. | |
''' | |
from __future__ import with_statement | |
import codecs | |
import os |
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
# -*- coding: utf-8 -*- | |
''' | |
Example code to write large output in XML with Unicode and namespaces. | |
This code has been referenced in a lightning talk I gave at EuroPython 2012 | |
in Florence. | |
''' | |
# This program is free software. It comes without any warranty, to | |
# the extent permitted by applicable law. You can redistribute it | |
# and/or modify it under the terms of the Do What The Fuck You Want | |
# To Public License, Version 2, as published by Sam Hocevar. See |
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
''' | |
Example for caching a list of data using pickle. | |
''' | |
import cPickle as pickle | |
_CachePath = '/tmp/cache.pkl' | |
def expensiveToComputeData(): | |
# These would be date retrieved from an external file involving lots fo | |
# computations, validation and so on. This particular example data are |
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
# Print a list of possible Python OS error codes together with the symbolic | |
# name in `errno` and the related human readable error message. The output | |
# uses Trac Wiki syntax so it can be copied and pasted in a Wiki document | |
# for later reference. | |
# | |
# The output depends on platform and language settings. | |
import errno | |
import os | |
print('||=code =||=symbol =||=message =||') |
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
''' | |
Download images for "Schlaflos im Ländle" geocache as described at | |
<http://www.geocaching.com/seek/cache_details.aspx?guid=3052c599-c8bb-4bff-a209-7b23b98bdb1c>. | |
To obtain the required images, start the program sometime around 21:45 CET and let it run | |
until 05:30 CET. You can start it earlier or stop it later but then you might have to ignore | |
some of the images. | |
''' | |
import logging | |
import os | |
import time |
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
""" | |
This source code can act as base for a coding dojo. | |
It implements and test a function `iter_is_equal()` that take two sequences | |
as parameters and returns `True` if all there items are equal. | |
>>> iter_is_equal([1, 2, 3], [1, 2, 3]) | |
True | |
>>> iter_is_equal([1, 2, 3], [1, 3]) | |
False |
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
Notes for cutplace | |
------------------ | |
0.9.0, week 2015/xxx | |
* Thomas: explain test_sql._assert_is_valid_sqlite_statement | |
0.9.0, week 2015/13 | |
* Thomas: test that field names with non alphanumeric/_ are rejected | |
* htlwrn: continue SQL |
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
""" | |
Coding dojo: SQL code generator for an SQL comment to describe items to | |
exclude. | |
Write a function that generates an SQL comment describing a list of items to | |
exclude. Long lists of items should be broken into multiple lines. To make the | |
test case more managable, the maximum line length is 30. | |
For example, ['one', 'two'] should result in |
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
#!/bin/sh | |
# Usage: ./remove_orphans.sh [-f] | |
# | |
# Run this after moving / removing media files on a Synology NAS. | |
[ "$1" = "-f" ] && REMOVE=1 | |
IFS=' | |
' |
OlderNewer