Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 131
Search took 0.48 seconds.
Search: Posts Made By: dark_omen
Forum: Show Off Your Open Source Projects Aug 31st, 2007, 4:03 PM
Replies: 9
Views: 425
Posted By dark_omen
Thanks. I've been programming with Ruby for a...

Thanks.
I've been programming with Ruby for a little less than a year, and rails for about 4 months.

Where would be the best place to go to get people to buy ad space (I'm obviously going to hold...
Forum: Show Off Your Open Source Projects Aug 30th, 2007, 5:29 PM
Replies: 9
Views: 425
Posted By dark_omen
Thanks, but that's only partially true, i've done...

Thanks, but that's only partially true, i've done rails programs before, but with other people when I did an internship, but this is my first one with out direction or help from anyone else.

As for...
Forum: Show Off Your Open Source Projects Aug 30th, 2007, 1:50 PM
Replies: 9
Views: 425
Posted By dark_omen
Boozrs.com RoR website

This is my first big rails project that I did on my own. I really enjoyed working on this, rails is a great framework to build websites with, and ruby is an awesome language. Check it out at...
Forum: Ruby Aug 30th, 2007, 1:47 PM
Replies: 2
Views: 469
Posted By dark_omen
I did something with ajax on my rails site...

I did something with ajax on my rails site (http://boozrs.com) . The thing is I never could get the form_remote_tag to work properly with :update => 'someId', but something like this does work:
In...
Forum: Visual Basic .NET Mar 16th, 2007, 2:27 PM
Replies: 3
Views: 207
Posted By dark_omen
I don't know of any, but you could try...

I don't know of any, but you could try google.
And if there aren't any, that might be a fun little project for yourself.
Forum: C++ Mar 13th, 2007, 8:46 PM
Replies: 2
Views: 144
Posted By dark_omen
Well from that I think I found a solution after...

Well from that I think I found a solution after following a couple links I found this http://msdn2.microsoft.com/en-us/library/aa446491.aspx which seems to be what I want. It looks like it is for...
Forum: C++ Mar 13th, 2007, 8:11 PM
Replies: 2
Views: 144
Posted By dark_omen
need advice on problem with wireless network programming

I am trying to create an interface between a wireless device and a wifi access point, basically I just want to talk to the wifi access point to get all of the basic information (SSID, signal...
Forum: Coder's Corner Lounge Dec 26th, 2006, 3:57 PM
Replies: 20
Views: 465
Posted By dark_omen
Just go to class, and I know you said that you...

Just go to class, and I know you said that you want to be a hotshot, but I wouldn't recommend being a know it all. If you know programming already then you should do fine in the introductory courses....
Forum: Java Nov 15th, 2006, 8:45 PM
Replies: 0
Views: 121
Posted By dark_omen
seirpinski's triangle help

OK so I have to make sierpinski's triangle recursively. I have most of it done, but for some reason it just shows the top and right triangle subdivisions.
Here is what I have:

public void Serpinski...
Forum: C Nov 8th, 2006, 10:14 PM
Replies: 5
Views: 230
Posted By dark_omen
you determine it by how it grows. For instance...

you determine it by how it grows. For instance you have a nested for statements like this:

for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
//some statements;
}
}

then it...
Forum: C Nov 8th, 2006, 8:45 PM
Replies: 5
Views: 230
Posted By dark_omen
I am pretty sure the complexity of the first one...

I am pretty sure the complexity of the first one is O(log_2(n))
and the second one is O(n^2).
Forum: C++ Oct 14th, 2006, 1:55 PM
Replies: 7
Views: 185
Posted By dark_omen
I thought the problem was pretty obvious that I...

I thought the problem was pretty obvious that I don't know how to get a class to work, so sorry I guess.
Well I fixed it, with no errors:

//the header file
#include <iostream>
#include...
Forum: Other Programming Languages Oct 14th, 2006, 12:34 PM
Replies: 4
Views: 187
Posted By dark_omen
I don't know what algorithm they use in SQL to...

I don't know what algorithm they use in SQL to find or manipulate data, never really thought of it (I would suggest googling it, and then come back and tell us). I think using the SQL language is...
Forum: C++ Oct 14th, 2006, 12:23 PM
Replies: 7
Views: 185
Posted By dark_omen
object help

Okay, so basically I have all of the basics of c++ down now, but I can't seem to get classes to work, I have looked at a ton of examples and they all do something differently. For instance this is...
Forum: Coder's Corner Lounge Oct 10th, 2006, 10:23 AM
Replies: 19
Views: 413
Posted By dark_omen
Yeah I realized that, that's why I changed it...

Yeah I realized that, that's why I changed it like 5 seconds after I posted it.
Forum: Coder's Corner Lounge Oct 9th, 2006, 10:37 AM
Replies: 19
Views: 413
Posted By dark_omen
For the CS major I have to take: Calc 1 -...

For the CS major I have to take:
Calc 1 - 3
Differential Equations
Linear Algebra
Stats 1
And a couple other electives, plus the one's I need to take to get the math minor as well, at Umass Amherst.
Forum: C++ Oct 8th, 2006, 4:30 PM
Replies: 1
Views: 92
Posted By dark_omen
objects

In c++ is there a generic object class, like in java?
Forum: C++ Oct 4th, 2006, 5:30 PM
Replies: 11
Views: 249
Posted By dark_omen
Yeah I agree. But one more question, which will...

Yeah I agree. But one more question, which will probably be my last, is inheriting in c++ like the way you would inherit classes in C#?
Thanks for all the help too! :)
Forum: C++ Oct 4th, 2006, 5:20 PM
Replies: 11
Views: 249
Posted By dark_omen
What about interfaces and implementing them or...

What about interfaces and implementing them or extending other classes, how is that done in c++? Is it similar to defining classes?
Thanks
Forum: C++ Oct 4th, 2006, 3:57 PM
Replies: 11
Views: 249
Posted By dark_omen
So the header file is kind of like an interface...

So the header file is kind of like an interface or like a model of what the class should look like and include, and then you just define everything in an actual .cpp file. And I noticed on the...
Forum: C++ Oct 4th, 2006, 12:12 PM
Replies: 11
Views: 249
Posted By dark_omen
relearning c++

So I learned c++ (well very basic c++) a while back, but I am trying to relearn it using a lot of the OO part of it, like I have been learning in Java, and I was wondering if you can have an external...
Forum: C Sep 20th, 2006, 3:33 PM
Replies: 11
Views: 413
Posted By dark_omen
what are the assemblers that you are talking...

what are the assemblers that you are talking about, i mean where can I get them? Thanks
Forum: C Sep 19th, 2006, 4:08 PM
Replies: 11
Views: 413
Posted By dark_omen
Yeah, I can write the program in BASIC on the...

Yeah, I can write the program in BASIC on the calculator, but that's a pain cause it takes forever, and they go a little slower. I would make them in asm but i have no idea how to do that.

And after...
Forum: C Sep 18th, 2006, 9:06 PM
Replies: 11
Views: 413
Posted By dark_omen
Yeah, when I try running it, it said I need the...

Yeah, when I try running it, it said I need the VTI (Virtual TI) so I got that to test them, but that didn't work. It did compile it though, but I gave me files that I have no idea what to do with...
Forum: C Sep 18th, 2006, 7:42 PM
Replies: 11
Views: 413
Posted By dark_omen
I downloaded the program but how do you get...

I downloaded the program but how do you get compiled programs to work on my calculator? When I compile it it creates some files like a "blank" file and an "O" file.
Thanks
Forum: C Sep 18th, 2006, 5:47 PM
Replies: 11
Views: 413
Posted By dark_omen
Question question about c and calc programs

Is it possible to make calc programs written in c, or in other languages, besides assembly. More percise programs that will run on ti-89's or higher.
Thanks
Forum: Software Design and Algorithms Sep 1st, 2006, 8:27 PM
Replies: 2
Views: 211
Posted By dark_omen
Is it on a closed grid (like could you map it out...

Is it on a closed grid (like could you map it out on grid paper), cause there are a few options, and any of them would work?
Forum: Community Announcements and Feedback Sep 1st, 2006, 8:24 PM
Replies: 45
Views: 1,055
Posted By dark_omen
If you're looking for a contest for programming,...

If you're looking for a contest for programming, try google code jam http://www.topcoder.com/pl/?module=Static&d1=google06&d2=overview, looks good, I think that registration for this year is over or...
Forum: Visual Basic Aug 25th, 2006, 9:12 PM
Replies: 1
Views: 207
Posted By dark_omen
vb functions for excel, columns?

I am trying to write a user defined function for a problem I have in excel, but I don't know how to add a range of a column to the function. Does it go in an array or another way? Basically that is...
Forum: PHP Jul 12th, 2006, 8:58 PM
Replies: 8
Views: 191
Posted By dark_omen
thanks for the info

thanks for the info
Forum: PHP Jul 12th, 2006, 3:41 PM
Replies: 8
Views: 191
Posted By dark_omen
Well here it is, but it's not much different from...

Well here it is, but it's not much different from what I posted before.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Forum: PHP Jul 12th, 2006, 3:26 PM
Replies: 8
Views: 191
Posted By dark_omen
PHP class

I made a php class, but how do I use it?
I know that you make an object using the constructor:

$obj = new ClassName();

And I know that you can use functions of the class by:

$obj->myMethod();

but...
Forum: PHP Jul 3rd, 2006, 9:57 PM
Replies: 3
Views: 234
Posted By dark_omen
thanks that did it (packages are always great),...

thanks that did it (packages are always great), still think I will try to configure it on my own, just for future reference.
Forum: C# Jul 3rd, 2006, 9:55 PM
Replies: 18
Views: 469
Posted By dark_omen
You don't have to use it stick with what you like...

You don't have to use it stick with what you like and find challenging. And I still enjoy programming with these higher level languages and still find them challenging. And why are you posting that...
Forum: PHP Jul 3rd, 2006, 8:17 PM
Replies: 3
Views: 234
Posted By dark_omen
need help setting up php and apache on my windows XP machine

I am having trouble setting up PHP with my apache server on my windows machine. It gives me an error when I test the configuration saying that "Cannot load C:/php5/php5apache2.dll into server: The...
Forum: PHP Jul 2nd, 2006, 8:18 PM
Replies: 9
Views: 189
Posted By dark_omen
Ok, I'll try to find a good tutorial online and...

Ok, I'll try to find a good tutorial online and probably look around the PHP manual as it looks pretty extensive. Thanks for the help.
Forum: PHP Jul 2nd, 2006, 6:35 PM
Replies: 9
Views: 189
Posted By dark_omen
OK so if I put it on the same page that the form...

OK so if I put it on the same page that the form is on it wouldn't be seen by the client?
How would that look though, just have the $_POST['']'s in a <?php ... ?> tags right after the form, or would...
Forum: PHP Jul 2nd, 2006, 5:15 PM
Replies: 9
Views: 189
Posted By dark_omen
No i just wanted to do it on the backend so...

No i just wanted to do it on the backend so people couldn't see what was going on with the information. If I had a class, could i just make a function (or even the constructor) to take in the post...
Forum: PHP Jul 2nd, 2006, 4:26 PM
Replies: 9
Views: 189
Posted By dark_omen
question on implementation

I'm new to PHP, but I know how to program, and it doesn't seem that hard to do, but I don't know how to layout classes or use them, etc.. and I can't seem to find any straight forward response on...
Forum: C++ Jun 26th, 2006, 11:34 AM
Replies: 19
Views: 475
Posted By dark_omen
there is a book called c++ for java programmers...

there is a book called c++ for java programmers which is pretty good, I would check that out.
Showing results 1 to 40 of 131

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:12 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC