sudo subl /usr/share/applications/trash.desktop
[Desktop Entry]
Comment=Contiene los archivos eliminados
EmptyIcon=emptytrash
// This method gives you an easier way of calling super | |
// when you're using Backbone in plain javascript. | |
// It lets you avoid writing the constructor's name multiple | |
// times. You still have to specify the name of the method. | |
// | |
// So instead of having to write: | |
// | |
// User = Backbone.Model.extend({ | |
// save: function(attrs) { | |
// this.beforeSave(attrs); |
NOTE: Easier way is the X86 way, described on https://www.genymotion.com/help/desktop/faq/#google-play-services | |
Download the following ZIPs: | |
ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
Download the correct GApps for your Android version: | |
Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) |
# For Mac OS X El Capitan | |
sudo trimforce enable | |
# For Mac OS X Yosemite | |
# backup patched file | |
sudo cp /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage.original | |
# Important: Add "kext-dev-mode=1" as Kernel Arguments or the computer won't boot. | |
sudo nvram boot-args="kext-dev-mode=1" | |
sudo shutdown -r now |
<!-- More info in http://www.sitemaps.org/es/protocol.html --> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<url> | |
<loc>http://www.raulmoya.es/</loc> | |
<lastmod>2013-03-27T16:26:55+00:00</lastmod> | |
<changefreq>daily</changefreq> | |
<priority>1.0</priority> |
# | |
User-agent: * | |
Disallow: /cgi-bin | |
Disallow: /wp-admin | |
Disallow: /wp-includes | |
Disallow: /wp-content/plugins/ | |
Disallow: /wp-content/cache/ | |
Disallow: /wp-content/themes/ | |
Disallow: */trackback/ | |
Disallow: */feed/ |
//Cambio de UTC+1 a UTC+2 en verano. | |
//El cambio horario se produce (a nivel Europeo) el último domingo de Marzo y de Octubre | |
function lastSunday(){ | |
//días que tiene un mes | |
var nD = new Date(new Date().getFullYear(), new Date().getUTCMonth(), 0).getUTCDate(); | |
var d = new Date().getUTCDay(); | |
var n = new Date().getUTCDate(); | |
var j = n; |