Tuesday, 29 November 2016

How to solve computer connected to wifi but cannot browse

Is your computer connected to wifi that provide internet access and your computer cannot browse with the internet services provided by the wifi? In this case , there are many issues that is making a computer connected to wifi unable to browse.
Before providing solution to this problem, make sure that internet service provided by the wifi is working correctly by testing it with another computer or mobile device just to make sure that the problem is not from the wifi provider.
After the computer is connected to wifi, make sure that you are not testing the internet connection with just one browser. Test with two to three browsers to ascertain if the same problem occur.
Also make sure that you are connected to the right wireless Router.
If the wifi services provided by computer follow this tutorial to make sure that wireless provider is not causing the problem.
TRY THIS STEP TO SOLVE BROWSER CANT BROWSE
METHOD ONE.
Go to command prompt (click start > type cmd > enter)
Type this commands (ipconfig/renew) and (ipconfig/all) and (ipconfig/flushdns)
Type those command without adding bracket
Restart the computer, connect and browse. Or check method two

METHOD TWO
Go to control Panel
Click Network and Sharing  Center
Click  Change adapter settings (At the right Navigation Bar)
Right click on the Name of the WiFi the computer is connected to.
Select Properties
Click Internet  Protocols Versions 4 (TCP/ITv4)
Select (Obtain IP  address automatically) and (Obtain DNS server address  automatically)

METHOD THREE
Go to control Panel
Click Network and Sharing  Center
Click  Change adapter settings (At the right Navigation Bar)
Right click on the Name of the WiFi the computer is connected to.
Click Status
Click Diagnose

Saturday, 15 October 2016

Creating And Retrieving Laravel Cookies In controller

Creating  cookies using controllers functions in laravel is pretty simple and straight forward. most times i like creating and getting cookies with oop functions than do it procedurally. 
First of it all, Create a controller using this artisan command
"php artisan make:controller myCookie" without quote.
then, make sure the namespace and packages are similar to the below script.

<?php
namespace App\Http\Controllers;
use App\Http\Requests;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use App\Http\Controllers\Controller;
class posting extends Controller
{

}

to create a cookies with controller, create a functions like this

public function createCookie(Request $response, $key)
    {
return Cookie::queue('country',$key);
}

you can change the function name, the cookies name as well. be aware the first parameter allow to create the cookies, while the $key parameter is the value that will be stored by cookies.
to get a cookies create function like the script below.

public function getCookie(Request $request)
{
    return $request->cookie('country');
}
you can also change the function name and cookies name as well.
if you are familiar with oop and also knows how to call functions to perform their individual task the rest is simple as calling the createCookies and getCookies functions. 

lets assume we want to call the laravel cookies functions to create their own indivicual task. the below script demonstrate it. 

public function index(Request $request){
$val  = ‘Ehis’;
  $c = $this->createCookie($request, $val);
  Return $cp = $this->getCookie();
}

the above index function call on individual functions to do their jobs based on oop way. to check the workabilty of the above script, you should know how to route to a function, you need to route to index functions to return the cookies values, or you can pass the value to views. 



Wednesday, 5 October 2016

how to encrypt facebook messages

how to encrypt facebook messages

encryption on facebook is a new feature that allows facebook users to secure or bide tbeir messages from hackers and facebook itself. with this you can have a secrete conversation with friends.
step to enable facebook messages encription
1.open facebook messenger and make sure you are in the homescreen.
2.   click compose messages in button on top right
3. click the secrete button in the top right
4. select facebook friend you want to have a secrete conversation with

5. select your phone as the default devices to be used for this encryption - but you can set other platform for this encryption
6. set timer on messages for termination.

Saturday, 24 September 2016

What is Google Allo - What can it do

Allo is an instant messenger created by Google that allows you to have a smart conversation with Google itself, your friends and family.  It support a smart conversation assistant that you can actually have a conversation with or seek information from just like when chatting with you friends.

Google Allo can be install on iPhone, Android and other devices respectively but it does not support tablet, desktop because it uses your phone number for verification and signup.

Allo has this features of adjusting the text sizes when typing, you can access it by clicking the little icon at the right size of the text box to reduce or increase.

It support lots of good stickers too which can be downloaded right inside the application for your own personal use.

Did you know what? When uploading and sending pictures with Allo, it gives you the opportunity to write on the images using handwriting.

When you sent a message with Allo, immediately it show white meaning ‘sent’  green means receive and green with double arrow means the messages has been read.

Most of the data you have on Google Allo are all store on Google drive but you can option  out of it and encrypt your messages with end to end encryption.

Google Allo also let you set the expiration time for your chat also help with smart auto suggestion that give next word that may fit into the sentence you are typing.

Your need to download Allo today. Personally speaking this app is amazing could this be a substitution of others instant messenger?.

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