| Description | Command |
|---|---|
| Start a new session with session name | screen -S <session_name> |
| List running sessions / screens | screen -ls |
| Attach to a running session | screen -x |
| Attach to a running session with name | screen -r |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:latest | |
| LABEL maintainer "neverkas" | |
| RUN apk update && apk add git make cgdb gcc musl-dev neovim screen | |
| #RUN git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d | |
| # si falla alguna dependencia del cgdb, descomentar esta otra linea | |
| # apk add autoconf automake libtool flex bison gcc g++ ncurses ncurses-dev texinfo readline readline-dev | |
| WORKDIR /home |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MODULE_BUNDLER_VERSION=2.3.1 | |
| MODULE_BUNDLER=parcel@$(MODULE_BUNDLER_VERSION) | |
| PORT=8000 | |
| SOURCE_PATH=src | |
| TARGET_PATH=public | |
| ASSETS_PATH = assets | |
| ASSETS_FILES = $(subst assets/,$(TARGET_PATH)/assets/, $(wildcard assets/*.json)) | |
| all: $(TARGET_PATH)/$(ASSETS_PATH) $(ASSETS_FILES) run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;==================================================================== | |
| ;; evil-commands.el | |
| ;; | |
| ;; Ibuffer | |
| (eval-after-load 'ibuffer | |
| '(progn | |
| (defvar ibuffer-mode-map) | |
| (evil-make-overriding-map ibuffer-mode-map 'normal) | |
| (evil-define-key 'normal ibuffer-mode-map |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| void saludar(void){ | |
| printf("Hola mundo cruel..! T_T\n"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set realname="Carlitos" | |
| set from="carlitos012@gmail.com" | |
| set imap_user="carlitos012@gmail.com" | |
| set imap_pass=`pass carlitos@gmail.com` | |
| set imap_list_subscribed=yes | |
| set folder="imaps://imap.gmail.com:993/" | |
| set spoolfile="+INBOX" | |
| set record="+[Gmail]/Sent Mail" |
btes la abreviacion de backtrace e indica el estado del stack de tareas, en que linea esta el debuggerF10avanza (next, step out) tambien podemos presionar n pero si estas con evil mode quizas lo toma como el shortcut de buscar una palabraF11hace step intochace continuebagrega un breakpoint en la linea que este el cursoreevalua una expresion que escribamos (esta bueno para C con gdb)Sactiva el buffer que tiene la shell del debuggerRinicia/run el debug (o bien lo reinicia)







