shortbusCro0Ked_http://i.imgur.com/cLF5qve.jpgwhat distro are you running?
at work using my own custom-built workstation :D
>Ubuntu logo
>OS: Ubuntu 12.04 x86_64
is this a joke?
Account Details | |
---|---|
SteamID64 | 76561198024475237 |
SteamID3 | [U:1:64209509] |
SteamID32 | STEAM_0:1:32104754 |
Country | Ireland |
Signed Up | July 23, 2012 |
Last Posted | December 2, 2015 at 3:48 PM |
Posts | 1585 (0.4 per day) |
Game Settings | |
---|---|
In-game Sensitivity | |
Windows Sensitivity | |
Raw Input | 1 |
DPI |
|
Resolution |
|
Refresh Rate |
Hardware Peripherals | |
---|---|
Mouse | |
Keyboard | |
Mousepad | |
Headphones | |
Monitor |
shortbusCro0Ked_http://i.imgur.com/cLF5qve.jpgwhat distro are you running?
at work using my own custom-built workstation :D
>Ubuntu logo
>OS: Ubuntu 12.04 x86_64
is this a joke?
Does this preclude playing good licensed music?
No stream today, sorry! My team has an official tomorrow and the day after so we will be preparing for that. Those are our last two games of the season though, so I should be able to stream on a few non-Tuesdays at times too.
CSS updated to work with webkit. background alpha seems to change the brightness too, it's weird.
edit: ok locally injected jquery will not work with the plugin right now, but I've been in touch with the developer and he said he'll add it
Yeah, I've tried a couple of them. None of them feel "just right", so I think you just have to get used to it.
But can Ruwin resurrect Tyreeze?
Hadn't eaten for hours, nothing to come up.
http://omg.wthax.org/tftv_css_jq_4.png
Too complex? Just bold? Just colour highlighting?
$('td:nth-child(16), td:nth-child(17)').each(
function (i, e) {
if ($(e).text() == '0') {
$(e).css('color', '#ccc');
}
});
/*jshint loopfunc: true */
var columns = $('#body-match-total1 > tr:nth-child(3) > td').length;
for (var index = 0; index <= columns; index++) {
var colMax = 0;
var colMaxIdx = 0;
$('#body-match-total1 td:nth-child(' + index + '), #body-match-total2 td:nth-child(' + index + ')').each(
function (i, e) {
if ($.isNumeric($(e).text()) && (parseFloat($(e).text()) > parseFloat(colMax))) {
colMax = parseFloat($(e).text());
}
});
var color = 'PaleGreen';
if (index == 10 || index == 17) /*deaths and uber drops*/
{
var color = 'Thistle';
}
if (colMax != 0) {
$('#body-match-total1 td:nth-child(' + index + '):contains(' + colMax + '), #body-match-total2 td:nth-child(' + index + '):contains(' + colMax + ')').css('background-color', color).css('font-weight', 'bold');
}
}
$('acronym').each(
function (i, e) {
$(e).replaceWith($(e).attr('title').replace('DaMaGe dealt', 'Damage').replace('Damage Dealt per Minute', 'Dmg Per Min').replace('Ubercharges', 'Ubers').replace('Capture Point Captures', 'Cap Points'));
});
ps had to fake an uber drop by Nos just to show the colour highlighting
Implemented some requests:
http://omg.wthax.org/tftv_css_jq_3.png
CSS updated: http://pastebin.com/kY9GJinS
JQuery:
$('acronym').each
(
function (i,e){
$(e).replaceWith($(e).attr('title').replace('DaMaGe dealt', 'Damage').replace('Damage Dealt per Minute', 'Dmg Per Min').replace('Ubercharges','Ubers').replace('Capture Point Captures','Cap Points'));
}
);
$('td:nth-child(17)').each
(
function (i,e){
if($(e).text() == '0'){$(e).css('color','#ccc');} else { $(e).css('color','red'); $(e).css('font-weight','bold');};
}
);
$('td:nth-child(16)').each
(
function (i,e){
if($(e).text() == '0'){$(e).css('color','#ccc');}
}
);
Please don't look at my code closely, it's terrible.
wareyaMockup time:
https://dl.dropboxusercontent.com/u/1811521/areg23fd.png
The tagging for the ESEA page is an absolute mess. I don't think the frustration of figuring out how to do that is worth it.
wareyaYou could always rotate it.
Mm doesn't look like it would be easy at all.
Yeah, should be doable. If you give me a list of which ones you want to show I can give it a try.
Mumble applies noise suppression before transmission, which I don't believe OBS does. You can check if your motherboard sound manager has noise reduction which might help (appropriately reducing the suppression in Mumble so as not to overdo it). Also make sure you are using your rear panel for plugging in the microphone.
http://omg.wthax.org/tftv_stats_css_jq.png
brought to you by the magic of jQuery
$('acronym').each
(
function (i,e){
$(e).replaceWith($(e).attr('title'));
}
); $('.acronym').css('text-transform', 'lowercase');
Not really a fan of how this looks, but the option is there anyway :)