topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 25, 2024, 9:27 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jeremejazz [ switch to compact view ]

Pages: prev1 [2]
26
Developer's Corner / Re: What's your Programming Language?
« on: November 15, 2009, 04:50 AM »
My favorite programming language is Java.
Oh God why?  ;D

It's a bit like C/C++ in many ways.
... except that you can write efficient and fast code in C++.

I'm curious about delphi... is it also an open source language?
Not actually. http://en.wikipedia....i/Embarcadero_Delphi

what's the difference with a scripting language and a programming language?
Scripting languages are usually made for a certain purpose.
Tuxman, Do you consider speed more important than functionality? C++ may be fast, but how functional enough is it?

JAVA may be slow but Sun is currently trying to develop a faster compiler for JAVA and the results are being seen through their updates..


27
Developer's Corner / Re: What's your Programming Language?
« on: November 13, 2009, 09:48 PM »
I just noticed, some of the replies are about java script... what's the difference with a scripting language and a programming language? Based on their replies, it looks like they're used interchangeably.

28
Developer's Corner / Re: What's your Programming Language?
« on: November 13, 2009, 09:48 PM »

My favorite programming language is Java. It's a bit like C/C++ in many ways. It is very flexible and manageable, and it runs on many platforms. You can apply modular approach on your code where in you can recycle some of the classes you use.

I'm curious about delphi... is it also an open source language?


29
Developer's Corner / Re: Learning Windows Script Host
« on: November 08, 2009, 04:19 AM »
thanks ;D

30
Developer's Corner / Re: Learning Windows Script Host
« on: November 07, 2009, 02:38 AM »
ok thanks... so you mean that WSH will no longer be implemented..?

31
Developer's Corner / Re: Learning Windows Script Host
« on: November 03, 2009, 03:14 AM »
how's that related to WSH?...

32
Developer's Corner / Re: Learning Windows Script Host
« on: November 03, 2009, 03:13 AM »
Ok.. thanks...  uhhh.. what are FARR plugins for :huh:

33
Developer's Corner / Learning Windows Script Host
« on: November 03, 2009, 02:59 AM »
Hi.. I just came across a book in Windows Script Host and I was just wondering if it is essential
to study it. And what are the benefits of learning WSH?  I would like to know your opinion :-[

34
alright!  ;D

35
Perl / Is Perl still being used?
« on: October 26, 2009, 05:02 AM »
Is perl still being used?.. . it was widely used years ago... who among you are still using this language?

36
Developer's Corner / What's your Programming Language?
« on: October 26, 2009, 04:44 AM »
So, I just want to know, what is your most preferred language. This is just to find out which is the most preferred ;)

37
N.A.N.Y. 2008 / Re: Tim - Image to Text Converter
« on: October 26, 2009, 04:42 AM »
 ;Doh .. it seems that you just made some error aniearsenal..
Is the program not running?.. you need to extract the library files to where youput the application

38
whoah.. now this is very interesting...  hybrid programming eh?

since the two languages are related, you can merge their source codes...


39
Developer's Corner / Re: Help wanted for front end to MS Access DB
« on: October 21, 2009, 09:44 AM »
Hey, could you share me a copy of the database and VB exe file.. are you using visual basic .NET . . ?

we're studying database connections using Visual Basic and MS Access...

Maybe I could ask my team to revise it...

this is quite a startling

40
Developer's Corner / The JOptionJazz Project (JAVA)
« on: June 11, 2009, 01:42 AM »

I'm coming up with a program that lets you create and design JOptionPane (particularly message dialogs and confirm dialogs, etc... instantly. What do you think of this idea?....


41
Java / Re: java applet problems
« on: April 06, 2009, 06:14 AM »
hmmm.... i'll try to work on this some time

42
Developer's Corner / Re: C# Palindrom Recursive Program
« on: April 06, 2009, 06:04 AM »
er.. can i post a C Program version?... its C language also right?...  :-[

cool.. my classmate also used a recursion in his palindrome..

43
Developer's Corner / Re: JAVA Palindrome Program
« on: April 02, 2009, 05:55 AM »
I'll try to post the source file next time

44
N.A.N.Y. 2008 / Re: Tim - Image to Text Converter
« on: April 02, 2009, 05:47 AM »
It's nice.. haha... I like this program.. So it's written in C Language? did u make this?...

45
Developer's Corner / JAVA Palindrome Program
« on: April 02, 2009, 05:46 AM »
A palindrome can be a single word, a verse, a sentence, a series of sentences, or a number that reads the same forward and backward. People have been creating palindromes in all languages since at as early as the third century BC*. Even today, they are still created with the help of all programming languages.
   
The Program

   So here's the palindrome program, written in JAVA. It lets the user input for a String and then tells the user if it is a palindrome or not. What you see there is just the main module of the program.
   
   
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter Word or Sentence: ");
String temp_text = input.readLine().trim();
StringBuffer text = new StringBuffer(temp_text);
boolean test = (text.toString()).equalsIgnoreCase((text.reverse()).toString());
if(test)
{
System.out.println("Palindrome!");
}
else
{
System.out.println("Not a Palindrome");
}


   I used the java.util.StringBuffer class in order to use the reverse() method. Since palindromes aren't supposed to be case sensitive, I made use of the equalsIgnoreCase() method.
   
   The actual source code of the program is still under development
   
   
   
   I've also included an applet version of this program just in case some of you don't have a Java Development Kit(JDK) but still have a Java Runtime Environment(JRE). Mozilla browsers usually have this program installed.
   
Palindrome(Applet).rar


Sample Palindromes: :D

   Can't think of a word or sentence? Try some of these suggested inputs:
   123454321
   Madam
   Avid Diva
   Dennis Sinned
   
   
Weakness
   
   There's just one problem I am trying to solve in this program. Palindromes aren't supposed to be affected by spaces and punctuation marks. This problem could be resolved by the java.util.StringTokenizer class since you can set it to ignore these delimiters. I will post an update as soon as I I get this successfully. I would appreciate your help in this difficult one.
   
   
*Desk Reference, the New York Public Library

46
Developer's Corner / The calCOOLator Program
« on: March 23, 2009, 05:50 AM »
Introducing, the calCOOLator 8) program. It is a program designed to add, subtract, multiply, divide, and get the modulus of two numbers. The program then displays the results on the Text Area. Another feature is that you can save the results in text file format. It is created as a demonstration of process management and disk management.(pretty COOL huh? :D)
   

http://i112.photobucket.com/albums/n188/jeremejazz/For%20Blogging/calCOOLator-Demo.jpg


This program was inspired from the power Calculator of Windows PowerToys. I am sharing the source code for some improvements since this forum site is also for open source softwares. You just need a Java Compiler(jdk) in order to run this code.
   Right now I am still having a problem with JFileChooser's File Filter. When saving the file, you need to specify what should the extension name be. Maybe you guys could solve that. Also, I still don't know how to put a menu bar so you could also improve that part.
   
   I've also created an applet version of the program for you to know what it looks like. Just run the HTML file on your web browser. You will need a Java Runtime Environment so that this will work.
calCOOLator(Applet Version)

Pages: prev1 [2]