Hitesh Ingale
@shellbot97
Followers
1
Following
232
Media
8
Statuses
36
Joined September 2024
Even after entering correct OTP, Thane Rural police tenant info site shows wrong OTP error. I have tried refilling and submitting the form 3 times with 20 mins intervals. @MahaPolice @Thane_R_Police can you please help.
0
0
0
🧨 Go 1.24.0 is released! 📝 Release notes: https://t.co/EGh8fHpeuo ⬇️ Download: https://t.co/JO0ETD0App
#golang
27
400
1K
When to throw an exception vs. return null/false/empty: •Throw an exception when the program doesn’t know how to proceed—something unexpected happened. •Return null/false/empty when there’s simply no answer—so the caller can decide how to handle it.
0
0
0
Shortest and most clear definition of design pattern I've ever heard : Solving common problem using a common solution 🙌 given by @gkcs_ in
0
0
0
In simple terms, Clean Architecture organizes a software system into layers, each with a specific responsibility. Dependencies flow only in one direction: toward the core business logic. This structure helps keep the system modular, testable, and resilient to changes.
0
0
0
At its core, Clean Architecture tries to ensure that the most important parts of your application, like business rules and logic, are independent of external concerns such as frameworks, databases, or user interfaces. Further it simplifies…
1
0
0
I have often wondered if there’s any easier one liner explanation of what Clean coding is.. something that i can remember by whenever i am doing LLDs.. @bytebytego’s last weeks newsletter cleared it up pretty quickly! It says..
1
0
0
Amazingly written article about data conversion when capacity planning during system design :
systemdesign.one
back of the envelope calculation is commonly used to evaluate different architectural designs
0
0
0
Many times, an API works perfectly in Postman but fails when called through Laravel. This is often due to mismatched headers, a faulty request payload, or incorrect cookies. To debug this, you can dump the outgoing request instance before it’s sent using the HTTP Client’s dd()
1
0
0
You can even go one step further and configure this to automatically run on system boot. 🌊
0
0
0
I have created a shell alias which executes this script whenever I type 'create_today' 🤖
1
0
0
I like to start my day with a fresh notepad and folder to save that day’s work. Here’s a bash script I wrote to automate this:
1
0
0
Go structs with identical fields can differ in memory usage due to data alignment and field ordering. By reordering fields, significant memory savings can be achieved. This technique is called structure packing. Ref: @dailydotdev
https://t.co/cBUhakBV88
golangprojectstructure.com
It may be surprising to learn that two Go structs can contain exactly the same fields and yet one can require more — or less — memory than the other.
0
0
4
If you later want Git to track the file again, run: git update-index --no-assume-unchanged <file-path>
0
0
0
git update-index --assume-unchanged <file-path> When the "assume unchanged" bit is on, the user promises not to change the file and allows Git to assume that the working tree file matches what is recorded in the index.
0
0
0
Isn't it annoying to see some file that is specific to your local configuration but cant be put in gitignore, pop up in git changes repeatedly! Here's how you can ignore it temporarily...
3
0
0
This week, @g_perales and I worked together on a tool for Tailwind CSS users. The tool lets you easily create grids for your Tailwind CSS projects, perfect for generating bento-style grids! It supports Tailwind CSS v3/v4 — https://t.co/q79YyKyB1w
18
141
1K