Ok, lets test this out...
Offline
*testing*
*tests again*
Last edited by markyparky56 (2010-04-14 15:01:59)
Offline
Sperry wrote:
waveOSBeta wrote:
I can't wait until private beta.
Why? I think a full versions being released soon
Not really..... as I mentioned, the 1.1 is really more like '0.1.1', and I still need to implement the major new features such as making your own blocks (still working on that one)
Offline
well, yes PantherOnline is going well, I just got a bit distracted by the scripting for the popper. I'm gla you guys like it, I also included a resettable counter that counts the pops so you can see what's up when you're away. It works with a post edit too!
I wonder if this will work with a password protected page if you are signed in on that computer... e.g facebook profile page and email.
Offline
nXIII wrote:
Does anyone know a nice way to convert strings to blocks in Squeak?
I'll look in BYOB's code. I saw it when I was looking through it the other day.
I found it:
commandSpecFrom: t1 | t2 t3 | t2 _ ScratchServer new parse: t1. t3 _ WriteStream on: String new. t2 do: [:t4 | (t4 asString beginsWith: '%') ifTrue: [t3 nextPutAll: '%s'] ifFalse: [t3 nextPutAll: t4 asString]. t3 space]. ^ t3 contents withoutTrailingBlanks
Last edited by MathWizz (2010-04-14 15:43:41)
Offline
MathWizz wrote:
nXIII wrote:
Does anyone know a nice way to convert strings to blocks in Squeak?
I'll look in BYOB's code. I saw it when I was looking through it the other day.
I found it:Code:
commandSpecFrom: t1 | t2 t3 | t2 _ ScratchServer new parse: t1. t3 _ WriteStream on: String new. t2 do: [:t4 | (t4 asString beginsWith: '%') ifTrue: [t3 nextPutAll: '%s'] ifFalse: [t3 nextPutAll: t4 asString]. t3 space]. ^ t3 contents withoutTrailingBlanks
No, sorry, blocks as in Smalltalk blocks (the '[something]' thingies)
And now I'm in a mess because I made a class that I can't delete.... I'm going to ignore it for now.
Last edited by nXIII (2010-04-14 16:00:12)
Offline
Guys, i keep getting an error on that popper program.
_________________________________________
Trouble resolving servers name. Try again?
Retry
Give up
_________________________________________
Offline
er, if that's an error message, It's never happened to me so you have some other problem. I find if you use the (contents of file) block then you get pops when no one has posted, wheras if you use (lines in file) then you have no "false" pops as whatever is generating the irrelevant pops does not create a new line.
... pop!
Offline
If you release the beta, you would get more feedback from more people about how you can improve. What have you got to lose? Only your secrecy. I say RELEASE A PUBLIC BETA!
This message paid for by my brain
Also, I could finally not have to refresh the page every 10 seconds.
May I suggest that you add some NetScratch blocks?
Last edited by waveOSBeta (2010-04-14 16:15:04)
Offline
sparks wrote:
er, if that's an error message, It's never happened to me so you have some other problem. I find if you use the (contents of file) block then you get pops when no one has posted, wheras if you use (lines in file) then you have no "false" pops as whatever is generating the irrelevant pops does not create a new line.
... pop!
Im using this script.
Offline
waveOSBeta wrote:
If you release the beta, you would get more feedback from more people about how you can improve. What have you got to lose? Only your secrecy. I say RELEASE A PUBLIC BETA!
This message paid for by my brain![]()
Also, I could finally not have to refresh the page every 10 seconds.
May I suggest that you add some NetScratch blocks?
my posts always get outposted/ignored...
Offline
For the 3rd time I have succeeded in COMPLETELY crashing Panther..... and LOSING ALL MY PROGRESS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
waveOSBeta wrote:
waveOSBeta wrote:
If you release the beta, you would get more feedback from more people about how you can improve. What have you got to lose? Only your secrecy. I say RELEASE A PUBLIC BETA!
This message paid for by my brain![]()
Also, I could finally not have to refresh the page every 10 seconds.
May I suggest that you add some NetScratch blocks?
my posts always get outposted/ignored...
[removed by Forum Moderator] The beta isn't coming out anytime soon. I will tell you when it does.
Last edited by Paddle2See (2010-04-14 18:01:53)
Offline
that's because we've made it clear that the beta is not going to be released anytime soon because there are so many things left to clear up and fix. It would simply not be worth it because any glitches that would be reported would likely as not already be known to us.
Offline
nXIII wrote:
MathWizz wrote:
nXIII wrote:
Does anyone know a nice way to convert strings to blocks in Squeak?
I'll look in BYOB's code. I saw it when I was looking through it the other day.
I found it:Code:
commandSpecFrom: t1 | t2 t3 | t2 _ ScratchServer new parse: t1. t3 _ WriteStream on: String new. t2 do: [:t4 | (t4 asString beginsWith: '%') ifTrue: [t3 nextPutAll: '%s'] ifFalse: [t3 nextPutAll: t4 asString]. t3 space]. ^ t3 contents withoutTrailingBlanksNo, sorry, blocks as in Smalltalk blocks (the '[something]' thingies)
And now I'm in a mess because I made a class that I can't delete.... I'm going to ignore it for now.
Umm... I don't understand...
Offline