- BLUE:
\033[1;34m
- RED:
\033[1;31m
- CLEAR:
\033[0m
### word
RED_COLOR="\033[31m"
LIGHT_RED_COLOR="\033[31m\033[01m"
GREEN_COLOR="\033[32m"
# ====================================================================================================== | |
# * Please PR by adding it according to the format below this! | |
# * Two functions created will help you in adding test cases. | |
# * We will reflect after review :) | |
# * | |
# * < Function: customEvaluation > | |
# * | |
# * When adding a test case, use this function to add it. | |
# * | |
# * @param string The name of rush file to run. |
{ | |
"42header.email": "[email protected]", | |
"42header.username": "holee", | |
"editor.tabSize": 4, | |
"editor.insertSpaces": false, | |
"editor.renderWhitespace": "all", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
} |
NAME = libasm.a | |
SAVE = -g3 -fsanitize=address | |
FLAGS = -Wall -Wextra -Werror $(SAVE) | |
DIR_SRCS = ./src/ | |
SRC = ft_strlen.s | |
SRCS = $(addprefix $(DIR_SRCS), $(SRC)) | |
OBJS = $(SRCS:%.s=%.o) |
(echo 'hello world') & sleep 1; kill $! 2> /dev/null || : |
/* | |
** File: ft_math | |
** Description: This is the math library you need in css. | |
** Connect: hochan222 - https://github.com/hochan222 | |
** | |
** List: factorial, sin, cos, tan | |
*/ | |
/* | |
** factorial |
std::string | |
Request::getAcceptLanguage() | |
{ | |
if (this->m_content_type != "") | |
return (this->m_content_type); | |
std::map<std::string, std::string>::const_iterator it; | |
it = this->m_headers.find("Accept-Language"); | |
// `Accept-Language Header` not exist |
rm -rf ~/Library/Application\ Support/Code/User/workspaceStorage \ | |
rm -rf ~/Library/Application\ Support/Slack/Service\ Worker/CacheStorage \ | |
rm -rf ~/Library/Application\ Support/discord/Cache \ | |
rm -rf ~/Library/Application\ Support/Code/CachedData \ | |
rm -rf ~/Library/Developer/CoreSimulator |
while 1 ; do leaks [ps] ; sleep 3 ; clear ; done |
CONTENT_TRANSLATED_ROOT=/Users/tonybyeon/Desktop/translated-content/files | |
EDITOR=code |