Skip to content

Instantly share code, notes, and snippets.

View aleksseven's full-sized avatar
👁️
Learning

Alex Sanchez aleksseven

👁️
Learning
  • NEM
  • Tarma-Lima
View GitHub Profile
1. For stable version.
sudo add-apt-repository ppa:neovim-ppa/stable
2. For unstable version.
sudo add-apt-repository ppa:neovim-ppa/unstable
3. sudo apt update
4. sudo apt install neovim
# add the repository
1. sudo add-apt-repository ppa:neovim-ppa/unstable
2. sudo apt-get update
3. sudo apt-get install neovim
4. Setup init.vim with "nvim" command.
5. Press :
6. After execute :call mkdir(stdpath('config'), 'p')
# this command create a directory to hold the init.vim file
@aleksseven
aleksseven / Montar un usb en Arch linux.txt
Last active June 16, 2021 23:52
Montar un usb en Arch Linux
1. sudo pacman -S ntfs-3g
2. sudo fdisk -l
3. mkdir /mnt/myusb
4. sudo mount -t ntfs-3g /dev/sdb /mnt/myusb/
Para desmontar:
5. sudo umount -t ntfs-3g /dev/sdb /mnt/myusb/
@aleksseven
aleksseven / Kazam microphone Unknown.txt
Created January 24, 2023 17:08
Kazam microphone Unknown on ubuntu 20.04
Update the function "time.clock()" in pulseaudio.py file with "time.perf_counter()"
File location : /usr/lib/python3/dist-packages/kazam/pulseaudio/pulseaudio.py
RUN THIS COMMAND FROM TERMINAL
sudo sed -i 's/time.clock/time.perf_counter/g' /usr/lib/python3/dist-packages/kazam/pulseaudio/pulseaudio.py
'time.clock()' is deprecated from Python V3.3 and removed from Python v3.8