Labels

Learn the powerful enterprise adaptable database:

Getting Started With ADABAS & Natural

Saturday, May 20, 2017

Android Sketchware Tutorial: Getting Started

.
Sketchware Tutorial - Getting Started
NO PROGRAMMING CODES AT ALL!
This tutorial is a step-by-step guide for beginners. 
Sketchware is a great application. Even those without IT or Programming background would be able to follow this tutorial and finally run the app on Android device.
It is is SUPER EASY!

0. Get the app

You can get the app by:
a. Going to Android App store, search “Sketchware” and install.
b. Downloading from
and install.
c. Copy the apk (from b) into your device and install

1. Run the installer.

Read the installation information.
Tap INSTALL button
Wait until installation completed.

2. Run Sketchware.

The app may ask for your option to read the tutorials.
Select CANCEL.

3. App Menu

App menu is located at top left.
If you click the App Menu, you get the menu that includes the Tutorials. So you can select this menu item if you want to read the tutorials in the future.

4. MY PROJECTS

Tap MY PROJECTS tab.
You see a PLUS (+) button at the bottom right of the page.
Tap the PLUS button to create a new project.

5. Project Details

Enter project details.
The compulsory part is: Package, Project name, App Name.
Make sure you follow the instruction eg project name must not have a space (use _ to replace the space)
      

6. VIEW section

VIEW section displays the layout of your app.
You can put LAYOUTS and WIDGETS into your app.

7. Add Widgets

Tap the TextView and drag it to your app page.
Then, tap the Button and drag it to your page.
Your page has two widgets now.
Tap the RUN button

8. RUN the app

Wait for Sketchware to build the app.
Allow Android to install your app.
Wait for installation process
Done.

9. Edit TextView

Tap the TextView object on the app page.
Select the text item.
Change the text to MyTextView.

10. Edit Button

Tap the Button object on the app page.
Select the text item.
Change text to MyButton

11. LOGIC section

The LOGIC section contains the actions for your app to do.

12. Edit Button LOGIC

On LOGIC tab,
Click the Show Action Panel.
 
Drag the setText action into the app.

13. Assign target object and

Assign target widget to the action.
Assign the string.

14. Run again.

When you tap the button the TextView displays "Hello World".



 .

Tuesday, May 16, 2017

Simple JavaScript Web Token (JWT) Signing and Validation


.


<script src="https://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js"></script>
<script>
 // JWS signing
sJWT = KJUR.jws.JWS.sign(null, '{"alg":"HS256"}', '{"name": "user"}', {"utf8": "password"});
console.log("Signing JSON Web Token":+sJWT);

// JWT validation
isValid = KJUR.jws.JWS.verifyJWT(sJWT, {"utf8": "password"}, {alg: ["HS256"]});
console.log("Validate Signature:"+isValid);

var headerObj = KJUR.jws.JWS.readSafeJSONString(b64utoutf8(sJWT.split(".")[0]));
console.log("*** Header ***");
console.log("Parsing Header:"+headerObj);

var payloadObj = KJUR.jws.JWS.readSafeJSONString(b64utoutf8(sJWT.split(".")[1]));
console.log("*** Payload ***");
console.log("Parsing Payload:"+payloadObj);
</script>


.
CODEPEN CLIENT EXAMPLE: https://codepen.io/aronrodrigues/pen/YXvBWW
.
SLIDES: http://kjur.github.io/jsrsasign/slide_e/#/
.
REFERENCE:
-https://kjur.github.io/jsrsasign/api/symbols/KJUR.jws.JWS.html
-https://www.jonathan-petitcolas.com/2014/11/27/creating-json-web-token-in-javascript.html

Monday, May 1, 2017

Android Sketchware: How To Install It Offline


.

1) Run your Android Phone or Tablet

Download Sketchware from Playstore (https://play.google.com/store/apps/details?id=com.besome.sketch) or from this cache,https://goo.gl/K1KqUg (Sketchware v.1.3.2)








2) Run Sketchware Installer




If your Android tells you that installation is blocked because of unknown sources, go to your Android Settings and set it to allow installation from unknown sources.


Installation done.




.

Saturday, April 1, 2017

101 Ionic Creator Startup Templates


.
101 Ionic Creator Startup Templates

1) Login To Ionic Creator

2) Create new project

Type 101-blank.
Select Blank Project.
Click Create.

3) Preview

4) Back to Dashboard

Click Dashboard button.

5) Add App Icon

6) Share project

 
This project has been set to public access using the link below:

7) Export as Zip File

8) Export as Package

Download the apps (apk).

9) Download Startup Templates

Blank
Side
Tab
Side+Tab
.