Saturday, March 11, 2017

SOLVED: SVCHOST ISSUE

Any time this iss
If on your task manager you see svchost taking much physical memory

1 On your task manager 






 



Friday, October 14, 2016

Books Every Game Developer Must Read... MUST

     

1. DESIGNING GAMES (Tynan Sylvester) 
My Game Bible. My personal Super Awesome Book every Indie and/or beginner game designer must read AFTER he/she must've made his/her first mistakes... sorry games


2. GAME MECHANICS: ADVANCED GAME DESIGN:

Be Not  Afraid of the word "advanced"...It was made to make ordinary seem extra ordinary. To be academic and make your game transferable you gotta know mechanics. its like knowing UML or Flowcharts in software engineering  












Tuesday, March 1, 2016

Intergrating Appodeal

Here is just a link I found to integrate Appodeal plugin into your project.

You might need to look in the example of each to understand how to implement it on your own project

Monday, February 29, 2016

How I Publish Windows Phone apps from Intel XDK

- Make sure all Launch Icons and Splash screen icons are filled


- Log in to your windows developer portal

- In your Windows developer account click Account settings.
- Under the contact info section is your publisher display name this is what you'll use as Author and Publisher display name.
- Under account settings is your Windows publisher ID this is what you'll use as your windows ID and windows phone ID  eg CN=215466 4446 444, your ID is 215466 4446 444 (see illustration below)









- Read this too as from  the XDK team.

- What was missing in the above tutorial link is your App ID which is located when you click 
yourappname>app management>app identity>Package/Identity/Name

After this go to your build page and build and douwnload your app

Big shout out to Intel !!!
















How to Intergrate Admob Pro Plugin in Intel XDK app

Launch your app
Click on Project
Click on you app
Under Plugin Management click Add Plugins to this Project

Select the Third Party Plugins section

Make sure the cursor is on Cordova plugin registry
Enter in Plugin ID: cordova-plugin-admobpro    (see image below)
Click Add Plugin and wait for XDK to download it to your app




Now here's the tricky part, go to your App
in the body of your index.html enter a javascript code see image
i.e directly under your <body> tag enter <script>  </script>.
The admob code will go in between this script tag <script> "admob code" </script>





*- your body tag
2- is me noting a comment to know where the admob code is
3. the beginning of my javascript code



the javascript code I copy is from this link

Or you should view the complete demo here

Below is how it should be under your body tag

<script>


var admobid = {};
if( /(android)/i.test(navigator.userAgent) ) {
admobid = { // for Android
banner: 'ca-app-pub-youradmobcode',
interstitial: 'ca-app-pub-youradmobcode'
};
} else if(/(ipod|iphone|ipad)/i.test(navigator.userAgent)) {
admobid = { // for iOS
banner: 'ca-app-pub-youradmobcode',
interstitial: 'ca-app-pub-youradmobcode'
};
} else {
admobid = { // for Windows Phone
banner: 'ca-app-pub-youradmobcode',
interstitial: 'ca-app-pub-youradmobcode'
};
}
if(( /(ipad|iphone|ipod|android|windows phone)/i.test(navigator.userAgent) )) {
document.addEventListener('deviceready', initApp, false);
} else {
initApp();
}
function initApp() {
if (! AdMob ) { alert( 'admob plugin not ready' ); return; }
AdMob.createBanner( {
adId: admobid.banner,
isTesting: true,
overlap: false,
offsetTopBar: false,
position: AdMob.AD_POSITION.BOTTOM_CENTER,
bgColor: 'black'
} );
AdMob.prepareInterstitial({
adId: admobid.interstitial,
autoShow: true
});
}
</script>


After this dependent on your target device, change the banner and/or interstitial code as gotten from Admob

and finally look through the code to change the isTesting to false i.e isTesting:false


Big Thanks and shout out to Raymond Xie for this !!!







Friday, November 13, 2015

Games on Oracle Apex.. Like Seriously !!!

By Anderson Rodrigues
By Daniel Hochleitner
By Douglas Rofes
4. RPG
By Gabriel Dragoi
By Gabriel Dragoi
By Jari Laine
By Lev Erusalimskiy
By Marc Hassan
By Marcelo Burgos
By Matt Mulvaney
By Maxime Tremblay
By Nick Buytaert

13 Sudoku
By Nihad Haskovic

14 Tetris
By Pavel

15 Boggex
By Scott Wesley

SOLVED: SVCHOST ISSUE

Any time this iss If on your task manager you see svchost taking much physical memory 1 On your task manager    ...