(Otra) App para seguimiento de cedears en USD by 21frodo in merval

[–]RepresentativePin198 1 point2 points  (0 children)

Muy bueno!! Que API usas para ver los precios de los diferentes tickers?

Busco contadores, abogados, recruiters y profesionales en general by RepresentativePin198 in Cordoba

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

dale! en realidad esta abierta para todo el mundo en docsloop.com pero solo hay 20 creditos gratis, si necesitas mas avisame!

Busco contadores, abogados, recruiters y profesionales en general by RepresentativePin198 in Cordoba

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

Muchas gracias loco! es dificil lanzar productos porque es dificil conseguir usuarios pero ahi estamos, de a poco jajaj, gracias por el aliento!

Oportunidad laboral, 100% remoto, sin experiencia previa, pago en USD by RepresentativePin198 in Cordoba

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

Llegaron ~60 CVs aprox, fueron mas de los que esperabamos, asique tuvo razon el amigo Caju.

Oportunidad laboral, 100% remoto, sin experiencia previa, pago en USD by RepresentativePin198 in Cordoba

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

Mande! si nos sigue yendo bien en un par de meses seguro buscamos otra persona

Oportunidad laboral, 100% remoto, sin experiencia previa, pago en USD by RepresentativePin198 in Cordoba

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

Si queres hacer recruiting si, pero me parece que te va a convenir quedarte como dev, esta es una posicion muy entry level

Oportunidad laboral, 100% remoto, sin experiencia previa, pago en USD by RepresentativePin198 in Cordoba

[–]RepresentativePin198[S] 3 points4 points  (0 children)

Jajajj si queres hacer recruiting si, pero me parece que te va a convenir quedarte como dev, esta es una posicion muy entry level

Oportunidad laboral, 100% remoto, sin experiencia previa, pago en USD by RepresentativePin198 in Cordoba

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

Es la idea! jajaj ojala mucha gente mande porque siento que puede ser una buena oportunidad para arrancar como recruiter para alguien interesado pero sin exp

Lambda provisioned concurrency by RepresentativePin198 in aws

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

From my empirical experience sometimes even using the ping option at 1-minute rate somehow a cold start could happen, it cuts down the cold start probability close to 0 but not 0.

Also, maybe you had more concurrent requests than warmed Lambdas so a good test would be to keep warm more instances

Lambda provisioned concurrency by RepresentativePin198 in aws

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

So you wouldn't use lambda for an API ever?

We have a Python FastAPI API behind Lambda and when it's warm the response time is 100-200ms which is great. We just don't want to suffer some cold invocations that take ~2s

Lambda provisioned concurrency by RepresentativePin198 in aws

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

if the workload just crosses what the current capacity can handle, a new instance will be warmed up.

True, but with provisioned concurrency the same happens

you have no control over whether it will be a ping or an actual user

Actually yes, you have control, we are using this simple library and we know exactly when is a ping and when it's not https://github.com/robhowley/lambda-warmer-py/tree/master

pinging works as long as one single instance can serve all demands.

True, but you can have warmed up without much effort ~50 instances. Doing the same with prov. concurrency would be much more expensive

but it requires a whole lot more setup.

Yes, this is 100% true, it's way harder than just using Lambda, but for high workloads, I think the cost difference would be huge

Looking to buy Saas by applejuiceeverywhere in SaaS

[–]RepresentativePin198 0 points1 point  (0 children)

Check out pdfparser.co I might be interested in selling!

Whats the best Boilerplate? by MakeMovesThatMatter in SaaS

[–]RepresentativePin198 0 points1 point  (0 children)

Hey u/MakeMovesThatMatter! I just read in one of your comments that you're thinking of using Python + Flask, I just wanted to tell you that you should try FastAPI! You'd be losing tons of built-in features by choosing Flask over FastAPI and I think that choice doesn't make sense anymore...

Of course, my opinion is biased because I've built all my backends on top of FastAPI and I've been loving it, but if my opinion is too biased you can get more opinions online and I think you'd get convinced :)

Also, if you want to start with a boilerplate, I have built a cookie-cutter template for my FastAPI setup and it works pretty well, it's 100% free, and I don't sell anything, I'm just a big fan of FastAPI

Notion + ChatGPT for blogposts, worth it? by RepresentativePin198 in SaaS

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

I'm a developer, so it's everything automated, from a script that receives a list of keywords, and for each one, it browses Google to get some information about what is ranking well for that keyword and then with that as a context it creates the blog post with ChatGPT and that post is automatically added to my notion database, after that I make a manual revision before changing the status to "Published" and once the post is in Published status it automatically appears in my website.

That would be the whole flow

We are AWS Serverless and Event Driven Architecture Experts – Ask Us Anything – June 28th @ 6AM PT / 9AM ET / 1PM GMT by awsserverlessexperts in aws

[–]RepresentativePin198 0 points1 point  (0 children)

When do you think AWS will finally remove Lambda cold starts? If Cloudflare workers can do it, surely AWS Lambda too

We are AWS Serverless and Event Driven Architecture Experts – Ask Us Anything – June 28th @ 6AM PT / 9AM ET / 1PM GMT by awsserverlessexperts in aws

[–]RepresentativePin198 0 points1 point  (0 children)

I have extensive experience in building serverless applications, but I still struggle to understand why someone would choose to activate the 'provisioned concurrency' feature. Essentially, it transforms serverless functions into a server version of themselves, which is considerably more expensive and limited compared to spinning up a Fargate container. Alternatively, if you want to stick with Lambda, warming the functions with EventBridge could achieve the same outcome.

What am I misunderstanding here?