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 | |
# Variables | |
# ------------------------------------------------------------------------------ | |
txtSuccess='\033[1;32m' | |
txtError='\033[0;31m' | |
txtNoColor='\033[0m' | |
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 | |
source flash.sh | |
# Variables | |
# ------------------------------------------------------------------------------ | |
pathLog=`echo $(pwd)/log.txt` | |
echo -n "Path to rename: " |
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 <iostream> | |
#include <memory> | |
#include <string> | |
struct Base | |
{ | |
virtual ~Base() = default; | |
}; | |
struct Derived : public Base |
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
[MASTER] | |
# Specify a configuration file. | |
#rcfile= | |
# Python code to execute, usually for sys.path manipulation such as | |
# pygtk.require(). | |
#init-hook= | |
# Add files or directories to the blacklist. They should be base names, not |
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
{ | |
"patterns" : [{ | |
"patternId" : "Custom_Scala_NonFatal", | |
"enabled" : true | |
}, { | |
"patternId" : "CSSLint_shorthand", | |
"enabled" : true | |
}, { | |
"patternId" : "CSSLint_errors", | |
"enabled" : true |
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
import os | |
import platform | |
if os.name == 'nt' and platform.release() == '10' and platform.version() >= '10.0.14393': | |
# Fix ANSI color in Windows 10 version 10.0.14393 (Windows Anniversary Update) | |
import ctypes | |
kernel32 = ctypes.windll.kernel32 | |
kernel32.SetConsoleMode(kernel32.GetStdHandle(-11), 7) |
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
@echo off | |
cls | |
echo [101;93m STYLES [0m | |
echo ^<ESC^>[0m [0mReset[0m | |
echo ^<ESC^>[1m [1mBold[0m | |
echo ^<ESC^>[4m [4mUnderline[0m | |
echo ^<ESC^>[7m [7mInverse[0m | |
echo. | |
echo [101;93m NORMAL FOREGROUND COLORS [0m | |
echo ^<ESC^>[30m [30mBlack[0m (black) |
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 "opencv2/opencv.hpp" | |
#include <iostream> | |
using namespace cv; | |
using namespace std; | |
Mat frame; | |
void mouseEventHandler(int event, int x, int y, int flags, void* param) | |
{ |
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
_ __________ _, | |
_.-(_)._ ." ". .--""--. _.-{__}-._ | |
.'________'. | .--------. | .' '. .:-'`____`'-:. | |
[____________] /` |________| `\ / .'``'. \ /_.-"`_ _`"-._\ | |
/ / .\/. \ \| / / .\/. \ \ || .'/.\/.\'. | /` / .\/. \ `\ | |
| \__/\__/ |\_/ \__/\__/ \_/| : |_/\_| ; | | \__/\__/ | | |
\ / \ / \ '.\ /.' / .-\ /-. | |
/'._ -- _.'\ /'._ -- _.'\ /'. `'--'` .'\/ '._-.__--__.-_.' \ | |
/_ `""""` _\/_ `""""` _\ /_ `-./\.-' _\'. `""""""""` .'`\ | |
(__/ '| \ _)_| |_)_/ \__)| ' | | |
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
@ECHO OFF | |
ECHO Execution using CALL | |
ECHO ------------------------------------------- | |
ECHO Main execution running... | |
ECHO Calling to ping... | |
call ping google.es | |
ECHO. | |
ECHO Continue main execution |