Skip to content

Instantly share code, notes, and snippets.

View jPedroScript's full-sized avatar

JP jPedroScript

  • BeFree Open Innovation
View GitHub Profile
http://principiante-linux.blogspot.com/2007/08/comandos-linux-mover-copiar-borrar-y.html
Listar todos los archivos (excepto los ocultos) del directorio actual, en formato detallado.
ls -l
Listar los archivos del directorio actual, indicando el tipo de archivo.
ls -F
Listar todos los archivos (incluyendo los ocultos) del directorio actual, en formato detallado y presentarlo en columnas.
ls -laC
@jPedroScript
jPedroScript / elementaryOS
Created November 30, 2013 02:50
Shortcuts
⌘+Espacio —–» Abrir lanzador de aplicaciones
Alt+Tab —–» Cambiar de ventana
⇧+Alt+Tab —–» Cambiar de ventana en orden inverso
⌘+W —–» Vista de ventans
⌘+A —–» Vista de ventanas para todos los espacios de trabajo
⌘+Left/Right —–» Cambiar de espacio de trabajo
⌘+S —–» Vista de los espacios de trabajo
⌘+0 —–» Crear nuevo espacio de trabajo
⇧+⌘+Left/Right —–» Mover ventana entre espacios de trabajo
Ctrl+⌘+Left/Righ —–» Anclar la ventana en la mitad izquierda o derecha
@jPedroScript
jPedroScript / heart
Created November 30, 2013 01:12
Simple
http://www.alt-codes.net/heart_alt_code.php
♥ 3
♡ ♡
How to check JSP and Tomcat version ?
http://www.indianwebportal.com/check-jsp-tomcat-version
===
Crear un test.jsp con este contenido:
Tomcat Version : <%= application.getServerInfo() %><br>
Servlet Specification Version : <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %> <br>
@jPedroScript
jPedroScript / themes icons elementaryOS
Created November 26, 2013 19:53
Themes ElementaryOS
ICON THEME EMOD
http://1.bp.blogspot.com/-m0hJADjHDWg/UdRw3tCOT1I/AAAAAAAAAlU/nqUMKkC1xv4/s320/emod.png
sudo apt-get install elementary-emod-icons
PPA Community
ElementaryOS
http://www.elementaryupdate.com/2013/05/announcing-community-ppa.html
sudo add-apt-repository ppa:versable/elementary-update
sudo apt-get update
sudo apt-get install PACKAGE-NAME
@jPedroScript
jPedroScript / Birdie - Twitter client
Last active December 29, 2015 11:39
Install - Tutorials *ubuntu
Birdie
Twitter client
sudo apt-get install birdie-granite
From http://www.elementaryupdate.com/2013/07/birdie-needs-your-help.html
How to install Kernel 3.12 on 32 bit Ubuntu, Linux Mint, Pear OS, Elementary OS, Debian Wheezy and KWheezy:
Download the needed packages:
$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.12-saucy/linux-headers-3.12.0-031200-generic_3.12.0-031200.201311031935_i386.deb
$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.12-saucy/linux-image-3.12.0-031200-generic_3.12.0-031200.201311031935_i386.deb
$ wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.12-saucy/linux-headers-3.12.0-031200_3.12.0-031200.201311031935_all.deb
Install Kernel 3.12:
@jPedroScript
jPedroScript / jquery ui datepicker range.js
Created November 18, 2013 22:57
jquery ui datepicker range
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Select a Date Range</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
@jPedroScript
jPedroScript / jquery ui datepicker ES.js
Created November 18, 2013 22:19
jquery ui datepicker -> ES
/* Inicialización en español para la extensión 'UI date picker' para jQuery. */
/* Traducido por Vester (xvester@gmail.com). */
jQuery(function($){
$.datepicker.regional['es'] = {
closeText: 'Cerrar',
prevText: '&#x3c;Ant',
nextText: 'Sig&#x3e;',
currentText: 'Hoy',
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],