2016년 5월 30일 월요일

Cordova project .gitignore file

   


I use this .gitignore file when i make cordova project.


#cordova project gitignore file
hooks
platforms
plugins
.DS_Store

2016년 5월 15일 일요일

2016년 5월 13일 금요일

Cocos2d-x 3.11 released!

I received mail from cocos2d-x,

Cocos2d-x 3.11 released,

check this release.

▪ upgrade Chipmunk to v7.0.1.
▪ use new memory model in JSB, don't have to invoke retain/release in JavaScript. It is disabled by default.
▪ support the Tizen platform.
▪ upgrade Curl to v7.48.
▪ upgrade OpenSSL to 1.0.2g.
▪ can now use VSCode and new Firefox to debug Cocos2d-x JSB programs.

before this version 3.11
we have some problem on OpenSSL, 
like this : http://pineoc.blogspot.kr/2016/04/google-play-warning-you-are-using.html

Update and recompile the app,
This warning will be disappear. i guess.
This post is about OpenSSL update : http://blog.cocos2d-x.org/2016/04/openssl-update/

another release note here
http://discuss.cocos2d-x.org/t/cocos2d-x-v3-11-released/29253

Thanks

2016년 5월 8일 일요일

AVD device start error - 'std::logic_error'

My computer ENV

OS: Windows 8.1 embedded
JDK: 1.7.0_79
NDK (not necessary env): r10e
Visual Studio : 2015 community version

This issue occurred when i use Xamarin.
1. Start android emulator
2. Start Nexus 5
3. Error

Error message detail


This error can not fix because of many error factor.
I will fix this error, and post if i can.

2016년 5월 6일 금요일

Microsoft PowerApps Preview start - Build app without coding




You can make application like this.


if you want to use, sign up with school email or company email.

In advance, I sign up.
After login, page like this.


I will show you sample apps first.


I click the "Open the phone"


All button can click and has linked views.

If you want make your app,
download the powerapps for windows.


after login,



I will show you make app later. (may be next posting)


Let's make app without coding.
Using PowerApps.


2016년 5월 3일 화요일

Go to Xamarin project!








If you want download Xamarin, 
enter your some information. 


Then, you can download .dmg file.
just install .dmg, use it.
(I'm using Xamarin studio)



let's go to Xamarin!

2016년 5월 2일 월요일

Node.js Expressjs error, payload too large

I have some error
using Node.js + expressjs

Error message : payload too large

Detail message (on front-end browser):
Failed to load resource: the server responded with a status of 413 (Payload Too Large)

This error can fix it with simple code.

add limit option to
bodyParser.json({})
bodyParser.urlencoded({})



I hope you save time

2016년 4월 25일 월요일

Google I/O 2016 conference will coming

https://events.google.com/io2016/

Schedule
May 18 ~ 20
https://events.google.com/io2016/schedule#day1

This is what google I/O 2016

Google I/O is for developers—the creative coders who are building what’s next. Together we’ll explore the latest in tech, mobile, and beyond.

2016년 4월 21일 목요일

Code Highlight setting on Google Blogger

1. Go to your blog home -> template -> edit HTML



2. Add CSS code
add to <b:skin> part



3. Add Javascript code
add to <head>  part



4. Add Javascript code to body tag


5. Use
use textarea OR pre tag
class="language" name="code"




I hope you could use this.
Thanks

Cocos2d-x android:label setting fail error



*ENV
- Windows 8.1
- Cocos2d-x 3.9
- Android studio 2.0

*Problem
Merging manifest with lower [proj.android-studio:libcocos2dx:unspecified] AndroidManifest.xml:2:1-16:12
Merging uses-sdk with lower [proj.android-studio:libcocos2dx:unspecified] AndroidManifest.xml:7:5-9:41
Merging application with lower [proj.android-studio:libcocos2dx:unspecified] AndroidManifest.xml:11:5-14:19
Merging result:ERROR
myapp\proj.android-studio\app\AndroidManifest.xml:11:9-41 Error:
        Attribute application@label value=(@string/app_name) from AndroidManifest.xml:11:9-41
        is also present at [proj.android-studio:libcocos2dx:unspecified] AndroidManifest.xml:13:9-36 value=(libcocos2dx).
        Suggestion: add 'tools:replace="android:label"' to element at AndroidManifest.xml:8:5-28:19 to override.

I try it Suggestion.

Add code tools:replace="android:label" to element
Like this.


Do Build and success.
PS. It should add xmlns="https://schemas.android.com/tools".


Save your day!

JIRA Plugin - ScriptRunner 소개 #2

관련 글 소개 #1:  https://pineoc.blogspot.com/2019/03/scriptrunner-1.html ScriptRunner 소개 #2 지난 글에서는 Behaviours를 보았고 다음 내용인 콘솔, 리스너 등을 ...