- Programming languages
-
False feedback
-1 Nov 09 2016 08:44 PM Bought his Farming Script, doesn't work at all and he's refusing to answer PM's Buyer: nlMichael I received feedback regarding an SDN script. Please remove it, thanks
- Tabs or Spaces
-
How do slots work?
You can find out yourself
-
Change your Passwords NOW
Default seems to be bcrypt. (https://hashcat.net/forum/thread-4103.html)
-
Is it just me, or is this really weird?
Should at least get a TWC
-
Can we get a programmers tag
Seems pretty useless to me.
-
Who Do You Think Will WIN? France VS Germany
12 now, France got lucky but Germany will still win.
-
How to Obscure a Serialized file in Java
I think SealedObject is what you're looking for.
- [Sysm] Free Account Giveaway :)
-
Why do you think front-end is seen as less value than back-end developers
Yes, in most cases it's rather trivial, and a lot of frameworks exist to make it even easier. It also has very little to do with Computer Science, more with design, user experience, usability and all of that crap.
-
Someone is trying to send me to PRISON [ what the fuck ]
- Python book for Java Programmer
https://docs.python.org/2/tutorial/ or https://docs.python.org/3/tutorial/ You can learn most of the stuff you'll ever need to use in ~ 2 days, good luck If you have to create the content yourself, be aware that there are many (often graphical) learning environments for kids you can use. Also, you'd eventually have to learn python anyway. One can not survive in the world of CS without writing python code ;) You'll appreciate the language once you see its potential.- Anything like assembly for java?
For examining class files you can download http://bytecodeviewer.com/, it comes with several disassemblers and decompilers. The class file format is documented here, that document also includes a lot of details on how you would implement a VM to execute java bytecode, including opcodes/operands and what they should do. From this you could for example create a small interpreter which takes a class with one main method and starts executing it. I think it's nice to look into a stack-based 'assembly' language as well, it's quite a common model amongst interpreted languages (and it's even used in malware to defeat static code analysis, although the VM is a lot simpler in that case). Oh I almost forgot, there's not only decompilers/disassemblers for java, but also an assembler Jasmin which lets you create class files from scratch- Login accounts from .txt
Yes you can disable the autologin handler and create your own handler or perhaps modify the current account, although it's not trivial to implement and can only be used in a private script. http://osbot.org/forum/topic/93387-onstart-not-being-called-before-user-is-logged-in/ - Python book for Java Programmer