Oracle API Platform Cloud Service is a state-of-the-art P-a-a-S for API-First design and management that enables centralized design and implementation of the full API life cycle from design and standardization to documenting, publishing, testing, governance, and administration of APIs from the Oracle Cloud. It provides the ability to use APIs to gain access to business […]
This is a part of What is new in Oracle 20c for developers blog post series. This blog post briefly describes some new pl/sql features in Oracle 20c from a developer perspective. New PL/SQL Features 1. PL/SQL-only attributes in Non Persistable User Defined Types PL/SQL-only data types such as BOOLEAN and PLS_INTEGER can be used […]
This blog post enumerates on some of the new features in Oracle 20c for developers. It describes these new features (with code snippets for some of them) in two parts, namely, SQL and PL/SQL, for developers and application programmers. Part -1 outlines new SQL features and part-2 describes new PL/SQL features. As a preview, the […]
Lazy loading speeds up angular2 application load time by splitting it into multiple bundles, and loading them on demand. Consider an example: import {Component, NgModule} from ‘@angular/core’; import {RouterModule} from ‘@angular/router’; import {platformBrowserDynamic} from ‘@angular/platform-browser-dynamic’; @Component({…}) class MailAppCmp {} @Component({…}) class ConversationsCmp {} @Component({…}) class ConversationCmp {} @Component({…}) class ContactsCmp {} @Component({…}) class ContactCmp {} […]
The Wiki say’s, a search box or search field is a graphical control element used in computer programs, such as file managers or web browsers, and on web sites. A search box is usually a single-line text box with the dedicated function of accepting user input to be searched for in a database. Search boxes […]
Microsoft Office doesn’t have a theme change event in their VSTO API, so in order to detect the theme change, we need to monitor the registry key “UI Theme”. The key can be found in the following registry path: For Office 2013: HKEY_CURRENT_USERSOFTWAREMicrosoftOffice15.0Common For Office 2016: HKEY_CURRENT_USERSOFTWAREMicrosoftOffice16.0Common The value is a REG_DWORD and its range […]
AngularJS – ng-repeat and Radio Buttons I recently had this problem where I had to select an item from a table. Nothing much, but I avoided buttons for this task and instead used a radio button against each row: where $scope.users = [{“userId”: 1, “firstName”: “a”,“lastName”:“b”}, {“userId”: 2, “firstName”: “c”,“lastName”:“d”}, {“userId”: 3, “firstName”: “e”,“lastName”:“f”}]; and […]
Using web services is a very common part of development for any iOS developer who is building a dynamic iOS application. Sometimes you may be doing everything correct, but not getting the desired response. You may not be able to consume a web service. Out of the many possible solutions, one solution is to set […]
[fusion_text]To be able to consume a WCF service, it needs to be hosted. There are multiple options to host a WCF service, and all of them comes with various advantages and disadvantages. Available hosting options are as follows. Hosting Option Description 1 Self-Hosting Hosting using Console Application, Win Forms, WPF Application etc. 2 Windows […]
Q:When is WWDC? Siri: WWDC will take place from June 13 through June 17, 2016 in San Francisco. Yes, The next WWDC is here. Apple Worldwide Developers Conference (WWDC), is a conference held annually by Apple Inc., where apple launches their new operating systems. There are various rumours cycling the internet about how the next iPhone will be. Last month […]