• 0

Easy Programming Language


Question

Recommended Posts

  • 0

Java :| Bad dreams...

Start off some fun :)

try
{
data = new TextReader(new FileReader(FILE));
}

catch (IOException errorMessage)
{
System.out.println(errorMessage);
return;
}

while (data.eof() == false)
{
// all teh fun
}

edit: Crap I forgot how to do try catch :s

  • 0

Everything is easy with IntelliSense! :laugh:

I started with.... QBasic back on my 286 when I was like 10 or so. 11 years later I'm programming in ASP.NET with C# for work. I took Computer Science using C++.

None of it is all that bad if you ask me. VB is arguably "easier" to use, but I really find it harder to keep organized and not really much easier for someone who is new to read.

Edit: Just realized how far back this topic goes. Haha, oh well. I'm gonna see if I already replied to this a year or two ago and see what I said then :p

  • 0

Hey, I saw this thread so I decided to post here

I got Visual Basic Express 2005 the other day, and I really don't know where to begin. What language does this program use??? Where can I get started on learning the language?

Basically, I want to learn a language that is powerful, but not stupidly hard to understand

I understand quite a bit of HTML, will that help?

  • 0
I got Visual Basic Express 2005 the other day, and I really don't know where to begin. What language does this program use??? Where can I get started on learning the language?

VB 2005 is using the Visual Basic .NET language. There are gazillions of online tutorials and courses, if you're a complete noob I recommend you this video lessons:

http://msdn.microsoft.com/vstudio/express/vb/learning/

And of course, if you want to learn more you can always get a good book...

  • 0

VB 2005 is using the Visual Basic .NET language. There are gazillions of online tutorials and courses, if you're a complete noob I recommend you this video lessons:

http://msdn.microsoft.com/vstudio/express/vb/learning/

And of course, if you want to learn more you can always get a good book...

Thanks, this is very useful!

  • 0

Whats the most powerful programming language out of interest?

John :)

That is quite debatable, but probably the most powerful languages out there are functional languages, like ML.

http://en.wikipedia.org/wiki/Functional_language

http://en.wikipedia.org/wiki/ML_programming_language

  • 0

Whats the most powerful programming language out of interest?

John :)

The reason I asked is because I know exactly nothing about programming, but i'm looking to learn (Y)

There's no time limit i'm setting myself, so difficulty isnt a factor, if it takes me years to master, it takes me years, I dont really care.

The most important thing is that I learn a language that leaves me the most functional. I'm not looking to learn several language's or anything, just a single language that I can have the most potential with, that I can do the most with, if you know what I mean?

I'm guessing thats C++ from what i've read?

What do you guys think?

John :)

  • 0

The most important thing is that I learn a language that leaves me the most functional. I'm not looking to learn several language's or anything, just a single language that I can have the most potential with, that I can do the most with, if you know what I mean?

I'm guessing thats C++ from what i've read?

What do you guys think?

Interfacing languages is what most programming is about these days. :cry:

Also, if you are going to learn C++. I strongly recommend learning C first to understand the basics, especially pointers and pointer arithmetic. After that, the only things to learn in C++ are the object-oriented programming (OOP) concepts and the abilities of the Standard Template Library (STL).

  • 0

Java or C#, hands down. They have the most intuitive syntax I've seen. Mind you, I've never touched Ruby, so I can't compare with that, and I've heard it's a very good language. Anyway, as far as I've seen, Java and C# are great.

  • 0

I can really recommend Python as a first language because:

-it is easy to learn and forces you to write readable programs.

-it comes with "batteries included" which means that it contains functionality for doing a lot of things that you will do pretty often.

-it is fully object-oriented. Let's face it: at the moment, object-oriented is THE paradigm. You don't have to know what a paradigm is, just think of object-orientation as a feature of a language that makes it pretty easy to express even complex ideas.

Of course others might suggest you start with other languages but I really like Python (Ruby is also quite cool). Here's a tutorial that will get you started: http://swaroopch.info/text/Byte_of_Python:Main_Page

  • 0
I can really recommend Python as a first language because:

-it is easy to learn and forces you to write readable programs.

-it comes with "batteries included" which means that it contains functionality for doing a lot of things that you will do pretty often.

-it is fully object-oriented. Let's face it: at the moment, object-oriented is THE paradigm. You don't have to know what a paradigm is, just think of object-orientation as a feature of a language that makes it pretty easy to express even complex ideas.

Of course others might suggest you start with other languages but I really like Python (Ruby is also quite cool). Here's a tutorial that will get you started: http://swaroopch.info/text/Byte_of_Python:Main_Page

Apologies if this question doesnt make any sense or is just stupid, but if I was to learn python, could I make programs for Windows XP?

  • 0

I have some C++ exposure and some scripting languges. I was thinking of being a programmer at one point and took it up as a hobbiest of sorts.

Now I'm graduating university in with a Liberal Arts major. I do have some uses for a programming language on my own time for processing regular expressions, and manipulating SQL commands and MySQL or similar database. I'm not building an OS, I'm not making shareware programs.

Can someone make a recommendation. One caveat: I found C++ style programming pretty easy until it gets to the OOP stuff. Then I get Totally lost no matter the book or the explanation. Please consider this when making a recommendation.

Is there a language you can recommend with C++ style syntax that handles reg ex better. I know SED kinda well. As a non-professional, I'd rather just learn one langauge that does everything well then focus on stupid little languages for each task.

And I work from a Mac - no Windows.

  • 0

I started off by learning how to using mIRC's scripting language (mIRC = an irc client). Then moved onto visual basic, then delphi. Now I use C# and C++ - C++ when I want to create fast, powerful applications. C# for simplistic things.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      521
    2. 2
      PsYcHoKiLLa
      230
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!