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
Adobe After Effects 8.0 Keyframe Data | |
Units Per Second 30 | |
Source Width 1920 | |
Source Height 1080 | |
Source Pixel Aspect Ratio 1 | |
Comp Pixel Aspect Ratio 1 | |
Motion Trackers Tracker #1 Track Point #1 Attach Point Offset | |
Frame X Y |
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 | |
export HOME=/root | |
export SPINNERS=$HOME/spinners | |
# setup spinners | |
mkdir $SPINNERS | |
# deps | |
apt-get update -y | |
apt-get install -y docker.io git-core python-pip nginx golang byobu |
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
docker inspect thesweetshoptv_db_1 | |
[{ | |
"ID": "8b678edcafada191931d3b1f22ec64ca5a07660a3af970a3d74eb1a216773404", | |
"Created": "2014-05-02T10:55:43.398473089Z", | |
"Path": "/usr/local/bin/run", | |
"Args": [], | |
"Config": { | |
"Hostname": "8b678edcafad", | |
"Domainname": "", | |
"User": "", |
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
docker inspect thesweetshoptv_db_1 | |
[{ | |
"ID": "361405204c70e5351774d66ddbc4f9bdd8622eedfd3f035385c704b439b25611", | |
"Created": "2014-05-02T10:53:22.081521701Z", | |
"Path": "/usr/local/bin/run", | |
"Args": [], | |
"Config": { | |
"Hostname": "361405204c70", | |
"Domainname": "", | |
"User": "", |
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
def get(self, request, *args, **kwargs): | |
res = super(SubmissionDetailView, self).get(request, *args, **kwargs) | |
if not request.is_ajax(): | |
return res | |
ctx = self.get_context_data() | |
return json_response(ctx['data'], 200, False) |
NewerOlder