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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Race Track - SVG and AnimeMotion</title> | |
</head> | |
<body> | |
<svg |
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
/* | |
All blocks at | |
https://en.wikipedia.org/wiki/Unicode_block | |
This is an example explained at | |
https://rhams.es/content/usando-unicode-para-identificar-idiomas | |
*/ | |
const ArabicBlock = new RegExp('[\u0621-\u064A]','g') | |
const ThaiBlock = new RegExp('[\u0E00-\u0E7F]','g') |
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
for file in *; do mv -- "$file" "$file.png"; done |