Wednesday, 13 July 2016

Blackberry OS 10 Application fail to start


Most times blackberry OS 10 application usually have this problem of failing to start and some time it my start or launch but will only display a blank screen.

This failing to start error is commonly found when the application is an apk file or application .
To fix this the issue is simple just make sure you update the blackberry OS 10 to the latest version and then the problem will be fix.

Alternative way to power up blackberry OS10 like q10,q5,z10,z30

I had this issue with my blackberry some time ago, whereby the power button of my blackberry q10 just malfunctioned and I needed to get some work done before taking it to a technician to get it fix.

I know some q10, q5, z10 users will experience this same issues, I was able to solve by
Getting a usb and a computer

Plug the usb into the blackberry phone
Wait for it to power on.
If it doesn’t, remove the battery and put It back while still plug.

How to solve Call to undefined method Illuminate\Database\Query\Builder::links()


When building pagination in laravel it is more likely to come across this error call to undefined method. This happen when trying to get other record in the variable.

This problem is cause when a variable that was passed from controller or route is re-generated by foreach statement. To avoid this error, make sure the re-generated variable name by foreach statement is different from the original variable.

And when using the links(), used it with the original variable not the re-generated variable by the foreach statement. For instance,

Assuming $record is our original variable,

@foreach($record as records) // when trying to get other records in the variable.

//display the records

@endforeach

<div class="pagination">{!!$record->links()!!}</div> // display pagination

Take note that this variable “$record”  is different from “$records”. The first is the original variable while the latter is the regenerated variable and we used the original for the pagination

Sunday, 26 June 2016

C++ Program to Calculate Sort Numbers into Ascending Order

This section helps to create a program that will actually help to sort ten numbers into ascending Order regardless of the kind of numbers inputed by users.
Here is the script.


#include <iostream>
using namespace std;
int main()
{
    int num[10],a,b,c;
    cout <<"INPUT NUMBERS" << endl;
    for(int enter=0; enter<10; enter++) {
            cin >> num [enter];
    }
for(a=0; a<10-1; a++)    
{
for(b=a+1; b<10; b++){
 if(num[a]>num[b]){
 c=num[a];
num[a]=num[b];
num[b]=c;
         }                    
 cout <<"HERE IS THE NUMBER IN ASCENDING ORDER   " << endl;

}}
for (a=0; a<10; a++)
    cout<< num[a]<< endl;
   return 0;
}
   
This    int num[10],a,b,c; will create an array capable of storing ten numbers into the num variable, along side with a,b,c which are just normal variable for c++.
This    for(int enter=0; enter<10; enter++) {cin >> num [enter];} will loop ten times to collect ten numbers from keyboard and store it in the num array. 
The second and third for loop work together, that is when the FIRST FOR LOOP loop once, the SECOND FOR LOOP will loop 10 times, also when the FIRST FOR LOOP Loop the second time, the SECOND FOR LOOP will loop another 10 time.  
The SECOND FOR LOOP use if(num[a]>num[b]){c=num[a]; num[a]=num[b]; num[b]=c;} by comparing each element or numbers in the array with the IF STATEMENT and swapping bigger number with  smaller number. Accessing the array element and swapping it is possible because it uses the number of times the for loop provide as a means to access the index of the array.
The FOUTH FOR LOOP access the sorted array index with the number the loop provide and print out their values.

Wednesday, 18 May 2016

Whatsapp Desktop App is Now Available



Whatsapp announced that it user will now be able to use whatsapp features in a native desktop app. This native app will be available for modern version of OS of Window 8 and above and mac running OSX 10.9 and above.

Although Whatsapp Web is still available to both OS regardless of Version.

To start using this Application is very simple. First, Visit whatsapp.com/download with your browser, download and open the pertinent app, scan the QR code with the whatsapp Application of Your Mobile Phone.

If you are stuck on how to scan the QR code, go to setting > Whatsapp Web.  This deskop application is the same with the mobile what but the little different I see is that it has a customized notification, better keyboard shortcut etc.
Desktop whatsapp

How to setup Laravel On Windows

This tutorial will guide you on how to install laravel framework on local server. We are going to use xampp server for the sake of this tutorial. But if you follow this tutorial, same step can be applied to other Local Server like Wamp.

Requirement
Xampp download here

Composer Download Here

PHP 5.4 +

Download and install Xampp and ensure it is up and running. Go to Command Line type composer to make sure the composer is up and running. Also type PHP in your Command Line then check if the PHP version is 5.4+.

On the Command Line Interface, Browse to xampp\htdocs Directory. This is where the Laravel Project wwill be stored because we are using xampp. To Browse to a Directory or Folder, type cd\xampp\htdocs\laravel_project_name.

In the Command Line we will now download  Laravel Framework Project  using composer. simply type composer global require "laravel/installer=~1.1" and laravel my_project

Or run composer create-project laravel/laravel –prefer-dist  that command is also used to create a laravel project.

The above guide will help you to install laravel on windows if you have any problem installing or setting it up please put it on the comment box.

Thursday, 7 January 2016

How to install Drupal 8 theme

 Before getting started, ensure that the normal installation process is already settled. All the manipulation of Drupal theme are located by clicking
                Appearance à Theme.
This center is where all Drupal theme manipulation like “set as default”, “delete” are quietly carried out and where all installed themes are displayed.
How to install new Drupal theme
Here comes the main business. Go to https://www.drupal.org/project/project_theme it contain thousands of Drupal beautiful themes that are available for free. Simply select version 8 theme to avoid compatibility conflict, download as .taz.gz file or zip. When  download is successful, carefully follow the method below to install.
Method one
                Open the downloaded theme, unzip or extract into theme folder in Drupal Directory. 
Drupal website > theme.
Method two
                Log into Drupal website as administrator
                Click appearance à Theme à
                Click “install new theme”
                Use file field to browse the extracted theme folder
                Click upload button to install the new theme.
Follow up the upcoming setup wizard that may come up to completely setup the Drupal theme on your website.