Showing posts with label Web Development. Show all posts
Showing posts with label Web Development. Show all posts

Thursday, December 3, 2015

NangAntapTu v0.1.3 released -free-



===============================
NEW RELEASE: NangAntapTu v0.1.3
===============================
http://www.amazon.com/cygnosis-NangAntapTu/dp/B016U0K6Z2/

or grab it from my personal mobile app store :

http://goo.gl/WYr40w

or you can scan this QR Code to easily access mobile apps store from your smartphone:



Changelog: 

-fresh new interface
-easy navigation
-improve performance

Screenshots: 

Jengking Merah Buku 13 Episod 51-54 saya tengah translate. Sebahagian hasil terjemahan korang boleh tengok kat screenshots ni. Saya release hanya dalam app NangAntapTu. Layan.




Monday, February 23, 2015

documentaryaddict is for documentaries lover

documentaryaddict


Documentaryadict is for those who love to watch documentaries. Good for children and educations. Previously I used to search in google to look for some documentary and often stumbled upon something else. This website seem to simplify the need of a very good documentary.

http://documentaryaddict.com

Friday, December 5, 2014

Using sencha build in Jetty Webserver

Usually sencha developer will use xampp for local server. But, sencha also had built in server for that purpose. It did had a build in Jetty web server to ease the application developmnent.

To start the http file server, just run this command inside your app path:

sencha web start

Then you can open the app in the browser from this address: http://localhost:1841

To stop the server, hit ctrl+C or just run this command:

sencha web stop

That is all. Happy coding.

Wednesday, November 19, 2014

Netbeans IDE With Sencha Touch

1) Requirements:

i) Download the Netbeans IDE (I use the latest version 8):
https://netbeans.org/

ii) Download the latest Sencha plugin from here:
https://bitbucket.org/addicticks/nbplugin-senchacmd/downloads

iii) Download the Sencha Touch library from here(I use latest touch-2.4.1, rename it as touch):
http://www.sencha.com/

2) Create new project

Choose New>Java Web>Web Application. Press the Next button. Name the app “SenchaApp”. Choose the project location. Press the Next button.

Select Tomcat as the servers and click the Finish button.

3) Prepare Sencha App Structure

i) Inside web folder, create the app folder, views folder, models folder, controllers folder in NetBeans to add your javascript files into.

ii) Add previously download "touch" folder into web folder.

4) Add sencha library

i) Right click on the SenchaApp application and select Properties from the drop down menu

ii) Under the Libraries menu, choose “Add Libraries” and from the window that opens click “Create…”

iii) Name the Library “Sencha_Touch” and choose “Class Library” from the drop down.

iv) Under the “Classpath” tab, click on “Add JAR/Folder” and select the “touch” folder previously downloaded.

v) Click “OK” and choose the newly created “Sencha_Touch” library.

create an app.js file in the app folder. Type Ext followed by a “.” — If the steps above were followed correctly, the code completion should work.

5) Code/create your sencha touch application

6) Run Application

Hit Run.

Your application should start in the default browser with the url : localhost:8084/SenchaApp/

Reference: http://techtalktone.wordpress.com/2012/02/22/using-netbeans-ide-with-sencha-touch/