All Git Commit Messages MUST meet with this Text Format:
:emoji: Subject
(Only One NewLine)
Message Body
(Only One NewLine)
Ref <###>
<?php | |
$characterMap = [ | |
'ð' => 'th', 'Ð' => 'Th', 'Þ' => 'Th', 'þ' => 'th', 'đ' => 'd', | |
'Ƿ' => 'W', 'ƿ' => 'w', 'Ȝ' => 'G', 'ȝ' => 'g', 'æ' => 'ae', | |
'Æ' => 'AE' | |
]; |
Array.prototype.groupBy = function(prop) { | |
return this.reduce(function(groups, item) { | |
var val = item[prop]; | |
groups[val] = groups[val] || []; | |
groups[val].push(item); | |
return groups; | |
}, {}); | |
} | |
var myList = [ |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>JavaScript Reads Excel</title> | |
<style> | |
body { | |
background-color: darkslategrey; |
FROM maven:3-openjdk-11 | |
# Compile BaseX, install | |
COPY basex/basex /usr/src/basex/ | |
# install git as "buildnumber-maven-plugin" requires git: | |
RUN apt-get update && apt-get install git && \ | |
cd /usr/src/basex && \ | |
ln -s /usr/src/basex/bin/* /usr/local/bin |