public class AXContextCmd {
// engage on commands
// when commands are engaged, context commans can also engage
public UniqueItemSizeLimitedPriorityQueue commands = new UniqueItemSizeLimitedPriorityQueue();
public UniqueItemSizeLimitedPriorityQueue contextCommands = new...
public class AXMachineCode {
// common code lines used in machine code to declutter machine code
public Hashtable<String,Integer> dic = new Hashtable<>();
public AXMachineCode addKeyValuePair(String key, int value){
dic.put(key,value);
return this;
}
public...
public class AXInputWaiter {
// wait for any input
private TrgTolerance trgTolerance;
public AXInputWaiter(int tolerance) {
this.trgTolerance = new TrgTolerance(tolerance);
trgTolerance.reset();
}
public void reset(){
trgTolerance.reset();
}...
he posts a task and starts the night
100
AXContextCommand :s24:
AXMachineCode :s24:
TrgTolerance :s24:
AXInputWaiter :s24:
AXCmdBreaker :s24:
@fukurou
https://jizz.is/threads/swift-cheat-sheet.464/
there are two modules on my mind ATM:
humor module
auto programming module.
the 1st has already revealed itself to me, it actually makes functional sense.
the 2nd I need to brain dive to get. it would seem search engines have poisoned search results of the subject, which is interesting.
all my...
public class Strategy {
private UniqueItemSizeLimitedPriorityQueue activeStrategy; // active strategic options
private DrawRnd allStrategies; // bank of all strategies. out of this pool active strategies are pulled
public Strategy(DrawRnd allStrategies) {
// create the...
public class InputFilter {
// filter out non-relevant input
// or filter in relevant data
public String filter(String ear, String skin, String eye){
// override me
return "";
}
public AXKeyValuePair filter(String ear){
// override me : key =...