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
# Init antigen. | |
source "$HOME/.antigen.zsh" | |
# Configure antigen. | |
antigen use oh-my-zsh | |
# Plugins | |
antigen bundle git | |
antigen bundle command-not-found | |
antigen bundle zsh-users/zsh-completions |
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
#!/bin/bash | |
FPS=10 # Default value, is updated later on. | |
WIDTH=900 # Default value, is updated later on. | |
COLORS=256 # Default value, is updated later on. | |
OUTPUT='' | |
VIDEO='' | |
IMAGE_MASK='' | |
BASE_INPUT_NAME='' | |
SPEED='1' | |
OVERWRITE='' |
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
<snippet> | |
<description>#def_guards_formatted</description> | |
<content><![CDATA[#ifndef ${TM_FILEPATH/(?:^\/*[\w\/]*\/(?:src|include)\/(\w+))|(?:^\/*[\w\/]*\/(\w+)\/(?:\2))|(?:^\/*home\/${TM_FULLNAME}\/(\w+))|(?:\/([\w_]+))|(?:\.(h))/\U$1$2$3$4$5$6_\E/g} | |
#define ${TM_FILEPATH/(?:^\/*[\w\/]*\/(?:src|include)\/(\w+))|(?:^\/*[\w\/]*\/(\w+)\/(?:\2))|(?:^\/*home\/${TM_FULLNAME}\/(\w+))|(?:\/([\w_]+))|(?:\.(h))/\U$1$2$3$4$5$6_\E/g} | |
${0:$SELECTION} | |
#endif // ${TM_FILEPATH/(?:^\/*[\w\/]*\/(?:src|include)\/(\w+))|(?:^\/*[\w\/]*\/(\w+)\/(?:\2))|(?:^\/*home\/${TM_FULLNAME}\/(\w+))|(?:\/([\w_]+))|(?:\.(h))/\U$1$2$3$4$5$6_\E/g} | |
]]></content> | |
<tabTrigger>def</tabTrigger> | |
<scope>source.c, source.c++, source.objc, source.objc++</scope> | |
</snippet> |
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> | |
#include <memory> | |
class BBuilder; | |
class A { | |
public: | |
A() {} | |
virtual ~A() { fprintf(stderr, "A done.\n"); } | |
int getA() const { return _a; } |