Questions tagged [account]

Account allows a user to authenticate (does not imply authorization) to system services and be granted authorization to access them;. To log into an account, a user is typically required to authenticate oneself with a password or other credentials for the purposes of accounting, security, logging, and resource management.

1288 questions
-2
votes
2 answers

How do I store account information in python so that it can be accessed later?

A commonly asked question in python, is how to store user information, like usernames, passwords, and in-game money, so that it can be accessed later. Is this possible? If so, how is it done?
A.J. Uppal
  • 19,117
  • 6
  • 45
  • 76
-2
votes
1 answer

Like button on my domain

I want to install like buttons on my shop on my own domain. I am not really getting the clue, what a like-button does. As I have an account on facebook also: If someone likes my domain, will this be counted also on my faceboo-site or are these two…
-3
votes
1 answer

Bank Account number verification using java

I am trying to write a java program that verifies the validity of a bank account number in Algeria, and I was checking the web for formula, and I found a piece of javascript (that I could not understand). Here is the code: function…
Ism Blk
  • 3
  • 2
-3
votes
1 answer

how can login to google account in c#? need sample

i try to login google account with c# windows app. but i have this error error When I am trying to login via browser in my application it keeps saying "Couldn't sign you in" This browser or app may not be secure. i need sample
gigiran
  • 1
  • 4
-3
votes
1 answer

Can grant command in mysql create a new user?

Can grant command in mysql create a new user?
s_goca
  • 3
  • 1
-3
votes
1 answer

Update custom user meta value using checkbox

I am using "Integrate Sendgrid Newsletter Subscription form on WooCommrece Register Page" answer code to one of my previous answers. On Woocommerce account details section of My account page, I have a custom user meta field which is…
Jm Cabugnason
  • 63
  • 1
  • 9
-3
votes
3 answers

Creating a hotmail account from C#

Does anybody know how I would go about creating a new hotmail account from C# ? Screenscraping and POSTing ? or is there a simpler way ?
Pygmy
  • 675
  • 2
  • 10
  • 13
-4
votes
1 answer

Transfers to user's bank account

On paypal, it is possible for a user to purchase services on a site by bank card or by paypal account. But is it possible for the site to make transfers automatically to a user's bank account? Thank you in advance.
cibou
  • 9
  • 1
  • 3
-4
votes
2 answers

Submitting apps automatically to app store

I'm planning to crate a service that among other things creates an iPhone app based on a template and submits it to the AppStore almost without human intervention. Is that allowed by apple? Some similar startups now require users to use their own…
-4
votes
2 answers

how to log into a unix account with php

I am trying to make UNIX account for the users on my website, but i don't know how to get php to make the accounts or log in. I have tried the shell_exec() command, but i don't know how to give it a password. Thanks.
-6
votes
3 answers

How to make sure the user type "@yahoo" or"@gmail" in an edit text?

How to make sure the user type "@yahoo" or"@gmail" in an edit text(email) and intent the information to the next page. What I want to do is: make a page for the user to open a fake account and put in all the information and then, intent all the…
-7
votes
4 answers

Java simple accounting program

import java.util.Date; public class Exercise08_07 { public static void main (String[] args) { Account account = new Account(1122, 20000); account.setAnnualInterestRate(4.5); account.withdraw(2500); account.deposit(3000); System.out.println("Balance…
Michelle
  • 29
  • 1
  • 1
  • 6
-10
votes
3 answers

Unreachable code detected, how do I fix this with if and else statements?

I have a problem with getting this right. All i get is unreachable code detected. I can run the program with that warning but it doesn't work correctly. What is it that i don't see? this is the last part of my code: class Account { …
1 2 3
85
86