code metrics in visual studio code
search in google for code quality
Priya Paternity Tech Solutions
Tuesday, 7 April 2026
Tuesday, 3 March 2026
Capgemini Interview
capgemini famous interview question
List<int> A = new List<int>();
A.add(1);
List<int> B=A;
B=new List<int>();
B.Add(2);
A.add(3);
answer?
Saturday, 7 February 2026
dropdownsearch for dyanmic fields
I’ve enabled searchable dropdowns for all dynamic dropdown controls in Assignment Details.
What I changed
- Added a dropdownSearch map in assignment-details.component.ts.
- Added ngx-mat-select-search inside every dynamic dropdown in assignment-details.component.html.
- <ng-template #dynamicOptions>
- <mat-option>
- <ngx-mat-select-search
- [(ngModel)]="dropdownSearch[field.ControlName]"
- [ngModelOptions]="{ standalone: true }"
- [placeholderLabel]="'Search...'"
- [noEntriesFoundLabel]="'Not found'"
- ></ngx-mat-select-search>
- </mat-option>
- <mat-option
- *ngFor="
- let option of field.Options
- | stringFilterBy: dropdownSearch[field.ControlName]:'Name'
- "
- [value]="option.Value"
- >
- {{ option.Name }}
- </mat-option>
- </ng-template>
- Wired filtering using the existing stringFilterBy pipe on option.Name.
private destroy$ = new Subject<void>();
Tuesday, 3 February 2026
DB PRod issues
Production data transer issue i have faced
not using where update command using transaction
>>tansfer larger amount of data from dev emp table to test emp table mistate first load less dpendent data
>> functions and tables and veiws
then sps
>>it taking 40 mnts for 50k records.
Friday, 19 December 2025
Wednesday, 17 December 2025
when you order by two columns use this.imp
SELECT *
FROM dbo.tbl_WorkFlowMembers w
WHERE w.WorkFlow_ID IN (
SELECT WorkFlow_ID
FROM dbo.tbl_WorkFlow
WHERE country_code = 'BE'
)
ORDER BY
w.WorkFlow_ID,
w.Approver_Sequence DESC;
Sunday, 14 December 2025
kAFKA CONFLUENT FREE TRAIL
For me two promos are showing
VFREETRIAL400 $400.00 / $400.00 USD remaining Expires Jan. 13, 2026 CONFLUENTDEV1 $1.00 / $1.00 USD remaining Expires Jan. 13, 2026For me two promos are showing FREETRIAL400 $400.00 / $400.00 USD remaining Expires Jan. 13, 2026 CONFLUENTDEV1 $1.00 / $1.00 USD remaining Expires Jan. 13, 2026code quality
code metrics in visual studio code search in google for code quality
-
D:\A-MyProjects2024-2025\ReactNative2025\BookRental\android\app\build\outputs\apk\debug path of apk To build an Android app using Capacitor...
-
OLX, like many large-scale online platforms, employs a variety of data structures and technologies to manage its data effectively. While s...