Posts

Showing posts from December, 2018

Work with HTML5 Video Player with Angular 2+

Image
Hi coders, This is just a straight forward post. I'll explain you all, how to use the html5 video player ( https://www.w3schools.com/html/html5_video.asp ) with angular. Actually there are some tricky parts as well, such as; not refreshing the video when clicking on multiple video urls. So, lets get started. video-player.component.html <div id=" jobCallDetailModal " class="modal fade dashboardN" role="dialog" data-backdrop="static"> <div class="modal-dialog modal-lg modal-xl"> <div class="modal-content"> <div class="modal-header" *ngIf="callDetails != null" > <button type="button" class="close" (click)="closeVideoViewer()"> <i class="ti ti-close"></i> </button> <h5 class="modal-title float-left">Job

Firebase with.Net Core and C#

Image
Hi folks, Are you developing web applications with .net ? Are you supporting mobile applications to communicate with your applications ? Are you thinking of providing realtime capabilities with your apps? Then I suggest you to read on Firebase Real-Time Dataabses by Google. " The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. " - Google Firebase Team Read more:  https://firebase.google.com/docs/database/ In this post I'm going to discuss what is firebase but I'm going to discuss how to work with it with .Net C#. Firebase doesn't provide a separate library or a nugget to work with .Net, so you might find this bit tricky when you have to work with it from the backend. Senario To demonstrate the solution I will create a scenario. In my scenario we have created a video call function (which is implemented with OpenTok library) and it allows users to create sessions and i