It is currently Thu Jun 20, 2013 2:59 am

All times are UTC + 1 hour




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 17 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 5:55 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Tue Dec 08, 2009 8:34 pm
Posts: 161
Location: United Kingdom
This post was answered because it was referenced in a new thread here: viewtopic.php?f=3&t=48748

As for cheap trolling it wasn't, it was mean as a light hearted nudge and wink that OOP would not even let that problem occur.

Reading your latest responses over the last few years you have got more and more vitriolic and come across as almost hating the user base of your product!

I personally think the PB team are the ones trolling for not answering valid feature requests for years on end!!! I could post a list of ignored feature requests but what's the point it would be mostly all of them and you'd ignore it as well.

Looking at PB's history there used to be a new release once every few months, now we're lucky if we even get a bug fix each year let alone a request implemented!!!

_________________
C provides the infinitely-abusable goto statement, and labels to branch to. Formally, the goto is never necessary, and in practice it is almost always easy to write code without it. We have not used goto in this book. -- K&R (2nd Ed.) : Page 65


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 6:53 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Fri Jan 21, 2011 8:25 am
Posts: 560
Blood wrote:
it was mean as a light hearted nudge and wink that OOP would not even let that problem occur.

OOP would not solve the problem, just "ease it up" a bit. Instead of having thousands of procedures you'd still have hundreds of classes. :lol:
Modules on the otherhand would solve this...hold on, wasn't that a feature request Fred said they'd think about a way to implement it?
Wait, this was more than six years ago. :lol:

Blood wrote:
Looking at PB's history there used to be a new release once every few months, now we're lucky if we even get a bug fix each year let alone a request implemented!!!

True, PB's development has been slowed down drastically but that's not an issue for me. We get free updates for a life time (never saw this in any other software).
So the updates come when they come, nothing is going to change that.

On the other hand I also have to say that I moved away from using PB on a daily basis long time ago,
so I don't really care when new updates are coming out, or if they are coming out at all. Although I like checking them out every once in a while. :wink:

I don't know how much you use or depend on PB, but the time might have come for you too to move on...

_________________
Image
ImageImageImage
"You can disagree with me as much as you want, but during this talk, by definition, anybody who disagrees is stupid and ugly."
- Linus Torvalds


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 7:19 pm 
Offline
PureBasic Team
PureBasic Team
User avatar

Joined: Fri Apr 25, 2003 5:21 pm
Posts: 5184
Location: Germany
Blood wrote:
This post was answered because it was referenced in a new thread here: viewtopic.php?f=3&t=48748

As for cheap trolling it wasn't, it was mean as a light hearted nudge and wink that OOP would not even let that problem occur.


You repeatedly post OOP remarks (which you know very well is a controversial topic) into threads that have no connection to OOP whatsoever. These kind of remarks add nothing to the discussion at hand and only provoke flame wars. You can call it "light hearted" all you want, but this is trolling. Plain and simple.

Blood wrote:
I personally think the PB team are the ones trolling for not answering valid feature requests for years on end!!! I could post a list of ignored feature requests but what's the point it would be mostly all of them and you'd ignore it as well.


It is called the feature request forum. Requesting something does not mean it will happen.

In the future, if you have a problem with a moderating decision, contact me or another moderator privately. The public forum is not the place for this.

_________________
Perl – The only language that looks the same before and after RSA encryption.
-- Keith Bostic


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 7:33 pm 
Offline
Enthusiast
Enthusiast

Joined: Sat Jul 09, 2011 7:57 am
Posts: 276
An organisation that treats its programmers as morons will soon have programmers that are willing and able to act like morons only. -- Bjarne Stroustrup

_________________
http://www.mediafire.com/pbstuff


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 8:11 pm 
Offline
Addict
Addict

Joined: Sat Oct 17, 2009 10:51 pm
Posts: 919
Blood wrote:
Reading your latest responses over the last few years you have got more and more vitriolic and come across as almost hating the user base of your product!



Put him on ignore, there are plenty of third-party browser scripts that will allow you to block any phpBB user, including moderators and admins.

_________________
If you are new to PB you should check out the CodeArchiv. It has examples for almost everything you would want to do in PB.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 8:27 pm 
Offline
Always Here
Always Here
User avatar

Joined: Mon Sep 22, 2003 6:45 pm
Posts: 7304
Location: Norway
Actually, the problem would be worse with OOP, because if you have a syntax like this, you can't split the procedures across multiple files. But without OOP, you can, even if the procedures are "related".
Code:
Class Something
  Procedure SomeMethod_1()
  EndProcedure
  Procedure SomeMethod_2()
  EndProcedure
  Procedure SomeMethod_3()
  EndProcedure
  Procedure SomeMethod_N()
  EndProcedure
  ; Can't split in the middle
  Procedure SomeMethod_1000()
  EndProcedure
EndClass

_________________
Woa, I set up a web server.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 8:34 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Fri Jan 21, 2011 8:25 am
Posts: 560
Partial Classes would be a solution to this but nobody ever uses them except for tools that generate class code
because they kind of destroy the principle of classes. However if you've got too many methods in one class you probably should first think
about some flaws in your implementation. :wink:
Also with module support the procedure viewer would not be linear (one huge list) but a tree list instead that clearly shows the relations
of procedures to eachother in your application.

_________________
Image
ImageImageImage
"You can disagree with me as much as you want, but during this talk, by definition, anybody who disagrees is stupid and ugly."
- Linus Torvalds


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 8:46 pm 
Offline
Enthusiast
Enthusiast

Joined: Tue Jul 05, 2005 2:42 pm
Posts: 118
Location: berrypatch
Maybe take a look in the mirror before recommending others do.

Your comment was meaningless to that post and this topic is useless.

Got your feelings hurt and now whining about it.

mods - please lock this useless thread.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 8:57 pm 
Offline
Addict
Addict

Joined: Tue Nov 09, 2010 10:15 pm
Posts: 808
Blood, you appear to be the perfect example of an ego-centric commenter. You want OOP (a VERY involved change), so rather than accept there are several reasonable work around, you continually ask for it. I made a request for a VERY simple Repeat While (instead of Repeat Until--although Do While would be the better choice), and this is your response:
Quote:
This request makes no sense whatsoever. You already have all the types of loop you need.


This implementation would take about five minutes, maybe ten if Freak had a beer first. But since YOU don't want it, you make useless comments. It seems to be your pattern.

Regarding OOP, like I said, it will take a LOT to be implemented. Fred and Freak are so busy they barely have time to make 4.x updates; you may as well be asking them to change pb into PureC++. Consider how much of a joke you appear to be with such a total rewrite request.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 9:24 pm 
Offline
Always Here
Always Here
User avatar

Joined: Mon Sep 22, 2003 6:45 pm
Posts: 7304
Location: Norway
Tenaja:

Code:
Macro While(x)
  Until Not (X)
EndMacro

Repeat
  Debug X
  X + 1
While (X < 10)

debug ""
While Y < 10
  Debug Y
  Y + 1
Wend


The only problem is that the expression in real while loop now can't start with an opening parenthesis.

_________________
Woa, I set up a web server.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 9:32 pm 
Offline
Addict
Addict

Joined: Tue Nov 09, 2010 10:15 pm
Posts: 808
Trond wrote:
etc...

I know, I'm past that...my comment was more towards Blood's ego-centrism--it is not necessarily Freak who needs to take a look at himself.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 9:36 pm 
Offline
Addict
Addict
User avatar

Joined: Wed Dec 23, 2009 10:14 pm
Posts: 1411
Location: Boston, MA
I have other problems with involved Macro's...not the simpler 1 liners or name changers...

I can't jump to them with [Ctrl]+[LeftMouseDblClk].
I can't step through them in the debugger.

Would it be a crazy request to have the 'Macro expanded' code available to the debugger?
Or does the desire to maintain the original source code line numbers overrule this?

Oh, and in the spirit of the post...OOP wouldn't help me :lol:

_________________
To understand recursion, you must first understand recursion. ~ unknown
I never make stupid mistakes. Only very, very clever ones. ~ John Peel


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 9:39 pm 
Offline
Enthusiast
Enthusiast

Joined: Sat Jul 09, 2011 7:57 am
Posts: 276
Tenaja wrote:
Regarding OOP, like I said, it will take a LOT to be implemented. Fred and Freak are so busy they barely have time to make 4.x updates; you may as well be asking them to change pb into PureC++. Consider how much of a joke you appear to be with such a total rewrite request.


A crappy kind of OOP is already implemented with the interface keyword. they are no need to do a total rewrite.

_________________
http://www.mediafire.com/pbstuff


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 10:17 pm 
Offline
Always Here
Always Here
User avatar

Joined: Mon Sep 22, 2003 6:45 pm
Posts: 7304
Location: Norway
Tenaja wrote:
Trond wrote:
etc...

I know, I'm past that...my comment was more towards Blood's ego-centrism--it is not necessarily Freak who needs to take a look at himself.

I know that, I just felt a need to play with macros.

_________________
Woa, I set up a web server.


Top
 Profile  
 
 Post subject: Re: I think Freak needs to take a look at himself...
PostPosted: Mon Jan 02, 2012 10:28 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Tue Dec 08, 2009 8:34 pm
Posts: 161
Location: United Kingdom
Tenaja wrote:
Blood, you appear to be the perfect example of an ego-centric commenter. You want OOP (a VERY involved change), so rather than accept there are several reasonable work around, you continually ask for it.


Ego-centric? Where? And where do i ask for OOP?

_________________
C provides the infinitely-abusable goto statement, and labels to branch to. Formally, the goto is never necessary, and in practice it is almost always easy to write code without it. We have not used goto in this book. -- K&R (2nd Ed.) : Page 65


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 17 posts ]  Go to page 1, 2  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye