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
<html> | |
<head> | |
<script> | |
function kp2uni(input) { | |
output = input; | |
console.log(output); | |
output = output.replace(/H/g, "ံ"); | |
output = output.replace(/;/g, "း"); | |
output = output.replace(/!/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
run this in .m2 files | |
it lists all the corrupted jar files in the repository | |
find /home/me/.m2/repository/ -name "*jar" | xargs -L 1 zip -T | grep error | grep invalid | |
To resolve them , delete them first and re run the build or run |
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
// Zawgyi<>Unicode converter python module | |
// Based on rules from Parabaik Myanmar Text Converter | |
// Copyright (C) 2014 Ngwe Tun (Solveware Solution) | |
// Copyright (C) 2014 Ye Mon Kyaw | |
/* | |
* To run the converter, you need `argparse4j` library. | |
* javac -cp argparse4j-0.4.3.jar Converter.java && java -cp argparse4j-0.4.3.jar Converter | |
* If you just want the conversion routines, remove the main methon and argparse4j imports. | |
* |