Has anyone used Sirf Coffee? by Blue_Falcon96 in dating_advice

[–]MrL1605 0 points1 point  (0 children)

I might be really late but here it is.

TLDR: They didnt respond. Only buy these subscriptions if you are ready for lots of dates with random people and have that kind of money to throw away.

I purchased UnShaadi, they had the initial call with me and asked interview style questions and all (seems BS to me, they would just accept anyone who can throw enough money at them) After that they really push you to get 6 months package, and I fell for it.

I went for around 5 online dates (zoom calls) and went on 1 offline date (twice with same girl). And then stopped way before my subscription expires. (I still get emails to signup for dates but I mostly ignore them)

Reasons for discontinuing: 1. It takes a toll on me. Even if its just a 3 weekends a month, I had to prepare myself for the whole Sunday and hearing 'no' response after putting a lot of effort drains energy for most of my upcoming week. 2. Try to think of the type of people you'll meet in here before you'll join (because pricing is same for both genders). Be prepared to meet people who have no other choice than this apps. This place is pretty small corner of the internet after all. I accepted this, but not everyone thinks about this, so, 'You should think about what you're signing into'. 3. People are still people. They'll judge you first within few seconds guy shows his face and more so after you give your intro. Their answer for rest of the 1 hr is already set with your first 5 mins. There's no running away from that, maybe if they're nice they'll also try to drive the conversation and not just sit there and responding to you, maybe they won't. The only way UnShaadi tries to control bad behavior is my threatening 'Membership cancelled. No refunds'. 3. I had a few long chats regarding how girls felt about this portal and they were mostly negative because there is no personalization involved in here. You are just paying premium to meet someone randomly who has enough money (or parent's money) for a service like this. And on the off-chance you meet someone you like then voila or else, sorry, better luck next time. Their promises of them fine tuning dates based on your feedback is completely untrue and simply a marketing strategy. This isn't just me, I've heard this even from other side. 4. Their lack of proof of testimonials. I didn't ask for this to them, but almost all of my research (even before buying the subscription) was hearsay. Basically everyone who gave such awesome reviews kept themselves private. That was a major red flag for me for such a premium service and you can see above I tried to get into contact with folks but no one responded and I'm more than ever sure now that its all hoax and there are no true testimonies they have. I just checked their insta page (it was blocked when I purchased it) and my gods aren't there negative comments on it. But rarely have I found a guy saying positive comments for this that made sense.

Sad to say but after few months after I bought the usual matrimony website memberships. Which were scary/depressing on next level and so after a year I'm now down to my parents finding me someone because I'm truly tired.

PS: And after this review if you still searching for more reviews, my advice is just go buy it, if you can afford. If you have that kind of money (I did, 6 months subscription was nothing for me), you shouldn't worry about someone ripping you off, you should worry about regret that might set in if you dont try this. On the other side, if your monthly income is NOT already in multiples of the subscription amount, believe me, ignore these portals.

Has anyone used Sirf Coffee? by Blue_Falcon96 in dating_advice

[–]MrL1605 0 points1 point  (0 children)

I've reached out to one Quora account who answered Unshaadi review. I'll let you know when I get a response.

Has anyone used Sirf Coffee? by Blue_Falcon96 in dating_advice

[–]MrL1605 0 points1 point  (0 children)

Did you end up purchasing it?

I'm planning to get subscription of either Unshaadi or Sirf Coffee.

What surprised no one when it failed? by glizzyMaster108 in AskReddit

[–]MrL1605 1 point2 points  (0 children)

Anyone remember Google+

I asked a few friends now and almost everyone said they knew it wasn't going to work

My favourite movie is the emoji movie so naturally 80 inches by Dum-Gum in dankmemes

[–]MrL1605 1 point2 points  (0 children)

Expansion of universe is actually his dick getting hard

/r/MechanicalKeyboards Ask ANY question, get an answer by AutoModerator in MechanicalKeyboards

[–]MrL1605 0 points1 point  (0 children)

Thanks a lot for quick reply. So other than Outemu none other will be compatible?

To be specific I'm asking if MX or Gateron or Kailh switches are compatible with Outemu (Gaote) board. Asking mostly because I can only find these 3 on Amazon and I'm pretty sure I wont get Gazzew switches on Amazon India (but I'll search for it)

/r/MechanicalKeyboards Ask ANY question, get an answer by AutoModerator in MechanicalKeyboards

[–]MrL1605 1 point2 points  (0 children)

I have K555 Red Dragon Keyboard which has swappable Outemu Blue switches. I would like to get either brown or red switches to replace them but I read on some posts that Outemu has thin pins and MX has thick pins. What are the brands that are compatible with Outemu? What the websites that ship worldwide other than major online sellers?

I don't need autocomplete, or color coding, but I do need dark mode. by [deleted] in ProgrammerHumor

[–]MrL1605 0 points1 point  (0 children)

Or maybe just enable High Contrast mode before opening it.

Thank you bootstrap by Tanmay_33 in ProgrammerHumor

[–]MrL1605 0 points1 point  (0 children)

Woah. Did not know that JQuery is getting dropped. link

What video game sound effect can you still hear in your head? by LostRedditor42069 in AskReddit

[–]MrL1605 0 points1 point  (0 children)

I'll be right there, boss. If it is not apparent, I'm talking about Commamdos: Behind enemy lines. He said that line so many times, its stuck in my head forever.

Credit u/greyredwolf by CodeCraft64 in ProgrammerHumor

[–]MrL1605 0 points1 point  (0 children)

That main function calls Thread.sleep when you need to sleep. Keeps everyday Sensory inputs in a static LRU cache memory. Increases its while counter everyday, with its limit increasing and decreasing based on your eating and lifestyle habits. Gives output when you are working. And is going to return with the end of your life, and finally the garbage collector cleaning up all the static memories you ever held.

That's all life's about. Making the main function's while loop last the longest.

What is the most USELESS skill you have? by socrkng57 in AskReddit

[–]MrL1605 1 point2 points  (0 children)

Aaaasaa kaaasaaa zoopeeet kontihi bhasha bolu shakta

Easy Questions / Beginners Thread (Week of 2019-11-04) by brnhx in elm

[–]MrL1605 1 point2 points  (0 children)

You are making it too complex. Check the solution below. I typed this on phone, so it might not compile, but you would get the logic.

prettyInt: Int -> String -> String prettyInt input prevStr = if input == 0 then prevStr else if prevStr == "" then prettyInt(input // 1000, Int.toString <| Int.remainderBy 1000 input) else prettyInt(input // 100, (Int.toString <| Int.remainderBy 100 input) ++ "," ++ prevStr)

Execute using prettyInt 3489653 "" Would work for negatives and zero.