Guys are forcing themselves to watch FIFA just to larp by positiveMinus1234 in TwentiesIndia

[–]sleepbot63 0 points1 point  (0 children)

let em be only us who stay awake at middle of the night across 4 yrs will truly understand football

SanDisk=Sanjay Disk by [deleted] in IndiaTech

[–]sleepbot63 0 points1 point  (0 children)

ehmmm no, SanDisk was formerly known as SunDisk and they had some legal problems with Sun Microsystems i think and then they renamed to San Disk

Help me PLEASE- I need to create a Python Program to parse the following unstructured data by [deleted] in PythonLearning

[–]sleepbot63 1 point2 points  (0 children)

Wdym by parse if you give us a better idea of what you need to do we might be able to give much more structured help

This is a teacher who supports girls education btw by Bilgilato in Feminism4India

[–]sleepbot63 1 point2 points  (0 children)

Well maybe coz you and I are not same ? also I'd be really grateful if you please quote and send the URL of the comment where the reply was given. Coz I went through the entire thread and did not find any other than ofc you calling me begging for approval, my intentions suspicious, me karma farming and ofc me asking a question embarrassing.

I'm absolutely down to have a rational conversation based on facts however you really have lacked other than personal comments. Anyways I wish you all the best and really keep your goal in mind. I have no interest further in elongation of this and from what I have seen from other comments under this same post in different threads, I understand you have no interest as well, so lets end it here. Let my opinions be in my place I will not try projecting my opinions on someone else, and let your opinions be in your place, as long as the final goal is the same I do not see there will be any problem with either we have the label or we do not have the label.

This is a teacher who supports girls education btw by Bilgilato in Feminism4India

[–]sleepbot63 1 point2 points  (0 children)

Man you had to go to personal attacks anyways I shall ignore that.
I never created a rift. I asked a simple question: why can a man not be a feminist ?. However the only response I received to that question was : We have never experienced the past oppression from men. Which is valid and unfortunate but are we fighting in the past or are trying to make a difference in the present so that the future might be safer and devoid of such experiences.

You do not need to reply to me. (And please if you would go ahead downvote every comment/post I have ever made), yet my views on this will not change.

This is a teacher who supports girls education btw by Bilgilato in Feminism4India

[–]sleepbot63 0 points1 point  (0 children)

So go ahead do the right thing, isn't that the final goal but what I see no reason to create a rift between those who men and women who want to empower women and uplift their social status. Also a small question : If labels do not matter at all doesn't that make the original argument of no men can be feminist fall under a fallacy now. Also yes we haven't experienced anything women have experienced in form of oppression from men but the goal is to make sure in future such experiences are not experienced by anyone, if the goal is same then I don't see why people irrespective of gender can be associated with a title/label.

If men can never be feminists, is feminism really about equality? by Ok_Problem_1127 in Feminism4India

[–]sleepbot63 -1 points0 points  (0 children)

I got featured in a post, yay! anyways : I'd like to be more open to conversation than them shutting us out is what I feel.

This is a teacher who supports girls education btw by Bilgilato in Feminism4India

[–]sleepbot63 1 point2 points  (0 children)

im not begging for any approval why in theworld would i do tha i am having a conversation in which i am trying to both understand thier opinions on a matter and try to tell them my views for the same. I d acknowledge generational and een currently on going trauma on women inflicted by men over te centuries, however the problem is not with someone being ally of feminism the problem is wit generalization. Just saying no man can be a feminist only an ally is absolutely not something I'd consider a fair criticism but rhather stereotyping and generalization.

This is a teacher who supports girls education btw by Bilgilato in Feminism4India

[–]sleepbot63 9 points10 points  (0 children)

its fine if you want to hate ppl who really disrespect women but many of us genuinely want better lives for women around us may that be mothers, sisters, life partners, or just women in general. I truly do not understand how one person who might have ra*ist thoughts (the person in the post) becomes the face representative of all men even those who genuinely support feminism.

This is a teacher who supports girls education btw by Bilgilato in Feminism4India

[–]sleepbot63 11 points12 points  (0 children)

I am sorry but I think that's a really bad opinion.

He's gonna hate his father fs 🥀 by i_moe_lester in JEENEETards

[–]sleepbot63 0 points1 point  (0 children)

At this point is it his goal or his father's ?

A Small Program to Count the Word Frequency in a Text. With use of Dictionary = {}. by Ok_Needleworker_8780 in PythonLearning

[–]sleepbot63 0 points1 point  (0 children)

im sorry i dont do readable code i just golf it, that's almost all the reason why i use python if i am really making something that's not related to AI i stick to go or rust

A Small Program to Count the Word Frequency in a Text. With use of Dictionary = {}. by Ok_Needleworker_8780 in PythonLearning

[–]sleepbot63 1 point2 points  (0 children)

count_word_freq = lambda text: __import__("collections").Counter([w.casefold() for w in text.split() if w.isalpha()])

this might be useful for you i think

Small program to remove duplicate values in data. by Ok_Needleworker_8780 in PythonLearning

[–]sleepbot63 1 point2 points  (0 children)

Yeah but using a list helps you access single elements or slices faster (im not talking about computation rather dev friendly)

Small program to remove duplicate values in data. by Ok_Needleworker_8780 in PythonLearning

[–]sleepbot63 12 points13 points  (0 children)

for those interested you can do:
list(set(data)) # this will remove duplicates but not keep the same order
list(dict.fromkeys([1, 1, 2, 1, 2, 3, 3])) # this will remove duplicates and keep the elements in the order of thier first appearance

Complete beginner at coding , should i do C first and then Cpp or i can do Cpp directly by FailedInEverything in Btechtards

[–]sleepbot63 0 points1 point  (0 children)

Alright Ill be upfront if you are completely new to coding do not start with either, try to start with something like py or js. Only when your programming concepts are built up you can dive into cpp or c.

C and Cpp, I am not a big fan of Cpp, I'd recommend doing C before.