28 February 2014

Windows Phone SDK installation problems

Generally programmers of windows apps faces problem while installing sdk 8.0, one of the major problem I would like to discuss with you. Most of the time we encounter following problem “Windows Phone 8 SDK: A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file in other word we generally see  windows Software Development Kit Tools for Windows Store...
Read More...

How to Bleach Microsoft windows 8 apps security

Today I have found how to bleach windows 8 apps security. Due to apps security you are able to see and modify the code file of windows 8 apps. There are several steps to bleach this security as following.     1.    Enable Hidden items view in view control.     2.    Goto C:/Program Files     3.    Find WindowApps folder.     4.   Send this folder...
Read More...

25 February 2014

vigenere cipher

Description Vigenere  cipher is used for encrypting alphabetic text. In a Caesar cipher, each letter of the alphabet is shifted along some number of places; for example, in a Caesar cipher of shift 3, A would become D, Bwould become E, Y would become B and so on. The Vigenère cipher consists of several Caesar ciphers in sequence with different shift values. To encrypt, a table of alphabets can be used, termed as Vigenère square, or Vigenère table. It consists...
Read More...

23 February 2014

Find rank of matrices using SR modulus Method

In engineering mathematics it is not easy to find rank of matrices. SR Modulus method give us flexibility and  easy way to find rank of matrices. This method is working under the project “LOCO POCO SOCO”, developing by S.K. Chakravarti since 2009. SR Modulus method: If a matrix A= , then find the rank of matrix A. B=A%(Prime Number P) Let prime number be 2. Then matrix B will be B= Apply elementary row and column...
Read More...

Free chat without Internet connection in windows

Free chat without Internet connection Steps: 1.       Open Run in windows PC , to open it press  windows  key with R key  simultaneously 2.        Now type  MSRA  in Run  prompt. 3.       Now there  you will able to see following screen  ...
Read More...

20 February 2014

Clustering in Matlab

Sample program for Clustering in matlab:     km_demo.m % Demo for the kmeans algorithm % First, generate sample data %   We will test with 4 clusters in 3 dimensions, %   by generating random data with gaussian density, variance 1, %   with means (0,0,0), (0,0,6), (0,6,0) and (6,0,0) %   and Ndata  200,       300,   100     and 500 K = 0; dim = 3; variance = 1; sdev = sqrt(variance); prompt={'Enter Number of Cluster(value between 2 to 4):'}; name='Input...
Read More...

Split string into different char[] in c#

It is not easy to implement this program in c/c++, but c# gives a very nice Method name +Spilt(char[]), which splits charactes according to the given char sequence. Example: using System; public class SplitTest {     public static void Main() {         string words = "This is a list of words, with: a bit of punctuation" +                        "\tand a tab character.";         string [] split = words.Split(new...
Read More...

15 February 2014

Matlab R2010a crack

Matlab R2010a crack(32bit and 64 bit) Download crack from: Here we offer you two ways to license matlab r2010a: Standalone 1) choose "install manually without using the internet" 2) enter the "file installation key"    55013-56979-18948-50009-49060 3) use "license_standalone.dat" when asked for license file Network 1) choose "install manually without using the internet" 2) enter the "file installation key"    42149-27753-04517-22198-03397 3) if neccessary install "license manager" 4)...
Read More...

Steps For Development of PHP Websites

Steps For Development of PHP Websites: 1. install Xampp,Wamp,or Apache server(Any one) Download:Xampp, Wamp 2.install any php editor. Download Netbeans,Bluefish 3.Save files in c://xampp/htdocs/yourfile.php 4.Run on localhost as http://localhost/filename.php | | | Now Enjoy Php Codi...
Read More...

Login Interface in Asp.net

Source Code Link:   CompleteLogin (10 KB) Intorduction Login Interface is most useful for knowing that who is accessing your website and protecting to unauthorized comments and access. In asp.net to implement login interface is quit easy. Platform needed: Visual Studio 12 Description There are some steps to implements: Step 1: First of create an login form as given by drag and drop property of visual Studio 12 <form method=”get” action=”validate.aspx” > <input id=”Text1″ type=”text” name=”username”...
Read More...