Search found 221 matches

by giniu
Mon Jan 31, 2011 8:52 pm
Forum: A Whiff of Steam
Topic: Official "A Whiff of Steam", the LövelyRPG project topic
Replies: 203
Views: 302202

Re: Official "A Whiff of Steam", the LövelyRPG project topic

We completed first coding sprint, yay! You can see results on our github page, I updated the .love file ( prototype1_iteration2_wip3.love ). Though don't expect miracles, it's still very very early, buggy prototype of moving, nothing more for now. Anyway here's what was done: 1) we found our way aro...
by giniu
Sat Jan 22, 2011 3:27 pm
Forum: A Whiff of Steam
Topic: Official "A Whiff of Steam", the LövelyRPG project topic
Replies: 203
Views: 302202

Re: Official "A Whiff of Steam", the LövelyRPG project topic

We all have limited time to work on this project. That's why, during last meeting we decided what to do. From now on, the development of Whiff of Steam will occur in occasional codding sprints, with multiple developers working on project at the same time, from late evening (CEST) to last man standin...
by giniu
Wed Jan 19, 2011 9:03 am
Forum: General
Topic: What Languages Do You Know?
Replies: 45
Views: 21941

Re: What Languages Do You Know?

Ah, why not, I will add myself here too :P Lets say I put it here in order I learned them Basic 2.0, Assembly of 6502, Turbo Pascal 7, ActionScript 1, LaTeX, C, Bash, Erlang, C++, Ocaml, plain TeX, Lua, Haskell, Python, Docbook XML, Markdown (pandoc extensions) There are also languages that are used...
by giniu
Sun Jan 16, 2011 9:02 pm
Forum: General
Topic: Your Favorite Programming Language
Replies: 29
Views: 5675

Re: Your Favorite Programming Language

That's one I wasn't expecting. A while ago, PHP used to be my favorite language... but I'm a little tired of the inconsistency and procedural style of it. However, for web work, that combination is still what I use. If you use php for web work, you might want to take a look at that (Haskell :P) sol...
by giniu
Sun Jan 16, 2011 4:02 pm
Forum: General
Topic: Your Favorite Programming Language
Replies: 29
Views: 5675

Re: Your Favorite Programming Language

TechnoCat wrote:Java
Java is too old, Java2K is more robust than plain, old, Java :P - to quote
Homepage wrote:Java2K is not a deterministic programming language, but a probabilistic one. Even for built-in functions, there is only a certain probability the function will do whatever you intend it to do.
by giniu
Sun Jan 16, 2011 12:14 pm
Forum: General
Topic: Your Favorite Programming Language
Replies: 29
Views: 5675

Re: Your Favorite Programming Language

I think they're probably referring to the forced indentation (which I actually like) and the dynamic typing On the other hand, static typing is life saver if done right, i.e. if it's static type checking with type inference. For example in Haskell (which by the way also have significant whitespace)...
by giniu
Sun Jan 16, 2011 11:23 am
Forum: General
Topic: Your Favorite Programming Language
Replies: 29
Views: 5675

Re: Your Favorite Programming Language

I will add mine too, why not? Though I will answer differently from most people probably - that's I'm almost sure :P And I'm almost sure because, my current fav is Haskell - after all it's closest to what I write everyday doing math (and functional reactive programming with arrows/Freyd categories -...
by giniu
Thu Jan 06, 2011 12:21 pm
Forum: A Whiff of Steam
Topic: Official "A Whiff of Steam", the LövelyRPG project topic
Replies: 203
Views: 302202

Re: Official "A Whiff of Steam", the LövelyRPG project topic

Hi all, I'd like to announce, that on next Sunday , 9th January, at 16 GMT we will hold "A Whiff of Steam" development meeting. Like usually we will discuss the present and future of project. This time we meet on IRC at #love channel and from there probably go to private channel when all w...
by giniu
Mon Jan 03, 2011 2:39 pm
Forum: Support and Development
Topic: My old nemesis, math
Replies: 12
Views: 3137

Re: My old nemesis, math

Thank you for the resource, kikito. I quickly got an answer that seems correct . Now I just have to figure out, how the heck do I make this crazy "arccotangent" thing in Lua??? iirc in lua you only get atan, not acot - that's why I made you one with it instead of acot ;) Anyway, for sake ...
by giniu
Mon Jan 03, 2011 11:21 am
Forum: Support and Development
Topic: My old nemesis, math
Replies: 12
Views: 3137

Re: My old nemesis, math

I just need a function that would graph out like this [...] the line switches from negative to positive at exactly 1/3. Does anyone know how to express that in math terms? Maybe something like (2-2*math.atan(x-1/3)/math.pi)%2-1 ? You can also use other sigmoid instead of math.atan, might be faster ...