Page 54 of 71
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sat Jun 02, 2012 3:00 pm
by PrincieD
electrochrisso wrote:I know 30c is a heat wave over there, I am freezing my you know what's off, when it goes below 15c.

hehehe yup 15c is probably about average here for most of the year, wish I could live somewhere nice and sunny and where we don't get taxed for even farting
Chris.
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sat Jun 02, 2012 3:30 pm
by srod
PrincieD wrote:
hehehe yup 15c is probably about average here for most of the year, wish I could live somewhere nice and sunny and where we don't get taxed for even farting
Chris.
I wondered why my tax bill was so high last year!

Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sat Jun 02, 2012 6:05 pm
by PrincieD
srod wrote:I wondered why my tax bill was so high last year!
hahaha

I've been holding my farts in so the government pays me fart credits
Chris.
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sat Jun 02, 2012 6:42 pm
by Perkin
Just don't apply for a rebate!

Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sat Jun 02, 2012 6:52 pm
by PrincieD
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sun Jun 03, 2012 3:42 am
by electrochrisso
We have a carbon tax starting next month, I wonder if our silly politicians will get taxed for all the hot air they continuously blow, even if they did they would probably claim it as a legitimate expense.

Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sun Jun 03, 2012 3:22 pm
by PrincieD
electrochrisso wrote:We have a carbon tax starting next month, I wonder if our silly politicians will get taxed for all the hot air they continuously blow, even if they did they would probably claim it as a legitimate expense.

hehehe

good one Chris!

Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Sun Jun 03, 2012 11:08 pm
by Zach
Parts of this conversation are disturbing and funny at the same time
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Mon Jun 04, 2012 4:10 am
by electrochrisso
Parts of this conversation are disturbing and funny at the same time
Politicians disturbing, Yes!
carbon price will start at $23 a tonne, rising at 2.5 per cent a year: disturbing for the bottom end of society, Yes!, still, considering Australia exports most of its carbon to be burned elsewhere, someone has to pay.
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Mon Jun 04, 2012 5:26 pm
by Zach
I was more referring to the fart jokes, but.. OK

Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Tue Jun 05, 2012 2:40 am
by electrochrisso
I was more referring to the fart jokes, but.. OK

Here is another one:
I will have to start bottling mine as of next month.

Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Tue Jun 05, 2012 8:20 am
by GoodNPlenty
electrochrisso wrote:Parts of this conversation are disturbing and funny at the same time
Politicians disturbing, Yes!
carbon price will start at $23 a tonne, rising at 2.5 per cent a year: disturbing for the bottom end of society, Yes!, still, considering Australia exports most of its carbon to be burned elsewhere, someone has to pay.
Worse yet you can even be fined up to 1.1 million for wronly blaming the carbon tax on price increases.
Don't serve carbon lies, ACCC warns
http://www.dailytelegraph.com.au/money/ ... 6366534694
Australians Face Huge Fines For Speaking Ill Of New Carbon Tax
http://www.infowars.com/australians-fac ... arbon-tax/
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Tue Jun 05, 2012 11:44 am
by Zach
Wow Australia,
That is an epic fail of Chinese proportions...
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Wed Jun 06, 2012 4:00 am
by electrochrisso
Worse yet you can even be fined up to 1.1 million for wronly blaming the carbon tax on price increases.
Funny thing that, considering the government is depositing money into the bank accounts of people on low income to compensate for this, those bureaucrats are a craaazy lot, I guess they will have to start fining themselves.
Re: ProGUI V1.36 User Interface Library (Small bug fix)
Posted: Fri Jun 15, 2012 8:18 pm
by Zach
Hey Chris,
This isn't really a -huge- issue but more of a minor annoyance. I was wondering if you could adopt more standard spelling conventions for your commands. I am aware you're from the UK and that words are generally spelled differently over there but sometimes it can be a confusing pain..
i.e Colour reads OK for me, but Centre vs Center just drives my eyeballs insane.
From a technical aspect I would argue that Programming Languages etc that are developed in English tend to define their keywords using American / "International" English spellings. (I don't think I've ever encountered British English personally, and I can't say I've found a foreign language / API / etc but I wouldn't be surprised if they did exist).
I also realize that you may have done this, to have your own Commands that work with ProGUI widgets, that don't clash with already defined PureBasic commands; but I would have gone with a prefix in that case (ProGUI_MakeColor, etc).
Personally this is where PB falls down with the lack of namespace support IMHO, because then we could have simple stuff like
Code: Select all
Import ProGUI
ProGUI.MakeColor()
ProGUI.TextGadget()
;// etc
;// etc
;// Or Even better, Switching to a Namespace manually ala Enable/Disable Explicit
Using Namespace.ProGUI
;// OR
Using ProGUI
MakeColor() ;// ProGUI command not PB
TextGadget() ;// ProGUI command not PB
EndUsing
Sorry for griping, thanks for listening
