https://www.behance.net/gallery/217375959/HelpHub-Home-Services-Mobile-App-UX-UI-Case-Study
https://www.behance.net/gallery/182776835/Fixpert-UXUI-Case-Study
Priya Paternity Tech Solutions
Friday, 4 July 2025
Home service
Wednesday, 2 July 2025
CMD expo
› Metro waiting on exp://192.168.29.209:8081
› Scan the QR code above with Expo Go (Android) or the Camera app (iOS)
› Using Expo Go
› Press s │ switch to development build
› Press a │ open Android
› Press w │ open web
› Press j │ open debugger
› Press r │ reload app
› Press m │ toggle menu
› Press o │ open project code in your editor
› Press ? │ show all commands
Tuesday, 1 July 2025
Microservices
Looking for support on Microservices, C#,.net core, azure service bus, azure blob storage, event driven architecture ( good to have), cosmos, entity framework, sql server, angular. Anyone willing to support from 7pm to 2am IST please reach out to me. Telugu person preferred. https://medium.com/javaguides/top-15-microservices-patterns-every-junior-and-senior-developer-should-know-bdaf47049635
best UI
https://app.uizard.io/prototypes/create
https://www.figma.com/design/r75CJLkKqS4sipHOCNOAj4/Housify---Home-Service-Mobile-App---On-demand-Home-Service-App---Cleaning--Vehicle---Painting-UI-Kit--Preview-?node-id=29266-32034&t=4IflJT35uU51qJrr-0
https://www.figma.com/design/lssZYDmhXM1Zel1sKjNZXq/Home-Service-App-UI-Design--Community-?node-id=0-1&p=f&t=h42d3LvhdVCh34lw-0
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!
Home service
https://www.behance.net/gallery/217375959/HelpHub-Home-Services-Mobile-App-UX-UI-Case-Study https://www.behance.net/gallery/182776835/Fixpe...
-
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...