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!!!
Posts by
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!
Leetcode 853 might just be my fav question till now.
Does one really need to learn frontend dev syntax now? Is it really needed now?
Class discovery (unsupervised), class prediction (supervised).
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.
Something good that happened today.
#OneLife
Just solved LC "Time Based Key-Value store" problem in python.
#learningpython
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.
Studied "Essence of Objects" chapter from PDP Canvas. Will resume it from "Which design is better?" section.
Started on the Odin project today. Will resume reading "dev.to/theodinproject/why-learn...".
Did "Top K frequent elements" problem on leetcode today.
Believing in ourself at times can be difficult. But possible.
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. 😃
Was just search for the difference between Kibana and AWS cloudwatch. Damn, basically AWS cloudwatch supports native services only. Basically very limited. But good.
Is annotating text same as labelling text? Is labelling text same as classifying text?
#nlp #naturallanguage #naturallanguageprocessing #ai
Work experience does give some edge.
Python Python everywhere, not a drop to Java.
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.
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
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.
Supervised Learning problem relies on labeled data to train a model.
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
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.
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
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!
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.
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
Depends on your client and their requirements.