Windows fails! (by ethical hacking...)

All things asdf (and anything else)
User avatar
atomtengeralattjaro
Site Admin
Site Admin
Posts: 37518
Joined: Wed May 23, 2007 3:43 pm
Location: green
Pronouns: he / they / that submarine
Contact:

Re: Windows fails! (by ethical hacking...)

Post by atomtengeralattjaro » Thu Nov 22, 2012 1:42 pm

(woah, vi is not for humans.)


oh and c# is less portable than java, it only runs where the .net framework runs, and that's basically windows machines, xbox, netduino, silverlight/(moonlight for linux) and umm.. i guess mono on linux, and on osx not sure how well does that work.

iOS is apple's thing, i don't know anything about it, i assume nothing runs on it that isn't blessed by apple's holy blessing or something, correct me if i'm wrong.
Ivokyuftaf6666 wrote:
Sun Oct 20, 2019 5:22 pm
Awesome Site, Delivering Fun
Image

User avatar
vraiment
JKL;'s Nightmare
JKL;'s Nightmare
Posts: 9505
Joined: Sun Oct 05, 2008 2:35 am
Pronouns: Well it shouldn't really be that complicated if you go over my post history but then... why are you searching through my post history? Don't you think you are over complicating something as simple as just referring to me? Why are you like this? Is it just out of boredom? Does your religion require it? You could just assume them and skip all this paragraph, don't worry an eldritch horror won't appear out of nowhere to eat you (or me for that matter) if you get this wrong, the worst that can happen is I ignore you and even in that case you can try again! There shouldn't be that many options anyway so if you get it wrong the first time try again and again. Bottom line is: you just lost a bunch of time reading this paragraph for something as trivial as figuring out how to refer to me when you could just have deduced it which should make you think your life choices so far.

Re: Windows fails! (by ethical hacking...)

Post by vraiment » Thu Nov 22, 2012 5:12 pm

Mono runs at OS X

Mono runs at Linux

There's a mono compilers that compiles C# to iOS native code

Java only runs where the JVM runs

C# not
Image

User avatar
Anonymously Famous
JKL; Assassin
JKL; Assassin
Posts: 11413
Joined: Thu Mar 03, 2011 6:52 pm
Location: Area ???, under Bermuda Triangle

Re: Windows fails! (by ethical hacking...)

Post by Anonymously Famous » Fri Nov 23, 2012 2:53 pm

The JVM runs almost anywhere, even on some of the OSs available for the Raspberry Pi, as I understand it. It's even in a lot of places where it doesn't really make sense (I love using XKCD links like they're serious sources).

C++ only runs on machines that have compilers for it. And you have to rebuild it for each machine. Not so with Java. The same executable will run on any machine, provided it has the same (or more current) JVM.

Java may not run on the iOS (not Java's fault that Apple doesn't allow a JVM app), but it's THE language for Android.

Python's better than them all, though, because this, this and this.
BOTTOM TEXT
ThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
Proud poster of the 300kth post in General

User avatar
atomtengeralattjaro
Site Admin
Site Admin
Posts: 37518
Joined: Wed May 23, 2007 3:43 pm
Location: green
Pronouns: he / they / that submarine
Contact:

Re: Windows fails! (by ethical hacking...)

Post by atomtengeralattjaro » Fri Nov 23, 2012 4:15 pm

Anonymously Famous wrote:this
wait a minute.. did they crash into Calvin and Hobbes?!
Ivokyuftaf6666 wrote:
Sun Oct 20, 2019 5:22 pm
Awesome Site, Delivering Fun
Image

User avatar
assdef
JKL;'s Nightmare
JKL;'s Nightmare
Posts: 7273
Joined: Sat Jan 02, 2010 9:30 pm

Re: Windows fails! (by ethical hacking...)

Post by assdef » Sat Nov 24, 2012 2:42 am

I miss C&H. :(

I saw this on a Web site and nearly started crying:

Image
Image

User avatar
erik422
ASDF-ville inhabitant
ASDF-ville inhabitant
Posts: 19
Joined: Tue Nov 20, 2012 12:48 am

Re: Windows fails! (by ethical hacking...)

Post by erik422 » Mon Nov 26, 2012 10:39 pm

well... back to the java thing. I know java cannot run on iOS. But it still WAY WAY WAY more portable than any C language. And it's not that hard to get a JVM. If it's really that much trouble people can even make a mac app and a windows exe and a linux whatever that runs the java app with a JVM bundled in it. I know C++ basics, but I don't know how to do stuff that is really easy in java. For example, last week I tried to get boost c++ so I could make threads easily (among other things) and I spent 2 hours fooling with CMD, searching for the broken jam executable link on the boost website, and trying to compile boost myself and came up with NOTHING. Then I tried the complicated winapi threading api and it didn't work either (probably because I am such a newb at winapi). With Java it's as easy as

Code: Select all

Thread t=new Thread(new Runnable(){
  public void run(){
    // do whatever
  }
});
t.start();
EDIT: ya, I like python too.
import soul
Note: If you are noting this note, then please note that there is nothing to note. :D

User avatar
Anonymously Famous
JKL; Assassin
JKL; Assassin
Posts: 11413
Joined: Thu Mar 03, 2011 6:52 pm
Location: Area ???, under Bermuda Triangle

Re: Windows fails! (by ethical hacking...)

Post by Anonymously Famous » Thu Nov 29, 2012 2:24 am

atomtengeralattjaro wrote:
Anonymously Famous wrote:this
wait a minute.. did they crash into Calvin and Hobbes?!
Yes. Yes they did.
BOTTOM TEXT
ThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
Proud poster of the 300kth post in General

User avatar
Gamma
ASDF Prophet
ASDF Prophet
Posts: 3606
Joined: Fri Sep 10, 2010 1:16 am
Location: Behind you.

Re: Windows fails! (by ethical hacking...)

Post by Gamma » Thu Nov 29, 2012 7:28 pm

Java's slow and icky and hard to work with and is only worth using for web-based applets. You're better off using C# or C++ or .NET or something else for desktop apps.
Lawl.
SCRATCH THAT, I HAVE RETURNED

User avatar
Anonymously Famous
JKL; Assassin
JKL; Assassin
Posts: 11413
Joined: Thu Mar 03, 2011 6:52 pm
Location: Area ???, under Bermuda Triangle

Re: Windows fails! (by ethical hacking...)

Post by Anonymously Famous » Thu Nov 29, 2012 8:12 pm

You can avoid Java altogether if you want. There are alternatives for web apps.

Some people really like it, though.
BOTTOM TEXT
ThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
Proud poster of the 300kth post in General

User avatar
assdef
JKL;'s Nightmare
JKL;'s Nightmare
Posts: 7273
Joined: Sat Jan 02, 2010 9:30 pm

Re: Windows fails! (by ethical hacking...)

Post by assdef » Fri Nov 30, 2012 5:59 am

Plus there are ample choices for caffeinated drinks other than coffee, if you're not a java fan.
Image

User avatar
Shai'tan
ASDF's Best Friend
ASDF's Best Friend
Posts: 26276
Joined: Fri Sep 14, 2007 12:14 pm
Location: Seven
Contact:

Re: Windows fails! (by ethical hacking...)

Post by Shai'tan » Mon Dec 03, 2012 2:10 pm

vraiment wrote:i always was too lazy to learn emacs

but not to learn vi(m)

I like vi(m)
We use emacs at the university I go to. It's not that hard to learn. I like it.
Quote of the Ages:
atomtengeralattjaro wrote:The Forums of ASDF turn, and Pages come and pass, leaving memories that become legend. Legend fades to myth, and even myth is long forgotten when the Page that gave it birth comes again. On one Page, called the Six Hundred and Ninety Fifth Page by some, a Page yet to come, a Page long past, a post was made by atomtengeralattjaro. The post was not the beginning. There are neither beginnings nor endings to the turning of the Forums of ASDF. But it was a beginning.

User avatar
assdef
JKL;'s Nightmare
JKL;'s Nightmare
Posts: 7273
Joined: Sat Jan 02, 2010 9:30 pm

Re: Windows fails! (by ethical hacking...)

Post by assdef » Mon Dec 03, 2012 8:53 pm

Emacs? Is that like iMacs, only with an e?
Image

User avatar
Anonymously Famous
JKL; Assassin
JKL; Assassin
Posts: 11413
Joined: Thu Mar 03, 2011 6:52 pm
Location: Area ???, under Bermuda Triangle

Re: Windows fails! (by ethical hacking...)

Post by Anonymously Famous » Mon Dec 03, 2012 10:17 pm

assdef wrote:Plus there are ample choices for caffeinated drinks other than coffee, if you're not a java fan.
This message wins the thread.
BOTTOM TEXT
ThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
Proud poster of the 300kth post in General

User avatar
klinscy
ASDF Worshipper
ASDF Worshipper
Posts: 445
Joined: Tue Jan 17, 2012 10:05 pm
Location: Morgues, graveyards, hospitals, post-apocalyptic L.A.

Re: Windows fails! (by ethical hacking...)

Post by klinscy » Thu Dec 20, 2012 1:16 pm

All Extreamists (actually started by assdef) wrote:ROAR!!!!!

*insert plausible argument about the virtues of a particular religion here*

ALL OTHERS ARE WRONG AND MUST SUFFER MY WRATH!!!!
I edited that quote, but just look at the middle east.
Captain Kirk wrote:"Very funny, Scotty. Now beam down my clothes."
Zim wrote:Now, now, GIR. Movies don't create psychos. Movies make psychos more creative.
Best acronym EVER
atomtengeralattjaro wrote: Effectively removed. Again, simply, essentially deleted.

User avatar
Anonymously Famous
JKL; Assassin
JKL; Assassin
Posts: 11413
Joined: Thu Mar 03, 2011 6:52 pm
Location: Area ???, under Bermuda Triangle

Re: Windows fails! (by ethical hacking...)

Post by Anonymously Famous » Sat Jan 05, 2013 3:37 pm

Large text is large.
BOTTOM TEXT
ThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
Proud poster of the 300kth post in General

Post Reply