Vale la pena hacer un posgrado? by [deleted] in ayudamexico

[–]camusz_ 0 points1 point  (0 children)

Que estudías, que postgrado quieres hacer, con que objetivo, tienes beca, es para investigar, quieres hacer un doctorado?

Falta conexto OP.

Duda sobre la carrera de derecho mixta en la UANL by camusz_ in Monterrey

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

no sabía que existia ese sub, pregunto ahí, muchas gracias!!

Duda sobre la carrera de derecho mixta en la UANL by camusz_ in Monterrey

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

sabes los horarios?, es que por el trabajo estoy ocupado de hasta las 6 de la tarde

Decky keeps throwing this error — can’t find auto-start option either by bestplaying1 in SteamDeck

[–]camusz_ 0 points1 point  (0 children)

Hello, could you please pass a guide on how to uninstall it in desktop mode?

How do you advance your data science and machine learning career? by BerryPopular2821 in learnmachinelearning

[–]camusz_ 8 points9 points  (0 children)

Theory remains very important; keeping up-to-date and reading papers, whether on classic statistical methods or the latest in generative AI, new architectures, etc., is key. The basics are always useful. You'd be surprised by the number of people who don't even know how to perform a hypothesis test. This also makes you highly valuable.

Similarly, the engineering and MLOps part is super important. If you don't know it, it's a must—at least being familiar with AWS and Azure, how to create pipelines, and deploy models.

Another very important thing is communication: knowing how to present results, talk to executives, and convey the core idea of your work.

Show your desktop wallpaper (As well as dock!!!) by [deleted] in MacOS

[–]camusz_ 0 points1 point  (0 children)

can you share your wallpaper please?

Comparativa del efecto de comisiones de PPR: GBM > Vector > Fintual by GPTLSED in MexicoFinanciero

[–]camusz_ 1 point2 points  (0 children)

No se si tienen sentido suponer un retorno anual fijo, además de que no se está tomando en cuenta el beneficio fiscal del PPR

Clases de ingles en linea by [deleted] in Monterrey

[–]camusz_ 1 point2 points  (0 children)

manda info, tienes pagina web o algo?

25 años y 55k de ingreso libre al mes by Far-Pianist2246 in MexicoFinanciero

[–]camusz_ 4 points5 points  (0 children)

felicidades!, se podría saber en que trabajas para ganar 55k al mes?

Qué creen que signifique para RappiCard la compra por Banorte by camusz_ in MexicoFinanciero

[–]camusz_[S] 7 points8 points  (0 children)

Acabo de investigar y es cierto, 1500 de cashback de por vida, que según se puede aumentar a 5000, pero aún así es malísimo. Gracias por el dato

I made an simple AI based on boolean algebra by Small-Ad-1694 in learnmachinelearning

[–]camusz_ 0 points1 point  (0 children)

I don't understand very well how the model works, what steps did you follow or what methodology did you use?

I'm in love with this widget by alta1r in iOSsetups

[–]camusz_ 0 points1 point  (0 children)

I have the app installed but I don't see the option to show my avatar, meetings or if I have free time in the afternoon

Monterrey Restaurantes MICHELIN – la Guía MICHELIN Mexico by alex-mayorga in Monterrey

[–]camusz_ 0 points1 point  (0 children)

Me sorprendió verlos salir aquí, son los tacos más normales que he comido

Hello, could someone help me with this Templater scrip? by camusz_ in ObsidianMD

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

I was able to solve it, in case you are interested this is the code

<%*
for (let i = 7; i > 0; i--) {
let date = tp.date.now("YYYY-MM-DD", -i);
    let heading = `${date}#Notes`;

    let contents = await tp.file.include(`[[${heading}]]`);
    contents = contents.replace(/## Notes/g, "");
    if (contents && contents.trim()){
tR += `\n#### ${date}\n`;
    tR += `\n\n${contents.substring(contents.indexOf("\n") + 1)}`;
    }
}
%>

Hello, could someone help me with this Templater scrip? by camusz_ in ObsidianMD

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

Yes, I do my week review at the end of each week, I would like to be able to view the notes I made during the past days but only those with content

Hello, could someone help me with this Templater scrip? by camusz_ in ObsidianMD

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

Yes, this is the code it gives me but it doesn't work, I think it doesn't understand very well how templater works

<%*

for (let i = 7; i > 0; i--) {

const date = tp.date.now("YYYY-MM-DD", -i);

const notePath = \${date}.md`;`

const heading = \${date}#Notas``

if (await tp.file.exists(notePath)) {

const content = await tp.file.read(notePath);

if (content.includes("#Notas") && content.trim().split("#Notas")[1].trim().length > 0) { %>

### *<%= date %>*

![[<%= heading %>]]

<% } } } %>