3. Scores the opportunity
4. Sends you an SMS the moment it matters
You don't check a dashboard.
You just get a text — and you call back the right person at the right time.
Early stage, core works.
If anybody wants to see demo, feel free to ping me
#ai#AgentX#law#solo
Built something this week.
Every day businesses miss calls while they're busy doing the actual work.
The caller doesn't wait.
They just find someone else.
So I built a system that sits at the front door of any business:
1. Picks up every call
2. Understands what the caller
When I started using the AI tools such as Claude and Chatgpt etc. I stopped using my brain for many things.
Now I feel if I will keep doing the same, I may loose the capacity of thinking
#ArtificialIntelligence#Iran#Israel#Trump
I was traveling from Goa to Hyderabad, I booked a bus and bus was not picking up from the standard bus stands bus was picking from some other 5-6 places. I was around Candolim beach. But I was searching multiple time for all the pickup locations which one is the nearest.
I think SAAS will not be dead, cause managing software is not everyones cup of tea, AI will makeMVP but maintaining will be problem.
#SoftwareEngineer#AISummit#SaaSの死#saasisdead
Agreed, complete landscape is changing and everything will be rewrite, I feel even programming languages also will evolve, and people will write even new language which will be ai or LLM first language
I think it must be a very interesting time to be in programming languages and formal methods because LLMs change the whole constraints landscape of software completely. Hints of this can already be seen, e.g. in the rising momentum behind porting C to Rust or the growing interest in upgrading legacy code bases in COBOL or etc. In particular, LLMs are *especially* good at translation compared to de-novo generation because 1) the original code base acts as a kind of highly detailed prompt, and 2) as a reference to write concrete tests with respect to. That said, even Rust is nowhere near optimal for LLMs as a target language. What kind of language is optimal? What concessions (if any) are still carved out for humans? Incredibly interesting new questions and opportunities. It feels likely that we'll end up re-writing large fractions of all software ever written many times over.
@karpathy Agreed, complete landscape is changing and everything will be rewrite, I feel even programming languages also will evolve, and people will write even new language which will be ai or LLM first language
I am feeling I am in some loop. I stress upon something for some hours then forget next hour for few hours relax mode on again I will start stressing upon some other thing, not able to achieve anything. It's strange
@SumitM_X 3. Use `X-Forwarded-For` if system is behind the load balancer or any proxy
4. Per IP limit (limit_req_zone $binary_remote_addr zone=login_per_ip:10m rate=5r/m;)
from your backend code you can implement **stricter limits for failed logins**
@SumitM_X quick fix
Use nginx that will let you set
1. Global Limit (limit_req_zone $server_name zone=login_global:10m rate=100r/s;)
2. Will allow you to set limit on login(/login) API(limit_req zone=login_per_ip burst=5 nodelay;)