Skip to content
Open navbar menu
Sign UpLog In
Profile icon

temporarilyMe

@temporarilyMe
temporarilyMe
temporarilyMe
shared a Post
3 years ago
Why is it giving me this error?
I have ran this code on Windows 10 with Eclipse and it worked. But on repl it is throwing an error: `Frame.java:9: error: cannot find symbol public c
Coder100
Coder100
did you forget to import ActionListener? 3 years ago
MocaCDeveloper
MocaCDeveloper
My guess,Frame is pre-imported within the IDE you use. Meanwhile, Repl requires you to import it manually into your program. So, try importing the module "Frame" into your program.3 years ago
temporarilyMe
temporarilyMe
shared a Post
3 years ago
If I have an obfuscated Swift program, how could I view it normally?
RYANTADIPARTHI
RYANTADIPARTHI
The point of obfuscating is to obfuscate the code, and keep a copy of the real code for yourself. that's the point. so when you keep the real code for yourself, that's how you view it normally.3 years ago
SixBeeps
SixBeeps
Normally there're deobfuscator tools you can use to undo the obfuscation, but the only thing I can find is swiftshield's deobfuscate command. Unfortunately, I don't know (and you might not know) whether or not swiftshield was used, so the answer is still not completely known. Also are you doing this legally?3 years ago
temporarilyMe
temporarilyMe
I.E., how do I deobfuscate it?3 years ago