Posts

Showing posts from October, 2017

Dot Net Core

json web token (Token based) web api angular Startup in ASP.NET Core https://docs.microsoft.com/en-us/aspnet/core/fundamentals/startup https://www.tutorialsteacher.com/core/aspnet-core-application-project-structure ASP.NET Core 3.0, Visual Studio, Entity Framework Core 3.0, Bootstrap 4, and Angular (v8) https://app.pluralsight.com/library/courses/aspnetcore-mvc-efcore-bootstrap-angular-web/table-of-contents ASP NET Core Tutorial (KUDVENKAT) https://www.youtube.com/watch?v=4IgC2Q5-yDE&list=PL6n9fhu94yhVkdrusLaQsfERmL_Jh4XmU&index=1 CRUD Core + Angular 4 https://www.codeproject.com/Articles/1197953/CRUD-Operation-using-ASP-NET-CORE-and-Angular   Security https://channel9.msdn.com/events/dotnetConf/2017/T324?term=core MVC Core https://www.youtube.com/watch?v=ipio9ze57X8 ASP.NET Core Interview Questions https://www.talkingdotnet.com/asp-net-core-interview-questions/ https://www.qfles.com/interview-question/asp-net-core-interview-questions SQL Query Interview Questions ht

stackoverflow

Image
http://it-ebooks.directory/book-0521670152.html https://stackoverflow.com/jobs/remote-developer-jobs?med=clc https://codility.com/public-report-detail/ https://codility.com/candidate-faq/ Dear Mr. Mohammad Nazmul Huda Rubol Chowdhury, Thank you for your recent application for our company. As a next step, we would like you to take a Video Interview and Programming Test. Please refer as below for details: ---------------------- Video Interview ---------------------- Your video interview will consist of a set of prerecorded questions for you to answer using your computer webcam and microphone. After this email, we will send you an invitation email separately. If you are a competent candidate, you will be invited for a face-to-face first interview. Video Interview Steps - Introduction movie - Interview starts   Questions you will be asked: (1) Could we have your name and the reason why you are interested in Rakuten? (2) Please tell us your tech

Node.js Typescript

Image
https://code.msdn.microsoft.com/ https://www.tutorialspoint.com/typescript/typescript_types.htm https://www.tutorialspoint.com/angularjs/index.htm Node.js is an open source, cross-platform runtime environment for server-side JavaScript. Node.js is required to run JavaScript without a browser support. It uses Google V8 JavaScript engine to execute code. You may download Node.js source code or a pre-built installer for your platform. https://www.tutorialspoint.com/typescript/typescript_environment_setup.htm https://github.com/anisul-Islam/typescript-documentation TypeScript let isDone : boolean = false ; let decimal : number = 6 ; let color : string = "blue" ; let a: null = null; let b: number = 123; let c: number = 123.456; let d: string = ‘Geeks’; let e: undefined = undefined; let f: boolean = true; let g: number = 0b111001; // Binary let h: number = 0o436; // Octal let i: number = 0xadf0d; // Hexa-Decimal In built-in data types,  any  is a special data-type, al