Tagged Questions
The profile tag has no wiki summary.
56
votes
12answers
47k views
What's the best Free C++ Profiler for windows (if there are)
I'm looking for a profiler in order to find the bottleneck of my c++ code.
I'd like to find a free, non intrusive, good profiling tool.
I'm a game developer and I use PIX for Xbox360, I found it very ...
46
votes
7answers
15k views
How to assign Profile values?
I don't know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.
44
votes
4answers
22k views
Implementing Profile Provider in ASP.NET MVC
For the life of me, I cannot get the SqlProfileProvider to work in an MVC project that I'm working on.
The first interesting thing that I realized is that Visual Studio does not automatically ...
29
votes
23answers
7k views
what's in your .bashrc?
.bashrc modifications are like nesting for developers. All I have right now is a few aliases and some PATH modifications. What's in yours?
28
votes
4answers
3k views
Bug with starting Instruments via Profile under XCode 4.1 Build 4B110
Important Update
Strange bug is fixed (at least for me) in XCode 4.2!
I've a severe problem with XCode 4.1 Build 4B110 under Mac OSX Lion and running Instruments via XCode. The problem is that ...
20
votes
7answers
8k views
Where is the gcov symbols?
I'm trying to compile a simple app with gcov and getting the following link errors:
gcc AllTests.o CuTestTest.o CuTest.o -o TestTest
AllTests.o: In function `global constructors keyed to ...
17
votes
10answers
19k views
A valid provisioning profile for this executable was not found for debug mode
I am getting this error while i am trying to debug my app on device. I created development provisioning profile as it is mentioned at developer portal. my development device is selected in the profile ...
10
votes
1answer
214 views
C# Web Application Tuning : PerformWaitCallback
I am using dotTrace Performance 4.5 to profile a .NET 3.5 C# web application. When I record one "user request" (load of page), I see 11 threads with approximately the same timing, 7644 ms.
Most of ...
10
votes
3answers
4k views
Using ASP .NET Membership and Profile with MVC, how can I create a user and set it to HttpContext.Current.User?
I implemented a custom Profile object in code as described by Joel here:
http://stackoverflow.com/questions/426609/asp-net-membership-how-to-assign-profile-values
I can't get it to work when I'm ...
9
votes
4answers
9k views
Django-Registration & Django-Profile, using your own custom form
I am making use of django-registration and django-profile to handle registration and profiles. I would like to create a profile for the user at the time of registration. I have created a custom ...
7
votes
3answers
405 views
Profile Memory Allocation in Python (with support for Numpy arrays)
I have a program that contains a large number of objects, many of them Numpy arrays. My program is swapping miserably, and I'm trying to reduce the memory usage, because it actually can't finis on my ...
7
votes
2answers
1k views
VS2010 Publish Profiles — Where are they stored?
We have set up a few Publish Profiles that are used to deploy web apps to various servers, and it all works great with 1-click deployment.
However, w find that even though the entire solution is ...
7
votes
1answer
731 views
OpenCV - How does it handle color profiles?
I have a jpeg. Its color profile is sRGB, of course. I load it into "image" and call
cvCvtColor(image, gray, CV_BGR2GRAY);
to convert it to grayscale. When I step into that routine in the ...
7
votes
2answers
2k views
How do I add a PowerShell cmdlet or function to my machine so that it is always available?
If I find (or create) a new PowerShell cmdlet (or function), how do I add it to my machine?
Do I copy it to a particular folder?
Do I put its content in a particular file?
Do I need to authorize it, ...
7
votes
2answers
2k views
Saving profile with registration in Django-Registration
In Django-Registration it says you can save a custom profile when you save a user.
But I have no idea what the documentation is asking me to do. Here is what they say:
"To enable creation of a ...
7
votes
8answers
4k views
Best way to profile memory usage in a Java application?
I realize that similar questions have been asked about this before here on SO, but let me describe exactly what I need to do:
I have a set of tests which run a command line java application and I'd ...
7
votes
5answers
5k views
How to reload user profile from script file in PowerShell
I want to reload my user profile from a script file. I thought that dot sourcing it from within the script file would do the trick, but it doesn't work:
# file.ps1
. $PROFILE
However, it does work ...
6
votes
2answers
579 views
Store user profile pictures on disk or in the database?
I'm building an asp.net mvc application where users can attach a picture to their profile. This picture will obviously be displayed in the profile, but other parts of the system too, like a messaging ...
6
votes
3answers
2k views
Maven: Customize web.xml of web-app project
I have a web application Maven project, and I want to customize the web.xml file depending on the Profile that is running. I am using the Maven-War-plugin, which allows me to define a "resources" ...
6
votes
6answers
4k views
How to create a UserProfile form in Django with first_name, last_name modifications?
If think my question is pretty obvious and almost every developer working with UserProfile should be able to answer it.
However, I could not find any help on the django documentation or in the Django ...
6
votes
2answers
3k views
Maven - activate child profile based on property
Scenario:
Given
Parent POM which defines a profile and a child (as module)
Child project(s) that will be using the profile by referring to the parent POM.
The intent is to skip profile execution ...
6
votes
1answer
602 views
Running maven goal in multiple lifecycles
I have a case where I want to run the cobertura plugin in both the verify phase and the reporting phase. I have two profiles and they should both be running the cobertura plugin, but in profile A, I ...
5
votes
3answers
503 views
Profile Entire Java Program Execution in VisualVM
In Java profiling, it seems like all (free) roads nowadays lead to the VisualVM profiler included with JDK6. It looks like a fine program, and everyone touts how you can "attach it to a running ...
5
votes
1answer
168 views
How much time is the garbage collector using?
My python program has a curious performance behavior: The longer it runs, the slower it gets. Early on, it cranks out tens of work units per minute. After an hour of so it is taking tens of minutes ...
5
votes
1answer
79 views
When profiling, what's a correct (or good) way to accumulate callee times to callers?
When you're profiling code with recursive functions, deciding how to accumulate time spent in callees up to their callers becomes tricky. If you profile the following code (Lua):
function a(n)
...
5
votes
3answers
1k views
How to scan and auto-configure profiles in AutoMapper?
Is there any way to auto-configue Automapper to scan for all profiles in namespace/assembly? What I would like to do is to add mapping profiles to AutoMapper from given assembly filtered by given ...
5
votes
1answer
435 views
How can you profile a parallelized Python script?
Suppose I have a python script called my_parallel_script.py that involves using multiprocessing to parallelize several things and I run it with the following command:
python -m cProfile ...
5
votes
3answers
6k views
How to create user profiles with PHP and MySQL
I need some help on creating a user profile system. I want it to be like Facebook or Myspace where it has only the username after the address, no question marks or anything, for example, ...
5
votes
6answers
2k views
ASP.NET built in user profile vs. old stile user class/tables
I am looking for guidance regarding the best practice around the use of the Profile feature in ASP.NET.
How do you decide what should be kept in the built-in user Profile, or if you should create ...
4
votes
1answer
91 views
Maven - separate integration tests from unit tests
Is it possible to isolate integration tests from unit tests within same module?
I created simple pom:
<?xml version="1.0" encoding="UTF-8"?>
<project ...
4
votes
3answers
526 views
How to stop Selenium from creating temporary Firefox Profiles using Web Driver?
I am using Selenium Web Driver API with Java. Every time I want to debug my test cases, a temporary profile for Firefox is created in the temporary files directory. This is a headache in two ways.
...
4
votes
1answer
864 views
Entity framework Profile Provider example.. How to initialize and setup please help!
I am trying to figure out how to use the ProfileProvider that's in this example: http://www.codeproject.com/KB/aspnet/AspNetEFProviders.aspx
I've got the membership and role providers working great, ...
4
votes
3answers
442 views
SSE normalization slower than simple approximation?
I am trying to normalize a 4d vector.
My first approch was to use SSE intrinsics - something that provided a 2 times speed boost to my vector arithmetic.
Here is the basic code: (v.v4 is the input) ...
4
votes
2answers
5k views
iPhone Distribution: No profiles currently match
I am about to upload an app to iTunes Connect. I am not Team Agent, nor does it seem the Team Agent can make me a Team Agent. So he logged onto Member Center and downloaded a Distribution Certificate, ...
4
votes
3answers
893 views
ASP.NET Membership Profile
I want to send out an email to all users where their birthday is today
i am using the built-in asp.net (3.5) membership. All users have a profile (stored in aspnet_Profile) which contains a date/time ...
4
votes
6answers
1k views
Java very limited on max number of threads?
We have a small text box with 512Mb of ram. We wanted to see how many threads we can create in Java in this box. To our surprise, we can't create many. Essentially the minimum stack size you can set ...
4
votes
7answers
133 views
What is best for a profile, a number or a name?
Most sites that have some sort of user profile will either do something like this:
profile.php?u=123445
or else:
profile.php?u=jason.Davis
So I am curious, would it be slower to use a name ...
4
votes
6answers
6k views
Can I set a users profile image using the Facebook API?
I'm looking for a user.setImage call or something to that effect on the Facebook API but I can't see anything to achieve this: specifically to overwrite a user's profile image (not just post an image ...
4
votes
2answers
4k views
ASP.NET SQL Profile Provider - Does the ProfileBase.Create() method hit DB?
I am working with the SQLMemebershipProvider and using Profiles. I have a custom class called UserProfile that inherits from the ProfileBase class and I use this to set custom properties like ...
4
votes
9answers
684 views
Profiling programs written in C or C++
What would you suggest the best tool to profile C/C++ code and determine which parts are taking the most time. Currently, I'm just relying on logs but ofcourse the information is not accurate since ...
3
votes
1answer
94 views
Python C API - Stopping Execution (and continuing it later)
1) I would like to use the profiling functions in the Python C API to catch the python interpreter when it returns from specific functions.
2) I would like to pause the python interpreter, send ...
3
votes
2answers
159 views
What is the difference between the various shell profiles?
What's the difference between ~/.bashrc, ~/.bash_login, ~/.bash_logout, ~/.bash_profile, ~/.profile, /etc/profile, /etc/bash.bashrc, /etc/ssh/ssh_config and sshd_config, when are they loaded and what ...
3
votes
1answer
331 views
How to Query from Asp.Net Profile Properties using LINQ
I have Asp.net profile property Profile.Location, Gender etc
i need to get list of all users whose Location belongs to "London" and Gender = male
how do i perform a search on Asp.net Profile using ...
3
votes
1answer
145 views
URL to register with a specific role
I run a drupal 6.0. It has a number of different user roles and I want to 2 URL links to allow users to register with a specific role. To clarify what I mean:
I have the user roles "Buyer" and ...
3
votes
4answers
1k views
Activation of maven profile based on multiple properties
I am creating a maven 2 build for a project and I came up with profiles since the build has to be created for both different locations (say Berlin, Paris, North Pole) and different environment ...
3
votes
1answer
166 views
Understanding of CPU seconds
consider following example:
import hotshot
import hotshot.stats
import time
def test_sleep():
time.sleep(1)
def main():
prof = hotshot.Profile("lol.prof")
prof.runcall(test_sleep)
...
3
votes
1answer
1k views
How to create a profile after user registration with Rails3 & Devise
I'm doing a simple user with profile application. User registers and
are automatically logged in. Works fine so far. Now, I'd like to
create a profile after a successful registration and redirect the ...
3
votes
3answers
213 views
How can I profile a multithreaded program?
I have a program that is performing waaaay under par, and I would like to profile it. However, it is multithreaded, so I can't seem to find a good way to profile this thing. Any advice?
I've tried ...
3
votes
1answer
578 views
Access content profile CCK fields in Drupal registration form (user_register)
Here is my goal:
Take Content profile CCK fields "field_firstname" and "field_lastname" to automagically generate a username.
My approach: To create a custom module using hook_form_altar and a submit ...
3
votes
1answer
289 views
How to profile Rake task?
I need to profile the rake task. Cause I'm noob I know only how to profile .rb code
like this: ruby -Ilib -S ruby-prof -p graph_html profile.rb > profile.html
But how do I profile a specific Rake ...