Category: Angular

  • Literary Awards–part 3–data

    Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/   The data – this was the difficult part. As I said,I wanted the data to be local – but how can I put the first time ? And where ? I cannot be cookie,since the authors are a large database for cookies… There are…

  • Literary Awards–part 2–design

    Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/   One of the first problem that I was design. How to make a design that works on mobile and web and desktop ? Nowadays,the standard seems to be a menu on the left,that will be hidden when the mobile is rendering  . Also,this menu…

  • Literary Awards–part 1–start

    Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/   I was curious to make a project for web and mobile. The constraints: 1. database just on local,not on a central repository. 2. All with Javascript( OK,TypeScript)., 3. To work on web,mobile,desktop without changing something   The purpose of the project was to list…

  • Angular,CORS and .NET Core SignalR

    I have written a .NET Core  SignalR + Agular Observable of continously delivering the data. (http://msprogrammer.serviciipeweb.ro/2018/06/25/net-core-signalr-hub-angular-observable/ ) The setup is that .NET WebAPI resides in Visual Studio Project ( .sln. .csproj) and Angular Project is separate in another folder. There are some settings in the development to be done in order to work Setting CORS…

  • From unstructured data to application

    Imagine that you have this kind of texts: Alpert of Metz – 11th-century – France – Medieval writers Aimoin of Fleury – c. 960 – c. 1010 – France – Medieval writers Amulo Lugdunensis (Archbishop of Lyon) – 9th-century – France – Medieval writers Amulo Lugdunensis (Archbishop of Lyon) – 9th-century – France / Carolingian…

  • .NET Core SignalR Hub+ Angular Observable

    TL;DR: Deliver all the table content continuously paginated to the browser with .NET Core and Angular Long Description: I was thinking that delivering paginating data is kind of lame. Why should I,for seeing the whole data,should keep pressing next page / or scrolling  down ? I understand that on the server it is necessary to…

  • Angular,.NET Core,IIS Express and Windows Authentication

    2 years ago I have written about .NET Core Windows Authentication :http://msprogrammer.serviciipeweb.ro/2016/09/26/asp-net-core-and-windows-authentication/  The idea was that for Windows authentication this is mandatory in Web.Config: forwardWindowsAuthToken=”true” Now I want to show how to achieve the same in  IIS Express .NET Core as backend and Angular for front end For .NET Core / IIS Express 1. Configure…