Firas

3,850
Reputation
315 views

Registered User

Name Firas
Member for 1 year
Seen 1 hour ago
Website
Location Kuwait
Age 24
I'm currently pursuing a CS master's degree while working as a teaching assistant. I have some professional experience working with a IT consultancy company, and also in a company specializing in business intelligence and performance management.

What I really want to do is to become a professional game programmer, but that's not feasible at the moment. Aside from game programming, my interests include programming languages, free software, and computer graphics. I'm also a huge movie buff.
1d
awarded  Mortarboard
1d
answered rails if object in an array
Dec
3
answered RPG dialogue engine / structure
Nov
26
accepted Intuitive 3D Math Resources
Nov
25
revised Intuitive 3D Math Resources
added 205 characters in body
Nov
25
answered Intuitive 3D Math Resources
Nov
18
comment Does anyone have any ideas for an assignment in game programming?
@Click Upvote: Like if you could release missiles or other objects that would attract the attention of the guided missiles and distract them for a while. Normal guided missiles would go for your decoys but more advanced guided missiles might have better systems that don't respond to decoys as easily.
Nov
18
answered Does anyone have any ideas for an assignment in game programming?
Nov
5
awarded  Cleanup
Nov
4
accepted Using axis and angle of rotation in glrotate
Nov
2
comment How do I find a integer/max integer in an array for ruby and return the indexed position?
Hmm.. the problem with that code is that by using each_index you are comparing indices with 20, and doing nothing with it (each_index just executes the block passing it each index, but your block evaluates to true or false without side effects). Furthermore, each_index returns the array, and you can't use an array as index for another array. I've updated my answer with code that should do what you want (prints Bill and Aimee only, because Bob is 20, and 20 is not less than 20).
Nov
2
revised How do I find a integer/max integer in an array for ruby and return the indexed position?
added 314 characters in body
Nov
1
answered How do I find a integer/max integer in an array for ruby and return the indexed position?
Nov
1
accepted Sorting Tables - Lua
Nov
1
answered Sorting Tables - Lua
Nov
1
accepted 2d Map based tile game engine
Oct
31
answered Can you tell iostreams which characters to treat as whitespace?
Oct
31
answered Using axis and angle of rotation in glrotate
Oct
31
revised Why does this split() fail?
Added \ to string
Oct
31
comment single developer for a social networking site
This is the sort of questions where if you need to ask it, then the answer is probably no.
Oct
31
answered i need to plot a graph on microsoft visual c++ 2008
Oct
31
answered Should I learn VB.NET or C#?
Oct
30
answered 2d Map based tile game engine
Sep
30
comment What is your favorite esoteric programming language?
Internet humor is so lame. LOLZ EPIC PHAIL XD
Sep
29
awarded  Yearling
Sep
5
awarded  Nice Answer
Sep
5
revised warning C4552: ‘<=’ : operator has no effect; expected operator with side-effect (C Programming)
added 469 characters in body
Sep
5
answered warning C4552: ‘<=’ : operator has no effect; expected operator with side-effect (C Programming)
Sep
4
awarded  Fanatic
Sep
1
awarded  Popular Question
Aug
30
revised need help in making this star program using for loop in C
added 16 characters in body; edited tags
Aug
25
revised Which loop to use, for or do/while?
added 240 characters in body
Aug
25
comment Which loop to use, for or do/while?
@Stevo3000: Yeah, it depends on what you want to do. I was referring to your for loop example where you had "may do work here" comments before and after the check for criteria.
Aug
25
comment Which loop to use, for or do/while?
@Daphna Shezaf: You're right, but you'd still need to have an if condition inside a while loop if you want to do some work before and after checking it
Aug
25
answered Which loop to use, for or do/while?
Aug
25
answered Research into Advantages of Having a Standard Coding Style
Aug
6
awarded  Popular Question
Jul
24
awarded  Nice Answer
Jul
20
comment Is this a bug in dotnet Regex-Parser?
If you see hoof prints, think horses—not zebras. The OS is probably not broken. And the database is probably just fine. —Andy Hunt and Dave Thomas :)
Jul
15
awarded  Nice Answer
Jul
15
comment Does a .net bool[] use one bit or one byte per item?
The size of bool in C++ isn't specified. It is only guaranteed that it should be at least the size of char (at least 8 bits), and at most equal to the size of long. I think really old versions of VC++ and g++ implemented it as an enum typedef, which would make it as big as int. In newer versions of VC++, it is a built-in type of size 1 byte; it's probably the same for newer versions of g++ as well.
Jul
12
answered What exactly is the halting problem?
Jul
8
awarded  Popular Question
Jul
7
revised How to backup SQL Server Agent jobs?
no longer relevant
Jul
7
comment When might multiple inheritance be the only reasonable solution?
A similar question: stackoverflow.com/questions/573913/…
Jul
7
asked How to backup SQL Server Agent jobs?
Jul
3
comment Array Searching code challenge
Oh, I forgot about to_s's format. How about inspect?
Jul
3
comment Array Searching code challenge
I was writing something similar (def t(a,b)(i=a.to_s.index(b.to_s))?[true, i]:[false, -1]end), but you beat me to it. +1!
Jul
1
comment Identifying last loop when using for each
Good idea, but you're comparing by value, so a list like ['A', 'B', 'C', 'D', 'C'] will get two last ones. Perhaps if you used !x.equal?(list.last)
Jul
1
revised Double ended priority queue
added 364 characters in body