This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#151 2012-10-20 11:38:08

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Siftr

slinger wrote:

transparent wrote:

She took off downvoting?

Yeah, I think the ST requested her to.

Well that's ridiculous.  How about a 'Recent upvotes' thing that shows upvotes from the date of the last upvote through one month before?

Last edited by maxskywalker (2012-10-20 11:42:23)

Offline

 

#152 2012-10-20 11:43:23

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Siftr

Oh, the index still says 'upvote or downvote'.  That should probably get updated.

Offline

 

#153 2012-10-20 12:33:34

Mokat
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: Siftr

I joined!
Username: Mokat


http://www.eggcave.com/egg/977371.pnghttp://www.eggcave.com/egg/977376.pnghttp://www.eggcave.com/egg/1005291.pnghttp://www.eggcave.com/egg/996745.png

Offline

 

#154 2012-10-20 13:17:29

Ecliptic
Scratcher
Registered: 2012-02-27
Posts: 500+

Re: Siftr

Nice job trinary.


If you can read this you are in range.

Offline

 

#155 2012-10-20 15:23:21

777w
Scratcher
Registered: 2009-02-10
Posts: 1000+

Re: Siftr

if you downvote a post, reload the page, un-downvote it, then reload again, you can give the post however many downvotes you want
should that button even be there :P

Offline

 

#156 2012-10-20 20:13:23

777w
Scratcher
Registered: 2009-02-10
Posts: 1000+

Re: Siftr

clicking on "view replies" brings up nothing and my about half of my posts seem to be gone

Offline

 

#157 2012-10-20 20:38:15

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Siftr

It's giving me a 'check your internet connection' error.  Seeing as I can post this and all, I'm assuming my internet connection is fine.

Offline

 

#158 2012-10-20 21:49:52

Firedrake969
Scratcher
Registered: 2011-11-24
Posts: 1000+

Re: Siftr

Is it safe to enter my email in this?   yikes


Click the sign.
https://s3.amazonaws.com/eterna/eterna2/logo2.png

Offline

 

#159 2012-10-21 09:47:23

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Siftr

Firedrake969 wrote:

Is it safe to enter my email in this?   yikes

*sigh* Yes

Offline

 

#160 2012-10-21 17:32:34

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Siftr

What are the profile pic dimensions?

Offline

 

#161 2012-10-21 19:12:05

Aidan
Scratcher
Registered: 2007-06-15
Posts: 1000+

Re: Siftr

maxskywalker wrote:

What are the profile pic dimensions?

square

Offline

 

#162 2012-10-21 19:15:42

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

Gravitation wrote:

Erm, trinary?

http://i45.tinypic.com/a1o1ae.png

This was on my messages page. Look at the bottom.

Yes, fixed.


http://trinary.tk/images/signature_.php

Offline

 

#163 2012-10-21 19:17:18

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

SeptimusHeap wrote:

How did you make the post-it style divs? The graphic quality of your site simply astounds me. I could maybe program something like it if I really wanted to, but never that good looking! Amazing!

Thank you.  smile

For the styled divs, I used a combination of drop shadows and the :before and :after selectors.

Code:

.drop{
position:relative;
background-color:#FFFFFF;
}

.drop:before,.drop:after{
position: absolute; 
content: '';
z-index:-1;
width: 50%; 
top: 80%;
background: rgba(0, 0, 0, 0.5); 
-webkit-box-shadow: 0 15px 10px rgba(0,0,0, 0.5);   
-moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
}

.drop:before{
bottom: 15px;
left: 7px;
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
transform: rotate(-3deg);
}

.drop:after{
bottom: 15px;
right: 7px;
-webkit-transform: rotate(3deg);
-moz-transform: rotate(3deg);
-o-transform: rotate(3deg);
-ms-transform: rotate(3deg);
transform: rotate(3deg);
}

http://trinary.tk/images/signature_.php

Offline

 

#164 2012-10-21 19:18:20

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

CheeseMunchy wrote:

I can upvote and follow myself now. Is that a glitch?

Really? I'll try to fix that...


http://trinary.tk/images/signature_.php

Offline

 

#165 2012-10-21 19:19:21

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

TRocket wrote:

I think you should be able link it with a scratch account. And on the home page you should be able to click on the username. I had thought of something else but i can't remember what it was...  hmm

It isn't Scratch, though.
I've now added linked usernames on the browse page.


http://trinary.tk/images/signature_.php

Offline

 

#166 2012-10-21 19:21:14

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

Gravitation wrote:

Hey trinary, I found something weird in the code.

Code:

<span cl*="activity"><a href="http://siftr.tk/user/Gravitation" *le="Gravitation">Gravitation</a> upvoted <a href="http://siftr.tk/user/skyline" *le="skyline">skyline</a>.</span>

Censor fail.

Thank you, fixed.


http://trinary.tk/images/signature_.php

Offline

 

#167 2012-10-21 19:22:18

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

RedRocker227 wrote:

Just so you know you can have a blank password, go into settings and change the password and it doesn't check whether it's valid or not

Where'd the name come from

Thank you, fixing...

Verb
sift (third-person singular simple present sifts, present participle sifting, simple past and past participle sifted)
    To sieve or strain (something).
    To separate or scatter (things) as if by sieving.
    To examine (something) carefully.


http://trinary.tk/images/signature_.php

Offline

 

#168 2012-10-21 19:23:19

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

Laternenpfahl wrote:

wait where is my registration email

Try resending it.


http://trinary.tk/images/signature_.php

Offline

 

#169 2012-10-21 19:24:21

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

RedRocker227 wrote:

So did I

Also the list of users is infinite
When it gets to the last user it just goes back to the first

Thank you, fixing...


http://trinary.tk/images/signature_.php

Offline

 

#170 2012-10-21 19:25:23

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

alldaykade28471 wrote:

I still have not gotten my e-mail... ?

Try resending it.


http://trinary.tk/images/signature_.php

Offline

 

#171 2012-10-21 19:26:23

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

transparent wrote:

Amazing, trinary. Simply amazing.  smile

Thank you.  smile


http://trinary.tk/images/signature_.php

Offline

 

#172 2012-10-21 19:27:25

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

Laternenpfahl wrote:

No, when did you register? maybe trinary derped :P

The confirmation email is automated, so the time of registration shouldn't matter. :/


http://trinary.tk/images/signature_.php

Offline

 

#173 2012-10-21 19:28:35

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

backspace_ wrote:

I never got an email

Try resending it.


http://trinary.tk/images/signature_.php

Offline

 

#174 2012-10-21 19:29:35

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Siftr

backspace_ wrote:

so beautiful. I would fix the register text, it goes down below the white box, and I got some weird stuff on the user browse menu (parts of list reappearing and stuff) but yeah other than that I congratulate you warmly Mr. Mark Zuckerberg 2.0

Thank you, fixing...


http://trinary.tk/images/signature_.php

Offline

 

#175 2012-10-21 19:31:08

Laternenpfahl
Scratcher
Registered: 2011-06-24
Posts: 1000+

Re: Siftr

nope


http://i46.tinypic.com/6yd4c0.png

Offline

 

Board footer