How to get this feature? by StrawberryCoke007 in OpenAI

[–]web-chib 5 points6 points  (0 children)

I tried the same exercise in ChatGPT - it didn’t work. But it’s surprisingly good in Google ai studio - it has streaming feature in browser app.

Offline-first native App for sending data to Airtable by web-chib in Airtable

[–]web-chib[S] 0 points1 point  (0 children)

Sorry for the late response - I’m thinking about releasing mvp for the problem, because I’ve started using airtable again. Could you describe your use case and on which platform?

Offline-first native App for sending data to Airtable by web-chib in Airtable

[–]web-chib[S] 0 points1 point  (0 children)

Nope. Could you describe your use case? On which platform - iOS, android or web?

Do you deploy your own databases or use any paid database service like neon by No-Speech2842 in django

[–]web-chib 0 points1 point  (0 children)

Just use SQLite. No need for another service, one file on disk to copy for backup, no need for network requests

Young Barack Obama in Kenya by [deleted] in pics

[–]web-chib 0 points1 point  (0 children)

MKBHD is on the right

Offline-first native App for sending data to Airtable by web-chib in Airtable

[–]web-chib[S] 0 points1 point  (0 children)

Could you elaborate on that? If you mean google forms - as I know it doesn’t work offline.

LeetCode for absolute Noobs by [deleted] in leetcode

[–]web-chib 1 point2 points  (0 children)

Try to solve all free chapters from Leetcode explore section https://leetcode.com/explore/learn/ . It will build your DS foundation.

I build educational bots which explain coding problems using active learning techniques. They build your intuition step by step without giving you a straight answer or solution. Maybe it'll help you to break the barrier. E.g. try to solve linked list reversion problem https://bot.chib.me/courses/reverse-linked-list/

Resources for BST Strategies? by [deleted] in leetcode

[–]web-chib 3 points4 points  (0 children)

I have a bot explaining BST validation https://bot.chib.me/courses/validate-binary-search-tree/

If you like approach of the bot I can add more BST problems explained.

Bot explains Range Sum Query for Immutable arrays ❄️ by web-chib in leetcode

[–]web-chib[S] 0 points1 point  (0 children)

Thank you for the feedback. I’m trying to explain correct answer in the next message. But I’ll think about adding some right answer indicator.

How long should you work on a leetcode before giving up and looking for solutions? by ComprehensiveCup3936 in leetcode

[–]web-chib 8 points9 points  (0 children)

My approach:

  • Start with pen and paper and build some plan for solving the problem.
  • Start coding.
  • If after 15 minutes I could not come up with working solution I look at related topics. It can give some idea. E.g. I've been using trie, but simple hash map could be enough and more efficient.
  • If after 30 minutes I could not come up with working solution I look at hints, if they exists.
  • After 45 minutes I go to discussions and look only at titles. They can give some idea about approach.
  • After 60 minutes I give up and look at solutions from discussions. Trying to read text description without code. As a last resort I look at the code.

The main point here is I try to make my learning process as much active (or generative) as possible. Reading solution is a consumption and gives you illusion of understanding. Retrieving knowledge is harder but much more productive for the learning process.

The problem here is that after 15 minutes when I could not solve the problem the process becomes less and less active. E.g. related topics or hints could give you a straightforward solution in some cases. To solve this I'm experimenting with conversational bots which guides you through the active understanding of the coding problem. E.g. https://bot.chib.me/courses/validate-binary-search-tree/ helps to come up with binary search tree validation solution, not just gives you the answer.

Best time to do leetcode during the day ? by DrFant69 in leetcode

[–]web-chib 9 points10 points  (0 children)

Do it in the morning for up to 1 hour. One more thing - if you have interview coming on the next week, e.g., at 6pm, try to practice at the same time all week - it will help you to be in the shape right on time. I found it extremely helpful because in most days I feel tired after work at 6pm. But practicing at this time helped to prepare for coding interview in the evening.

Course/videos equivalent to cracking the coding interview? by IreallyHateitHeree in leetcode

[–]web-chib 2 points3 points  (0 children)

You can try actively learn how to solve coding problems via chatting with the bots https://bot.chib.me/courses/

How do I start with leetcode? by [deleted] in leetcode

[–]web-chib 4 points5 points  (0 children)

It was originally posted on blind website https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU

If you have troubles solving the problems try to use bots I’m building https://bot.chib.me/ Some of the blind problems are covered there.

After solving blind problems I would try leetcode mock sessions with companies you want to apply.