User Menu

Notification settings

Currently Playing

PC-XMJiggered by flag u4ia (Jim Young)
Requested By: djrandom

Time Left: 3:54


- Streams

Important Links

Discord Chat
Matrix Chat (bridged to Discord)

Please report any bugs to this forum thread!
> Bug Reporting Thread <
Song, artist, etc. corrections go here instead:
> Correct DB Info <
Broken tunes can be reported here:
> Report Broken Tunes Here <

Nectarine

User Profile For AtomicReindeer

flag [No Info Line]


Member Since: January 8, 2014
17 Uploads, 408 Votes, Spoken 1468 Times.
Last Login: March 18, 2024
mail Send A Message | View AtomicReindeer's Favourites List.
Icon

Public information

Currently Playing stuck?
Client side workaround (scroll down) for Currently Playing not updating. You can add more pages to update with @include lines, but that will increase server load.

Direct Focusing of Some Input Boxes
Proper way would be adding tabindex="x" to the input tags, but no idea how (setting aside all the mess of githubbing for 3 lines). While someone does it properly, this Greasemonkey script can help:

// ==UserScript==
// @name Nectarine Tabindex
// @namespace AtomicReindeer
// @include https://www.scenemusic.net/*
// @version 1
// @grant none
// ==/UserScript==

// Login form
$('#id_username').attr('tabindex', '1');
$('#id_password').attr('tabindex', '2');

// Oneliner, only visible after logged in
$('#blah').attr('tabindex', '1');

Preserving demoscene
Another interesting thing, useful to preserve sites: Archive.org bookmarklets. Create one bookmark with the following "address" to check archives (yeah, javascript..., not http...):

javascript:location.href='http://web.archive.org/web/*/'+document.location.href;

And another to request archiving:

javascript:location.href='http://web.archive.org/save/'+document.location.href;

Archive.org also has options to archive "outgoing" links (useful for .mp3, .mod, etc). If I figure how to do that with bookmarlets, I will add it. So far you have to use the normal interface for such files.