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
import java.util.HashMap; | |
import java.util.Map; | |
/** | |
* toLowerCase and toUpperCase methods for | |
* Azerbaijanian chars | |
* | |
* 2 iyul, 2018 | |
* | |
* * @author ramiz.demiurge |
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
import java.util.LinkedList; | |
/** | |
* @author ramiz.demiurge | |
* @date 23.02.2018 | |
*/ | |
public class CategorizerClass { | |
private final static LinkedList<CategoryClass> categoryClassLinkedList = new LinkedList<>(); |
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
#!/usr/bin/python3 | |
#sudo apt install wipe | |
import os | |
import sys | |
def query_yes_no(question, default="yes"): | |
valid = {"yes": True, "y": True, "ye": True, | |
"no": False, "n": False} |