- [feat]/[feat-impl]: New Feature Implementation - implementing new feature/functionality
- [enhnc]: Enhancement - adding more functionality to existing feature
- [req]/[req-chng]: Requirement Change - introducing requirement change, doing something in a different way
- [fix]/[bug-fix]: Bug Fix - patch fixing bug/issue/defect
- [refact]: Refactoring - code refactoring, like- name, indentation, formatting, spacing, code-block removal, etc.
- [config]: Changing Configuration - changing build confuration, or external dependencies, or libraries, etc.
This file contains 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 a git branch | |
git checkout devel/multimedia/master | |
git branch | |
git fetch origin devel/multimedia/master | |
git reset --hard FETCH_HEAD | |
git pull --rebase | |
git status | |
git clean -f | |
git clean -d -f | |
git config core.filemode false |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"/> | |
<title>Egami</title> | |
</head> | |
<body> |
This file contains 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
data:text/html,<textarea oninput=i.srcdoc=value style="height:99%; width:49%;"></textarea><iframe id=i height=99% width=49%/> |
This file contains 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
body{ | |
filter: invert(100%) !important; | |
background-color: rgb(0,20,40) !important; | |
} |
This file contains 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
DATA_ROOT=/home/root/directory/path/ | |
for root in */ ; do | |
for dir in "$root"* ; do | |
i=0 | |
for file in "$dir"/* ; do | |
printf "$DATA_ROOT$file $i\n" >> rawimagelabel.txt | |
#echo "$(pwd)/$file $i" |
| HEADER | EMPHASIS | HORIZONTAL_LINE | LIST | TABLE
This file contains 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
[ | |
{ | |
'repeat:100': { | |
_id: '{{objectId()}}', | |
title: '{{lorem(4, "words")}}', | |
description: '{{lorem(1, "paragraphs")}}', | |
type: '{{random(["apartment"], ["office space"], ["single room"])}}', | |
city: '{{city()}}', | |
location: '{{street()}}', | |
country_state: '{{state()}}', |
This file contains 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 <mpi.h> | |
void printHostName(); | |
int main(int argc, char **argv) { | |
int rank; | |
int number[] = {10, 20, 30, 40, 50, 60}; | |
int slave = 0; |
This file contains 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 <stdlib.h> | |
#include <mpi.h> | |
int main(int argc, char** argv) { | |
int myrank, nprocs; | |
MPI_Init(&argc, &argv); | |
MPI_Comm_size(MPI_COMM_WORLD, &nprocs); | |
MPI_Comm_rank(MPI_COMM_WORLD, &myrank); |
NewerOlder