Posts

Showing posts from April, 2015

Microsoft announces SDKs to port Android and iOS apps to Windows Store Apps

Microsoft has been opening its arms to the non-Microsoft world. Last year, Microsoft open sourced its .NET Framework and many other projects. Microsoft teams have been working with open source developers and companies to support multiple languages, frameworks, and platforms to build and run on Windows. Microsoft has built a robust ecosystem of tools under its Visual Studio 2015 umbrella to build support for open source platforms such as Ruby on Rails, PHP, HTML, JavaScript and Linux. Now, Microsoft is also looking at Google Android and Apple iOS developers. Today at Build 2015 in San Francisco, Microsoft’s Terry Myerson announced two new SDKs for iOS and Android developers to port their Android and iOS apps to Windows Store apps. Android developers don’t need to do anything different to deploy and run their apps on Windows 10. They will still be able to deploy their Java or C++ code as packages to Microsoft’s Windows 10 mobile operating system or Windows Phones. Microsoft’s Win...

Microsoft Announces Azure SQL Data Warehouse and Data Lake service

Image
Microsoft announces Azure SQL Data Warehouse that takes data analytics to new levels of scale and efficiency.   The new service helps developers build more intelligent apps to power more intelligent business decisions. This new service supports petabytes of data and scales computing separately from storage and offers a 75 percent savings over other cloud data warehouse offerings.     Also introduced is a new Azure Data Lake service, a nearly infinite data repository that supports petabyte-size files and all types of data. Machine learning and big data services from Microsoft, and partners like Cloudera and Hortonworks, are integrated into Data Lake to give developers high-performance ways to store, process and reason over exabytes of structured and unstructured data to quickly deliver insights to power more intelligent apps.  

Visual Studio Code Available for Download

Image
Microsoft today at Build Conference introduced Visual Studio Code, a free, lightweight, code-focused editor that runs on Windows, Linux and Mac OSX.   Download code for Windows, Linux and Mac OSX from  here>>     Visual Studio features like Intellisense and in-line debugging are incorporated into this editor. This is the first editor from the Visual Studio family that supports cross-platform development.   Available in a preview version, this new tool has built-in support for ASP.NET 5 development with C#, and Node.js development with TypeScript and JavaScript. More on this  here>>    

Outlook API is Available Now

Microsoft is very serious about the Office Store and as announced earlier, Office  Outlook Apps have already started making their ways  to the store. Today, in a blog post by the Outlook team announced that Outlook add-ins or apps are already being added to Outlook and Uber, Boomerang, LinkedIn, Salesforce, and PayPal are among the first companies to jump on building Outlook add-ins. By building Outlook add-ins, the apps now can access and integrate with Outlook.com, desktop Outlook, and Office 365. For example, you want to book an Uber ride and set a reminder your Outlook calendar, you can do that. Today, announced at Build, Outlook API that allows developers to build Outlook add-ins using open source technologies such as HTML 5, CSS3, JavaScript, OAuth, and REST API. Outlook API support most of the platforms such as Windows, iOS, Android, NodeJS, and Ruby. Outlook API is divided into two categories – API to connect to the Outlook Service, and API to build add-ins to ...

Auto complete text box with PHP, jQuery and MySql

Image
Creating database table We need to create a table in our database before writing our script. I also add some data for this table. Import following SQL statement via phpMyAdmin or any other MySQL tool. CREATE TABLE `tag` ( `id` int(20) NOT NULL auto_increment, `name` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; INSERT INTO `tag` (`id`, `name`) VALUES (1, 'php'), (2, 'php frameword'), (3, 'php tutorial'), (4, 'jquery'), (5, 'ajax'), (6, 'mysql'), (7, 'wordpress'), (8, 'wordpress theme'), (9, 'xml'); index.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Auto Compl...

Days, Hour, Minute & Second inSql Like Facebook notification

DECLARE @TotalSec int DECLARE @DiffSecs int SET @TotalSec = 24*60*60 SELECT       --DATEDIFF(SECOND, Created_Date, getdate()), CASE   WHEN CONVERT(char(2), (DATEDIFF(SECOND, Created_Date, getdate())/@TotalSec)) > 0 THEN   CAST(CONVERT(char(2), (DATEDIFF(SECOND, Created_Date, getdate())/@TotalSec))AS VARCHAR)+' Day'+' ' + CAST(CONVERT(char(2), ((DATEDIFF(SECOND, Created_Date, getdate())%@TotalSec)/3600))AS VARCHAR)+' Hr'    WHEN CONVERT(char(2), ((DATEDIFF(SECOND, Created_Date, getdate())%@TotalSec)/3600)) > 0 And CONVERT(char(2), (DATEDIFF(SECOND, Created_Date, getdate())/@TotalSec)) <= 0 THEN     CAST(CONVERT(char(2), ((DATEDIFF(SECOND, Created_Date, getdate())%@TotalSec)/3600))AS VARCHAR)+' Hr' +' ' +CAST(CONVERT(char(2), (((DATEDIFF(SECOND, Created_Date, getdate())%@TotalSec)%3600)/60))AS VARCHAR)+' min' WHEN CONVERT(char(2), (((DATEDIFF(SECOND, Created_Date, getdate())%@TotalSec)%3600)/60)) ...

How to create dynamic Ajax Bar Chart in ASP.NET using C#

Image
In this article I’m going to explain how to create dynamic Ajax Bar Chart in ASP.NET using C#.           Ajax Control toolkit provides a ways to create Bar Chart that would be display the statistics data in graphical representation. The BarChart control enables you to render a bar chart from one or more series of values. I already wrote some articles related to ASP.NET Chart How to create dynamic Google Chart in ASP.NET using C#            How to create dynamic Ajax Pie Chart in ASP.NET using C#            How to create dynamic Ajax Area Chart in ASP.NET using C#           Here I’ll show you how to create dynamic Ajax Bar Chart, in this demo I’ve used  Northwind database to populate dynamic Bar chart Please follow the link to download  Northwind  database http://north...