Our server costs ~$56 per month to run. Please consider donating or becoming a Patron to help keep the site running. Help us gain new members by following us on Twitter and liking our page on Facebook!
Current time: April 24, 2024, 9:21 pm

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Which programming language
#21
RE: Which programming language
(February 28, 2010 at 2:39 pm)Tiberius Wrote:
(February 28, 2010 at 12:03 pm)leo-rcc Wrote: Why is it that every time I open a Java program my heart sinks to my shoes, because I know it will be slow as shit?
Are you joking? :S

No unfortunately I am deadly serious. From the EU we get various Java based apps shoved down our throats and without fail they all perform like crap. The same is true when I need to use HP's Java based Jetadmin program. Just getting the screens to load can take up to 30 seconds.
Best regards,
Leo van Miert
Horsepower is how hard you hit the wall --Torque is how far you take the wall with you
Pastafarian
Reply
#22
RE: Which programming language
(March 1, 2010 at 4:26 am)Loki_999 Wrote: I recommend Perl. Its the only language where you can write code and not be able to understand what the hell you just wrote, just that it works. Regular expressions.... mmmmmm, tasty.
All languages have regular expressions.
Reply
#23
RE: Which programming language
(March 1, 2010 at 6:40 am)Tiberius Wrote:
(March 1, 2010 at 4:26 am)Loki_999 Wrote: I recommend Perl. Its the only language where you can write code and not be able to understand what the hell you just wrote, just that it works. Regular expressions.... mmmmmm, tasty.
All languages have regular expressions.

Sure... but you have to admit that Perl regexps are in a world of their own.... admit it or burn!
A finite number of monkeys with a finite number of typewriters and a finite amount of time could eventually reproduce 4chan.
Reply
#24
RE: Which programming language
How so? I've just googled some examples and it all looks the same to me. I thought REGEX was a standard...
Reply
#25
RE: Which programming language
(March 1, 2010 at 9:55 am)Loki_999 Wrote:
(March 1, 2010 at 6:40 am)Tiberius Wrote:
(March 1, 2010 at 4:26 am)Loki_999 Wrote: I recommend Perl. Its the only language where you can write code and not be able to understand what the hell you just wrote, just that it works. Regular expressions.... mmmmmm, tasty.
All languages have regular expressions.

Sure... but you have to admit that Perl regexps are in a world of their own.... admit it or burn!

I thought the entire Perl language is one giant regex-like circle jerk.
Reply
#26
RE: Which programming language
Most of my experience is in Java. I find myself most comfortable coding in Java as that's what they teach in for your intro year at my University. In second year they throw some C, C++, Ruby and some godawful assembly language I can't recall right now.

I found C and C++ to be cryptic and cumbersome compared to Java, but definitely usable. Ruby was nice but also strange in some ways. Assembly coding was a nightmare for me.

My professors always bashed Java but I honestly think it's great. I'm still pretty new at the game, but everything seems very logical in Java.

Unfortunately learning the basics on Java makes things like memory management and pointers a little trickier to learn as you haven't had any hands on experience with them.

One of the coolest things I've done in Ruby was create a multi-threaded linked list that accepted any class, and created sorted threads for each instance variable. It was done with some funky metaprogramming and was something I never even though was possible to program. Really opened my eyes to the possibilities of dynamic programming.
- Meatball
Reply
#27
RE: Which programming language
(February 27, 2010 at 2:54 pm)Tiberius Wrote: Java isn't just about cross platform engineering, please don't think that. It's a powerful language in its own right, and an increasingly popular one because of its error handling and general ease of use.

C++ is unusable in comparison IMO.

I OBJECT! C++ is an excellent language if you are of such competence as to not need the security blanket of java.

what could be confusing about this? :
Code:
#include <iostream>

class Tmp {
public:
    Tmp(void) {
        memcpy(this->_buf, "Hello Atheist Forums", 5);
    }
    char _buf[20];
};

int main(void) {
    const unsigned int buf_size = 21;
    char buf[buf_size];
    memset(buf, 0x00, buf_size);
    memcpy(buf, "Water world.", 13);

    new (buf) Tmp;
    std::cout << buf << '\n';
    return 0;
}

Points to whoever can tell me what what this will output without using a compiler.
Hoi Zaeme.
Reply
#28
RE: Which programming language
Or as you would type in Java:

Code:
public class Tmp
{
        public static void main(String[] args)
        {
                System.out.println("Hello world.");
        }
}
Reply
#29
RE: Which programming language
... sure if you want to be boring about it.
Hoi Zaeme.
Reply
#30
RE: Which programming language
And python:
Code:
print "Hello Atheists Forum!"
Reply



Possibly Related Threads...
Thread Author Replies Views Last Post
  learning a certain language to communicate to believers and the religious Quill01 13 942 January 8, 2024 at 9:49 pm
Last Post: neil
  Which do you want to go? Foxaèr 13 791 October 18, 2023 at 10:49 am
Last Post: Gawdzilla Sama
  Which famous clone would you adopt? Fake Messiah 10 946 January 24, 2023 at 7:49 am
Last Post: h4ym4n
  Which TV game show would you win? Fake Messiah 6 841 January 18, 2023 at 11:18 pm
Last Post: Neo-Scholastic
  Which is worse? Foxaèr 13 618 February 23, 2022 at 8:59 am
Last Post: brewer
  Which one is the correct phrase? brewer 20 1889 September 21, 2021 at 7:20 am
Last Post: BrianSoddingBoru4
  Which ancient thread of mine should I necro? Foxaèr 11 592 August 25, 2021 at 7:15 am
Last Post: vulcanlogician
  One thing I hate about the human language. Brian37 13 1117 June 25, 2021 at 11:19 pm
Last Post: Ranjr
  Question regarding language Macoleco 4 589 June 6, 2021 at 12:35 pm
Last Post: Brian37
  Which console zo buy a 12-year-old kid? franzis 20 2425 February 23, 2020 at 4:30 pm
Last Post: Rhizomorph13



Users browsing this thread: 1 Guest(s)