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
ABAP | |
filter remove_matches ^\* | |
extension abap | |
3rd_gen_scale 5.00 | |
ADSO/IDSM | |
filter remove_matches ^\s*\*[\+\!] | |
extension adso | |
3rd_gen_scale 3.00 | |
AMPLE | |
filter remove_matches ^\s*// |
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
using UnityEngine; | |
using System.Collections; | |
public class AnimationScript : MonoBehaviour { | |
public GameObject miku = null; | |
private Animation mikuAnime; | |
// Use this for initialization | |
void Start () { |
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
/** | |
* output string.xml into GoogleDrive | |
*/ | |
function outputStringXml_Android() { | |
// read Spreadsheet | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); | |
var numCols = rows.getNumColumns(); |
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 android.content.Context; | |
import android.graphics.Paint; | |
import android.util.AttributeSet; | |
import android.util.TypedValue; | |
import android.widget.TextView; | |
/** | |
* サイズ自動調整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
property hankakuText : " 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-+*/=(){}[].,~!?@\"\\#$%&¥|'^;:<>_アイウエオカキクケコサシスセソタチツテトナニヌネノハヒムヘホマミムメモヤユヨワヲンァィゥェォャュョー`。、・「」" | |
display dialog "突然の死ジェネレータ" default answer "突然の死" | |
set str to text returned of result | |
set textSize to getTextSize(str) | |
set the clipboard to text of getUpText(textSize) & getMidText(str) & getBoText(textSize) | |
on getBoText(theTextSize) | |
set centerText to "" | |
set cnt to theTextSize div 2.0 |