Skip to content

Instantly share code, notes, and snippets.

View matog's full-sized avatar

Mato matog

View GitHub Profile

Como subir un proyecto local a github.

desde la web de github

Creamos un nuevo repositorio en https://github.com. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a crear repositorio y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto.

desde la terminal del equipo donde esta el proyecto que queremos subir a github

Nos vamos a la carpeta del proyecto y ejecutamos estos comandos.

git init

git add .
@matog
matog / README.md
Created June 27, 2020 12:26 — forked from lightrush/README.md
Normalize volume level with PulseAudio

Normalize volume level with PulseAudio

This should work conceptually on any Linux OS with PulseAudio but these particular instructions are for Ubuntu.

  1. Install LADSPA plugins containing the compressor and limiter we'll use:
sudo apt install swh-plugins
  1. Install PulseAudio Preferences paprefs:
@matog
matog / elementaryos.md
Last active July 15, 2020 21:54 — forked from suberb/elementaryos.md
elementaryOS | Things To Do After Installing Elementary OS Loki [Best OS For Switching From Windows & Mac]

Varios


  • Arreglar la conexion por bluetooth a los parlantes y auriculares JBL
killal pulseaudio
sudo apt install blueman

Desde blueman no hubo inconvenientes

@matog
matog / r_ubuntu_18_04.sh
Last active November 30, 2019 13:50 — forked from ElToro1966/r_ubuntu_18_04.sh
Install R and RStudio on Ubuntu 18.04 with essential libraries for data science. Based on pachamaltese/r_ubuntu_17_10.sh (for Ubuntu 17.10).
# Install R
sudo apt update
sudo apt install gdebi libxml2-dev libssl-dev libcurl4-openssl-dev libopenblas-dev r-base r-base-dev
# Install RStudio
cd ~/Downloads
wget https://download1.rstudio.org/desktop/bionic/amd64/rstudio-1.2.5019-amd64.deb
sudo gdebi rstudio-1.2.5019-amd64.deb
printf '\nexport QT_STYLE_OVERRIDE=gtk\n' | sudo tee -a ~/.profile
@matog
matog / ubuntu-install.sh
Created February 20, 2019 00:04 — forked from ElToro1966/ubuntu-install.sh
Post Ubuntu 18.*.* Install Script
#!/bin/sh
# installation of additional software for Ubuntu 18.* #
# tested on Ubuntu Budgie 18.04 #
# TODO: functions for checking network, previous install, working install
# check if a network connection is available #
ping -c 1 8.8.8.8
if [ $? != 0 ]
then
@matog
matog / darktable-workflow.md
Last active February 15, 2020 22:46 — forked from eimajtrebor/darktable-workflow.md
My Darktable Workflow

Workflow de darktable que es un fork de Jim McCormick. Es muy útil para aquellos que recién arrancan con la edición de fotos raw en Linux.

Basic workflow

  • Copy a film roll (a directory of RAW images) into a directory on the machine running Darktable.
  • Import the film roll into Darktable.
  • Review the images using lighttable mode and remove any images that are beyond repair.
  • Take a snapshot of the image so we can do a before and after comparison.
  • Adjust the white balance.
  • Exposure compensation and recovery.