:linked_dirscapistranorb.com/documentation/getting-started/con...
default: []
Listed directories will be symlinked into the release directory during deployment.
Can be used for persistent directories like uploads or other data. See Structure for the exact directories.
import re
p = re.compile(r"([\d\W]+)\n.*\[(.*)\].*\n.*", re.MULTILINE | re.UNICODE)
test_str = u"""00:00:05,233 --> 00:00:08,133
GAT[xd]fES: Amelia Earhart
is on one of the final legs
00:00:05,333 --> 00:00:08,433
[xd]fES: Amelia Earhart
is on one of the final legs
"""
subst = r"\1 \2"
result = re.sub(p, subst, test_str)
print result
ideone.com/K0zp7X Despite what you may read, there is no such thing as a DisplayPort 1.1 cable and DisplayPort 1.2 cable. A standard DisplayPort cable, including the so-call DisplayPort 1.1 cables, will work for any DisplayPort configuration including the new capabilities enabled by DisplayPort 1.2, including 4K and multi-stream capabilities. All standard DisplayPort cables support RBR, HBR (High Bit Rate), and HBR2 (High Bit Rate 2), which can support 4K at 60Hz, or up to four 1080p displays using multi-stream.www.displayport.org/cables/how-to-choose-a-display...
When data that has been entered into HTML forms is submitted, the form field names and values are encoded and sent to the server in an HTTP request message using method GET or POST, or, historically, via email. The encoding used by default is based on a very early version of the general URI percent-encoding rules, with a number of modifications such as newline normalization and replacing spaces with "+" instead of "%20". The MIME type of data encoded this way is application/x-www-form-urlencoded, and it is currently defined (still in a very outdated manner) in the HTML and XForms specifications.
iconv -f cp1251 -t utf8 file.csv > file.utf8.csv