Locked

1 2
12 13 14
27 28
WST
She/Her
Active player (442)
Joined: 10/6/2011
Posts: 1690
Location: RU · ID · AM
jlun2 wrote:
But either way, is the url tag supposed to link to another part of the forum if http://, https://,www.,etc is missing?
Yes. Some examples you may be surprised with…
[url=git://example.com/test.git]A git repository![/url]
[url=//averkov.net]WST[/url]
[url=..]TASvideos[/url]
However, this will not work, despite being a valid (and not dangerous) link :(
[url=xmpp:comicslate@conference.jabber.ru?join]Have a nice chat![/url]
S3&A [Amy amy%] improvement (with Evil_3D & kaan55) — currently in SPZ2 my TAS channel · If I ever come into your dream, I’ll be riding an eggship :)
Player (12)
Joined: 6/17/2006
Posts: 501
I would like to summarize here a discussion I had in the submission thread for [2452] GBC Super Mario Bros. Deluxe "You vs. Boo" by got4n & negative seven in 04:54.24. The part that does make sense here is that the time for this movie is longer than the time of the one it obsoleted. That wasn't a mistake, since the movie is shorter in frames. The problem is that the framerate used to convert the frame count to time is different from the previous one. Assuming the current framerate used now is the correct one, I believe the old publications should be fixed to be able to properly compare times with normal speedruns.
Skilled player (1706)
Joined: 9/17/2009
Posts: 4952
Location: ̶C̶a̶n̶a̶d̶a̶ "Kanatah"
Hi! I found this weird bug while trying to make use of smilies. These two characters: ☣ ౪ Appear fine when apart, but the former changes into a square box if the newline is erased: ☣౪ However, pressing enter and then deleting the newline again makes it appear normal, until I submit this message: ☣౪ Any reason why? 0_o Edit: Looks perfectly fine until I press "submit" http://i762.photobucket.com/albums/xx262/jlun2/tasvideostextbug_zps1a828e6d.png
Player (142)
Joined: 7/16/2009
Posts: 686
All three combinations look fine to me, so I'd think it's a browser issue.
Editor, Skilled player (1505)
Joined: 7/9/2010
Posts: 1317
The forum profile page of every player says they have 0 points. Edit: Is fixed.
Favorite animal: STOCK Gt(ROSA)26Sortm1.1(rtTA,EGFP)Nagy Grm7Tg(SMN2)89Ahmb Smn1tm1Msd Tg(SMN2*delta7)4299Ahmb Tg(tetO-SMN2,-luc)#aAhmb/J YouTube Twitch
Skilled player (1706)
Joined: 9/17/2009
Posts: 4952
Location: ̶C̶a̶n̶a̶d̶a̶ "Kanatah"
From here:
Edit by FractalFusion: Removed embed because of a bug that causes it to autoplay.
Embed video was: http://video.sina.com.cn/v/b/116098306-2813396734.html?qq-pf-to=pcqq.c2c
Skilled player (1706)
Joined: 9/17/2009
Posts: 4952
Location: ̶C̶a̶n̶a̶d̶a̶ "Kanatah"
Uh...I'm not sure why, but I can't seem to be able to add any RAM addresses to: http://tasvideos.org/AddressesUp.html nor can I edit any articles in Game Resources.
Emulator Coder, Skilled player (1141)
Joined: 5/1/2010
Posts: 1217
jlun2 wrote:
Uh...I'm not sure why, but I can't seem to be able to add any RAM addresses to: http://tasvideos.org/AddressesUp.html nor can I edit any articles in Game Resources.
Uh yeah, looks broken. /me tries to debug... Edit: Should be fixed now.
AnS
Emulator Coder, Experienced player (723)
Joined: 2/23/2006
Posts: 682
On the title page, shouldn't the screenshot of the "Featured Movie" be clickable? (similar to how "Latest Publications" section has a clickable screenshot to the right)
Site Admin, Skilled player (1236)
Joined: 4/17/2010
Posts: 11268
Location: RU
+1. If movie description is short and no "Read More" option is provided, it's impossible to access that publication.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Editor, Experienced player (608)
Joined: 11/8/2010
Posts: 4012
Good point, feos. I also agree with AnS' idea.
Player (26)
Joined: 8/29/2011
Posts: 1206
Location: Amsterdam
The Tier Maintenance Log doesn't appear to be working; it shows no changes since december last year.
Emulator Coder, Skilled player (1141)
Joined: 5/1/2010
Posts: 1217
Radiant wrote:
The Tier Maintenance Log doesn't appear to be working; it shows no changes since december last year.
There are changes timestamped 2013 there (latest being like 2 days ago). The sorting is weird.
Editor, Skilled player (1939)
Joined: 6/15/2005
Posts: 3247
Radiant wrote:
The Tier Maintenance Log doesn't appear to be working; it shows no changes since december last year.
By default, it sorts by editor username. To sort by datetime, click the sort icon beside datetime once or twice.
Player (26)
Joined: 8/29/2011
Posts: 1206
Location: Amsterdam
Got it, thanks.
Amaraticando
It/Its
Editor, Player (158)
Joined: 1/10/2012
Posts: 673
Location: Brazil
In the forum, when I try to change my login, the site says: Your password must be no more than 32 characters. However, even passwords with 32 chars will result this message. BTW, why only 32 chars?
Joined: 7/2/2007
Posts: 3960
Amaraticando wrote:
In the forum, when I try to change my login, the site says: Your password must be no more than 32 characters. However, even passwords with 32 chars will result this message. BTW, why only 32 chars?
Presumably because the database has to allocate a fixed amount of memory per password to be able to be remotely efficient, and whoever set up the schema figured "32 ought to be enough for anybody". Using too much makes the database take up more memory per user, which might have been a significant concern when the database was first created (back in, what, 2001?). As for 31 vs. 32, maybe an off-by-one error in the form validation?
Pyrel - an open-source rewrite of the Angband roguelike game in Python.
Tub
Joined: 6/25/2005
Posts: 1377
Derakon wrote:
Presumably because the database has to allocate a fixed amount of memory per password to be able to be remotely efficient
No. VARCHAR(32) and CHAR(32) offer similar performance on mysql (even in 2001) unless the column is frequently updated. Password's aren't frequently updated. Also, I really really hope that the site doesn't store passwords in plaintext, but stores a salted fixed-length hash instead. An upper limit makes sense for usability purposes and to prevent DDoS-attacks, but that limit would be higher than 32.
m00
Emulator Coder, Skilled player (1141)
Joined: 5/1/2010
Posts: 1217
Amaraticando wrote:
In the forum, when I try to change my login, the site says: Your password must be no more than 32 characters. However, even passwords with 32 chars will result this message. BTW, why only 32 chars?
The check is for greater than 32 characters. However, some characters count as multiple. That'll be bumped to 128 characters in next site update.
Spikestuff
They/Them
Editor, Publisher, Expert player (2297)
Joined: 10/12/2011
Posts: 6337
Location: The land down under.
yep:
WebNations/Sabih wrote:
+fsvgm777 never censoring anything.
Disables Comments and Ratings for the YouTube account. Something better for yourself and also others.
Emulator Coder, Skilled player (1141)
Joined: 5/1/2010
Posts: 1217
Spikestuff wrote:
yep: <image showing workbench last post in 1970...>
Looks like submission delete code is slightly buggy...
Banned User, Former player
Joined: 3/10/2004
Posts: 7698
Location: Finland
Tub wrote:
Also, I really really hope that the site doesn't store passwords in plaintext, but stores a salted fixed-length hash instead.
Given that the site doesn't use encryption for logging in (ie. https), does it really matter? The login/password is already going in plaintext over the internets.
Skilled player (1706)
Joined: 9/17/2009
Posts: 4952
Location: ̶C̶a̶n̶a̶d̶a̶ "Kanatah"
BB Code glitch: Compare what I wrote: http://i762.photobucket.com/albums/xx262/jlun2/Originalpost_zpsfdaadaa9.png
Language: lua

if ((memory.readbyteunsigned(p) >= memory.readbyteunsigned(i) and px >= x) or (memory.readbyteunsigned(p) <= memory.readbyteunsigned(i) and px <x>= memory.readbyteunsigned(i+2) and py >= y) or (memory.readbyteunsigned(p+2) <= memory.readbyteunsigned(i+2) and py <y>.> See?
Emulator Coder, Skilled player (1141)
Joined: 5/1/2010
Posts: 1217
jlun2 wrote:
BB Code glitch:
Did you disable HTML? That thing being enabled causes no end of problems if posting code containing < or >.
Skilled player (1706)
Joined: 9/17/2009
Posts: 4952
Location: ̶C̶a̶n̶a̶d̶a̶ "Kanatah"
Ilari wrote:
jlun2 wrote:
BB Code glitch:
Did you disable HTML? That thing being enabled causes no end of problems if posting code containing <or>.
:o Alright. Thanks!
1 2
12 13 14
27 28

Locked