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
openapi-generator generate \ | |
-i ./doc/swagger_spec.yaml \ | |
-g typescript-axios \ | |
-o ./client/ \ | |
-c ./swagger/web/config.json \ | |
-t ./swagger/web/template |
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
{ | |
"recommendations": [ | |
"jakob101.relativepath", | |
"eamodio.gitlens", | |
"wayou.vscode-todo-highlight", | |
"octref.vetur", | |
"dbaeumer.vscode-eslint" | |
], | |
"unwantedRecommendations": [] | |
} |
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
module.exports = { | |
plugins: [ | |
"vue" | |
], | |
extends: [ | |
'@nuxtjs', | |
'plugin:nuxt/recommended', | |
'plugin:vue/recommended', | |
], | |
rules: { |
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
//ダブルクォートをシングルクォートにし、改行をとる | |
NSStirng * string = @"hogehoge"; | |
string = [string stringByReplacingOccurrencesOfString:@"\"" withString:@"\'"]; | |
string = [string stringByReplacingOccurrencesOfString:@"\n" withString:@""]; |
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
//------------------------------ | |
// JSONを読み込む | |
//------------------------------ | |
NSError *error0 = nil; | |
NSBundle *bundle = [NSBundle mainBundle]; | |
NSString *path = [bundle pathForResource:@"local" ofType:@"json"]; | |
NSString *jsonString = [[NSString alloc] initWithContentsOfFile:path encoding:NSUTF8StringEncoding error: &error0]; | |
NSData *jsonData = [jsonString dataUsingEncoding:NSUnicodeStringEncoding]; | |
if(error0){NSLog(@"よみこみえらー");} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="**********"> | |
<!-- ===================================================================================== | |
FDT5.5 で AIR3.3 iOS USBデバッグするためのANTテンプレート | |
--> | |
<property name="PROJ_NAME" value="**********"></property> |
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
/** | |
* copyright (c) 2012 www.itoz.jp | |
* @author itoz | |
* @since 2012/06/20 19:55:22 | |
*/ | |
package jp.itoz.air.util | |
{ | |
import flash.events.ErrorEvent; | |
import flash.filesystem.File; | |
import flash.filesystem.FileMode; |
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
/** | |
* copyright (c) 2012 www.romatica.com | |
* @auther itoz | |
*/ | |
package | |
{ | |
import away3d.containers.View3D; | |
import away3d.core.base.SubGeometry; | |
import away3d.debug.AwayStats; | |
import away3d.entities.Mesh; |
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
/** | |
* copyright (c) 2012 www.romatica.com | |
* @auther itoz | |
*/ | |
package | |
{ | |
import away3d.containers.View3D; | |
import away3d.core.base.SubGeometry; | |
import away3d.debug.AwayStats; | |
import away3d.entities.Mesh; |
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
/** | |
* copyright (c) 2012 www.romatica.com | |
* @auther itoz | |
*/ | |
package | |
{ | |
import flash.geom.Vector3D; | |
import away3d.debug.AwayStats; | |
import away3d.containers.View3D; |
NewerOlder