Posts

Showing posts from November, 2016

Best Android Apps of 2016 based on User Experience

Hello friends, Welcome to TekTuts Blog. Everyday we open play store to search for best apps of play store . Because we always wants better alternative of things. So here we are going to list down best apps out there in play store which are based on user experience . We surveyed for apps out there which user use most and we tried to find best answers for why they use that app. To install these apps you can click on the name of the apps . Best app for Q&A to get best answer to your question: Quora      Best answer to any question. Reviews: Useful informative Source of knowledge great platform good content high quality answer Best Gallery app: QuickPic Gallery          Fast,light & modern the best alternative gallery to protect your private photos. Reviews: Easy to use useful best gallery app great features fast loading Best Dictionary app: Merriam-Webster Dictionary            America's most useful and respecte...

How to construct Minimum Spanning Tree by Prim's Algorithm

#include #include intvisited[30]={0}; intno,cost=0,count=0; structgraph { intnode_no; structvertex*h_link; structgraph*v_link; }*header=NULL,*current=NULL,*s0,*s1; structvertex { intnode_no; intcost; structvertex*link; }*min=NULL; structnode { intdata; intcost; structnode*link1; structnode*link2; }*root=NULL,*cr,*mincr; voidinsertvertex(intd) { structgraph*p,*q; p=(structgraph*)malloc(sizeof(structgraph)); p->node_no=d; p->h_link=NULL; if(header==NULL) { header=p; p->v_link=NULL; } else { p->v_link=header; header=p; } } voidinsertcon(intvn,intcos) { structvertex*p,*q,*pr=NULL; p=(structvertex*)malloc(sizeof(structvertex)); p->cost=cos; p->node_no=vn; p->link=NULL; if(header->h_link==NULL) { header->h_link=p; } else { q=header->h_link; while(q!=NULL&&q->cost link; } p->link=q; if(pr!=NULL) pr->link=p; else header->h_link=p; } //if(vn==2) //printf("nodeno=%p\n",pr); } voidsetup(structgraph*s) { structvertex*p,*q; structnode*n1,*...

Shortcut keys for Kazam

Keyboard Shortcut for Kazam ~ Hello Friends,One single problem that everyone face whenever they use KAZAM is that when they pause or stop recording, KAZAM records there that move too. So i have solution for that just use keyboard shortcut so that whenever we will press keys it will start,pause and quit. I tried searching for keyboard shortcut but there is no shortcut in help menu or other places .After searching and exploring so much i came to know these shortcuts.So i am providing it to you so that you don't waste your valuable time in searching for these shortcuts. To start recording press     Super(Window Key)+Ctrl+R To pause the recording press     Super(Window Key)+Ctrl+P To stop the recording press     Super(Window Key)+Ctrl+F To toggle between show and hide state press      Super(Window Key)+Ctrl+W To quit press     Super(Window Key)+Ctrl+Q Thank you for reading this .I hope these helps you to become mo...

Get access to inactive Twitter Account

Sometimes this happens to us that we don't use our twitter account for log time.Then when we try to login into our account we don't remember password.But this is not the problem you can reset your password but if we don't have mobile or gmail that are linked to this account then it creates problem .So here i am providing some simple steps to get your access back . Steps to get access to your inactive Twitter account: 1. First, the account needs to be inactive (no tweets/no activity) for a minimum of 6 months. Go to:  https://support.twitter. com/forms/impersonation 2. Make the selection for ‘impersonated.' 3. Follow all the steps and fill the form, providing Twitter  with the information requested. 4. Within a day or two you will get a response from Twitter support. They will check the account, verify it whether it is inactive or not .Then they will transfer account access to you. Thanks hope this helps.If this help please let me know in through comment block.

Facebook Hacking using Kali Linux

Open your Terminal Type sudo -i   Enter your password then type service apache2 start then type setoolkit type 1 to select first one from options i.e Social Engineering Toolkit type 2 to select Website Attack Vector type 3  to select Credential Harvester Attack Method type 2  to select Site Cloner Now you will need your IP Address so to get that open another Terminal and type sudo ifconfig  select IP Address which is as inet address and copy it. Now open your browser and type bitly.com and paste your IP address in there shorten box now it will give you shorten url for your IP address ,copy that url Now come back to terminal and it is asking for URL to clone so type https://www.facebook.com Now send copied url from bitly.com to your victim  wait for victim action when victim will login to that url you will get his/her email and password and other information as an array in your terminal. Now use email as username and pass as password to login into victim acc...

Simple Calculator using JAVA

Image
package programmingproject; import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Calc extends JFrame implements ActionListener { JFrame f; int height=50; int width=100; TextField input,nothing; Button b[]=new Button[17]; String op[]={"DELETE","7","8","9","/","4","5","6", "x","1","2","3","-"," ","0","=","+"}; int x=0,y=0,ans=0,p,q; char ch=' '; Calc() { f = new JFrame(); f.setSize(4*width,8*height-19); f.setLayout(null); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setVisible(true); input = new TextField("",50); input.setBounds(0, 0, 4*width, 2*height); f.add(input); b[0]=new Button(op[0]); b[0].setBounds(300, 100, width, height); b[0].addActionListener(this); f.add(b[0]); p=0; q=3*height; for(int i=1;i<17;i++) { if(op[i].charAt(0) >= '0' ...

Java program to Open Chrome Browser

//Save as Chrome.java import java.util.*; import java.io.*; class Chrome { public static void main(String args[])  { Runtime rs = Runtime.getRuntime();                         //get an instance of runtime try{ rs.exec("google-chrome");                                       //execute google-chrome at the runtime  } catch(IOException e) {                                            //go for this if exception is encountered System.out.println(e); } } }