martes, 28 de enero de 2020

Descargar Google Chrome Y Firefox Offline

Descargar FIREFOX Offline
========================
Para 64 bit  --> https://download.mozilla.org/?product=firefox-72.0.2-SSL&os=win64&lang=es-ES
Para 32 bit --> https://download.mozilla.org/?product=firefox-72.0.2-SSL&os=win&lang=es-ES
Elegir Idioma y S.O --> https://www.mozilla.org/es-ES/firefox/all/?q=Spanish%20(Spain),%20Espa%C3%B1ol%20(de%20Espa%C3%B1a)#product-desktop-release

Descargar GOOGLE CHROME offline
=================================
Para 64 Bit --> http://www.google.com/chrome/eula.html?standalone=1 
Para 32 bit --> https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B126B12CB-92A4-59CC-C453-BB8C2CD640F9%7D%26lang%3Des%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26ap%3Dstable-arch_x86-statsdef_1%26installdataindex%3Ddefaultbrowser/chrome/install/ChromeStandaloneSetup.exe

domingo, 26 de enero de 2020

Instalar Wine en Ubuntu 14.04 LTS

Instalar Wine en Ubuntu 14.04 LTS
=============================

Abrir la terminal con cntrl + alt+ T y agregar el ppa:
$> sudo add-apt-repository ppa:ubuntu-wine/ppa

Ejecutar:
$> sudo apt-get update

Instalar Wine:
$> sudo apt-get install wine1.6

viernes, 24 de enero de 2020

Instalar BeeBEEP en Ubuntu 16.04
=============================

$> sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu $(lsb_release -sc)-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
$> sudo wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
$> sudo apt update && sudo apt install beebeep

jueves, 23 de enero de 2020

Atajos de teclado en Visual Studio Enterprise

Atajos de teclado en Visual Studio
============================================
       F5                   ->   Ejecutar Aplicación
   CTRL + F5         ->   Ejecutar Aplicación Sin depuración
Shift + Suprimir   ->   Eliminar la línea actual 
Ctrl+D      ------------>   Duplica la línea actual en la línea inferior
Ctrl+K + Ctrl+C    ->   Comentar con /
Ctrl+K + Ctrl+U    ->   Descomentar con / 
Alt+↑      ------------->    Intercambiar línea actual con la superior
Ctrl+Alt+↓   --------->   Multicursor 
Ctrl+Shift+U        ->    Poner Mayúsculas
Ctrl + U    ----------->    Poner Minúsculas 
Ctrl+Shift + N       ->   Crear Proyecto
Ctrl+K + Ctrl+D    ->   Formatear Código



Ajuste Automático de Linea
-----------------------------------------
Ir a Herramientas o tools -> Opciones
                                              Text Editor -> All Languages
                                               General
                                               Activar Word wrap 

miércoles, 1 de enero de 2020

Configuración Personal de Intellij idea

Configuración de Intellij idea
============================
Font: Consolas
Size: 17
Line Spacing: 1.0

Font: JetBrains Mono
Size: 16.5
Line Spacing: 1.1
Main weight: Medium

Font: JetBrains Mono
Size: 16.7
Line Spacing: 1.0
Main weight: Medium


Ir a Editor --> Color Scheme
                         -> General
                               -> Code  -> Line number on Caret row --> #fff  
                                                   Matched brace ->   Foreground:#FFEF28  
                                                                                   Background:#373E4A ó #3B514D
                              -> Editor  -> Breadcrumbs 
                                                  -> Caret -> Foreground: #548AF7 -->Cursor
  -> Caret row ----> Background:  #2B2B2B
                                               -> Guides -> Gutter background ----> Background: #1E1E1E
  Selection background ----> Background: #3C3F41 ó #214283
                              -> Text -> Default Text -> Background:  #1E1E1E ó #282C34


Desactivar spell checking en IntelliJ IDEA

Elegir Perfil: Default
File >> Settings >> Editor >> Inspections -> Proofreading -> Desactivar Typo
File >> Settings >> Editor >> Natural Languages -> Add Español

Desactivar sugerencias
Editor > Inlay Hints > Code Vision > Desactivar Usages


Configurar Apariencia
Appearance & Behavior -> System Settings
Desactivar Reopen projects on startup
Project -> Activar New Window

Cambiar ancho del cursor
Ctrl + Shift + A -> Actions
Buscar ir a Registry -> Seleccionar editor.caret.width -> Cambiar el valor a 3

Keymap
Comment with line   -> Crtl +7
Comment with block ->Ctrl + Shift + 7

Path Gitbash
C:\Program Files\Git\bin\bash.exe

Plugins
------------
One Dark Theme
Atom material Icons
Save Actions
Rainbow Brackets
GitHub Copilot


Instalar Powershell 7

Instalar Powershell Version 7 -------------------------------------- $> winget search powershell $> winget install Microsoft.Powershe...