Wednesday, 27 July 2022

point domain in godaddy to azure

 Today i am going to teach you how to point auzre static web app to go daddy domain

1.go to azure portal under customdomain click on add 

2.give domain name with www save then copy cname record

3.go to godaddy click on mydomain >> domain settings

4.click on add 

5.select cname and type www and paste which copied in setp 2

if you still not getting click on this Link

Tuesday, 19 July 2022

showdiv ionic

 after click on div show below div only

when click on butthon only one div show only remaining will not show hide

https://stackblitz.com/edit/angular-6zfewb?embed=1&file=src/app/app.component.html

div show hide


https://stackblitz.com/edit/hide-show-list-item-in-ngfor-angular-6-7-lbyixs?file=src%2Fapp%2Fapp.component.html

show div

Monday, 11 July 2022

job req

 Minimum Qualifications:

  • 4+ years experience as a full-stack developer with .NET core expertise.
  • 2+ years developing SaaS or IaaS cloud platform
  • Hands-on experience with API development
  • Relevant development technologies and languages such as (but not limited to) CSS, JavaScript (including jQuery), HTML5, .NET, MVC, C#, Java
  • A Bachelor’s Degree or diploma in Computer Science, Engineering or another related field.
  • Experience with building multi-tenancy applications
  • Relevant cloud-based infrastructure and CI/CD experience (AWS, Azure)
  • RESTful APIs for proprietary and industry-standard protocols
  • Ability to follow design patterns, adhere to development standards
  • Strong coaching, mentoring, and training skills
  • Excellent communication skills
  • Ability to work in a team environment, coordinating efforts towards a common goal.

  • job

Job Responsibilities:

· .Net Core (3 yrs.+), .Net MVC 6+, SQL Server 6+, Design Patterns 5+

· Any NoSQL DB 1+, Entity framework 4+, LINQ 4+

· Architecting applications

· Experience in Event-driven development or Domain-Driven Design

· Very good Communication

· Knowledge of Git

Saturday, 9 July 2022

ionic dropdown selection

   <ion-card>

    <ion-item>
      <ion-label>Select Subject</ion-label>
      <ion-select  [(ngModel)]="itemId" (ionChange)="optionsFn();" >
      <ion-select-option  *ngFor ="let c of Categories;let id = index"
 [value]="[id]">{{c.CatagoryName}}</ion-select-option>
      </ion-select>
    </ion-item>
  </ion-card>

  optionsFn(){debugger
this.subcategory=this.Categories[this.itemId].children
console.log(this.subcategory)
  }

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… Code Crack...