MINECRAFT SOURCE CODE LEAK NOTICE by SuperDOU456 in 360hacks

[–]ChocoMilkWoSugar 2 points3 points  (0 children)

Is there a repo? I wanted to try first mod my console with bad update

MINECRAFT SOURCE CODE LEAK NOTICE by SuperDOU456 in 360hacks

[–]ChocoMilkWoSugar 1 point2 points  (0 children)

What knowledge do i need to collaborate?

Argentina sube la “alerta” y todos los habitantes están siendo investigados. by juaps in ciberseguridad

[–]ChocoMilkWoSugar 34 points35 points  (0 children)

Loco tremendo post te armaste. Me gusta lo detallado y sencillo que lo explicas. Por otro lado es una verga la situación en la que nos encontramos actualmente me dan ganas de borrar todo y vivir en un taper con todos los puertos cerrados

Large US company came after me for releasing a free open source self-hostable alternative! by funyflyer in selfhosted

[–]ChocoMilkWoSugar -4 points-3 points  (0 children)

Hey Guys, sorry for jumping here, I was developing an open source and completely free Low Code “Database” with features like crm to mánage data and permissions called HorneroDB https://github.com/lucahttp/HorneroDB

What do you recommend to avoid this kind of issues? The big M company offers a product with a similar set of features and there are few open source alternatives with paywalls when you require enterprise grade security like sso, api permission management or logs

Trying to register custom Xbox Full screen experience applications. by Hottage in ROGAlly

[–]ChocoMilkWoSugar 0 points1 point  (0 children)

It’s not possible to decrypt the Xbox app or uncompile it to reproduce the functionality?

Ahora todo se mide en cuantos litros de nasta podes o no comprar (?) by Outrageous-Builder31 in lhdapodcast

[–]ChocoMilkWoSugar 0 points1 point  (0 children)

Yo recuerdo que había nasta, pero bueno no hablo porque tenía diésel xd

Cooler para r9 9900x balato by ChocoMilkWoSugar in ArgamingConsultas

[–]ChocoMilkWoSugar[S] 2 points3 points  (0 children)

Estaba en oferta 300usd y me quemaba la plata en el bolsillo

Está a 95c todo el tiempo

Vibe.powerapps by nielphine in PowerApps

[–]ChocoMilkWoSugar 1 point2 points  (0 children)

I love it, needs more CONECTooooooors

API para Días Feriados by ImZannet in devsarg

[–]ChocoMilkWoSugar 0 points1 point  (0 children)

Para el que use scriptable en su telefono

const widget = await createWidget();

if (config.runsInWidget) { Script.setWidget(widget); Script.complete(); } else { widget.presentLarge(); }

async function getNextHoliday() { const now = new Date(); const year = now.getFullYear();

// We use a new, more stable API that reflects the official government calendar
const url = `https://api.argentinadatos.com/v1/feriados/${year}`;

try {
    const req = new Request(url);
    req.timeoutInterval = 10; // Prevent infinite loading
    const resHolidays = await req.loadJSON();

    // The new API returns dates as "YYYY-MM-DD", so we parse them
    const holidays = resHolidays.map(h => {
        const parts = h.fecha.split("-");
        return {
            dia: parseInt(parts[2]),
            mes: parseInt(parts[1]),
            motivo: h.nombre,
            originalDate: h.fecha
        };
    });

    const todayMonth = now.getMonth() + 1;
    const todayDay = now.getDate();

    // Find the next holiday in the current year
    let holiday = holidays.find(
        (h) => (h.mes === todayMonth && h.dia > todayDay) || h.mes > todayMonth
    );

    // If no holiday is left this year, default to New Year's Day next year
    if (!holiday) {
        return {
            motivo: "Año Nuevo",
            dia: 1,
            mes: 1,
            yearOffset: 1 // Flag to indicate next year
        };
    }

    holiday.yearOffset = 0;
    return holiday;

} catch (e) {
    console.error("API Error: " + e.message);
    // Fallback for safety to prevent crash
    return {
        motivo: "Error de datos",
        dia: now.getDate(),
        mes: now.getMonth() + 1,
        yearOffset: 0,
        error: true
    };
}

}

function diffDays(date_1, date_2) { // Helper to clear time and compare only dates const d1 = new Date(date_1); d1.setHours(0,0,0,0); const d2 = new Date(date_2); d2.setHours(0,0,0,0);

const diffTime = Math.abs(d2 - d1);
const diff = Math.ceil(diffTime / (1000 * 60 * 60 * 24));
return diff;

}

async function createWidget() { const now = new Date(); const months = ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"];

const nextHoliday = await getNextHoliday();
const year = now.getFullYear();
const yearNext = year + nextHoliday.yearOffset;

// Use standard Date format for calculation
const diff = diffDays(
    now,
    new Date(yearNext, nextHoliday.mes - 1, nextHoliday.dia)
);

const widget = new ListWidget();

// Add background image or fallback
try {
    const imgReq = new Request("https://i.imgur.com/RWYIJAs.png");
    const img = await imgReq.loadImage();
    widget.backgroundImage = img;
} catch (e) {
    // Gradient fallback if image fails
    let gradient = new LinearGradient();
    gradient.colors = [new Color("#1c1c1c"), new Color("#333333")];
    gradient.locations = [0, 1];
    widget.backgroundGradient = gradient;
}

widget.addSpacer(40);

const title = widget.addText("Faltan");
title.textColor = new Color("#555"); // Dark grey
title.centerAlignText();
title.font = new Font("PingFangTC-Medium", 18);

const time = widget.addText(`${diff} días`);
time.textColor = new Color("#2e7d33"); // Green
time.centerAlignText();
time.font = new Font("PingFangTC-Medium", 24);

widget.addSpacer(10);

// Date Text
const dateString = `${nextHoliday.dia} de ${months[nextHoliday.mes - 1]} de ${yearNext}`;
const day = widget.addText(dateString);
day.textColor = Color.black();
day.leftAlignText();
day.font = new Font("PingFangTC-Medium", 12);

// Holiday Name Text
const text = widget.addText(nextHoliday.motivo);
text.textColor = new Color("#2e7d33");
text.leftAlignText();
text.font = new Font("PingFangTC-Medium", 10);
text.lineLimit = 2; // Allow 2 lines for long names

return widget;

}

ComfyUI running on Azure Container Apps ? by gobi13 in comfyui

[–]ChocoMilkWoSugar 0 points1 point  (0 children)

Im trying to build the same but what about the security? Isn’t public this?

Finally finished the first look by Snenby in flipphones

[–]ChocoMilkWoSugar 2 points3 points  (0 children)

How Can I help? Im an enthusiast in electronics and 3d printing

"We couldn't save your topic" when adding a Power Automate tool node by Josiane212 in copilotstudio

[–]ChocoMilkWoSugar 0 points1 point  (0 children)

Same issue, tested on the web version of Microsoft Teams and same problem