User Menu

Notification settings

Currently Playing

PC-ReasonOldskooltrance by flag Buzzer (Mikko Hyyti)
Requested By: flagarrakis
Pouet

Time Left: 4:50


- Streams

Demoscene Holiday Card Exchange

Wood veneer holiday cards
The 4th annual Demoscene card exchange is underway.

Assignments posted!

Visit the forums for the details or to leave a comment.

Important Links

Discord Chat Space
Matrix Chat Space

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 1456 Times.
Last Login: December 9, 2023
mail Send A Message | View AtomicReindeer's Favourites List.
Icon

Public information

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');

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 and enable the option.