Message from @airplaneman

Discord ID: 510350253606699008


2018-11-09 07:06:47 UTC  

Its cause your to focused on the 90s

2018-11-09 07:07:00 UTC  

What I like about the unreal engine is the capabilities it has

2018-11-09 07:07:15 UTC  

Star Citizen... what if it was real..??

2018-11-09 07:07:20 UTC  

I want to understand how it works, take it apart, build new things, write code, mod things, put things back together, reverse engineer.

I cannot understand people who don't have an interest in that, at least a little. Sorry.

2018-11-09 07:07:47 UTC  

No interest

2018-11-09 07:07:50 UTC  

I think it's natural for most men to want to be creative in some way.

2018-11-09 07:07:53 UTC  

None what so ever

2018-11-09 07:08:04 UTC  

Not even a little bit

2018-11-09 07:08:07 UTC  

Well, maybe you like to build other things.

2018-11-09 07:08:13 UTC  

Definitely

2018-11-09 07:08:37 UTC  

I like building robots and stuff

2018-11-09 07:08:39 UTC  

The first game I modded was a gamebook port written in java. It was a very old game, and I didn't bother to check if it was open source (it was). I wrote a cheat mods, reverse engineered the files, and wrote a modloader. Fun times.

2018-11-09 07:08:44 UTC  

Hate programming them

2018-11-09 07:08:50 UTC  

But I mean

2018-11-09 07:08:50 UTC  

@Undead Mockingbird do you prefer games that are made by small company's?

2018-11-09 07:09:06 UTC  

I found a cheat app for kindle and Minecraft

2018-11-09 07:09:10 UTC  

It was great

2018-11-09 07:09:15 UTC  

lel

2018-11-09 07:09:30 UTC  

I attempted to decompile Minecraft with fernflower

2018-11-09 07:09:35 UTC  

it didn't work well

2018-11-09 07:09:42 UTC  

Lol

2018-11-09 07:09:42 UTC  

especially since it was obfuscated

2018-11-09 07:09:48 UTC  

Anyhow yah boi codes heading out

2018-11-09 07:09:48 UTC  

I'm not sure. I like a lot of indie games and even id software wasn't so big when they made quake.

2018-11-09 07:09:54 UTC  

cya dude

2018-11-09 07:09:58 UTC  

Also, Java is a good language to reverse engiener.

2018-11-09 07:09:59 UTC  

Gonna go watch twitch while on the jerb

2018-11-09 07:10:01 UTC  

Good tooling support.

2018-11-09 07:10:15 UTC  

I really dislike the JDK, because of how hyper-normalized it is.

2018-11-09 07:10:17 UTC  

Did you guys hear that M$ released the DOS source code?

2018-11-09 07:10:48 UTC  

It has a class or an adapter for EVERYTHING. If you want to just read a regular certificate for signing or cryptography in general, you need to instantiate half a dozen classes.

2018-11-09 07:10:57 UTC  

true

2018-11-09 07:11:05 UTC  

Well dos is really old @Termer

2018-11-09 07:11:12 UTC  

Java's got its strengths and weaknesses for sure

2018-11-09 07:11:20 UTC  

One for general certificate management, then an adapter for the specific certificate format, then another instance to do the cryptography, and then one for the signing.

2018-11-09 07:11:32 UTC  

Oh yeah, crypto in java is not fun

2018-11-09 07:11:51 UTC  

Then, you need to convert your data that you want to sign into the specific structure type that the crypto manager expects, yada yada yada.

2018-11-09 07:12:21 UTC  

Compare this to .NET, for example, and it's far more use case oriented. You want to sign some data? Here's a class and method that does it for you. Oh, and it's static.

2018-11-09 07:12:57 UTC  

Problem is, .NET is windows only

2018-11-09 07:13:08 UTC  

C# is like legos: you take the right pieces and put them together. Java is like legos, too - but you have to build your own lego pieces lol.

2018-11-09 07:13:31 UTC  

The JVM's main selling point is its portability