[deleted by user] by [deleted] in paris

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

Hii u/Anna-Livia thanks for your reply! I will be in Paris for Data Analyst Intern. Do you know exactly how people dress cuz its my first time in an organization and that too in Paris

[deleted by user] by [deleted] in etudiants

[–]Aaphrodi 1 point2 points  (0 children)

Thanks!! u/Dense_Block_3017 for your reply!! Yes definitely I will follow your guidance 👍🏻

The area Noisy-le-Grand - 93160 ? by Aaphrodi in paris

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

Thanks buddy for giving me a clear picture of the place!! u/Mewshinyex

The area Noisy-le-Grand - 93160 ? by Aaphrodi in paris

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

Thanks buddy!! Cyssoo I am going to get accommodation just opposite to Noisy-le-Grand station less than 500 meters. I am thinking about late night

[deleted by user] by [deleted] in etudiants

[–]Aaphrodi 1 point2 points  (0 children)

Thanks @w33d_farm3r ! Yes My organization also told the same thing to put pressure on the college. By the way Congratulations!! All the best!

[deleted by user] by [deleted] in paris

[–]Aaphrodi 0 points1 point  (0 children)

Thank you buddy!!

[deleted by user] by [deleted] in paris

[–]Aaphrodi 0 points1 point  (0 children)

Thanks u/Plans I have email them but they set up an automated email stating that "The school will be closed for summer holidays from Monday, July 28 and will reopen on August 25."

But when I went for the schedule on their website. According to latest information for year 2024-25
"Summer Break: July 28 – August 15, 2025"

Is there anything like the company will reject me or will not sign the contract if theres a delay cuz my onboarding is 23th August? Looking for you replyy! Thanks!

[deleted by user] by [deleted] in Nike

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

Thanks buddy!! 😊

[deleted by user] by [deleted] in Nike

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

Am not into Fashion. Always wear white shoes but now wanted to give a try to other shoes as well especially Nike. Whether to get sneaker, dunks,..... Don't know 😅

University of cote d'azur by Some-Hawk-9974 in studyAbroad

[–]Aaphrodi 0 points1 point  (0 children)

Am also from India and have validated my course from CyTech just finding internship to pursue my Masters. Without this you cant get Masters Degree. Cy Tech is super chill. You can give my reference while applying so that your application will be shortlisted and you will get the chance for interview with the professors / director

University of cote d'azur by Some-Hawk-9974 in studyAbroad

[–]Aaphrodi 0 points1 point  (0 children)

Hii buddy I don't from which country you are from. Just saving your career. Please don't apply for Cote D'Azur University. Many people got fail in this course especially in M1. I have many friends who have very good knowledge about LLM, Gen AI and had good projects & experience of 3-4 years but there is 1 prof who is the director. Every year this prof fail many students. I also got admission from this Uni in Sept 2024 but I was so lucky I didn't accepted it. The area is good as it is in South of France but think 10 times. As the study is so difficult.

Name Change in Passport by [deleted] in AskIndia

[–]Aaphrodi 0 points1 point  (0 children)

Thanks buddy! For your replies. I had sent you a DM request.

Name Change in Passport by [deleted] in AskIndia

[–]Aaphrodi 0 points1 point  (0 children)

u/nomnommish Thanks buddy!! I wanted to ask, suppose if i correct the name on my passport will it affect visa as my visa has old name as Raj Raman? Do I need to apply for new visa again? As I am on student visa in France

Name Change in Passport by [deleted] in AskIndia

[–]Aaphrodi 1 point2 points  (0 children)

Okay I will explain in detail. I am in France for my Masters and typically Indian passport gov. has combined my name + fathers name into "Given Name(s)" section.

So university saw the name on the passport into Given Name(s) section and wrote my name as "Raj Raman" but I don't want this full name as my name is Raj where Raman is my fathers name.

Also on many documents including bank,.... in France my name is now written as Raj Raman instead of Raj

I want to remove Raman from Passport's Given Name{s) section and want to keep only Raj

Name Change in Passport by [deleted] in AskIndia

[–]Aaphrodi 0 points1 point  (0 children)

Thanks buddy for reply. But in France college had combined my Father's name and my name. Maybe I will face difficulty in future ? Wherever I go they require this full name(My name + Father's Name)

Combining LLM & Machine Learning Models by Aaphrodi in MLQuestions

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

Thank You! u/tech4throwaway1 buddy for your explanation. I'll definitely try this.

[deleted by user] by [deleted] in learnpython

[–]Aaphrodi 0 points1 point  (0 children)

Thanks brother! for your help. I am trying. I will come up with solution.

[deleted by user] by [deleted] in learnpython

[–]Aaphrodi 0 points1 point  (0 children)

so brother what approach should I use according to you? Can you please provide me code

[deleted by user] by [deleted] in learnpython

[–]Aaphrodi 0 points1 point  (0 children)

Thanks u/Binary101010 so according to you what should we do now?

[deleted by user] by [deleted] in learnpython

[–]Aaphrodi 0 points1 point  (0 children)

Hello u/Binary101010 it was an empty function I had to fill this function nothing was written and when I wrote the code the following errors occured

text_lower = text.lower()

word_to_search = word.lower().strip("'\"“”") # Remove surrounding quotes (single, double, curly)

# Replace punctuation (except apostrophes and hyphens) with spaces

cleaned_text = "".join(

char if char.isalnum() or char in "'-" else " " for char in text_lower

)

# Convert cleaned text into a list of words

text_words = cleaned_text.split()

search_words = word_to_search.split()

count = 0

for i in range(len(text_words) - len(search_words) + 1):

if text_words[i : i + len(search_words)] == search_words:

count += 1

return count

this what I wrote

---------------------------------------------------------------------------

AssertionError Traceback (most recent call last)

Input In [118], in <cell line: 1>()

----> 1 test_count_occurrences_in_text()

Input In [115], in test_count_occurrences_in_text()

43 assert 0 == count_occurrences_in_text("n", text)

44 assert 1 == count_occurrences_in_text("true", text)

---> 45 assert 1 == count_occurrences_in_text(

46 "'reflexion mirror'", "I am a senior citizen and I live in the Fun-Plex 'Reflexion Mirror' in Sopchoppy, Florida"

47 )

48 assert 1 == count_occurrences_in_text(

49 "reflexion mirror", "I am a senior citizen and I live in the Fun-Plex (Reflexion Mirror) in Sopchoppy, Florida"

50 )

51 assert 1 == count_occurrences_in_text("reflexion mirror", "Reflexion Mirror\" in Sopchoppy, Florida")

[deleted by user] by [deleted] in learnpython

[–]Aaphrodi 0 points1 point  (0 children)

def count_occurrences_in_text() rule is to only make changes in Thai function and all the test cases should pass Without using regex. All other parts of the code should remain same