Thomas Kelly, 2003
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
# これは設定ファイル例です。修正して~/.rst2pdf/configに置いてください。 | |
[general] | |
# カンマ区切りのカスタムスタイルシートのリスト。 | |
# 例:"fruity.json,a4paper.json,verasans.json" | |
stylesheets="~/.rst2pdf/ja.json" | |
# 圧縮されたPDFを生成 | |
# 使用する true/false (全て小文字) もしくは 1/0 | |
# 例: compressed=true | |
compressed=false | |
# コロン区切りのフォントサーチパスのリスト |
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
#import <Foundation/Foundation.h> | |
int main(int argc, char *argv[]) { | |
@autoreleasepool { | |
NSUInteger UIInterfaceOrientationMaskPortrait = 1 << 0; | |
NSUInteger UIInterfaceOrientationMaskPortrait2 = 1 << 1; | |
NSUInteger i = UIInterfaceOrientationMaskPortrait2 & UIInterfaceOrientationMaskPortrait; | |
NSLog(@"useData %d", UIInterfaceOrientationMaskPortrait); |
$ say -o Modulating_Phase -v Victoria "Modulating Phase"
$ ffmpeg -i Modulating_Phase.aiff -ar 11025 -ab 8 1.mp3
$ afplay 1.mp3 # play your sound
エフェクト用音声はこことか
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
### /Users/kwatanabe/.gitignore-boilerplates/ruby.gitignore | |
*.gem | |
*.rbc | |
.bundle | |
.config | |
coverage | |
InstalledFiles | |
lib/bundler/man | |
pkg |
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
package com.example.glayash.myapplication; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Paint; | |
import android.util.AttributeSet; | |
import android.util.TypedValue; | |
import android.widget.TextView; | |
/** |
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 | |
YOUR_PASSWORD="" | |
expect -c " | |
set timeout 20 | |
spawn openssl pkcs12 -in cert_and_key.p12 -out aps_developer_from_cert_and_key.pem -nodes -clcerts | |
expect Password: | |
send \"$YOUR_PASSWORD\r\" | |
interact |
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/bash | |
REQUIRED_ARGS=3 | |
if [ $# -ne $REQUIRED_ARGS ] | |
then | |
echo "" | |
echo "Usage:" | |
echo "./gcm_send_test.sh [server_api_key] [registration_id] [message]" | |
echo "" | |
exit 1 |
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