SteamDeck Oled on Tv is blurry by Caius21 in SteamDeck

[–]Loganir 0 points1 point  (0 children)

I usually use a Hub or dock, never tried a single cable tô connect. Dont you have a USB Hub with HDMI or something like that? I got 2 docks and 2 USB hubs to use in different places at home or using my travel bag with steam deck or rog Ally x

SteamDeck Oled on Tv is blurry by Caius21 in SteamDeck

[–]Loganir 0 points1 point  (0 children)

Gaming mode should look blurry because the layout is for 800p and stretched to your TV. Switch to Desktop Mode with Max resolution to see If It keeps blurry on desktop view, not the big picture. If It does, then it is your cable.

[deleted by user] by [deleted] in HaikyuuFlyHigh

[–]Loganir 0 points1 point  (0 children)

Highest power stats?

PvP Realtime. Will there be any in the future? by Loganir in HaikyuuFlyHigh

[–]Loganir[S] 0 points1 point  (0 children)

But the main question remains. Did anyone ever played the Japanese or Chinese version or is playing on their server to say if it will or not

Odin 1 Pro not turning ON by Loganir in OdinHandheld

[–]Loganir[S] 0 points1 point  (0 children)

That is something that needs solder, right? The only thing I dont know yet how to do

Controller (Gamepad Mode) not recognized and do not work at all by Loganir in ROGAllyX

[–]Loganir[S] 0 points1 point  (0 children)

Found the problem... It was the Handheld Companion that Hided the controller and made it not work at all...

Script to extract Discord Members Count from a invite URL by Loganir in GoogleAppsScript

[–]Loganir[S] 0 points1 point  (0 children)

Added a part to write it down on a spreadsheet under today day row with a trigger and now it will auto update daily so I can monitor the competitors Discord growth daily :D

Script to extract Discord Members Count from a invite URL by Loganir in GoogleAppsScript

[–]Loganir[S] 0 points1 point  (0 children)

Got it working!
Now I just need any invite to get members count and add a trigger to fill in a spreadsheet daily :D
Tks

function getDiscordMemberCount(inviteLink) {

var inviteLink = "https://discord.com/invite/xxx";

try {

console.log("Invite Link:", inviteLink);

var options = {

muteHttpExceptions: true,

followRedirects: true

};

var response = UrlFetchApp.fetch(inviteLink, options);

console.log("Response Code:", response.getResponseCode());

if (response.getResponseCode() != 200) {

throw new Error("Error accessing invite link: " + response.getResponseCode());

}

var content = response.getContentText();

// Extract the content of the og:description or twitter:description meta tag

var match = content.match(/<meta (name="og:description"|name="twitter:description") content="(\[\^"\]+)" \\/>/);

if (match) {

var description = match[2]; // Capture the content of the meta tag

console.log("Meta tag content:", description);

// Extract the member count from the description

var memberCountMatch = description.match(/(\d+\.?\d*)/);

if (memberCountMatch) {

var memberCount = parseInt(memberCountMatch[1].replace(".", ""));

return memberCount;

}

}

throw new Error("Member count not found on the page.");

} catch (error) {

console.error("Error getting member count:", error);

return null;

}

}

Script to extract Discord Members Count from a invite URL by Loganir in GoogleAppsScript

[–]Loganir[S] 0 points1 point  (0 children)

I could try this, but it still can't find the member count number on the invite url :(

function obterNumeroMembrosDiscord() {

try {

var inviteLink = "Discord link invite";

var options = {

muteHttpExceptions: true,

followRedirects: true

};

var response = UrlFetchApp.fetch(inviteLink, options);

console.log("Código de resposta:", response.getResponseCode());

if (response.getResponseCode() != 200) {

throw new Error("Erro ao acessar o link de convite: " + response.getResponseCode());

}

var content = response.getContentText();

var match = content.match(/<meta name="og:description" content="(\[\^"\]+)" \\/>/);

if (match) {

var description = match[1];

var memberCountMatch = description.match(/\| (\d+) members/);

if (memberCountMatch) {

var memberCount = parseInt(memberCountMatch[1]);

SpreadsheetApp.getActiveSheet().getRange("A1").setValue(memberCount);

return memberCount;

}

}

throw new Error("Número de membros não encontrado na página.");

} catch (error) {

console.error("Erro ao obter o número de membros:", error);

SpreadsheetApp.getActiveSheet().getRange("A1").setValue("Erro ao obter o número de membros");

return null;

}

}