When I bought this Wireless network card it wasn't working in Ubuntu 14.10 with kernel 3.16. Then I have found patched driver here on GitHub that was tested with Fedora but I wasn't able to compile it on Ubuntu so I've decided to create this repository and provide working sources for Ubuntu users. The instructions were taken from this superuser thread. There's nothing more except for the need of having ethernet connection to install build dependencies.
Simply clone the repository, install build dependencies, compile sources, install compiled module and use modprobe to activate it.
$ sudo apt-get update
$ sudo apt-get upgrade -y
$ sudo apt-get install build-essential linux-headers-generic linux-headers-$(uname -r) -y
$ cd ~
$ git clone https://github.com/mareksuscak/asus-pce-n53-linux.git
$ cd asus-pce-n53-linux
$ sudo make
$ sudo make install
$ sudo modprobe rt5592sta
If everything worked well you should be able to connect to the Wireless network now.