Advertisement · 728 × 90

Posts by

I had a bad interview 2 days ago and received rejection today. It was a big tech giant. I might not have made it there, but I won't break.
Each company has different criteria. Tech is competitive but vast and I know there must be a better opportunity compatible to me.
I will keep trying!!!

1 month ago 0 0 0 0

Python uses lexographical check in below case by default:
result = max(['a', 'b', 'c', 'aa'])
print(result)

But this can be changed to length based check:
result = max(['a', 'b', 'c', 'aa'], key=len)
print(result)

Have a good one!

1 month ago 1 0 0 0

Leetcode 853 might just be my fav question till now.

2 months ago 0 0 0 0

Does one really need to learn frontend dev syntax now? Is it really needed now?

2 months ago 0 0 0 0

Class discovery (unsupervised), class prediction (supervised).

3 months ago 0 0 0 0

If you see someone already moving forward on the path you just came to a little late, perhaps they might have had better guidance.
You had to struggle but you made it. Yourself.
Let’s see what’s beyond now.

3 months ago 0 0 0 0
Post image

Something good that happened today.

#OneLife

3 months ago 0 0 0 0
Advertisement

Just solved LC "Time Based Key-Value store" problem in python.
#learningpython

3 months ago 0 0 0 0

Did "Search in Rotated Sorted Arrays" and "Daily Temperatures" problems on leetcode today. Did them in Py to learn it. Code is less compared to java, but it has its own pitfalls.

4 months ago 0 0 0 0

Studied "Essence of Objects" chapter from PDP Canvas. Will resume it from "Which design is better?" section.

4 months ago 0 0 0 0

Started on the Odin project today. Will resume reading "dev.to/theodinproject/why-learn...".

4 months ago 2 0 0 0

Did "Top K frequent elements" problem on leetcode today.

4 months ago 0 0 0 0

Believing in ourself at times can be difficult. But possible.

4 months ago 0 0 0 0

Sometimes it’s nice to reach out for no reason at all. Just to say hi and ask how someone’s really doing. Feels so refreshing. 😃

4 months ago 0 0 0 0

Was just search for the difference between Kibana and AWS cloudwatch. Damn, basically AWS cloudwatch supports native services only. Basically very limited. But good.

4 months ago 0 0 0 0
Advertisement

Is annotating text same as labelling text? Is labelling text same as classifying text?

#nlp #naturallanguage #naturallanguageprocessing #ai

4 months ago 2 0 0 0
Preview
From the IndiaTech community on Reddit: Lol😂 Explore this post and more from the IndiaTech community

www.reddit.com/r/IndiaTech/...

4 months ago 0 0 0 0

Work experience does give some edge.

5 months ago 0 0 0 0

Python Python everywhere, not a drop to Java.

5 months ago 0 0 0 0

Sometimes I think too many things (about past or future). Sometimes I start doubting myself and the being within me.

But then come to know that it was just the mood or the lack of sleep which gives us an emotion where we feel less grateful.

I hope we all stay grateful for what we got till now.

5 months ago 0 0 0 0

Isn't it amazing to see how a proper activation function can transform the range of (-infinity, infinity) => (0, 1) ?

Like sigmoid in case of Binary Logistic Regression...

#nlp #ml #learn #grow

6 months ago 1 0 0 0

In System Design, if there is a simple way to do things and a complex way to do things, aim for the simple path.

Not because the simple way is more likely to be correct, but because you have to make more assumptions for more complicated explanations to be true.

6 months ago 0 0 0 0
Advertisement

Supervised Learning problem relies on labeled data to train a model.

6 months ago 0 0 0 0

UITableViewCell is just a specialised version of UIView in swift with a string "reuseIdentifier" allowing UITableView to dequeue and reuse cells as we scroll for smooth performance.
So cool to know these details.

#ios #swift #learn

6 months ago 0 0 0 0

In swift, if you don't need any variables to be instatiated in a for loop, you use something like:

for _ in 1...10{
print("Doing the task!")
}

where underscore _ skips unnecessary memory allocation.

7 months ago 1 0 1 0

Wow, didn't know that * in regex like aa* i.e. a or aa or aaa or aaaa ... so on is called a Kleene :D
* = Kleene

#regex

7 months ago 0 0 0 0

Learning about stemming, lemmatization, sentence segmentation; parts of text normalization i.e. converting text into more convenient form.
Simply put; starting my NLP course. Good luck to me!

7 months ago 0 0 0 0

Code Smell: What are Data Clumps?
An identical group of variables show up repeatedly. These could be variables for connecting to a database, a client or repeatedly being passed across methods.

Fix: Wrap them in an Object, reducing the number of parameters. Future change possible at a single place.

7 months ago 0 0 1 0

Reminder:

Processes have strong isolation due to separate memory space.

Threads have strong memory sharing but have to be carefully synchronized.

#threads #async #memory #concurrent

7 months ago 0 0 0 0
Advertisement

Depends on your client and their requirements.

7 months ago 0 0 0 0