Perl framework for html [closed] - perl

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to authorise a team dedicatedly for password reset/printer queue delete kind of L1 tasks. I have planned to do so via 1 menu using Perl script. And I want it to be front end at HTML. I don't want user to login in server's black screen. They just login into web portal-> see the menu-> select an item-> do the task->exit.
Now, I am thinking what framework I can use to achieve this.
How user password would be transferred securely from web portal to my server?
How are you going to encrypt/secure the web communication?
How are you going to encrypt/secure passwords?
Even if you use one of the built-in methods for encrypting the passwords at authentication time, how will you secure passwords in user input for something like a password reset function?
I really need your valuable suggestions on this.
thanks,
Prashant

See this cool framework Mojolicious, it's really up to date, plus author update it frequently.
Official mojolicious site

Related

force an iOS user to enter his own ID to use the device [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm trying to think of a way (if exists) that each user who uses the device will enter his ID so only authenticated users could use the device.
Why?
I have a few iOS devices in my department and I want to be able to monitor who was last to use the device, so if it was lost within the people in my department it will be easier to track it.
any ideas?
is there a way to write a proper app to do that?
thanks in advance!
No way to do that without jailbreaking and doing some really custom app development. The OS does not give you an option for intercepting user credentials.
You could write an application to simply authenticate a person against a web-service and store authentication information there. Then just make it a policy to always fire up that application and log in before using the device for anything else.
I have a couple of enterprise applications that do something similar. Each user logs in at the beginning of their shift and then logs out at the end.

Receive iPhone User Data [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am creating an app with various tests and I need a way to receive the test results from the users. Is there a way for me to save the test results when the user is done taking the test and be able to access the results from my computer or something? Thanks in advance,
Joshua
In an app I am making I used JSON, JavaScript Object Notation, to communicate between my app and a web server, where I store my info. It is fairly simple to use. Check out this tutorial http://www.raywenderlich.com/2965/how-to-write-an-ios-app-that-uses-a-web-service. This is what I used and I am fairly new to programming in general, and I just had to make a few adjustments to make it work. This is pretty broad, but this should get you in the right direction.
If you are familiar with sql commands.Why dont you try sqlite for creating a database where you can store the results, update them ,retrieve them.you can refer to this site http://www.techotopia.com/index.php/IPhone_Database_Implementation_using_SQLite
or this one
http://www.icodeblog.com/2008/08/19/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-1/

How to create a test account for development purpose [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create a test account for creating a application. How should I go about it? I referred to a tutorial and it seems like I will be needing an application id and a secret to create an account. I have read the doc page for Test users and could not make much sense. Would be a great help if someone could point me in the right direction
You need to create a facebook application first:
https://developers.facebook.com/docs/beta/opengraph/tutorial/
then add test users to the application:
https://developers.facebook.com/docs/test_users/
However I suspect this kind of "test user" isn't what you actually mean/need. You have to use your personal profile to set up the app and do the majority of your testing with - you aren't permitted to create more than one real profile. If you put your new app into sandbox mode then everything will be hidden anyway.
If you are new to facebook dev, maybe spend some time reading the documentation and looking through the examples first.
https://developers.facebook.com/

Facebook - Allow User to specify username [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am creating a site that I want to use Facebook login solely for convenience. People coming to my site will want to be anonymous and not use their real names.
I used Facebook connect on a site in the last 6 months that asked me to input a username after I filled in my Facebook login credentials (It was still in the Facebook connect box).
I have not seen it since and am trying to explain it to a developer. Does anybody know about this, or how to achieve it?
Sounds like the webapp in question authenticated against FB Connect, and then used some piece of information returned (uid, probably) to create an entry in the site's user database, which also allowed for a username to be used on the site, rather than just using the person's name as supplied via FB.

Receiving text and email [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I need to know if it is possible to develop an application to read and reply to SMS and email. If so, how could this be done (what library/class needs to be used). I've searched all apps there isn't an app that does this. There's only an app that requires you to set your email and constantly checks for new message however SMS I'm not sure if there's an app that does this thereby I'm not sure if it could be done. Thanks,
Regards,
Heba
Without a jailbroken iPhone, no. You can't interact with the other native applications beyond what the APIs provide (i.e. accessing the photos and media library). Like the other e-mail application, you could fake the e-mail situation by requiring them to provide you their servers and credentials. However, you really can't access the SMS history nor respond to them.