Posts

Showing posts with the label login

Spark Account login Spark Sign Up Registration Create Spark Free American Online Dating Site Via www spark com

Image
Spark Account login Spark Sign Up Registration Create Spark Free American Online Dating Site Via www spark com Spark login, Spark Sign Up, Spark Registration: How to Create and Join Spark Free American Online Dating Site Via www.spark.com. Spark .com is an online dating site that aims at making online dating easy and fun. Spark account creation is FREE. You can read, search, flirt as well as respond to emails. Spark account offers lots and lots of fun tools to help you find and communicate with singles. Spark login, Spark Sign Up, Spark Registration - Create Spark Free American Online Dating Site at www.spark.com Having talked about Spark dating site , lets see how to join spark and start having fun.   Spark.com Sign up : How to Create Spark Online Dating Account Dating Site : Parship Sign up Dating Site Before you can access the full feature of Spark dating site, you will need to create an account with spark. Spark registration is as simple as following the tutorials below;...

SSH Login Without Password

SSH Login Without Password For this you required to generate your own personal set of private/public pair. ssh-keygen is used to generate that key pair for you. On the user�s home directory, on the localhost, type [local-host]$ ssh-keygen -t dsa This will ask you a passphrase. A passphrase is a sequence of words or other text used to control access to a computer system, program or data. A passphrase is similar to a password in usage, but is generally longer for added security. Once entered the passphrase you will be prompted to enter the same passphrase again for confirmation. The private key was saved in .ssh/id_dsa and the public key .ssh/id_dsa.pub. Now, copy the public key to the remote machine [ local-host ] $ ssh-copy-id -i ~ / .ssh / id_dsa.pub user @ remotehost or if you don�t have ssh-copy-id script installed use   [ local-host ] $ cat ~ / .ssh / id_dsa.pub | ssh user @ remotehost "cat - >> ~/.ssh/authorized_keys" Now on the localhost machine, on GNOME sel...

Spring AngularJS login integration with Spring Security Spring Security 3 and Spring Security 4

Spring AngularJS login integration with Spring Security Spring Security 3 and Spring Security 4 This post shows how to use angularjs for login to spring mvc with spring security set to custom <form-login> Spring security 3 Below is the login.jsp <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <html> <head ng-app="login-module"> <script src="angular.min.js"></script> <script src="login.js"></script> </head> <body ng-controller="MainController"> <form> <input type="text" name="username" ng-model="myusername" /> <input type="password" name="password" ng-model="mypassword" /> <button ng-click="login(<c:url value="/" />, myusername, mypassowrd)" /> </form> </body> </html> The login.js looks like the following: (function(){ var Ma...

SOLVED Cant login into Twitter on Firefox

Image
SOLVED Cant login into Twitter on Firefox Problem When trying to log in into a Twitter account using the Firefox web browser, the page refreshes after hitting the login button but our status remains as logged off. Solution Remove all Twitter cookies. Heres how: Open Firefox preferences. Open the Privacy tab and click on "remove individual cookies" Search for twitter , select all Twitter cookies (using shift ) and hit Remove Selected Voil�! You should be able to login into your Twitter account now. download file now

ssh Login to remote host without password

ssh Login to remote host without password Most of remote systems are secured by SSH, and to gain remote control with terminal, you would need to ssh into the server. You will be prompted to login with your password on every session. To avoid typing password everytime, you need to setup as authorized client. Here is how you can do that with ssh key. First on your own client machine, generate the $HOME/.ssh/id_rsa.pub file: bash> ssh-keygen # When prompted to enter password, simply hit ENTER key to skip it! bash> cat ~/.ssh/id_rsa.pub xxxyyyzzz zemian@myhost # You will see a very long string instead of "xxxyyyzzz". Now you need to copy this public key string into your remote host. You need to ssh into the remote host with your valid password first to setup. If successful, the subsequent ssh into the remote host will not prompt you for password! bash> ssh myremotehost # Enter password to gain access After you are in the remote host: myremotehost> vim ~/.ssh/autho...