Search found 2454 matches

by MarauderIIC
Thu May 09, 2013 6:34 am
Forum: General/Off-Topic
Topic: Please help a brother out!
Replies: 25
Views: 9639

Re: Please help a brother out!

In light of Falco's post -- if you feel you donated under false pretenses or otherwise misunderstood the purpose, e-mail or PM me (e-mail preferred) and I'll gladly pay you back. Since this has been bumped, and I had otherwise forgotten about it -- I can't be on the hook forever, so offer as it is ...
by MarauderIIC
Sat May 04, 2013 12:11 am
Forum: General/Off-Topic
Topic: So what are you guys doing these days?
Replies: 26
Views: 10793

Re: So what are you guys doing these days?

I do so much coding at work I mostly play games or hang out with the wife when I'm home.
by MarauderIIC
Fri Apr 12, 2013 11:28 pm
Forum: Programming Discussion
Topic: Web Browser from scratch
Replies: 22
Views: 7020

Re: Web Browser from scratch

./apps/appname/data/../../../ would still work.
by MarauderIIC
Fri Apr 12, 2013 11:21 pm
Forum: Programming Discussion
Topic: Programmer's Education Index
Replies: 63
Views: 64036

Re: Programmer's Education Index

Do something fun, and don't be afraid to reinvent it while you're learning.
If you want to jump into a graphics API, give it a shot.
by MarauderIIC
Fri Apr 12, 2013 11:06 pm
Forum: General/Off-Topic
Topic: How did you stumble across the Elysian Shadows Project?
Replies: 32
Views: 32582

Re: How did you stumble across the Elysian Shadows Project?

Other: Friends with developer when he started
by MarauderIIC
Mon Apr 01, 2013 11:49 pm
Forum: Game Development
Topic: Overworld Exploration Implementations - Your thoughts?
Replies: 18
Views: 9237

Re: Overworld Exploration Implementations - Your thoughts?

I think that Ocarina of Time's hub world got rather boring, so be careful. You probably don't want to put combat that gets in the way into your overworld.
by MarauderIIC
Sun Mar 31, 2013 10:50 pm
Forum: Game Development
Topic: Overworld Exploration Implementations - Your thoughts?
Replies: 18
Views: 9237

Re: Overworld Exploration Implementations - Your thoughts?

dandymcgee wrote:It really depends on the style of your game.
This.

What kind of game are you making?

And you omitted the Super Mario World type of overworld, which is essentially just a map with levels that nothing happens on.
by MarauderIIC
Sat Mar 23, 2013 9:35 pm
Forum: Programming Discussion
Topic: Multithreading help in C# [FIXED]
Replies: 6
Views: 2403

Re: Multithreading help in C#

Threading in general varies when you call lock on the same object that is already locked. It is possible in C# that performing lock(array) within a lock(array) does not release locks correctly. Suggest attempting to refactor such that you do not perform a lock(array) inside a lock(array), as you are...
by MarauderIIC
Mon Mar 18, 2013 11:32 am
Forum: Programming Discussion
Topic: Server Side Practice
Replies: 20
Views: 6440

Re: Server Side Practice

If you're getting an Access Forbidden, check any applicable config files to make sure you are allowing access by the correct user group (probably a wide-open one).
by MarauderIIC
Mon Mar 18, 2013 11:28 am
Forum: General/Off-Topic
Topic: The Nerd Night - New Website
Replies: 6
Views: 4881

Re: The Nerd Night - New Website

hurstshifter wrote:tabletop games, video games, comics, professional wrestling(WWE)


:D

You guys have great voices for podcasting.
by MarauderIIC
Mon Mar 18, 2013 11:24 am
Forum: General/Off-Topic
Topic: Please help a brother out!
Replies: 25
Views: 9639

Re: Please help a brother out!

In light of Falco's post -- if you feel you donated under false pretenses or otherwise misunderstood the purpose, e-mail or PM me (e-mail preferred) and I'll gladly pay you back.
by MarauderIIC
Tue Mar 12, 2013 4:56 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 27500

Re: Scripting Language development

May as well. I'm sure that the people from the future may learn something.

Image
Alt text All long help threads should have a sticky globally-editable post at the top saying 'DEAR PEOPLE FROM THE FUTURE: Here's what we've figured out so far ...'
by MarauderIIC
Mon Mar 11, 2013 5:05 am
Forum: Programming Discussion
Topic: Server Side Practice
Replies: 20
Views: 6440

Re: Server Side Practice

Yup, because int bind(int sockfd, struct sockaddr *my_addr, int addrlen); <snip> my_addr is a pointer to a struct sockaddr that contains information about your address, namely, port and IP address [/u]. <snip> (Emphasis mine) Thus it's possible to listen only on desired IP addresses, and this is imp...
by MarauderIIC
Mon Mar 11, 2013 5:03 am
Forum: Programming Discussion
Topic: Web Browser from scratch
Replies: 22
Views: 7020

Re: Web Browser from scratch

As a word of advice, if you're using regexes (I don't know if you are or not), you're doing it wrong. HTML isn't regular. Nope :P It goes through every character in the string, detects a tag begin, gets the tag end, processes the string in the middle, gets where the tag ends then processes the stri...
by MarauderIIC
Sat Mar 09, 2013 11:04 pm
Forum: Game Development
Topic: Rad Raygun
Replies: 67
Views: 80247

Re: Rad Raygun

To all of you guys that have supported me and given feedback - thank you! It really means a lot. It's cool to get feedback from people that "get it." You guys know what it takes to stay true to your vision, build a team, develop the tools, and LAUNCH the damn thing. Well, maybe everything...