Search found 60 matches

by Renavoid
Thu Mar 19, 2015 2:20 pm
Forum: Recruitment
Topic: Looking for Web & App Developer
Replies: -1
Views: 6218

Re: Looking for Web & App Developer

Since it's a small team and not an actual company, the windows fee would only be $19. I have an interest in this project, but I'm only really interested in the windows dev and architecting the framework. I technically have the experience for iOS (and to a certain degree, Android as well), but don't ...
by Renavoid
Wed Mar 18, 2015 1:10 pm
Forum: Recruitment
Topic: Looking for Web & App Developer
Replies: -1
Views: 6218

Re: Looking for Web & App Developer

Hmm.. I think it's an interesting idea, although I wonder a few things about it. I don't have an Android or iPhone, so I haven't actually tried the app to see what it really does. Just making assumptions. It's a service - but why no maintenance fees, even nominal? You plan for others to rely on your...
by Renavoid
Mon Feb 23, 2015 1:29 pm
Forum: Coding
Topic: Why Java? Why C?
Replies: -1
Views: 10121

Re: Why Java? Why C?

Unreal isn't using UnrealScript anymore. It has Blueprints for visual scripting, but everything else is C++.
by Renavoid
Wed Feb 18, 2015 6:37 pm
Forum: Off-Topic
Topic: Goat Simulator not a MMO
Replies: -1
Views: 1575

Re: Goat Simulator MMO SCAM!

Hahaha, I remember seeing this when it came out. I laughed so hard because of their press where they basically just say, "Well, we didn't lie to you... it IS a Goat MMO Simulator, not a Goat Simulator MMO." My friend was depressed.
by Renavoid
Fri Feb 13, 2015 4:03 pm
Forum: Coding
Topic: Why Java? Why C?
Replies: -1
Views: 10121

Re: Why Java? Why C?

They're different languages. C++ (pronounced C plus plus) is generally used for systems level operations and embedded software. C# (pronounced C sharp) is usually a .NET platform language. C++ was originally created as something like "C with Classes" hence the name "plus plus" bu...
by Renavoid
Fri Feb 13, 2015 1:27 pm
Forum: Coding
Topic: Why Java? Why C?
Replies: -1
Views: 10121

Re: Why Java? Why C?

tl;dr: The type of application you're developing changes the style you develop with I've never developed for Android, nor have I developed games using Java, so I can't really speak there either. But, I can add some more light to the whole "it's not the same as developing for desktop" quest...
by Renavoid
Sat Feb 07, 2015 3:31 pm
Forum: Coding
Topic: Floating Div
Replies: -1
Views: 5885

Re: Floating Div

Ahhaa, Okay, that's the detail I was missing. Go back to that first thing you tried to do, but with position:fixed instead of absolute. <html> <style type="text/css"> div { border: 1px solid #ccc; display: block; padding: 0; margin:0; } #bottom { position: fixed; bottom: 0; right: 285px; l...
by Renavoid
Sat Feb 07, 2015 4:04 am
Forum: Coding
Topic: Floating Div
Replies: -1
Views: 5885

Re: Floating Div

Are you creating your other columns by floating? You could do this: <html> <style type="text/css"> div { border: 1px solid #ccc; } #left { float: left; } #right { float: left; } #center { float: left; width:80%; } #bottom { position: fixed; bottom: 0px; width:inherit; } </style> <body> <di...
by Renavoid
Fri Feb 06, 2015 8:59 pm
Forum: Coding
Topic: Floating Div
Replies: -1
Views: 5885

Re: Floating Div

Well, there's a couple of things that could manage that, depending on your particular needs. Based on what you've said, I think you were on the right track with position: absolute. But, what you actually need is position: fixed. That sets an absolute position relative to the window, so it remains in...
by Renavoid
Fri Feb 06, 2015 1:30 pm
Forum: Coding
Topic: Floating Div
Replies: -1
Views: 5885

Re: Floating Div

I'm confused as well.. Maybe a quick sketch of where you want it stay on the page? Visual layout is much easier to think about when we, you know, lay it out visually.

Go to advanced search