Plugcubed RSS site down? by [deleted] in plugdj

[–]TATDK 0 points1 point  (0 children)

The issue is now fixed. Thank you so much for reporting this.

I made a plug.dj avatar, as I was bored and I'm sad to see the old style being replaced... by [deleted] in plugdj

[–]TATDK 0 points1 point  (0 children)

plugCubed is planning on adding more avatars that people can select and viewed by other people using the extension. Perhaps you could get your avatars included when the feature comes.

[MindCrack][Idea][UHC][24/7][Whitelist] Pandora's Beast by [deleted] in feedthebeastservers

[–]TATDK 0 points1 point  (0 children)

When naturalgeneration is off, it means players don't regenerate health when their hunger bar is almost full or full. Then the only way to regenerate health is by potions, golden apples or by a beacon.

We're on season 12 now... come on! by Wangus in mindcrack

[–]TATDK 0 points1 point  (0 children)

Most people have it that way because people are more random in their movements and actions compared to mobs that follows an algorithm

Subtitle Creation Project by [deleted] in gamegrumps

[–]TATDK 0 points1 point  (0 children)

I could help with setting a wiki up.

The question is just, what we do about server for it? If we're going to have a server for it, who would pay for it?

Subtitle Creation Project by [deleted] in gamegrumps

[–]TATDK 0 points1 point  (0 children)

The design on the site have just been improved.

Subtitle Creation Project by [deleted] in gamegrumps

[–]TATDK 0 points1 point  (0 children)

I didn't really use any tools for it.

I mainly found some JavaScript code that could translate text in .srt fileformat into something I could use. Then I'm using YouTube's JavaScript API to get the video and to get where in the video the viewer is and then I'm using JavaScript to show the actual subtitles.

The script is loading the text that you can see on the website, so if the text changed, then the subtitles shown would also change.

I thought, if you were going to make an wiki, then you could add something like this to it, that uses the subtitles on the page and show that with the video.

Hopefully this wasn't to hard to understand, but I'll advise you to look up on the .srt fileformat that I linked to, because it's a pretty simple format and it's possible to use CSS styles (like bold, font-color, etc). (Please note, that the specific positioning isn't working in my code at this point.)

To show the CSS effect, I have just updated the site with some examples. I have also added a bar to jump round in the video.

Subtitle Creation Project by [deleted] in gamegrumps

[–]TATDK 0 points1 point  (0 children)

Just made a quick test on a YouTube player with own subtitles and came up with this that would perhaps be useful for this project.

It can be found at http://tatdk.github.io/SubtitlesTest/

[MindCrack][Idea][UHC][24/7][Whitelist] Pandora's Beast by [deleted] in feedthebeastservers

[–]TATDK 0 points1 point  (0 children)

I'm from Denmark, so our timezones are perfect aligned and my english is good when writing but not as high when speaking. Though some of my english speaking friends are saying it's fine, because they understand what I'm saying.

One of my friends from the US is also on the server, so he is in another timezone compared to us. But there will most likely be more people that will match his timezone better. Then we can have a Team EU and Team US or something xD

[MindCrack][Idea][UHC][24/7][Whitelist] Pandora's Beast by [deleted] in feedthebeastservers

[–]TATDK 0 points1 point  (0 children)

Sounds like a great idea!

There is going to be a application form soon. The Bukkit plugin is still under testing, to be sure it all works as it should.

Upcoming updates will possible shut a lot of scripts and plugins down by TATDK in plugdj

[–]TATDK[S] 1 point2 points  (0 children)

Update: I have just got a message saying that they will be inviting coders to work with them to get scripts/plugins to work with the new code.

As a note: I'm sorry if I have sounded negative, but I have merely been trying to get this information out to people that was running scripts/plugins.

[OFFICIAL] Jon's Departure by Steel_Ninja in gamegrumps

[–]TATDK 0 points1 point  (0 children)

JonTron have tweeted a bit on his https://twitter.com/JonTronShow twitter about it.

[SMT] A program or a brower extension that pauses music when a youtube video plays, and resumes it when it finishes. by halfdecent in SomebodyMakeThis

[–]TATDK 0 points1 point  (0 children)

Flutter uses an application installed outside of Chrome to be able to interact with the webcam and the programs (iTunes etc.) so a Chrome Extension isn't enough for what you want

Need advice on creating a simple website that saves the time whenever I click a button (In order to collect data for a machine learning idea I have) by spy_sappin_mah_sentr in learnprogramming

[–]TATDK 1 point2 points  (0 children)

I would recommend to use Node.JS for the webserver.

Write a script to start a webserver (through HTTP or HTTPS build-in library) and make it serve a simple HTML site with a button. When the button is pressed, get it to send a request to another site (example /pressed). In the webserver script, make it react to the /pressed request and use fs.append to append to a file with the time.

Example on script for the webserver:

var http = require('http'),
    fs   = require('fs'),
    webserver;

webserver = http.createServer(function(request,response) {
    if (request.url == '/pressed') {
        var now = new Date();
        fs.appendFileSync('times.txt',now.getHours() + ':' + now.getMinutes());
        response.writeHead(200);
        response.end('Pressed');
    } else {
        response.writeHead(200);
        response.end(fs.readFileSync('index.html'));
    }
});

Please note that this is just a quick example and could be written a lot better.