Jump to content
LaunchBox Community Forums

aaron_smith4

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by aaron_smith4

  1. Biginteger or bignumber might work well. They are using it and when you enter more then 16 characters, the tool is returning correct answer.
  2. Javascript: const password = "TestPw"; password .split('') .map(letter => letter.charCodeAt() .toString(2) ) .join(' '); Java:(I copied this code, I'm not sure about this) public static String toText(String info)throws UnsupportedEncodingException{ byte[] encoded = info.getBytes(); String text = new String(encoded, "UTF-8"); System.out.println("print: "+text); return text; }
  3. With java, i expect the code would be a bit lengthy. Can you use Javascript in your app?
  4. Eagerly waiting for Playstation 5 and it looks killer as well. Looking at the current scenario, I don't think it would be released in 2020, may be mid 2021.
×
×
  • Create New...