Skip to content

Instantly share code, notes, and snippets.

View Conkernel's full-sized avatar

Conkernel Conkernel

View GitHub Profile
@Conkernel
Conkernel / extensions.json
Last active October 26, 2024 11:55
VSCode's Settings - Syncing
[
{
"id": "christian-kohler.path-intellisense",
"name": "path-intellisense",
"publisher": "christian-kohler",
"version": "2.9.0"
},
{
"id": "DavidAnson.vscode-markdownlint",
"name": "vscode-markdownlint",
@Conkernel
Conkernel / dotfiles.sh
Last active February 27, 2024 20:38
Automatizar dotfiles (en construcción!!)
#!/bin/bash
#set -x
# Antes de nada revisamos si tenemos permisos de sudo:
if [[ $EUID -ne 0 ]]; then
echo "[-] Este script debe ejecutarse con permisos de root. Saliendo..."
exit 1
fi