How to install Photo app in windows 10

For fixing some issue and removing unneccesary application we remove application from our system. Now we will learn about re install or installing an application using command prompt.

Please follow the below steps to know how to install Photo App in Windows 10:
1) Close the Photos app if you currently have it open
2) In the the Cortana/Search Windows box type powershell
3) Click on ‘Windows PowerShell’ when it appears – right click on it and choose ‘Run as Administrator’
4) In the PowerShell window enter the following command (tip: copy and paste will save mistakes.

Get-AppxPackage -allusers Microsoft.Windows.Photos | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}


First, run the following command to get the Package ID of Photos App and then use it in the 2nd command below:

Get-AppxPackage Microsoft.Windows.Photos -allusers | select PackageFullNam


Note down the Package name shown. For example, if the Package name is listed as Microsoft.Windows.Photos_16.302.8200.0_x64__8wekyb3d8bbwe, execute the next command as follows:

Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.Windows.Photos_16.302.8200.0_x64__8wekyb3d8bbwe\AppxManifest.xml" -DisableDevelopmentMode

This reinstalls the Photos App.
Another option to install Photos is to download it from Windows Store.
Open Windows Store from Start/Search.
In the Store App, search for Microsoft Photos and install it.
Read more

How to uninstall Photo app in Windows 10

In some case we need to uninstall any system application package from windows. To remove this application we need to go Apps & Features from settings. But this uninstall button disabled and can not uninstall this software at all.

Sometime we face error whenever we want to update system application and it return an error code again and again. For this issue fixing we need to uninstall this application and reinstall it again.

Today we will be learn how to uninstall windows system application package.

I will be glad to help you with the issue you have with the computer. I understand the frustration when things don't work the way it should.
Please follow the below steps to know how to uninstall Photo App in Windows 10:
1) Close the Photos app if you currently have it open
2) In the the Cortana/Search Windows box type powershell
3) Click on ‘Windows PowerShell’ when it appears – right click on it and choose ‘Run as Administrator’
4) In the PowerShell window enter the following command (tip: copy and paste will save mistakes.
Get-AppxPackage *photo* | Remove-AppxPackage
A ‘Deployment operation progress …’ message will temporarily appear. When this goes the uninstall has finished.

You can use any package name to uninstall any application like as below. It's recommend to replace package name from "Mictosoft.Windows.Photos" to your desire package name.

get-appxpackage -allusers *Microsoft.Windows.Photos* | remove-appxpackage
The Photos app will now be gone and the Windows Photo Viewer will now be used to open your images.

Install application package in windows 10 again. Run this command again in Windows PowerShell

Add-AppxPackage -register appxmanifest.xml_file_path -DisableDevelopmentMode

Need to reinstall an application without uninstall and reinstall run this command inside power shell

Add-AppxPackage -register "C:\Program Files\WindowsApps\PackageFullName\appxmanifest.xml" -DisableDevelopmentMode

If this command not work insert this following command to reinstall all default app again

Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}

To have complete guide about install Photo app in Windows 10 click for go...

Hope this information is helpful. Please post in case you have any further issues, we are happy to help you further.
Thank you.
Read more

Gitlab push failed for Permission denied (publickey) fixing

Create a project inside gitlab and push from local pc file is a simple way before some a days. But  now some security reason held and make extra protection to submit project data in git repository.
I already faced this problem and googling a lot for solution. In this case I always try to have solution from gitlab.com or some authorized website. The process is most complex and tough. After all i follow most of them and why and how this process working can not understand at all.

I am now going to represent process of fixing this issue. First of all I make this step by step for batter understanding.


  1. Go to "Git Bash" just like cmd. Right click and "Run as Administrator". 
Read more

After installation Visual Studio can not run and show error fixing

I am using windows 10 with latest update of January, 2020. I start to learn c# and ASP.NET. I have install latest version of visual studio and select my required feature on installation time. It finish installation without any error notification and require a restart to complete installation process.

I restart and nothing happened in visual and also in task manager. I try to run visual studio from start but there have no search result about this. It make me surprise. I can detect there have something in my C: drive which take about 8 GB of storage. I search a lot and find out exact file location to run.



C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\devenv.exe

I double click to open and fail notification pop up in my screen.


I simply go to this provided log directory and open log to know about the error. Almost in the bottom I can find out Failed to initialize Registry Root Hive massage. I search a lot and find out many people facing problem in Visual studio but most of them are same but not exact.

I try to apply every method which i found in googling. After all i can found a solution which solve my issue and that is from Visual studio developer community. Here Ernie revealed a method which are given below.



C:\Users\[user]\AppData\Local\Microsoft\VisualStudio\16.0_[something]\vspcm & privateregistry

I applied this and now working everything without any error.
Read more

How to disable mySql strict mode

This is enabled by default, but you can disable it in one of a couple ways. First, verify which mode(s) MYSQL is running with:
$ mysql -u root -p -e "SHOW VARIABLES LIKE 'sql_mode';"
You'll need to replace root with whatever username has superuser permissions on your server (but, it's usually just root). You'll also be prompted for the password. This will print out something like this (but much prettier):
                sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,
NO_ZERO_IN_DATE,NO_ZERO_DATE, ERROR_FOR_DIVISION_BY_ZERO,
NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
Full documentation for setting MySQL modes is available on the Server SQL Modes page in the MySQL Documentation. A description of all of the modes is also available on that page.

1. To Disable Strict Mode via SQL:

You can disable strict mode on your MySQL server by running the following command on your Linode's command line:
$ mysql -u root -p -e "SET GLOBAL sql_mode = 'NO_ENGINE_SUBSTITUTION';" 
You can set other values for sql_mode as well. See sysvar sql_mode in the MySQL Documentation for a list. Then, you can verify that the mode is set by running the following:
$ mysql -u root -p -e "SELECT @@GLOBAL.sql_mode;"
or

2. Disable Strict Mode via my.cnf:

Disable it by setting your own SQL_MODE in the my.cnf file, then restart MySQL. The my.cnf file can be found in one of a few locations (depending on which distribution you're using). The most common locations are /etc/my.cnf and /etc/mysql/my.cnf. Inside my.cnf, look for a heading like [mysqld] and then look for the value of sql_mode. It might look like this (the actual value of sql_mode may vary):
          sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
You can change the value of sql_mode to NO_ENGINE_SUBSTITUTION to completely disable strict mode, but you may want to look up each mode that is configured before disabling it. If sql_mode isn't set, you can add it under the [mysqld] heading, then save the file, and restart MySQL.
Read more

How to Change The Color of Address Bar in Mobile Browser

Do you want to change the color of your site address bar in mobile? Many popular sites and blogs are using this tricks to change the color of address bar so that in a mobile browser, it looks like a mobile app. In this post, we share some best method to apply this technique to your blog and website.

Designing and color combination is also the most important part of a blog or website to success. Address bar color convert website into native app designs. It does not have any significance but makes your blog eye-catching.

Want to Change the Address Bar Color, Why?


In the present scenario, almost all the wordpress websites are mobile responsive and when we open these mobile responsive websites in the mobile browser, it looks awesome but waits, these still look like a website.

Therefor chrome and other popular web browsers (not all) give the option to change the color of address bar so that it appears like the native mobile app. take the image below to understand it in a better way.

Step to Change Address Bar Color Using Meta Tag


In this method, you need to put a snippet of code in your site HEAD section. Copy the code given below and paste it into the <head></head> section of your theme.

Don’t edit directly your theme files (in wordpress, header.php where you will find <head></head> section). To accomplish this task, install Insert Header and Footer wordpress plugin. Just copy the code from below and paste in plugin head editor and hit save. The main benefit of this plugin is, whenever you change your wordpress theme, this code will never disappear.

For Chrome, Firefox And Opera



<meta name=”theme-color” content=”Hex Color Code” />


for example,



<meta name="theme-color" content="#00e7d9" />


Put your hex color code in the ‘content’ section of the code snippet.

For Windows Phone



<meta name="msapplication-navbutton-color" content="#00e7d9">


For IOS Safari



<meta name="apple-mobile-web-app-capable" content="yes">




<meta name="apple-mobile-web-app-status-bar-style" content="#00e7d9">


Now with these code snippet, you are capable to change the address bar color in the mobile browser and make it looks like the native app.

Read more

Make Wordpress theme copy protected


There have many process to prevent copy of Wordpress theme. Some are using licensing system to activate and some have no enough tracking system. Today we sill discuss a little trick about this. For security reason and make site 100% sure to run you need to cPanel login. For expert person it can be done without cPanel login but sensitive. If any unexpected text input here you must resolve from cPanel file manager.

Lets start. First of all we think an example given below.
Domain name: http://sokriyo.com
Theme name: templateOne
Theme folder: public_html/wp-content/themes/templateOne
Focus file:  public_html/wp-content/themes/templateOne/function.php

Code modification:
In below code sample we can notice that "sokriyo.com" is present in line number two. Replace this word with your allow domain name. If this domain not match with current site url it will show error message and not load site at all.

Now we will edit this file. From the beginning of file we can see "<?php"
after this line we need to add some code according to bellow code sample.


/**********************************************************************/
if (strpos(get_site_url(), 'sokriyo.com') <= 0){
echo "<title>Contact SOKRIYO</title><h1 style='position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%)'>Theme is corupted. Never try to copy this theme.</h1>";
exit();
}

Warning:
Take a backup of function.php file to safety. Before save be sure about your current domain name match with replaced word form code. If error message show in visit site you need to modify this code properly to replace domain name again and save before try again. If fail again and again it can be say that is not for you. Please remove inserted line and restore this file as previous and stay like as previous.
Read more

Delete old windows folder from C or other drive

Open a Command Prompt with administrative privileges.
Run the following commands line by line, but in doing so, change "Z:\Program Files" to whatever you actually want to delete.

takeown /F "Z:\Program Files" /A /R /D Y
icacls "Z:\Program Files" /T /grant administrators:F
rmdir /s /q "Z:\Program Files"
Read more
pop uo

not

pop
Read more

How to insert Cascade Style Sheet [CSS] code into HTML page

There are some way and some sector to use CSS . CSS mean Cascade Style Sheet. It help to design with colour, size, location and position.

To insert a separate CSS file you should follow the below rolls:






<link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" />





To embed CSS into the HTML follow the below instruction:






<style media="screen" type="text/css">
Add style rules here

</style>





Adding Inline CSS to HTML tags. For this follow the below tutorial:







<h2 style="color:red;background:black;">This is the red heading with a black background</h2>



Follow this way to import a CSS file from within CSS:


@import "newstyles.css";


It is the short only one code for use CSS. Stay with us to know more details.
Read more

How to add JavaScript into HTML page

Just open a HTML file with any html editor software or notepad. You can use Notepad ++ for batter result. JavaScripts in HTML must be inserted between <script> and </script> tags.

JavaScripts can be put in the <body> and in the <head> section of an HTML page. To insert a JavaScript into an HTML page, use the <script> tag.
The <script> and </script> tells where the JavaScript starts and ends.
The lines between the <script> and </script> contain the JavaScript from the below  box:




<html><head><title>My Page</title>
<script language="javascript" type="text/javascript">
function myFunction() {
          alert('Hello world');
}
</script>
</head>
<body>
<a href="javascript:myFunction();">Click here</a>
</body>
</html>


Since the head loads before the body, placing code in the head ensures that it is available when needed. For example, the following code will work once the page has completely loaded, but if a user manages to click the link before the function has loaded they will get an error. This can easily become an issue if the page is large or slow to load.

<html><head><title>My Page</title>

</head>
<body>
<a href="javascript:myFunction();">Click here</a>
<script language="javascript" type="text/javascript">
function myFunction() {
                alert('Hello world');
}
</script>
</body>
</html>

Note: JavaScript can cause problems when used in tables. It may help to use JavaScript to create the entire table, or at least whole rows.
Read more

Protect to block your Facebook id easily

It is sure now that all of us use Facebook (regular or irregular). Facebook is one of the largest social communication platform in the world. For maintenance and staying alone in the world it have some boundary and it call term and condition. As the rolls of Facebook suspend many person every hour for broken the rolls of user. Some one get permanently suspended from this social platform. Most of us had suspend at least one time. It is clearly on tell us in Licence agreement and term and condition. When any one open a new account in Facebook most of the time they left term and condition without reading and as a result they have no idea about term and condition.

Reason of Facebook id Block

Facebook is more strong with lots of subscriber and so they arrange for any user a friends book. So a strong subscriber have more friend in his or her friend book. For increasing friend subscriber invite another subscriber as friend. After accepting by invited subscriber both of them are mark as friend. By following this way anyone can make a long friend list. But it have also a bad effect. If invited person do not accept the friend request ant the non accepted request number touch fifty then Facebook want to checkup verification for confirm that the work is done by robots of not. After all this Facebook id turn into block list.

Solution of Facebook id Block

You can protect to block your Facebook id by controlling your friend request. When you request any person by pressing a button named as Request Friend, after request send this same button require to cancel friend request. But whenever left this page you cannot see the list of requested friend. After accepting you request a notification massage will show. But if not accept any notification never show.

There are some application to find out the list of requested friends and who are not accepted yet. It help to cancel the previous request.

Another best way is directly go to the below link and find out the list of requested friends. Easily any user can cancel the request by following this way. Just Click in to go to this link.

https://m.facebook.com/friends/requests/outgoing


Notice:
Before go to this link you should log in Facebook carefully.
Never use www and replace m. before facebook and then the upper link keep unchanged.

Read more

Graphical text design free generator online

After a long time I want to write in my blog. I am sorry for long break. Now I will give all of my friends a new experience for writing style and format with some deferment location like Facebook post and blog post.

It can increase your performance in the field of friends. Some demo are available for review in below.
╔══╗─────────╔╦╗─────╔╗╔╗
║╔═╬═╦╦╦═╦═╦╦╬╣╚╦═╗──║╚╣╠╗
║╚╗║╬║╔╣╬║╬║╔╣║║║╬║╔╗║╔╣═╣
╚══╩═╩╝╚═╬╗╠╝╚╩╩╩═╝╚╝╚═╩╩╝
─────────╚═╝──────────────
Read more
amar



ase
Read more

Multi tabs navigation widget generator free

Wishing good health for all of my friends. Web design is a sector of unlimited opportunity. Large sector but no matching and lots of element helping for build this. Malty table navigation widget is also a very impotent and nice structure for web page. It can show more than one pages into a single page. Sometime it use into page as sub page and a sub-menu bar stay with this. Lets try to do this.


You can use three way to use this widget.

  • With Java-Script;
  • With CSS themes script;
  • With html code.

Add widget with Java-script, CSS & Html

First of all Login your Blogger account.
Go to template option and backup your template.
Click to Template > Edit HTML > Wait for Process.
Now go to find option by pressing Ctrl + F.

Search the flowing code: </head>
Into the head tag or the immediately before this tag paste the html code from the box below.



<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js">
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js">
</script>
<script>
$(document).ready(function() {
$("#tabs").tabs();
});
</script>


Add CSS code theme for difrent style



<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/base/jquery-ui.css" type="text/css" />

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/black-tie/jquery-ui.css" type="text/css" />

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/blitzer/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/dark-hive/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/dot-luv/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/eggplant/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/excite-bike/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/flick/jquery-ui.css" type="text/css" />

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/hot-sneaks/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/le-frog/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/mint-choc/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/pepper-grinder/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/redmond/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/smoothness/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/south-street/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/start/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/sunny/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/swanky-purse/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/trontastic/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/ui-darkness/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/ui-lightness/jquery-ui.css" type="text/css" />


<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/themes/vader/jquery-ui.css" type="text/css" />


Add Html code for multi tab

Login your blogger account and go to Dashboard.
Go to Layout option and click to Add a Gadget button.

Now a pop-up window will show with some menu. Scroll down and find HTML/JavaScript option click to right side blue plus mark button.


Now copy the following JavaScript code from the below code box and past to the pop-up window ans click to Save button.

<!-- Tabbed Navigation Widget For Blogger By Come for Know -->


<div id="tabs">
<ul><li><a href="#tabs-1">Tab1</a></li><li><a href="#tabs-2">Tab2</a></li><li><a href="#tabs-3">Tab3</a></li></ul>

<div id="tabs-1">  Tab 1 content goes here  </div>
<div id="tabs-2">  Tab 2 content goes here  </div>
<div id="tabs-3">  Tab 3 content goes here  </div>

<a href="http://gorogriho.blogspot.com/" target="_blank" title="Come for Know"><img src="https://bitly.com/24workpng" alt="Come for Know" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a>
<a href="http://gorogriho.blogspot.com/" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a>
<a href="http://gorogriho.blogspot.com/" target="_blank" title="Free Backlinks"><img src="https://bitly.com/24workpng" alt="Free Backlinks" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a>
</div>
<!-- Tabbed Navigation Widget For Blogger By Come for Know -->


Customize Table bar yourself

Replace the following word to tabs title
tabs-1          to                 your first tab Title
tabs-2          to                 your second tab Title
tabs-3          to                 your third tab Title

Place tabs contain element


Tab 1 content goes here       Replace with first tab contain elements
Tab 2 content goes here       Replace with second tab contain elements
Tab 3 content goes here       Replace with third tab contain elements


 Auto Html code generate for multi tabs






Now easily replace the tab title and insert the tab elements into the box.
If any problem face, comments us for solution and help us.


Read more

Blog page navigation widget with page number

Have you a Blog site? If answer is no, you can make a blog website easily. For establish your blog as a success blogger you should follow the the way of best service for it's visitors. According to this way you can add page navigation button into your blog. It will notify your visitor about the past position and can run the post field easily. It can be in deference visual location. So you can chose the style and custom generate the navigation button. Go for custom generate the navigation button.

Every blog template have this widget by default. But the default page navigation menu are in simple format. In the same time it is most popular widget. No need to follow difficult process. Follow below instruction very easily.



How to setup this widget


First of all decide and chose the style from view preview. Now customize the text button of you can use default word for the button. That's mean "Prev" and "Next" button's name renamed. You can also defined the post number per page. According to this number your all post will be divide or organised into your blog. After all customization press the button Generate and a new button will be shown named as Add to Blogger. This button help you to quick add this widget into your blog. For farther customization press Default button.

Follow the same way to use related widget from the below pattern.



Number Page navigation widget


For any simply blog you can use this kind of blog navigation widget. You can depend with this for firster website load. It is a simply java script and html structure. If you want to get this widget follow below instruction and easily use this.


Customize Blog Navigation Widget

Follow the HTML code. Here two peramite are using and the are:
var postperpage=5                                 &                                         var numshowpage=3
You can change the value as your own. First peramite use for the post number per page and the second peramite use for the number of navigation button show for first navigation.

Solution for navigation bar

If this widget do not work properly follow the below instruction:

Find the following html code.

'data:label.url'

Now replace this code with the following html code below.

'data:label.url + &quot;?&amp;max-results=5&quot;'

This value 5 mean the post number per page. You can customize this as your mind.



For ferther information stay with us and any comment for any problem.


Read more
-->
ENTER URL OF YOUR WEBSITE

- hide pages with no link - hide duplicate sub-domains - hide nofollow backlinks - hide pages with no PR


Powered by Backlink Checker © - Dirgio SEO Tools
Copyright © 2011 By 24work @ 24work.blogspot.com
Read more

Animated live Clock widget generator for blog or website

Time and tide wait for none. It is true like you and I. We can not prove it as wrong. So time is most impenitent for us. Some nice clock are below for you. It can help you manage your valuable time. All are free and add free with your blog and website. Very simple installation and live demo are keep on below. Do not wait lets go for take this by following below instruction.




Read more

How to quick search serial key, file, site, word define, weather in Google

Wishing a good health of all my friends. Google is famous for his search engine. Million of people are using this per moment. We are not so fer from them. For search of find out any require, we depend on Google as blind. We are not blind, But the service of Google make us as blind for its non compatible service. Sometime it give us the perfect result in first time & several time it take a long time. It is not the problem of Google. This kind of problem live with us. Our search word and it's sentence type are most important to give perfect result. So lets go for know some trick for Google search. It can  save our time and increase our performance.

Software serial key in Google search

Now you can easily find out software serial key with the help of Google search. No need to wright long sentence or description. Just go to Google with this link www.google.com and type the keyword "94FBR" and press space button and wright down just the name of software like "Photoshop CS6".

Example:- 94FBR photoshop cs6

Now follow the serial number supplier site in front.

PDF or E-Book search from Google

One kind of file are download in huge number everyday. And this is PDF. It have another name E-Book. This is like book and it is favorite for all kind of learner or students. It can bear lessons and tutorials. For quick find PDF just go to Google and type this keyword "filetype:pdf" then press Space button and wright down your search query like "Photoshop CS6".

Example:- filetype:pdf photoshop cs6

Your search will show only related PDF files.

Description of any word from Google


According to same process you need to go Google for search. First time wright the following keyword "define" and space, now wright down your the word which description you need to know, like as "Photoshop".

Example:- define Photoshop

It will show all description about Photoshop.

Weather(Local) news in Google search

Go to the Google search and wright the keyword press space and your are of the location where weather status you want to know. You can use the District of Police Station name of  follow the below example.

Example:- weather Gazipur

Weather report of Gazipur District will show to you.

Search anything from a separate website by Google


Open Google search and wright this following keyword and the website URL without space. Example are below.

Example:- site:www.gorogriho.blogspot.com

Now you can see all post of this following website.


Are you know something like this? You can say to us by comments. Your suggestion will help us very much.
Read more

Free internet use with grameenphone 100% ok

Free Internet Brows is a eager search title now a days for mobile phone user. It is not only special for mobile phone but also PC user. Mobile phone is now one kind of 24 hours pertner. Free of cost internet are used by some of us. It is a process of hacking. But according to time change this system have changed in time. So old system are now rejected. Today I am publishing a system which are 100% working.

Simply follow the below instruction:
Go to Setup Device Configuration or Network Configuration from Setting.
Now click to Access Point Name.
Create New APN(Access Point Name.
Now setup Configuration by follow instruction.


Name                               : GP-MMS
APN(Access point name) : gpmms
Proxy Address                 : 10.128.001.002
Proxy Port                       : 8080

Now use internet by using any browser. Open any browser and type this web address : http://zacebook.com and go. After load this page you can follow a address bar into this page and type any address into this and brows unlimited.
As a MMS configuration your connection can be disconnect sequencing. For continue browsing and downloading you can use QC Browser new version.


For any information comment us. We want to count you as important person for batter reply.

Read more