Also another api idea, which may have been had before but not implemented.
an image showing your latest friends name.
Offline
comp500 wrote:
RUMCHEERYPOOPOO wrote:
But what would be in the adverts?
stuff... adverts for projects, etc.
Also, how would we work out who should have an advert?
Offline
RUMCHEERYPOOPOO wrote:
comp500 wrote:
RUMCHEERYPOOPOO wrote:
But what would be in the adverts?
stuff... adverts for projects, etc.
Also, how would we work out who should have an advert?
?
Offline
well you can't give everyone an advert so how will you work out who gets the adverts?
Offline
RUMCHEERYPOOPOO wrote:
well you can't give everyone an advert so how will you work out who gets the adverts?
u mean not everyone will be able to make an ad?
Offline
sparks wrote:
hello12345678910 wrote:
Can't you just have a image of "I_am" then "offline" then "_at_the_moment"?
I can, but I want people to be able to choose ANY message they want for the message. http://www.blocks.scratchr.org/API.php? … _be_typed!
OK.
Offline
Right, I LOVE the "lowest loves" or "lowest views" API Idea. I can add the name, link and thumb to action=projects&type=
leastViews
leastLoves
leastFaves
&return =
link
image
text
My main worry is comparing all the projects of a user could be slow, and potentially increase forum page loading time, especially if the user has a LOT of projects.
As for adverts, I was a little confused by your explaination, the way I see it, people can link to a page with an advert on it anyway?
Yes Rum, I will be adding text returns to all current API's now that they work, so that's newest friend name(s), custom online/offline text (implemented but for some reason broken), newest project name(s) and random text.
Offline
sparks wrote:
Right, I LOVE the "lowest loves" or "lowest views" API Idea. I can add the name, link and thumb to action=projects&type=
leastViews
leastLoves
leastFaves
&return =
link
image
text
My main worry is comparing all the projects of a user could be slow, and potentially increase forum page loading time, especially if the user has a LOT of projects.
As for adverts, I was a little confused by your explaination, the way I see it, people can link to a page with an advert on it anyway?
Yes Rum, I will be adding text returns to all current API's now that they work, so that's newest friend name(s), custom online/offline text (implemented but for some reason broken), newest project name(s) and random text.
Any replies to your emails?
Offline
sparks wrote:
Right, I LOVE the "lowest loves" or "lowest views" API Idea. I can add the name, link and thumb to action=projects&type=
leastViews
leastLoves
leastFaves
&return =
link
image
text
My main worry is comparing all the projects of a user could be slow, and potentially increase forum page loading time, especially if the user has a LOT of projects.
As for adverts, I was a little confused by your explaination, the way I see it, people can link to a page with an advert on it anyway?
Yes Rum, I will be adding text returns to all current API's now that they work, so that's newest friend name(s), custom online/offline text (implemented but for some reason broken), newest project name(s) and random text.
Sounds good
and yes I was confused about the ads thing aswell.
I was thinking about it and the only useful way of doing it is that a load of people would have to put the same code in there sig and people could somehow be chosen to feature in an ad and it would be like unofficial featuring. People would have to submit an ad image for there project and someone would decide which ones would be in the ad it would be like the rota-sig
Offline
Sep, I commented on the same project about that
Rum, I don't see why someone would be willing to advertise a random ad in their sig in turn for seeing their own ad there sometimes too when they can just advertise themselves. They might be pulled in by seeing their project advertised by others' sigs but there's no way of telling if someone drops out other than direct moderating or using MySQL, in which case it's not an API anymore.
Offline
How are you doing with the case-insensitivity?
You can just use Scratch's equals block for that. JK, but it is not case sensitive, which is sometimes annoying.
Offline
scimonster wrote:
How are you doing with the case-insensitivity?
You can just use Scratch's equals block for that. JK, but it is not case sensitive, which is sometimes annoying.
It is annoying! And making it case-sensitive isn't even hard!
^ t1 = t2.
(or something, my smalltalk is being corrupted by php )
Maybe the Scratch team thought it would be less confusing to people?
Anyway, I suppose I can do the case insensitivity thing now, it's just going to need a lot of reworking the code.
Last edited by sparks (2011-07-23 15:21:58)
Offline
sparks wrote:
Right, I LOVE the "lowest loves" or "lowest views" API Idea. I can add the name, link and thumb to action=projects&type=
leastViews
leastLoves
leastFaves
&return =
link
image
text
My main worry is comparing all the projects of a user could be slow, and potentially increase forum page loading time, especially if the user has a LOT of projects.
As for adverts, I was a little confused by your explaination, the way I see it, people can link to a page with an advert on it anyway?
Yes Rum, I will be adding text returns to all current API's now that they work, so that's newest friend name(s), custom online/offline text (implemented but for some reason broken), newest project name(s) and random text.
hmmm... yeah but it is nice to just be able to see an ad straight on the forums...
Offline
Okay, case insensitivity took a lot of time but it's done, thank sky for find and replace!
The following attributes are still case sensitive due to their potential need for capitals:
online
offline
link 1-10
string
Offline
My first project, , has love-it's.
My second project, , has love-it's.
My third project, , has love-it's.
My fourth project, , has love-it's.
To get the love it's of your n'th newest project:
[img]http://blocks.scratchr.org/API.php?user=USERNAME&action=projects&type=newest&return=loves&num=NUMBER[/img]
Last edited by sparks (2011-07-23 18:38:22)
Offline
sparks wrote:
What's the problem?
it seems to always do text/html.
Offline
IDEA
Have a block render with either the blockspec code, or something like it.
Offline
gbear605 wrote:
IDEA
Have a block render with either the blockspec code, or something like it.
So the byob block editor that gives you blockspec when you are done?
Offline
gbear605 wrote:
IDEA
Have a block render with either the blockspec code, or something like it.
sparks wrote:
scimonster wrote:
How are you doing with the case-insensitivity?
You can just use Scratch's equals block for that. JK, but it is not case sensitive, which is sometimes annoying.It is annoying! And making it case-sensitive isn't even hard!
Code:
^ t1 = t2.(or something, my smalltalk is being corrupted by php )
Maybe the Scratch team thought it would be less confusing to people?
Anyway, I suppose I can do the case insensitivity thing now, it's just going to need a lot of reworking the code.
^ t1 asLowercase = t2 asLowercase
Or maybe asUppercase... I honestly don't know where the code for those is.
Remember, the Squeak equals operator is case sensitive (I made a block that uses that) but the Scratch one is not. ;P
Offline