Skip to main content

Posts

Showing posts from July, 2014

#8-How to Integrate Leadbolt HTML Ad in Windows Store JS App?

In this article, I will explain how to place a Leadbolt HTML app banner in a Windows 8.1 JavaScript app. Prerequisites: Basics of creating Windows 8.1 apps with JS. Steps: At first create the ad in Leadbolt site. Keep the ad code in a text file in your computer. We will need this soon. Make sure you have Internet (Client) checked in the Capabilities section of the package.appxmanifest file. Add an HTML page (page.html) to the project. Delete everything in the body part of the page and paste the ad code just before the closing body tag. Now, select the page where you want to place the ad. Let's assume you want to place the ad in default.html. In default.html, place x-ms-webview code in the desired area. Use CSS styles for making the ad look better. If you don't want scrollbars to appear inside your ad, use overflow: hidden; style in page.html. If you have a house ad, use proper styling to make it look nice. The app is now available in Windows Store . Image credit: Imthiyaz Sy...

#7-C Sharp Corner Kolkata Chapter June UG Meet

On 22nd June, 2014, we, C# users from Kolkata attended the monthly C# Corner UG meet in Microsoft, Kolkata. The event started late because of some organizational issues but, Sumantro Rijndael Mukherjee efficiently handled everything. There were 25 attendees and everyone was enthusiastic about the event! I was lucky enough to start the event with my presentation on DS JS, which is my first Javascript library. This library is for performing and visualizing data structure operations. Currently supported operations are: Bubble Sort, Selection Sort, Insertion Sort, Quick Sort, Merge Sort, Heap Sort, Linear Search, Binary Search, Stack Operations & Queue Operations. Operations which will be supported in future versions are: D Queue Operations, Circular Queue Operations, Priority Queue Operations, Tree Operations etc. This library is for people who are already familiar with the concepts of data structure and algorithms. Right now, the only targeted use case is practicing data structure o...