Skip to content

Instantly share code, notes, and snippets.

View vekio's full-sized avatar

Alberto Castañeiras vekio

  • Ponferrada, Spain
View GitHub Profile
@vekio
vekio / anaconda2.sublime-build
Last active January 29, 2018 18:25
SublimeText3 build for Anaconda (python2.7.13) - Two options: normal and external console
#Go to sublime -> Tools -> Build System -> New Build System
#Im using LinuxMint18 with mate desktop so mine will be like this:
{
"cmd": ["$HOME/anaconda2/bin/python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"working_dir": "$file_dir",
"selector": "source.python",
"variants":
[
{
@vekio
vekio / anaconda3.sublime-build
Last active January 29, 2018 18:26
SublimeText3 build for Anaconda (python3.6.0) - Two options: normal and external console
#Go to sublime -> Tools -> Build System -> New Build System
#Im using LinuxMint18 with mate desktop so mine will be like this:
{
"cmd": ["$HOME/anaconda3/bin/python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"working_dir": "$file_dir",
"selector": "source.python",
"variants":
[
{
@vekio
vekio / Preferences.sublime-settings
Last active July 23, 2019 22:54
My SublimeText3 Preferences
{
"always_show_minimap_viewport": true,
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme",
"default_line_ending": "unix",
"draw_minimap_border": true,
"ensure_newline_at_eof_on_save": true,
"font_size": 12,
"ignored_packages":

Keybase proof

I hereby claim:

  • I am vekio on github.
  • I am vekio (https://keybase.io/vekio) on keybase.
  • I have a public key ASD0wfvE2an2zG18XCa6NBbDOZn3gAYFquQI9pqksoV6Cgo

To claim this, I am signing this object:

@vekio
vekio / excel-env.yml
Last active October 24, 2020 17:56
find and replace a value in a given column inside an excel
# conda env create -f excel-env.yml
name: excel
dependencies:
- python=3.7
- openpyxl
@vekio
vekio / pi-hole.conf
Last active June 13, 2021 18:09
pi-hole.conf
server:
# If no logfile is specified, syslog is used
# logfile: "/var/log/unbound/unbound.log"
verbosity: 0
interface: 127.0.0.1
port: 5335
do-ip4: yes
do-udp: yes
do-tcp: yes
@vekio
vekio / settings.json
Created January 4, 2022 13:48
VSCODE
{
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true,
"[makefile]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false
},
"[vue]": {
"editor.tabSize": 2
},