Monthly Archives :

September 2019

The last of us – Part 2 150 150 New_bluecreazione

The last of us – Part 2

Last of us franchise has been a fascinating one for all the game enthusiasts. The last of us game has been well known for its Cinematics and Dynamic story telling through out the game. Following the same style, Naughty Dogs have pushed their boundaries to the very edge.

The Last of us part 2 has been in development since 2014. And recently Naughty Dog is finally ready to show some gameplay. Looking at what they have shown so far it seems the gameplay is changing in a good way.

There is a new Dog sniffing system, where the dogs can catch your trails and scent, and they will try to get to you if you make even a slightest mistake. What they have shown seemed more like a stealthier gameplay. Also Joel is returning in the game which was recently unveiled. There is also a Workshop where Ellie is shown customising and reloading her weapon. Which seems very realistic approach to the scenario.

Check out the Gameplay they released along side the Release date of 2-21-20.

Check out more about it on the home page below. Also available for Pre-Order.

Sayonara Wild Hearts New_bluecreazione

Sayonara Wild Hearts

“For a mobile game this felt perfect. Although never quite felt like a mobile game while playing. It simply is amazing.” – Inquest.

When I first saw this game on Apple Event. It felt like just another endless runner. And honestly never really thought of playing it on my iPhone. But as Apple launched the new Apple Arcade. There were bunch of many games which looked great and made more sense than this ‘bit’. However looking at the preview video of Sayonara Wild Hearts, I felt like giving it a try just this one time for one day.

And so “the story begins” from the very first narration in the game I found myself in a whole new world of endless AWww! The game just took off and never stopped until I completed the first Level! The game didn’t even stop for loading. Also when the level completed it felt like Game was resting more than me! As literally my phone was on fire! Literally the performance(phone) was sweating to keep up with the beauty/graphics of the game.

Game and the music felt like they were made for each other. And on the other hand I am sure who ever was playing the game was having super fun.
Although I ranked Bronze and Silver On every level, I just wanted to see what the game had for me next. And never did I ever skipped the “bit”. Well the game will keep asking you if you wanted to skip the level “bit”. Truth be said I did do it the first time and then I super regretted it! And never did that again till the very end.

Levels in this game are really fun and complete. The game has 2d, 3d, 2.5d gameplays through out various levels. Which keeps this game very much connected to the players. The story narration also feels great till the very end. Mostly you will be filled with awesome music of the game ringing in your head till you finish the game and beyond!!

Sayonara wild hearts could be 1 game making you buy that Apple Arcade subscription. Just check out this whole and soul perfect game.
The game is available on Apple Arcade, Nintendo Switch, PS4.


Black is the new Apple White with iOS 13 New_bluecreazione

Black is the new Apple White with iOS 13

With the new OS finally out after a year, iOS 13 definitely feels straight out new. Even though it has the same Icons layout, same Dock, same Settings etc. iPhone feels new only because of a new feature, “Dark Mode”.

It has been seen coming ever since Mac OS got the Dark Mode. Everyone wanted to see the same White changing feeling on iPhones and iPads.

With the new release of iPhone 11 series, came in the new IOS 13. Perfect companion for an iPhone or iPad, iOS and iPadOS 13 feels great.

The speed of unlocking has been definitely increased. Visual increase in app opening speed makes iOS devices even snappier. When I say iOS devices, its literally all the iOS 13 supported devices which have got all these speed bump, Apple Arcade and Dark Mode.

Apple Arcade is yet another awesome feature by Apple. Although you would wonder that already iOS games were great and sharp! But it just got all new Shinier with Apple Arcade. Apple Arcade will only showcase non In App Purchase, completely free to play games which had great gameplay and looked visually stunning. Apple Arcade comes with a month of free subscription and after that it comes to $4.99/Month.

Apple TV + has been released as well with the new iOS 13. It will stream great new shows. Its similar to Amazon Prime, Netflix and other streaming services. But there will be limited series and high quality content.

Download iOS 13 now. For more on iOS 13 check out Apple site below.

Cordova v5 Push notifications for IOS and Android 150 150 New_bluecreazione

Cordova v5 Push notifications for IOS and Android

Push notifications are very useful in the mobile applications and it is fast and efficient way to communicate directly with customers.

Push notifications are used to send real time updates,share important news and exciting offers to customers, To achieve the Cordova v5 Push notifications for iOS and Android, We used Firebase API which is provided by google.

There are different process of Push notifications for iOS and Android, we discuss it one by one.

The plugin used for Push Notifications for iOS and Android is “phonegap-plugin-push” and you have to run command in command prompt by cordova plugin add phonegap-plugin-push

Push Notifications for Android

To Recieve push notifications in Android, we need device Id or token of Android device and API_Server_Key

Here is the below code to get the device token or Id.

var devicetoken; 
document.addEventListener('DOMContentLoaded', function () {
   
    main();
    
    document.addEventListener('init', function(event) {
  
          var push = PushNotification.init({
            "android": {
                "senderID": "810340046523",
                 sound: "true",
                vibrate: "true",
                forceShow: "true"
            },
           
        push.on('registration', function(data) {
        
        devicetoken= data.registrationId;

        
  });
  push.on('error', function(e) {
    // e.message
});

By using above code we can get the device token or id from android device and Above senderID is mentioned in google.json file which is downloaded from Firebase.

To get the API_Server_Key, We need to Register the Android application into firebase by using app’s package name and after registering the app into the firebase we can get the API_server_key and legacy server_key from firebase.

By using this API_server_key, we need to put this into PHP code for cordova-Android Push notification which is as follows.

$path_to_firebase_cm = 'https://fcm.googleapis.com/fcm/send';   
 $fields = array(
        'registration_ids' => array($user_device_key),
        'priority' => 10,
        'notification' => array('title' => $_POST['notification_title'], 'body' =>$_POST['notification_text'] ,'sound'=>'Default','image'=>'Notification Image' ),
    );
    $headers = array(
        'Authorization:key=' .'API_server_key',
        'Content-Type:application/json'
    );  

    // Open connection  
    $ch = curl_init(); 
    // Set the url, number of POST vars, POST data
    curl_setopt($ch, CURLOPT_URL, $path_to_firebase_cm); 
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
    // Execute post   
   $result = curl_exec($ch );
curl_close( $ch );
 //echo $result;
 $this->Flash->success(__('Notification sent to Android.'));
                  return $this->redirect(['action' => 'index']);

After Putting the above php code and entering the API_server_key, You are able to send the push notification for android by using Cordova v5.

Push Notifications for iOS

To receive the push notification in ios by using cordova v5, we need to register the iOS app into the firebase console by putting the Bundle Id of iOS app and after that we can download the googleinfo.plist file which can be placed in root folder of app.

We also need the Authentication key in iOS which is not needed in Android, To get the Authentication key and Team_id, We need to follow some steps which are as follows.

1.In Apple developer account,go to Certificates, Identifiers & Profiles, and under Keys, select All.

2. Click the Add button (+) in the upper-right corner.

3. Enter a description for the APNs Auth Key

4. Under Key Services, select the APNs checkbox, and click Continue.

5. Click Confirm and then Download. Save your key in a secure place. This is a one-time download, and the key cannot be retrieved later.

After getting the APN_Authentication_key, We need to put it into iOS application in firebase console under APNs Authentication Key.

We also need to create Provisioning profile and upload it into firebase console, To create this we need to follow some steps which are as follows.

  1. Navigate to the Apple Developer Member Center and sign in.
  2. Navigate to Certificates, Identifiers and Profiles.
  3.  the drop down menu on the top left corner, select iOS, tvOS, watchOS if it’s not already selected, then navigate to Provisioning Profiles > All.
  4. Click the + button to create a new Provisioning Profile.
  5. Select iOS App Development as provisioning profile type, then click Continue.
  6. In the drop down menu, select the App ID you want to use, then click Continue.
  7. Select the iOS Development certificate of the App ID you have chosen in the previous step, then click Continue.
  8. Select the iOS devices that you want to include in the Provisioning Profile, then click Continue. Make sure to select all the devices you want to use for your testing.
  9. Input a name for this provisioning profile (e.g. Firebase Sample App Development Profile), then click Generate.
  10. Click Download to save the Provisioning Profile to your Mac.
  11. Double-click the Provisioning Profile file to install it

By following above steps we can get the Provisioning  profile, we need to upload this profile into fireabase console and we also need to enable the Apple Push notification service in the Xcode.

After Following above all steps now we need to get the device token of iOS device, we can get it by using following code.

var devicetoken;
document.addEventListener('init', function(event) {
  
          var push = PushNotification.init({
           
            "ios": {"alert": "true", "badge": "true", "sound": "true"}, 
            "windows": {} 
        });
        push.on('registration', function(data) {
        
        devicetoken= data.registrationId;
      
        
  });
  push.on('error', function(e) {
    // e.message
});

Since we already registered our iOS app into firebase console, So we can easily get API_server_key in the Project settings and we use this ApI_server_key into the below PHP code.

define( 'API_ACCESS_KEY', 'Your API_server_key' );
$registrationIds = array($user_device_key );
// prep the bundle
$msg = array(
        'body'  => $_POST['notification_text'],
        'title'     => $_POST['notification_title'],
        'vibrate'   => 1,
        'sound'     => 'Default',
    );
$fields = array(
            'registration_ids'  => $registrationIds,
            'notification'      => $msg
        );

$headers = array(
            'Authorization: key=' . API_ACCESS_KEY,
            'Content-Type: application/json'
        );

$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send' );
curl_setopt( $ch,CURLOPT_POST, true );
curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers );
curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch );
curl_close( $ch );
//echo $result;
$this->Flash->success(__('Notification sent to iOS.'));
                 return $this->redirect(['action' => 'index']);
}

After Putting the API_server_key into the above code,Now we are able to send push notifications into iOS App.

So By following above steps for Android and iOS we are able to send the Push notifications by using Cordova V5.

Reference Links:

https://firebase.google.com/docs/cloud-messaging/ios/client

https://console.firebase.google.com/

https://firebase.google.com/docs/android/setup

Dragon Little Fighters 2 – Heroes Reveal New_bluecreazione

Dragon Little Fighters 2 – Heroes Reveal

Releasing soon in November. These are the main Playable heroes in your team. They have got each other’s back in times of grave danger!! Stay tuned for more updates on Dragon Little Fighters 2. Click below to follow this game on Facebook.

iPhone 11, iPhone 11 Pro And iPhone 11 Pro Max Released New_bluecreazione

iPhone 11, iPhone 11 Pro And iPhone 11 Pro Max Released

Finally the wait is over!!! Apple recently launched three new iPhones this year which are iPhone 11,iPhone 11 Pro and iPhone 11 Pro Max.

Here’s what you get from new iPhones as you try to decide which iphone fits your needs, lets discuss features,specifications, camera and price of these three iPhones

iPhone 11

iPhone 11 is the updated version of iPhone XR and it comes with 6.1 inch Liquid Retina HD display with 1792*828 resolution, it has latest ios version which is iOS 13 with Apple 13 Bionic Chipset, iPhone 11 has three storage options which are 64 GB,256 GB and 512 GB and all comes with 4 GB RAM.

The most important features of iPhones is their Camera quality and in the new iPhone 11, it has two rear cameras which is equipped with 12-MP wide lens(f/1.8) and 12-MP ultra wide (f/2.4) and Front camera comes with 12-MP(f/2.2) lens.

Battery life of new iPhone 11 is hour last longer that iPhone XR and it is also water resistant(IP68, 2 meters upto 30 minutes).

Color option of iPhone 11 are Black, Green, Yellow, Purple, White, Product Red.

Price of iPhone 11 starts with $699.

As compared to iPhone XR, there is lot to love about the iPhone 11 at first glance, Camera quality,Batter life and design makes it better as compared to iPhone XR.

iPhone 11 Pro

iPhone 11 Pro is the updated version of iPhone XS and it comes with 5.8 inch Super Retina XDR display with 2436*1125 resolution, it has latest ios version which is iOS 13 with Apple 13 Bionic Chipset, iPhone 11 Pro has three storage options which are 64 GB,256 GB and 512 GB and all comes with 4 GB RAM.

The major change in iPhone 11 Pro as compared to other iPhones is that, it has 3 rear cameras which is equipped with 12-MP wide lens(f/1.8), 12-MP ultra wide (f/2.4) 12-MP telephon (f/2.0) and Front camera comes with 12-MP(f/2.2) lens.

Battery life of new iPhone 11 Pro is 4 hour last longer that iPhone XS and it is also water resistant(IP68, 4 meters upto 30 minutes).

Color option of iPhone 11 Pro are Gold, Space Gray, Silver Midnight Green.

Price of iPhone 11 Pro starts with $999.

As compared to iPhone XS,iPhone 11 pro is much better, firstly three rear cameras make it already a winner and battery life is 4 hour longer and also display is also better as compared to iPhone XS

iPhone 11 Pro Max

The most awaited iPhone of this year is iPhone 11 Pro Max and it is updated version of iPhone XS Max, lets discuss the speces,features of iPhone 11 Pro Max and check it’s up to the expectations or not?

iPhone 11 Pro Max is the updated version of iPhone XS Max and it comes with 6.5 inch Super Retina XDR display with 2688*1242 resolution, it has latest ios version which is iOS 13 with Apple 13 Bionic Chipset, iPhone 11 Pro Max has three storage options which are 64 GB,256 GB and 512 GB.

As compared to iPhone 11 Pro,it also has 3 rear cameras which is equipped with 12-MP wide lens(f/1.8), 12-MP ultra wide (f/2.4) 12-MP telephon (f/2.0) and Front camera comes with 12-MP(f/2.2) lens.

Battery life of new iPhone 11 Pro Max is 5 hour last longer that iPhone XS Max and it is also water resistant(IP68, 4 meters upto 30 minutes).

Color option of iPhone 11 Pro Max are Gold, Space Gray, Silver Midnight Green.

Price of iPhone 11 Pro Max starts with $1099.

The major disadvantage of above three iPhones is that they are not Supported 5G network, Ohterwise in terms of Camera Quality, Build, Display and Battery life, these Phones are far better than their previous iPhone models.

Jenkins 237 219 New_bluecreazione

Jenkins

I come across the Jenkins when i worked on Selenium webdriver(Test Automation tool) and i am looking for tool which provides continuous integration and continuous deployment tool and i heard about jenkins,and after learning about it, I come to know that Jenkins is the best tool for CI/CD integration and it can be used while developing the software,you can use it for testing continuous project builds and logs the error and Jenkins is mainly used for building,testing and deploying the software.

There are soo many features of Jenkins, Some of them are as follows.

  1. Jenkins is open source and free and it is entirely written in java.
  2. It supports various plugins and user can also install the external plugins in the plugin section of jenkins.
  3. Jenkins can be integrate with most of the build and testing tools like Selenium,Maven.GIT.
  4. IT is very ease to use and most of the functionality are present in the dashboard itself.
  5. IT is server based tool and it works on Apache tomcat server and installation process of jenkins is also very easy.

The current version of Jenkins is 2.176 and version i used earlier was 2.138.

As my point of view, Jenkins is widely used build and release tool and most of the companies are using this tool for continuous integration/continouos deployment and i would recommend this tool for whom, who wants to test continuous build of the software and want to resolve the error in the early stage of development and after successive build and test,it can also be used for deployment of software.

Since Jenkins have so many important features as i discussed above but there are some negative points which are as below.

  1. Tracking and accountability problems with the pushed code from Git.
  2. Jenkins doesn’t provide any analytics (there are plugins but they are not enough) on the end-to-end deployment cycle. 

Download this now

Legend of Zelda: Breath of the wild New_bluecreazione

Legend of Zelda: Breath of the wild

Game is a masterpiece, just so perfect to play on Nintendo Switch!

Inquest

I have always looked up to Link as one of the strongest Anime character in games. All the earlier Zelda games have been super fun. They all have been unique in their own way. But this one takes the game to completely another level. It felt like Nintendo broke through their traditional shell of Puzzle oriented games to a whole new tradition of visually fantastically beautiful game. I came across this game along side Nintendo Switch. I am pretty much sure every Switch they sold has this Zelda game on it.

The reason I call it a masterpiece is because of the Top Quality graphics on a Hand Held gaming console. The graphics and the quality of shaders rival to all the major consoles like PS4 and XBox One. The graphics are just the right amount of cartoonish for every age group to feel the gameplay.

Downloadable Content

Gameplay is so fun that you will keep playing the game all day without feeling bored! So much to do in the open world that Nintendo created. The monsters are huge. Link looks like a real Hero every time he is fighting them. Story gives you a sense of eagerness and excitement to reach the end of it.

The most exciting thing in the whole game was the Bike which you get! It’s just so amazing to roam around the open world. And yes bike also run on fuel. So every time you use it you will be reminded to refuel.

A fan or not, if you are in for some serious gaming then definitely go for this game. Buy a Switch only to play this game! As of now you can also play it on Nintendo Switch Lite!

Official gameplay by Nintendo! Courtesy Nintendo