https://grabstar.io/reviews/326/projects
Monday, 30 June 2025
Wednesday, 25 June 2025
Car pooling app
I'll create a car pooling app with real-time vehicle tracking, pickup/drop time estimates, and a list of onboard users. Since we don't have a backend enabled, I'll simulate the real-time aspects with local state management using Zustand.
Key features to implement:
1. Map view with vehicle tracking (simulated)
2. Ride scheduling and booking
3. User profiles
4. Ride history
5. Real-time ETA updates
6. List of passengers in current ride
Design approach:
- Clean, modern UI with a light theme
- Primary color: #3B82F6 (blue)
- Secondary color: #10B981 (green)
- Accent: #F59E0B (amber)
- Neutral colors for text and backgrounds
App structure:
- Home screen with map and active rides
- Ride booking screen
- Profile screen
- Ride details screen with passenger list
Let me plan the file structure:
1. State management with Zustand
2. Mock data for rides, users, locations
3. Components for map, ride cards, user avatars
4. Screens for home, booking, profile, ride details
Since we can't use real maps or location services on web, I'll create a simplified map visualization that works across platforms.
Friday, 20 June 2025
7 Common mistakes in Dot Net — You can avoid
There are many common mistakes made during .NET (ASP.NET, .NET Core) development, which affect performance, security, and code…

Dot Net, API & SQL Learning
a11y-light~2 min read·February 26, 2025 (Updated: March 25, 2025)·Free: NoThere are many common mistakes made during .NET (ASP.NET, .NET Core) development, which affect performance, security, and code maintainability. Let's learn about 7 common mistakes and their solutions.
1. Not closing the database connection properly
Many developers forget to close the database connection ('SqlConnection') after opening it. This results in memory leaks and increases the server load.
Solution -
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
// Database operations
}
2. Using hardcoded strings
Many people write application configuration or sensitive information directly into the code, which is a security risk.
Solution:
- Use appsettings.json or Environment Variables.
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
// Database operations
}
3. Not handling exceptions
Without proper exception handling, the application can crash unexpectedly.
Solution:
try
{
int result = 10 / int.Parse("0"); // Division by zero
}
catch (Exception ex)
{
Console.WriteLine($"Error: {ex.Message}");
}
4. Not preventing SQL injection
Many people use user input directly in SQL statements, which opens up opportunities for SQL injection attacks.
Solution:
using (SqlCommand cmd = new SqlCommand("SELECT * FROM Users WHERE UserId = @id", conn))
{
cmd.Parameters.AddWithValue("@id", userId);
}
5. Not logging and monitoring
Without logging, it becomes difficult to find application problems.
Solution:
- Use Serilog, NLog, or Application Insights.
Log.Information("User logged in: {UserId}", userId);
6. Using unnecessary viewstate and large sessions
Using large viewstate in ASP.NET WebForms slows down the webpage. Similarly, large session data increases the memory usage of the server.
Solution:
- Minimize or disable ViewState.
- Reduce Session Timeout.
7. Not using asynchronous programming
If asynchronous methods are not used while a heavy operation is running, the application may block.
Solution:
public async Task<string> GetDataAsync()
{
using (HttpClient client = new HttpClient())
{
return await client.GetStringAsync("https://api.example.com/data");
}
}
Avoiding these 7 common mistakes will make your .NET application more secure, performant, and resource-efficient. If you have any experiences or feedback, please share them in the comments!
Saturday, 14 June 2025
Friday, 13 June 2025
white hair reason
1. Correct vitamin or mineral deficiencies
Sharing the causes, she said, “First things first: You may want to get your blood drawn. Low iron, copper, vitamin B12 and thyroid levels have been linked to premature hair greying. Correcting those deficiencies may help to bring back colour to your hair.”
Thursday, 12 June 2025
AI projects IMP
https://github.com/alumnium-hq/alumnium/tree/main/alumnium
https://alumnium.ai/docs/getting-started/writing-first-test/
https://www.reddit.com/r/learnmachinelearning/comments/1iu5ezc/is_it_a_must_to_learn_web_development_to_become/
https://www.kadoa.com/add
scopped
https://www.reddit.com/r/csharp/comments/1acwtar/can_someone_explain_when_to_use_singleton_scoped/
alternate for medium
https://freedium.cfd/
use this extention also
https://chromewebstore.google.com/detail/medium-unlock/babnnfmbjokkeieobamoifmeapbbfhje
Wednesday, 11 June 2025
while generating to pdf getting error font not valid then used this script
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.32/vfs_fonts.js"></script>
-
Points 1.complex page layouts and adherence to code standards. 2.primeNG pagination 3.ngcontent 4.ngdestory(memorylekage) 5.datatransfer wi...
-
Check duplicate count based on 3 columns combo select EMPID,FORMinfoID,FormName,Count(*) as counts from tbl_FilesMigrationLogs group by Em...