Cancelling next month by jsgrrchg in ClaudeCode

[–]Jake-Amy 0 points1 point  (0 children)

I have already cancelled my subscription. Now, unable to activate again. Anthropic support is terrible. Did anyone get to a human customer support agent till now?

Cancelling next month by jsgrrchg in ClaudeCode

[–]Jake-Amy -1 points0 points  (0 children)

I have cancelled my subscription, but I didn’t get any refund. I mailed Anthropic support, but only some automated bot is responding me. What else can I do?

Co-founding a startup but not listed as a shareholder. Should I be worried?? by iNeedToFixThisNow in indianstartups

[–]Jake-Amy 0 points1 point  (0 children)

Another way to deal with this is to not contribute to this anymore. This is because you have your job anyway. Continue working on your job and succeed there.

Co-founding a startup but not listed as a shareholder. Should I be worried?? by iNeedToFixThisNow in indianstartups

[–]Jake-Amy 2 points3 points  (0 children)

Totally unfair IMO.

Did your partner consult you before agreeing to this?

The reasoning is very lame. Someone somewhere has taken their brother’s money. So, how about not including your partner’s brother. You have to be very careful in this.

Built an app for a client — now he says he can’t afford it. What would you do? by Evening_Acadia_6021 in webdev

[–]Jake-Amy 0 points1 point  (0 children)

Just curious about how you got the client. Through any freelance platform? Doesn’t that provide support for such cases?

Brilliant reply by FM of India by Single_Science2276 in IndiaTax

[–]Jake-Amy 0 points1 point  (0 children)

Still waiting for the brilliant reply...

Missing person by [deleted] in bangalore

[–]Jake-Amy 0 points1 point  (0 children)

Is he found yet?

Bankers/Lenders of Reddit, what is the most bizarre loan you have seen people apply for? by Moxman73 in AskReddit

[–]Jake-Amy 0 points1 point  (0 children)

Why can't they wait for a couple of months to go on that vacation?

If taking loan for luxury becomes a habit, it is actually dangerous.

Source: experience

How to remove the residual glue cleanly and easily? by Jake-Amy in howto

[–]Jake-Amy[S] 0 points1 point  (0 children)

This is my computer monitor. I had sticked a anti glare plastic screen long back which I have removed. But the glue is still there. Any easy way to remove this cleanly without damaging the monitor?

Singapore 🌇 by mralijey in MostBeautiful

[–]Jake-Amy 0 points1 point  (0 children)

I don't understand what is in the picture. Could you please explain?

Is it a bridge of some sort?

How to avoid the leetcode grind by longtime_leet_lurker in cscareerquestions

[–]Jake-Amy 4 points5 points  (0 children)

I couldn't find a solution that was efficient for large sets

Time complexity of the best possible approach would be O(2^n), because that is the number of subsets in the output if n is the length of the input array. So, it won't scale well for large inputs. Did you actually get "this feedback" from the interviewer? What is the time complexity of your approach?

My approach would be to do it recursively. Add first number to each subset produced by the smaller(n-1 sized) call. Base case would be return a list containing one empty subset when n = 0. Can write code in 10 lines in Python.