TRENDING NOW

You have decided to secure your WordPress website by adding an SSL encryption.Learning how to move your website to HTTPS is an important issue. These days, we share sensitive data like credit card and bank information or login credentials dozens of times per day.

However, there’s a flipside. As a website owner – especially if you have an online shop and/or deal with financial or other sensitive information – you have a responsibility to keep it safe. One of the most important steps to do so is use HTTPS and SSL encryption on your site. That’s what we will talk about in this guide.


It’s time to move your site from http to https . You can do that by updating your site address under Settings > General.


Add https:// to the beginning of both the WordPress address and site address. Then update your settings by saving. Be aware that you might need to log in again afterward.




Why doesn't Youtube have a repeat button?
Many youtube users ask this question, so i bring you the solution,you can now Auto-Replay videos on YouTube. You don't need to change the link or create any Playlist anything like that to Replay the Video. You can Replay any Video Automatically on the YouTube by installing this extension.


Click me for link

If you upgraded from Revolution Slider v 5.2.x to v 5.3.0.1 or latter, you might have a problem finding the tool to center a text layer. I have searched all forums and finished with downgrading Revolution Slider to work as needed. I thought it is a bug and just waited for a new version. The same happened – I could not find the function.

However, even in this version there was no centering tool. So this probably is not a bug I thought to myself. They have moved this tool to a under a different menu item.
Would you imagine that?

So now you can find the dropdown to set the alignment of a text within a layer under “Style – Spaces”, which is a new item added in these latter versions of Revolution Slider.





You can bypass emulators and test apps on a phone, a tablet, or maybe an Android-enabled trash compactor. To do so, you have to prepare the device, prepare the development computer, and then hook the two together.

To test an app on a real Android device, follow these steps:test app on real device android studio

Set up your device

1-Plug in your device  with a USB cable.

2- Enable USB debugging.


Set up the app on Android Studio

1-Click on edit configurations
edit configuration


2-On "Target Device" check "USB device"
usb device


3-Now run the app

And voilà :D that's it



android studio usb device not found
usb device not detected

Volley is an HTTP library that makes networking for Android apps easier and most importantly, faster. Volley is available on GitHub.
Volley offers the following benefits:
  • Automatic scheduling of network requests.
  • Multiple concurrent network connections.
  • Transparent disk and memory response caching with standard HTTP cache coherence.
  • Support for request prioritization.
  • Cancellation request API. You can cancel a single request, or you can set blocks or scopes of requests to cancel.
  • Ease of customization, for example, for retry and backoff.
  • Strong ordering that makes it easy to correctly populate your UI with data fetched asynchronously from the network.
  • Debugging and tracing tools.

Volley excels at RPC-type operations used to populate a UI, such as fetching a page of search results as structured data. It integrates easily with any protocol and comes out of the box with support for raw strings, images, and JSON. By providing built-in support for the features you need, Volley frees you from writing boilerplate code and allows you to concentrate on the logic that is specific to your app


The easiest way to add volley library to android studio :

1-download git from here and install it: https://git-scm.com/download/win

2-Create a folder under C: and name it  downloadVolley

3-open Git CMD and write  cd c:\downloadVolley  and hit enter button


4-Write this line :  git clone https://android.googlesource.com/platform/frameworks/volley  and hit enter button.



4-When the download is completed open android studio .

5- Click [File] --> [New] -->[Import Module]   and select the library under "c:\downloadVolley".



6-Open build.gradle in your project and add the dependency: compile project(":volley").

and that's it :D


Import Android volley to Android Studio
include ':app', ':volley'
compile project(":volley")
include ':app', ':3rd_party:volley'
compile project(":3rd_party:volley")
Best way to incorporate Volley (or other library) into Android Studio project
apply plugin: 'android-library'
dependencies {compile 'com.mcxiaoke.volley:library-aar:1.0.0'}
Add Volley to An Android Studio Project