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
| import time | |
| import cv2 | |
| import mss | |
| import numpy | |
| import random | |
| from pynput.keyboard import Key, Controller | |
| keyboard = Controller() | |
| topleft = (-1220, 492) |
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
| "*": | |
| core: | |
| packagesWithKeymapsDisabled: [] | |
| telemetryConsent: "no" | |
| editor: | |
| softWrap: true | |
| "exception-reporting": | |
| userId: "PRIVATE" | |
| "linter-ui-default": {} | |
| "sync-settings": |
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
| package com.aidensheeran.DNATranslator; | |
| public enum Amino { | |
| PHE("Phenylalanine"), LEU("Leucine"), ILE("Isoleucine"), MET("Methionine"), VAL("Valine"), SER("Serine"), PRO("Proline"), | |
| THR("Threonine"), ALA("Alanine"), TYR("Tyrosine"), HIS("Histidine"), GLN("Glutamine"), ASN("Asparagine"), LYS("Lysine"), | |
| ASP("Aspartic acid"), GLU("Glutamic acid"), CYS("Cysteine"), TRP("Tryptophan"), ARG("Arginine"), GLY("Glycine"), | |
| STP("Stop"), UNKNOWN("Unknown"); | |
| private String name; |
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
| package com.aidensheeran.DNATranslator; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| public enum RNA { | |
| UUU("UUU",Amino.PHE),UUC("UUC",Amino.PHE),UUA("UUA",Amino.LEU),UUG("UUG",Amino.LEU),CUU("CUU",Amino.LEU),CUC("CUC",Amino.LEU), | |
| CUA("CUA",Amino.LEU),CUG("CUG",Amino.LEU),AUU("AUU",Amino.ILE),AUC("AUC",Amino.ILE),AUA("AUA",Amino.ILE),AUG("AUG",Amino.MET), | |
| GUU("GUU",Amino.VAL),GUC("GUC",Amino.VAL),GUA("GUA",Amino.VAL),GUG("GUG",Amino.VAL),UCU("UCU",Amino.SER),UCC("UCC",Amino.SER), |
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
| package com.aidensheeran.prg10EmployeeClass; | |
| import com.aidensheeran.prg10EmployeeClass.GUI.Sign; | |
| @SuppressWarnings("null") | |
| public class Parse { | |
| public static boolean isDouble(String string) { | |
| string = string.trim(); | |
| try { |
NewerOlder