Skip to main content

Posts

Showing posts from 2017

Indepth how bitcoin works and bitcoin mining.. full indepth tutorial

Cryptocurrency mining is painstaking, expensive, and only sporadically rewarding Why should I mine? By mining, you can earn cryptocurrency without having to put down money for it. That said, you certainly don't have to be a miner to own crypto.  You can also  buy crypto using fiat currency  (USD, EUR, JPY, etc); you can trade it on an exchange like  Bitstamp  using other crypto (example: Using Ethereum or NEO to buy Bitcoin); you even can earn it by playing video games or by publishing blogposts on platforms that pay its users in crypto. An example of the latter is  Steemit , which is kind of like Medium except that users can reward bloggers by paying them in a proprietary cryptocurrency called Steem.  Steem can then be traded elsewhere for Bitcoin.  In addition to lining the pockets of miners, mining serves a second and vital purpose: It is the only way to release new cryptocurrency into circ...

Is aircel closed or closing down date... December 2017 news rumours

No, its nothing like that. There are some speculations amidst the Supreme court’s strict remarks but it doesn't seems like. They have also put in the application in the Apex Court for being heard their version as well and it looks like it will go through the rough patch as other party has put in the story as per their version and now they will get the chance to be heard. You will get to know that Aircel is operating and will keep on operating as it is on 3rd Feb, 2017 when the matter will be taken up in SC. Proof : 

C program to insert delete and display using doubly linked list...

Wait for code to load.... #include <stdio.h> #include <stdlib.h> struct node {   int item;   struct node *prev;   struct node *next; }; struct node *head = NULL; struct node *start = NULL; struct node * create_new_node () {   struct node *temp = (struct node *) malloc (sizeof (struct node));   if (!temp)     {       printf (" memory not allocated ..exiting...\n");       getchar ();       exit (1);     }   return temp; } void insert (int x) {   struct node *var = create_new_node ();   var->item = x;   var->next = NULL;   if (start == NULL && head == NULL)     {       var->prev = NULL;       head = start = var;     }   else     {       var->prev = head;       head->next = var;       h...

Live bootable linux usb

Unetbootin ..  UNetbootin has built-in support for automatically downloading and loading the following distributions: Ubuntu, Debian, Fedora, PCLinuxOS, Linux Mint, Sabayon Linux, Gentoo, MEPIS, openSUSE, Zenwalk, Slax, Dreamlinux, Arch Linux, Elive, CentOS, Damn Small Linux, Mandriva, SliTaz, FaunOS, Puppy Linux, FreeBSD, gNewSense, Frugalware Linux, NetBSD but can work with others too. Link... Download from here UNetbootin can also be used to load various system utilities, including: Parted Magic , a partition manager that can  resize , repair, backup, and restore partitions. Super Grub Disk , a boot utility that can  restore and repair  overwritten and misconfigured GRUB installs or directly boot various operating systems Backtrack , a utility used for network analysis and penetration testing. Ophcrack , a utility which can recover Windows passwords. NTPasswd , a utility which can reset Windows passwords and edit the registry. ...

Creating an Executable Jar File

Creating a jar File in  Eclipse In  Eclipse  Help contents, expand "Java development user guide" ==> "Tasks" ==> "Creating JAR files."  Follow the instructions for "Creating a new JAR file" or "Creating a new runnable JAR file."The  JAR File  and  Runnable JAR File  commands are for some reason located under the  File menu: click on  Export...  and expand the  Java  node. Creating a jar File in  JCreator You can configure a "tool" that will automate the jar creation process.  You only need to do it once. Click on  Configure/Options . Click on  Tools  in the left column. Click  New , and choose  Create Jar file . Click on the newly created entry  Create Jar File  in the left column under  Tools . Edit the middle line labeled  Arguments:  it should have cvfm $[PrjName].jar manifest.txt *.class Click OK. Now set...

java Swing -IP FINDER SOURCE CODE....

here is the source Code :- compiled and ran under ubuntu 16.04 LTS.. DOWNLOAD IPFINDER.JAR import  javax.swing.*;   import  java.awt.event.*;   import  java.net.*;   public   class  IPFinder  extends  JFrame  implements  ActionListener{       JLabel l;       JTextField tf;       JButton b;   IPFinder(){        super ( "IP Finder Tool - RAJ360" );       l= new  JLabel( "Enter URL:" );       l.setBounds( 50 , 70 , 150 , 20 );;       tf= new  JTextField();       tf.setBounds( 50 , 100 , 200 , 20 );              b= new  JButton( "Find IP"...