profile

What should be the domain name in google api AppsService..

using Google.GData.Apps; AppsService service = new AppsService(domain, userName, password); I am using google APi and i came across a Class AppsService which have parameters domain,username and password..Since i am working locally my domain name is "localhost" and password and username is empty ...Am i right with this or am i making a ...

Get current OutputCache profile

In my ASP.NET MVC application I have a custom cache provider inherited from base OutputCacheProvider class. Is there any way to get output cache profile for current request in my provider? ...

The connection of bluetooth with multi devices using SPP

Hi ~ I could connect to two devices from Android based cell phone simultaneously using SPP, but once I turn on the inputstream (like socket.getInputStream()), one of them will return 0 in the stream, that is, no data available on the stream. For example, thread A(thA) and thread B(thB) connected to device A(devA) and device B(devB) res...

Using drupal profile date in vb.net

I am using drupal databas ein one of my application. Drupal profile saves date in following format: a:3:{s:5:"month";s:1:"2";s:3:"day";s:2:"18";s:4:"year";s:4:"1995";} I can read this with data reader but how to convert in a proper display like DD/MM/YYYY or YYYY/MM/DD ...

Model Profiles as Pattern Instances

Suppose you have a profile for an application. This profile stores some data specifically about one user. You can persist the details of the profile and pull them back each run. Does a profile make a good candidate for the State pattern? If not, is there a good heuristic to model this sort of functionality? ...

MYSQL: User - profile details table setup - best practice

Next to your normal user table "user"(user_id/user_email/user_pwd/etc), what is the best way to go to story profile information. Would one just add fields to the user table like "user"(user_id/user_email/user_pwd/user_firstname/user_lastname/user_views/etc) or create another table called "profiles"(profile_id/user_id/user_firstname/use...

What is this cProfile result telling me I need to fix?

I would like to improve the performance of a Python script and have been using cProfile to generate a performance report: python -m cProfile -o chrX.prof ./bgchr.py ...args... I opened this chrX.prof file with Python's pstats and printed out the statistics: Python 2.7 (r27:82500, Oct 5 2010, 00:24:22) [GCC 4.1.2 20080704 (Red Hat 4...

Does it make sense to build a custom AD profile provider?

Hi all, On my current project we are using the active directory as a user repository and using AzMan as the application authorization store. Both of these are cover with the Membership and the Roles providers (plus the AzMan for operations authorization). The only thing missing is getting detailed info about the logged user. I could us...

Charge to an existing paypal profile (not recurring profile)

Given that a user has made a purchase in our online store through payments pro (using API) - how, the next time the user comes to make a purchase, can we display to the user a credit card of theirs to choose from for the new purchase? This would be instead of making them provide the credit card details again. Once the user selects the cr...

Do SharePoint bookmarks require a mySite?

We want to try to prevent using a mySite and just use the profile of SharePoint 2010. However, we want the user to store bookmarks (or links)- does this mean they need to have a mySite? Is this possible with just a profile? ...

How do you configure Firefox to start with a new profile every time?

Seems like a pretty common use case for developers, but there is no setting for this? ...

Is it worth using the ASP.Net built in profile system?

I just discovered ASP.net uses its own profile system to register users and there seems to be a lot of features available as bonus with it (such as secure authentication). However it seems rather specific to have such a feature for a general purpose development environment and things which work in the background the way the profiles syst...

Profile Memory useage for my Windows Mobile Application

Is there a tool that allows me to profile the memory usage for my Windows Mobile Application. My app has a section of code that is right up against the limit of the total memory. I have tried to setup my code so that the references to large objects go out of scope before new references are needed. But I need a way to see if it is work...

How to I delete an unrequired user profile property from web.config and the database?

I use the default ASP.NET Profile Provider which lets me define user properties in web.config. I now no longer want to use one of these user properties. I want to delete all traces of it. I can remove the property from the list of properties in web.config however, I suspect, the stored values for this property will still be held in the...

Tying MembershipUser and Web.Profile together for newly created users

I am using ASP.NET MVC 3. I am using what essentially came with for free in the Visual Studio project template for an MVC project with the "Internet Application" option. Basically this brings in Forms authentication and provides some basic elements to manage user login and stuff. I am also using the web profiles stuff with this to store...