Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
193 views

Activation Record In GNU C (Nested Function)

In GNU C, The Result is 13. Because the static link is used. Otherwise, If the dynamic link is used, the result would be 16. #include <stdio.h> int h(){ int x = 1; int g(int z){ ...
3
votes
4answers
2k views

Best way to generate activation codes for software?

What is a good way to randomly generate some not-likely-to-be-randomly-generated-again activation codes to use for activating software? I am making an auto-fulfillment system for a web application. I ...
0
votes
2answers
45 views

Sign-up email activation: How to deal with them not getting the email?

I have a simple web app and when you sign-up, you're emailed an activation link, which you need to click in order to enable your account and login. What I've found is that some people are not getting ...
0
votes
1answer
88 views

how to delete an activation code after a user used once?

when a new member is created , an registration confirmation email should be sent along with an activation code. once the user used the activation code. it shouldnt be valid anymore. I want to delete ...
0
votes
0answers
371 views

How to create license keys to protect my python script? [closed]

Possible Duplicate: How do I protect python code? How to create license keys to protect my python script ?
0
votes
2answers
208 views

activation code in asp.net?

when a user asks for forgot password , i send an activation email which works okay. but when the user activated the code and created the new password, if the user try to access the activation code for ...
0
votes
1answer
106 views

how to send an activation code in asp.net mvc2?

there is a send activation code button. A click on the button. it should send the activation code to the customer. i don't find any useful article for this. anybody can explain?
0
votes
1answer
356 views

how to send an activation code through email? in asp.net mvc2

i have button called ask for activation code, when i click on the button it should send an activation code email to the user? what is the best way of doing?
0
votes
1answer
41 views

Adding Product Activations and Product Keys to your Program

I have a program that I recently finished with a friend mine and we want to secure the program with product keys and product activation... I know that product activations usually require the program ...
0
votes
2answers
101 views

Spaghetti Rails Routing and Invitation Coding Bolognese

I'm not really sure if there is a single problem here or I have approached this in the wrong way, but any suggestions would be greatly appreciated! In the application when a user signs up they get ...