Skip to main content

Posts

Showing posts from 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> <

Apple iOS 10.2 Is Causing New Problems

Sticking to your guns is often seen as a good thing, but sometimes it can do more harm than good. Especially when it means persisting with a mundane process in full knowledge that it will cause new problems… In short: today  Apple  stopped signing iOS 10.1  and  iOS 10.1.1. What this means is Apple servers will not recognize either update as legitimate anymore so iPhone, iPad and iPod touch users can no longer downgrade to them from iOS 10.2, which Apple  released last week . Apple typically stops signing old versions of iOS within a week or two of launching a new version. And yet persisting with this seemingly simple housekeeping exercise makes no sense whatsoever given the problems iOS 10.2 is exacerbating with the so-called ‘30% battery bug’. First  reported by me last month , the 30% bug can affect every iOS 10 compatible iPhone with the exception of the iPhone 7 and iPhone 7 Plus and it causes the phone to die suddenly when the battery is around the 30% mark.

Apple iOS 10.2 Is Now Available: What Is Included In The Update?

Apple has released iOS 10.2 to the general public today. The last time that Apple launched an iOS update was on October 31st with iOS 10.1.1. On that same day, Apple released the developer preview of iOS 10.2. To work out the kinks, Apple iOS 10.2 went through seven beta tests before the public release. This update includes several major features and many bug fixes. You can install iOS 10.2 by connecting your device to iTunes or downloading it by going to  Settings > General > Software Update . The iOS 10.2 update is available for the following devices: iPhone 5 and later, iPad 4th generation and later and iPod touch 6th generation and later. What Is Included In The Update? iOS 10.2 has several features worth pointing out: - New TV App Apple released a new TV app that provides recommendations for new movies and TV shows in the "Watch Now" section and to discover new apps and new iTunes releases in the "Store" section. The "Up Next"

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