+++ Welcom to MyLife +++
I'm Thailand I'm 22 year Opensource Software Home
Friday, October 18, 2013
บริการออกแบบ/สร้างเว็บไซต์ หน้าเพจบน Facebook (Fanpage) ในราคาเริ่มต้นเพียง 790 บาท บริการโฆษณา บน Facebook เริ่มต้น 100 บาท
ทีมงาน 4 Xtreme ช่วยท่านได้
บริการออกแบบ/สร้างเว็บไซต์
หน้าเพจบน Facebook (Fanpage)
ในราคาเริ่มต้นเพียง 790 บาท
บริการโฆษณา บน Facebook เริ่มต้น 100 บาท
ออกแบบและสร้างเว็บไซต์หรือหน้าเพจ
แนะนำสินค้าและบริการของท่าน
เพื่อเพิ่มช่องทางการโฆษณาสินค้าผ่านทางสื่อออนไลน์หรือบนสังคมออนไลน์ (Social Network)
หากมีเว็บไซต์อยู่แล้ว เราบริการปรับปรุงให้ทันสมัย เช่น เชื่อมต่อเว็บไซต์ของท่านไปยัง Facebook
สร้างหน้าเพจประชาสัมพันธุ์บน Facebook เนื่องจากกลุ่มบุคคลส่วนใหญ่ในปัจจุบันนี้นิยมเล่น Facebook
จะทำให้สินค้าและบริการของท่านเข้าถึงกลุ่มลูกค้าได้โดยตรง
สอบถามรายละเอียด ได้ที่ อีเมลล์ 4xsale@gmail.com โทร 053-122764 หรือ Fanpage
http://www.facebook.com/4xfanpage
http://www.facebook.com/webcreates
https://www.facebook.com/ateamads
351/16 หมู่ที่5 ต.ดอนแก้ว อ.แม่ริม จ.เชียงใหม่ 50180
Tel: 053-122764 (Office) mobile: 089-4324600 , 085-1079112
email:4xsale@gmail.com website:www.4x-treme.com
ตัวอย่างลูกค้า
http://goo.gl/w1iTW7
ติดต่อสร้างแฟนเพจได้ที่
http://goo.gl/vZ1UDB
Sunday, October 10, 2010
Install Mac on Asus K42J
CD iBoot Supported http://www.insanelymac.com/forum/index.php?showtopic=219220
http://tonymacx86.blogspot.com/2010/05/iboot-supported-with-vanilla-kernel-for.html
File Update Mac 10.6.4, 10.6.5
File Driver
- Wifi AR9285 http://www.kexts.com/downloads.php?do=file&id=462
- Sound
- Chipset
- Graphic Card
- ...
Wednesday, October 06, 2010
Sprite Sheets Management
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"runningman_coords.plist"];
// I presume this is where you load the first sprite?
CCSprite *sprite = [CCSprite spriteWithSpriteFrameName:@"runningman1.png"];
sprite.position = ccp( s.width/2-80, s.height/2);
CCSpriteSheet *spritesheet = [CCSpriteSheet spriteSheetWithFile:@"runningman_textures.png"];
[spritesheet addChild:sprite];
[self addChild:spritesheet];
NSMutableArray *animFrames = [NSMutableArray array];
for(int i = 1; i < style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">CCSpriteFrame *frame = [[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:[NSString stringWithFormat:@"runningman%d.png",i]];
[animFrames addObject:frame];
}
CCAnimation *animation = [CCAnimation animationWithName:@"run" delay:0.2f frames:animFrames];
[sprite runAction:[CCRepeatForever actionWithAction: [CCAnimate actionWithAnimation:animation restoreOriginalFrame:NO] ]];
Wednesday, July 30, 2008
Create Plugin on Eclipse
The easiest way to create a plug-in is to use the Plug-in Development Environment (PDE)
http://www.ibm.com/developerworks/library/os-ecplug/
Tuesday, July 29, 2008
Tutorial of Dev Plugin Eclipse
http://www.vogella.de/eclipse.html
http://www.eclipsecon.org/2005/tutorials.php
http://www.eclipsepluginsite.com/
https://eclipse-tutorial.dev.java.net/
Sunday, July 27, 2008
Orangegear IDE Planing
-Code Completion
http://www.eclipse.org/articles/article.php?file=Article-BuildYourOwnDSL/index.html
-Syntax coloring
Resource:
http://www.eclipse.org/resources/?category=Plug-ins
http://www.eclipse.org/articles/Article-GEF-editor/gef-schema-editor.html
http://www.ibm.com/developerworks/opensource/library/os-eclipse-snippet/index.html?ca=dgr-eclipse-1