Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
Member Avatar for pspwxp fan
Member Avatar for Amr_Mohammad_R

If I were you, I would start working on improving your logic skills before diving into more complex game development and working with engines. start with 2D games and do some simple game like breakout. you may do using ascii graphics first so that you are not overwhelmed learning too …

Member Avatar for Heanre
0
214
Member Avatar for Himesh_1
Member Avatar for david.nicely.393
Member Avatar for hamza195

welcome. btw, i recommend irrlicht. i have great success with it working with 3D.

Member Avatar for happygeek
0
81
Member Avatar for anubhavat

I think that is expected. You selected 3 so only 3 will be sent. For others hidden, all will be sent

Member Avatar for anubhavat
0
201
Member Avatar for vivekH

I agree have 2 stacks. E.g. do and redo. doOperation(String str) { do.add(str); } undo() { String s= do.pop(); redo.add(s); } redo() { String s= redo.pop(); do.add(s); }

Member Avatar for janissantony
0
137
Member Avatar for lea_1

If just rectable collision detection, just test the for corders if inside the rect. boolean collide(int x1, int y1, int w1, int h1, int x2, int y2, int w2, int h2) { return collide(x1, y1, w1, h1, x2, y2) || collide(x1, y1, w1, h1, x2+w2, y2) || collide(x1, y1, w1, …

Member Avatar for janissantony
0
859
Member Avatar for sami saba
Member Avatar for Taywin
0
214
Member Avatar for My_1
Member Avatar for Daniel_31
Member Avatar for janissantony
0
222
Member Avatar for Febel

not tried but you may try select SID, count(*) from student s, sborrow b where s.SID = b.SID group by s.SID order by count(*) desc limit 1

Member Avatar for janissantony
0
291
Member Avatar for nadiam
Member Avatar for janissantony
0
858
Member Avatar for joshua_8

If you want to take out the time component, use date function. E.g. where date(tbl.datefield) >= date(:dateparam)

Member Avatar for janissantony
0
146
Member Avatar for coder123

the first time you run it, the database if preparing execution plan. afterwards, when it sees the same query again, it will retrieve execution plan from a cache. mysql also does query caching too, so it is possible the result you got are cached.

Member Avatar for janissantony
0
384
Member Avatar for jorwill.harion
Member Avatar for Tycellent

we can only give advice on tech problems. for creative, i think you have to resolve yourself

Member Avatar for janissantony
0
180
Member Avatar for KushMishra

i suggest working on gameplay programming before doing any api stuff. I mean, try working on some logic programming. E.g. implement a number guessing game. Then make up more and more complex game to write.

Member Avatar for janissantony
0
250
Member Avatar for Alex_20

learning bash is a good investment. very useful if you are into servers and such

Member Avatar for janissantony
-1
241
Member Avatar for A***

1. is C/C# worth learning if you have basic knowledge of c++ and other programing languages such as python,ruby,lua....... focus on the platform you want to write code into. for desktop games of course c/c++. for android, then c/c++ is not required 2. i know math is needed in programing …

Member Avatar for janissantony
0
173
Member Avatar for Moaid

I recommend 3ds max because it is easy to learn and geared towards gaming. I think they are popular among game developers because it is easy to extend via custom made plugins. you can export your objects using .obj format and load it on irrlicht. try irredit (editor) to help …

Member Avatar for janissantony
0
203
Member Avatar for Saleem_3

CXF in my opinion is the best framework for this. You may also try JEE, as it only needs annotation to do this. But of course, it is contract last. I prefer contract first Frameworks

Member Avatar for janissantony
0
81
Member Avatar for N S K

Try this post: http://www.developer.com/design/article.php/3711331/Implementing-an-Anti-Virus-File-Scan-in-JEE-Applications.htm

Member Avatar for janissantony
0
112
Member Avatar for Om Omer

idx1 = -1; idx2 = -1; for (int i=0; i<arr.length; i++) { if (num1 == arr[i] && idx1 == -1) { idx1 = i;} if (num2 == arr[i] && idx2 == -1) { idx2 = i;} } if (idx1 != -1 and idx2 != -1) { answer = Math.abs(idx2-idx1); }

Member Avatar for janissantony
-1
105
Member Avatar for NagaSwarupa
Member Avatar for amita_1
Member Avatar for janissantony

Hello, I am new here. I am a java developer. hope to contribyte here

Member Avatar for janissantony
0
67
Member Avatar for Kapeesh

You may need jquery and css to do that. E.g. http://www.chartjs.org/docs/

Member Avatar for janissantony
0
185
Member Avatar for ankit1122

You can import the class and be able to access it inside the jsp <%@ page import="package1.myClass1,package2.myClass2,....,packageN.myClassN" %>

Member Avatar for janissantony
0
98