Showing posts with label google. Show all posts
Showing posts with label google. Show all posts

Tuesday, June 6, 2017

Downloag Google Chrome 28 0 1500 95 Stable Offline Installer

Kali ini haramain software akan bagikan browser google chrome versi terbaru yaitu google chrome 28.0.1500.95 Stable Offline installer. Saya yakin sahabat haramain software sudah sangat tahu dengan browser yang bernama google chrome ini.
Google chrome adalah browser yang dipublikasikan oleh google dan termasuk salah satu dari 5 browser yang paling banyak digunakan didunia hingga saat ini dan saya yakin banyak dari sahabat haramain software juga menggunakan google chrome sebagai browsernya.
Jika sahabat haramain software adalah pengguna google chrome, silahkan sobat download versi terbarunya ini secara gratis dan juga sahabat tinggal download dan menginstallnya secara offline dan tidak perlu online untuk menginstallnya.

Screenshot :


Link Download :

Download Google Chrome 28.0.1500.95 Stable ( Direct Link 32 Mb )

Selamat mendownload google chrome ini dan semoga bermanfaat untuk sahabat haramain software. Untuk cara install, cukup download dan install secara offline.
Read more »

Monday, April 3, 2017

Dragon Ball Xenoverse 2015 English CODEX Full Google Drive


Platform: PC
Developer: DIMPS
Editor: BANDAI NAMCO Games
Genre: Action, Fighting
Released: 26 February 2015


DRAGON BALL XENOVERSE revives the most famous battles of the saga thanks to your personalized avatar, fighting with Trunks and many other characters. Will this partnership strong enough to intervene in the fighting and restore the timeline of Dragon Ball as we know it?The game features mysterious Tokitoki City, a new gameplay, character animation and many other amazing functions that will reveal soon!










Minimum Requirements:
Operating System: Windows XP (SP3) / Vista (SP1) / Windows 7 (SP1) 64 bits
Processor: Intel Core 2 Duo 2.4Ghz / AMD Athlon 64 X2 5200+, 2.6GHz
RAM: 2 Gb.
Free Space: 10 Gb.
Video Card: 512 Mb. Nvidia GeForce 8800 / ATI Radeon HD 3870
Recommended Requirements:
Operating System Windows XP (SP3) / Vista (SP1) / Windows 7 (SP1) 64 bits
Processor: Intel Core i3-530, 2.93 GHz / AMD Phenom II X4 940, 3.0GHz
RAM: 4 Gb.
Free Space: 10 Gb.
Video Card: 1 GB Nvidia GeForce GTX 550Ti / AMD Radeon HD 6790

File Format: Image File (.ISO)
Crack: Included in the image file, CODEX
Size: 8.75 GB
Password: fkmetal333
Server: Google Drive



1. Download all the parts from google drive
2. Extract and  Mount or burn the image file (.ISO) 
3. Install
4. Replace the contents of the "CODEX" folder in the installation directory of the game
5. Play! 





Read more »

Wednesday, March 11, 2015

Increased Security for Google Apps APIs with New OAuth Scopes

Google Apps APIs are not only designed to use open web standards, but also to be very secure and reliable. In our efforts to improve security, we launched OAuth support for many of the administrative APIs last September.

Among the many benefits of OAuth is the ability to provide access to Administrative APIs without exposing admin usernames or passwords. While the Provisioning API has featured OAuth support for some time, were excited to announce that developers now have even more control over access to the API. The Provisioning API now has four separate OAuth scopes - one each for the users, alias, organization units, and groups methods. For example, this means that developers can enable an application to have access scoped to only groups and not user data. For more information about the new scopes, please see the authorization section of the Provisioning API Developers Guide.


The previous Provisioning API scope is now deprecated, and new applications should reference these new, more granular and secure scopes. While the previous scope will still work for your existing scripts during the deprecation period, it will eventually not produce valid request tokens. We strongly encourage Google Apps developers to update your applications to take advantage of this security improvement.

Provisioning isnt the only Google Apps API with recent security improvements. Were also happy to announce that developers can now authorize use of the Reporting API via OAuth! Now Google Apps developers can start building secure automated reporting and dashboard applications without worrying about managing ClientLogin tokens.

Check out this article for more information about using OAuth with the Provisioning and Reporting APIs.

Want to weigh in on this topic? Discuss on Buzz

Read more »

Sunday, March 8, 2015

Using 2 legged OAuth with the Google Tasks API for Google Apps domain administrators

Since the launch of the Google Tasks API many Google Apps domain administrators have asked us how to use the API with 2-legged OAuth 1.0 (2LO) for authorization. The process for using 2LO with the Tasks API is slightly different compared to using it for the Google Calendar API or the Google Contacts APIs, which makes it a little tricky if you are already accustomed to working with those.
  1. Any use of the Tasks API needs to reference a project in the APIs Console, as the Console is used to manage API quotas and other application settings (such as IP filters).
  2. The Tasks API needs to be explicitly enabled for your domain OAuth key and secret.
Note: 2-legged OAuth via the method described in this post and referenced documentation is available for Google Apps for Business and Google Apps for Education administrators, but is not available for administrators of the Free edition.

Referencing an APIs Console Project

The Tasks API needs to know which APIs Console project is sending requests to the API (so quota can be deducted, filters can be checked, etc.). To supply this information, you need to specify the API Key of your project within each request to the Tasks API-- even when using 2LO. This is done by specifying the API Key in a key URL query parameter.

    e.g.: https://www.googleapis.com/tasks/v1/users/username/lists?key=<API_KEY>

The Java client library can do this for you automatically if you specify it after initializing the Tasks service:
// Initializing the Tasks API service
Tasks service = new Tasks("2-LO Tasks Test", httpTransport, jsonFactory);
service.accessKey = API_KEY;

Enabling the Tasks API for your domain OAuth key and secret

Also, before your API requests will be successful, you will need to change a few things in your OAuth Consumer Key and Secret configuration. In the Manage OAuth domain key page available in the Google Apps Control Panel (under advanced tools), you will need to make sure that the option Enable this consumer key is checked and the option saying Allow access to all APIs is unchecked. This may sound counterintuitive, but this option will give you access to a specific set of APIs and is necessary to access the Tasks API.

Setting up the domain OAuth consumer key and secret

Then you will need to specify which APIs you want your domain OAuth key and secret to have access to. You will be able to do this in the Manage third party OAuth Client access page where you will need to list manually all the scopes that your domain key will have access to. For example for your token to have access to the Google Calendar API and the Google Tasks API use:
    e.g.: https://www.google.com/calendar/feeds/, https://www.googleapis.com/auth/tasks

You should then be all set to use 2LO with your Google Apps domain key and secret.

For a more detailed and step-by-step explanation with code samples on how to use 2LO if you are a Google Apps domain admin, I invite you to have a look at the newly published article: Using 2-Legged OAuth with Google Tasks API for Google Apps domain administrators.



Nicolas Garnier profile | twitter | events

Nicolas joined Google’s Developer Relations in 2008. Since then hes worked on commerce oriented products such as Google Checkout and Google Base. Currently, he is working on Google Apps with a focus on the Google Calendar API, the Google Contacts API, and the Tasks API. Before joining Google, Nicolas worked at Airbus and at the French Space Agency where he built web applications for scientific researchers.


Want to weigh in on this topic? Discuss on Buzz
Read more »

Tuesday, February 3, 2015

How to Program Google Android

How to Program Google Android



<
LEARN TO PROGRAM
Read more »

Sunday, January 25, 2015

MyPhone A919 Hard Reset Hang Google Account Removal Pattern Lock

Before you proceed flashing / hard resetting your phone / tablet make sure to back up your important files if possible. Because we care about your data.

We also suggest that your battery should be atleast 50% or better to have it fully charge, lower than the said value may cause unwanted result, such as bricking your phone / tablet rendering it unuseable. This is very important in flashing your phone / tablet. Use original USB cable as possible.

Files that you downloaded should not be corrupted, if ever the file is corrupted you might brick your phone. Or the flashing will start.

Drivers are very important specially in Spreadtrum Chipset, having an Spreadtrum SPD6610 (non android devices) driver will not work in SPD6820 (android devices).

If you are using laptop to flash your phone, make your that it has enough charge. If your laptop shutdown when your flashing your phone/tablet, youll end up bricking your phone. Sometimes you can still recover your phone just flash it again and your phone will boot up again. But that is just a case to case basis, if your phone / tablet is deadboot (totally dead,  erased all program in the chip) you cant recover it, you will need to seek professional help (technician).


In this tutorial I will gonna teach you how to hard reset your MyPhone A919. This also works in MyPhone A818i, MyPhone Agua 2g/3g. I think this is universal in MyPhone, you can try this tutorial in your MyPhone also. This can fix the following issues that you are experiencing in your phone:

1. Force Close Apps
2. If you forgot your Google Account
3. Hang in Logo
4. Pattern Lock




Ok lets do it. Just follow the procedure


  1. Press volume up + volume down and power button simultaneously
  2. An android logo will appear
  3. Press home button the lights will dim
  4. Press volume down
  5. Android system recovery will display
  6. Navigate to wipe data/factory reset (volume down) to select press volume up
  7. Reboot your phone
  Thats it your phone is back in its original state.
 
Read more »