I hereby claim:
- I am drillbits on github.
- I am drillbits (https://keybase.io/drillbits) on keybase.
- I have a public key whose fingerprint is B5A0 EAD5 AB42 780A A6A8 D066 AF1D 2B41 AAC2 38CF
To claim this, I am signing this object:
| #!/usr/bin/env python3.6 | |
| from datetime import datetime | |
| import json | |
| import os | |
| import sys | |
| import urllib.request | |
| if len(sys.argv) < 2: | |
| print(f"usage: {sys.argv[0]} filelist.json") |
I hereby claim:
To claim this, I am signing this object:
| ffmpeg -y -i in.ts \ | |
| -f mp4 -vcodec libx264 \ | |
| -fpre libx264.ffpreset \ | |
| -cmp chroma -r 30000/1001 \ | |
| -aspect 16:9 -s 1440x1080 \ | |
| -bufsize 20000k \ | |
| -maxrate 25000k -vsync 1 \ | |
| -acodec libfaac -ac 2 \ | |
| -ar 48000 -ab 128k \ | |
| -map 0:0 -map 0:1 out.mp4 |
| # -*- coding: utf-8 -*- | |
| from copy import copy | |
| from django.test.signals import template_rendered | |
| class AssertHttpResponseContext(object): | |
| def __init__(self, test_case, context_key, context_value): | |
| self.test_case = test_case | |
| self.context_key = context_key |
| { | |
| "Twitter": { | |
| "ConsumerKey": "yourConsumerKey", | |
| "ConsumerSecret": "yourConsumerSecret", | |
| "AccessToken": "yourAccessToken", | |
| "AccessTokenSecret": "yourAccessTokenSecret" | |
| } | |
| } |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import unittest | |
| class WorkTest(unittest.TestCase): | |
| def _makeOne(self): | |
| from working import work | |
| return work |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import unittest | |
| class WorkTest(unittest.TestCase): | |
| def _makeOne(self): | |
| from working import work | |
| return work |
| from django import forms | |
| class PhotoForm(forms.Form): | |
| image = forms.ImageField() |
| // 適当なモデル | |
| Ext.define('app.model.Entry', { | |
| extend: 'Ext.data.Model', | |
| config: { | |
| fields: [ | |
| {name: 'title', type: 'string'}, | |
| {name: 'body', type: 'string'} | |
| ] | |
| } |
| 000000 IDENTIFICATION DIVISION. | |
| 000000 PROGRAM-ID. nTandaX. | |
| 000000* | |
| 000000 DATA DIVISION. | |
| 000000 WORKING-STORAGE SECTION. | |
| 000000 01 APB PIC X(26) VALUE 'ABCDEFGHIJKLMNOPORSTUVWXYZ'. | |
| 000000 01 I PIC 9(4). | |
| 000000 01 G PIC 9(4). | |
| 000000 01 N PIC 9(4). | |
| 000000 01 X PIC ZZZ9. |