Monday, April 15, 2013

What Makes Google Glass Work [Infographic]



What Makes Google Glass Work [Infographic]

Querying Wireless Settings and Decrypting Wireless Key - CodeProject

Introduction to Article

The attached sample application queries and displays the wireless settings of the connected wireless interface and lists the available networks. The code itself is self-explanatory. The only area that needs some explanation is the part that decrypt's the key cipher text. If you are in Windows 7 or above, then you will be getting the wireless key as plain text and no need to decrypt.  If you are in Windows Vista, you will be getting the wireless key as a cipher text and needs to decrypt.  For the decryption to work, it is good to run as administrator.

Querying Wireless Settings and Decrypting Wireless Key - CodeProject

Thursday, April 11, 2013

registry - Returning value from HKCR using Powershell - Stack Overflow

English: Screenshot of Windows PowerShell 1.0 ...
English: Screenshot of Windows PowerShell 1.0 Deutsch: Screenshot von Windows PowerShell 1.0 فارسی: عکس صفحه‌ی نمایش از ویندوز پاورشل نسخه‌ی 1.0 Русский: Сессия в Windows PowerShell (Photo credit: Wikipedia)
Use PowerShell to read the HKCR  registries inWindows.

registry - Returning value from HKCR using Powershell - Stack Overflow
Enhanced by Zemanta

powershell - How to pass credentials to the Send-MailMessage command for sending emails - Stack Overflow

WIndows PowersHell
WIndows PowersHell (Photo credit: Eifion)
Here is a good article with information about how to pass username and password using PowerShell. to send E-Mail.

powershell - How to pass credentials to the Send-MailMessage command for sending emails - Stack Overflow
Enhanced by Zemanta

Tuesday, April 9, 2013

Powershell - Check for Registry value and change if not correct

English: Screenshot of Windows PowerShell 1.0 ...
English: Screenshot of Windows PowerShell 1.0 Deutsch: Screenshot von Windows PowerShell 1.0 فارسی: عکس صفحه‌ی نمایش از ویندوز پاورشل نسخه‌ی 1.0 Русский: Сессия в Windows PowerShell (Photo credit: Wikipedia)
Need to use PowerShell to read the Windows Directory? Yeah. Me too. The following article gives good advice.

Powershell - Check for Registry value and change if not correct
Enhanced by Zemanta

Hey, Scripting Guy! How Can I Check for the Presence or Absence of a Text File? - Hey, Scripting Guy! Blog - Site Home - TechNet Blogs

Windows PowerShell ISE, with multiple open Pow...
Windows PowerShell ISE, with multiple open PowerShell sessions (RunSpaces) in the Windows PowerShell 2.0 (Photo credit: Wikipedia)
This article tells you how to check to see if a file exists using PowerShell. 

Hey, Scripting Guy! How Can I Check for the Presence or Absence of a Text File? - Hey, Scripting Guy! Blog - Site Home - TechNet Blogs
Enhanced by Zemanta

Creating Text Files - Power Tips - PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources

WIndows PowersHell
WIndows PowersHell (Photo credit: Eifion)
Here are some articles that are great for making text files using PowerShells

Creating Text Files - Power Tips - PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources


Enhanced by Zemanta

Sending email using Powershell script - SharePoint and Others - Site Home - MSDN Blogs

English: Screenshot of Windows PowerShell 1.0 ...
English: Screenshot of Windows PowerShell 1.0 Deutsch: Screenshot von Windows PowerShell 1.0 فارسی: عکس صفحه‌ی نمایش از ویندوز پاورشل نسخه‌ی 1.0 Русский: Сессия в Windows PowerShell (Photo credit: Wikipedia)
Here is an article for how to use Powershell to send e-mail

Sending email using Powershell script - SharePoint and Others - Site Home - MSDN Blogs

This article is good for sending e-mail with attachments.

Send an email with an attachment using PowerShell
Enhanced by Zemanta

syntax - How do you comment out code in Powershell? - Stack Overflow

Windows PowerShell ISE, with multiple open Pow...
Windows PowerShell ISE, with multiple open PowerShell sessions (RunSpaces) in the Windows PowerShell 2.0 (Photo credit: Wikipedia)
Here is a great article about how to add comments in PowerShell!

syntax - How do you comment out code in Powershell? - Stack Overflow
Enhanced by Zemanta

Powershell Multidimensional Arrays - Stack Overflow

Windows PowerShell ISE, with multiple open Pow...
Windows PowerShell ISE, with multiple open PowerShell sessions (RunSpaces) in the Windows PowerShell 2.0 (Photo credit: Wikipedia)
Ever needed to use multi-dimensional arrays  in Power Sheel? Me too. This article helps!

Powershell Multidimensional Arrays - Stack Overflow
Enhanced by Zemanta

How to backup application event log to .evtx file using powershell

WIndows PowersHell
WIndows PowersHell (Photo credit: Eifion)
Here is advice how to use Powershell to back up an event log!

How to backup application event log to .evtx file using powershell
Enhanced by Zemanta

Sunday, April 7, 2013

Embedding lua in web page on android - CodeProject

Introduction to article

Integrating a web server in android application can increase its flexibility, because it gives more interactive with other terminals. For web server, programmers need write web pages and these pages should be able to interoperate with host application. This article introduces an idea to embed lua in web page as dynamic language at server side and gives an example written based on starcore and SRPSHtmlEnvEngine, which is an embeddable web server supports http get and http post request.

Embedding lua in web page on android - CodeProject
Enhanced by Zemanta

Wednesday, April 3, 2013

MP3 ID3 Tags Automatically Added, using filename via drag and drop. - CodeProject

ID3 Tag edit in iTunes
ID3 Tag edit in iTunes (Photo credit: jutecht)
 Introduction

 In any case, this project was done to meet a need that I have had. Whenever I rip CDs or download them from the web (oh my...), I always take the time to name the file in a way that is meaningful to me (i.e. "Artist - Song Title.MP3") but media player, winamp and most popular MP3 players require more. They require the ID3 tag to contain the information as well. It is not always convenient or desirable to pull the information from the web, so I decided to write an app that utilizes the information from the filename to populate the ID3 tag.

MP3 ID3 Tags Automatically Added, using filename via drag and drop. - CodeProject
Enhanced by Zemanta

Development of iPhone client application for SharePoint 2013 - CodeProject

Image representing iPhone as depicted in Crunc...
Image via CrunchBase
From Introduction to Article

 develop an iPhone client for Microsoft SharePoint 2013.
Our application will authenticate to SharePoint and read the contents of a list provided by the SharePoint REST API.

Development of iPhone client application for SharePoint 2013 - CodeProject
Enhanced by Zemanta

sql server 2005 - sql query to return differences between two tables - Stack Overflow

Stack Overflow logo
Stack Overflow logo (Photo credit: Wikipedia)
Here is a good little article about how to write an SQL query to find the differences between two tables

SELECT A.*, B.*
FROM A
    FULL JOIN B ON (A.C = B.C)
WHERE A.C IS NULL OR B.C IS NULL
 
Where A and B are table names; C is the common field 

sql server 2005 - sql query to return differences between two tables - Stack Overflow
Enhanced by Zemanta

Monday, March 25, 2013

Android, iOS and Windows Mobile…Oh My: An Introduction to PhoneGap - CodeProject

Android/Eclipse dev-setup: Hello World!
Android/Eclipse dev-setup: Hello World! (Photo credit: Espen Klem)
Image representing iPhone as depicted in Crunc...
Image via CrunchBase
From Intro to the Article

PhoneGap is an open source framework that allows the building of applications across major mobile platforms using languages you are already familiar and comfortable with, like HTML5, JavaScript, and CSS. It can be compiled using platform-native tools. The JavaScript API is defined to facilitate access to device features for supported platforms.
To familiarize myself with PhoneGap functionality, I decided to start small by building a simple application for an iPhone. Before diving into development of the application, please make sure that the following software tools are installed on your development machine.


Android, iOS and Windows Mobile…Oh My: An Introduction to PhoneGap - CodeProject
Enhanced by Zemanta

WCF: From a Beginner's perspective & a Tutorial - CodeProject

Architecture of WPF
Architecture of WPF (Photo credit: Wikipedia)
 From the Intro to the article:

Well, WCF stands for Windows Communication Foundation, it was first shipped with .NET 3.0 framework along with WPF, Windows CardSpace and WorkFlow Foundation.
From a beginner's perspective, what does actually WCF mean? Let's break the abbreviation into single entities and try to debug. It consists of 3 words, a)Windows b)Communication c)Foundation.
A beginner would glance at the words and would think, well it is something which deals with Windows platform, which is used to communicate and connect applications. Hmm, well he/she ain't wrong on the first strike...
A definition which comes to mind may be summed up as: WCF is a kind of technology, which is used to develop and deploy services on Windows platform. Different books have different set of words to describe WCF, but the gist is almost the same which points to development and deployment of services on Windows Platform.
MSDN says, WCF is a framework to build service-oriented applications. So basically WCF revolves around developing applications which are greatly dependent upon services.

WCF: From a Beginner's perspective & a Tutorial - CodeProject
Enhanced by Zemanta

Work with MS Excel and ADO.NET - CodeProject

Microsoft Excel 2007
Microsoft Excel 2007 (Photo credit: Erik Eckel)
Need some code to get ADO.Net to work with MS Excel?  This article will help.

Work with MS Excel and ADO.NET - CodeProject
Enhanced by Zemanta

Foysal's Posts on Technology: Windows Store app development introduction

On his blog Foysal Karim posted a presentation about developinh apps for the Windows Store. 

Foysal's Posts on Technology: Windows Store app development introduction
Enhanced by Zemanta

Sunday, March 24, 2013

Face Detection with 10 lines of code - VB.NET - CodeProject

 introduction to article

 Finding faces in an image can be quite a challenging issue. There are some commercial and Open Source frameworks available to developers in order to make the task of finding faces easier. A commercially available library that I can recommend is Neurotechnology VeryLook. Probably the most famous Open Source framework for face detection is Intel's OpenCV (Open Computer Vision) which is capable of a whole lot more than just detecting faces. As it is based on the C++ programming language it is not easy to use in .NET environment. EmguCV solves this issue by providing a .NET interface to OpenCV functions. While these frameworks are powerful, they are not so easy to use.

Face Detection with 10 lines of code - VB.NET - CodeProject

Friday, March 22, 2013

Android Phone Status Sample - CodeProject

Samsung Galaxy S Captivate Android Smartphone ...
Samsung Galaxy S Captivate Android Smartphone Matrix 3D Live Wallpaper (Photo credit: Calgary Reviews)
Intro

This article shall make use of API’s inside android.telephony and android.os.batterymanager packages present in the Android SDK to create a simple yet smart application to display the phone details, battery status and data connectivity status of an Android Smartphone. 

Android Phone Status Sample - CodeProject
Enhanced by Zemanta

Thursday, March 21, 2013

How to get the REAL lastlogon datetime from Active Directory - CodeProject

Active Directory Explorer
Active Directory Explorer (Photo credit: Wikipedia)
 Here is a useful article about how to find user information from Active Directory.. Check it out.


How to get the REAL lastlogon datetime from Active Directory - CodeProject
Enhanced by Zemanta

Thursday, March 14, 2013

Writing an Android GUI using C++: Introduction - CodeProject

Intro

The article is an introduction to write Android GUI applications using CLE and Wrapandroid. CLE is a middleware for programming using multiple languages, which supports Java, Python, C/C++, Lua, etc., and can be extended to support other languages. Objects, for example, instances of classes, will be maintained in the kernel. And then, CLE provides a common interface to multiple languages. We can call an object’s function, get or set object’s attributes, capture object’s events, etc.

Writing an Android GUI using C++: Introduction - CodeProject
Enhanced by Zemanta

Compiling Python for Windows Phone 8 - CodeProject

English: Python logo Deutsch: Python Logo
English: Python logo Deutsch: Python Logo (Photo credit: Wikipedia)
 Good news: Windows 8 supports Python. Here is an artle about how run and compile Python on windows 8.

Compiling Python for Windows Phone 8 - CodeProject
Enhanced by Zemanta