Skip to main content

Posts

Showing posts from September, 2016

AngularJS - Tables

Table data is normally repeatable by nature. ng-repeat directive can be used to draw table easily.  Following example states the use of ng-repeat directive to draw a table. <table> <tr> <th> Name </th> <th> Marks </th> </tr> <tr ng-repeat = "subject in student.subjects" > <td> {{ subject.name }} </td> <td> {{ subject.marks }} </td> </tr> </table> Table can be styled using CSS Styling. <style> table , th , td { border : 1px solid grey ; border - collapse : collapse ; padding : 5px ; } table tr : nth - child ( odd ) { background - color : #f2f2f2; } table tr : nth - child ( even ) { background - color : #ffffff; } </style> Example Following example will showcase all the above mentioned directive. <html> <head> <

Audio Conference Call Demo Application(iOS) by voxeet

Download Demo Application Voxeet iOS SDK The Voxeet SDK is a Swift library allowing users to: Create demo/normal conferences Join conferences Change sounds angle and direction for each conference user Broadcast messages to other participants Send and receive video stream Table of contents Requirements Sample Application Installing the iOS SDK SDK Initialization SDK Usage VTAudioSound Usage Available delegates / callbacks Requirements iOS 8.0+ Xcode 7.3+ Sample Application A sample application is available on this  public repository  on GitHub. Installing the iOS SDK You need to disable Bitcode in your Xcode target settings: 'Build Settings' -> 'Enable Bitcode' -> No To enable background mode, go to your target settings -> 'Capabilities' -> 'Background Modes' Turn on 'Audio, AirPlay and Picture in Picture' Turn on 'Voice over IP' Installation with CocoaPods CocoaPods  is a depen