Javiervidal - javiervidal.net - Javier Vidal

Latest News:

Resuming scp after an interruption 28 Dec 2012 | 01:45 pm

It is not possible to make scp resume copying after an interrupted transmission. The good news is you can use rsync over SSH: rsync --rsh='ssh' -av --progress --partial source destination

How to change the disabled property in jQuery 11 Dec 2012 | 09:26 pm

If you are using jQuery 1.6 or greater, there is a simple way to change the disabled property in an input field: $("input").prop('disabled', true); $("input").prop('disabled', false);

Files that have been modified between two git branches 10 Dec 2012 | 08:51 pm

Before merging two branches that have been separated for a while, it is useful to know which files have been modified: $ git diff --name-status branch1..branch2

How to install PostgreSQL on Ubuntu 12.04 5 Dec 2012 | 02:16 pm

Update your system with this PPA (Personal Package Archives) so you can install an up-to-date version of PostgreSQL: $ sudo apt-get install python-software-properties $ sudo add-apt-repository ppa:pit...

How to install PostgreSQL in Ubuntu 12.04 5 Dec 2012 | 02:16 pm

Update your system with this PPA (Personal Package Archives) so you can install an up-to-date version of PostgreSQL: $ sudo apt-get install python-software-properties $ sudo add-apt-repository ppa:pit...

How to install express on Ubuntu 12.04 28 Nov 2012 | 03:06 pm

Express is a node.js web application framework. Before installing express we need to install node.js and npm (Node Packaged Modules). I recommend you to update your system with this PPA (Personal Pack...

How to install express in Ubuntu 12.04 28 Nov 2012 | 03:06 pm

Express is a node.js web application framework. Before installing express we need to install node.js and npm (Node Packaged Modules). I recommend you to update your system with this PPA (Personal Pack...

How to install express in Ubuntu 10.04 28 Nov 2012 | 03:06 pm

Express is a node.js web application framework. Before installing express we need to install node.js and npm (Node Packaged Modules). I recommend you to update your system with this PPA (Personal Pack...

Skipping asset precompilation in capistrano if the assets did not change 24 Jul 2012 | 06:35 pm

The default capistrano task for compiling the assets compiles them every time, regardless of whether any assets were changed in the set of commits that you are deploying. This is the code snippet I us...

Skipping asset precompilation in capistrano if the assets did not change 24 Jul 2012 | 06:35 pm

The default capistrano task for compiling the assets compiles them every time, regardless of whether any assets were changed in the set of commits that you are deploying. This is the code snippet I us...

Recently parsed news:

Recent searches: