Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 832 results for
measuring
- Page 1
Measuring Engagement
Digital Media
Digital Marketing
15 Years Ago
by MktgRob
… on BtoBonline.com (link is below) about
measuring
engagement at live events to prove event ROI.… The four main objectives identified as key to
measuring
engagement are: [LIST] [*]Involvement [*]Interaction [*]Intimacy [*]Influence…these same key objectives could be applied to
measuring
social media engagement. Read the article and …
measuring connection speed
Hardware and Software
Networking
13 Years Ago
by mabelis
…. (I mean: the police wouldn't be very interested in
measuring
the maximum speed of my car, now would they?) The…, though, because I get thousands of hits when looking for
measuring
connection speed and the first few hundred are all about…
Measuring the distance of a wireless router
Hardware and Software
Networking
19 Years Ago
by viperman224
… there? Or could I just go and use a long
measuring
tape and mark different points off in the yard? I…
Measuring Social Media For Your Business - Which metrics do you use?
Digital Media
Digital Marketing
15 Years Ago
by InsightsDigital
… market your business, but I hardly read any posts about
measuring
social media and tying it up with return on investment…
Measuring Rich Media
Digital Media
Digital Marketing
Search Engine Strategies
15 Years Ago
by InsightsDigital
Hi So what measures do you use to accurately measure all the engagement points of a rich media ad? It is
measuring
beyond click through rates and impressions. Have you encountered tracking issues?
Measuring Facebook Success: Altimeter Knows How
Digital Media
Digital Marketing
14 Years Ago
by CatRambo
… Group's recently released report[/URL] establishes eight criteria for
measuring
success with Facebook page marketing and used the criteria to…
Measuring execution time of a loop
Programming
Software Development
13 Years Ago
by theprofoundgeek
… coded a compression technique and I am having trouble in
measuring
the speed of it. I tried to generate log of…
Re: Measuring execution time of a loop
Programming
Software Development
13 Years Ago
by mike_2000_17
… having other processes running on the computer. N.B. When
measuring
performance of algorithms that do file I/O, always expect…
Re: Measuring analytics on Facebook
Digital Media
Digital Marketing
15 Years Ago
by InsightsDigital
I wonder if there are other tools out there similar to Kontagent that can measure Facebook or other social media initiatives rather than just
measuring
buzz.
What are the best analytics for measuring email marketing success?
Digital Media
Digital Marketing
2 Years Ago
by Varsha_Sharma
… delivery, engagement, and conversions. These are the best analytics for
measuring
email marketing success:- Click-through Rate (CTR) Click to Open…
Re: measuring connection speed
Hardware and Software
Networking
13 Years Ago
by L7Sqr
The general approach to this type of problem is to collect packet captures (tcpdump, wireshark) and post process them at a later date. You also mention 'request/response' behavior. What level? The transport layer? Application layer? There are wildly different behaviors at each.
Re: measuring connection speed
Hardware and Software
Networking
13 Years Ago
by nuwan4u
I think [B]York [/B]will do it for you, try to google it.It's free
Re: measuring connection speed
Hardware and Software
Networking
13 Years Ago
by mabelis
Sorry for late reaction; I was (involuntarily) taken out for a while. Thanks for your help; I fear packet analysers are a bit more low-level then I intended; as far as I can make out it would be a hell of a job to distil the info I'm looking for. I'm interested in request/response bevaviour at the web-browser level. In fact, I don't know whteher my…
Re: measuring connection speed
Hardware and Software
Networking
13 Years Ago
by L7Sqr
Honestly, the experience you have at the application layer (the layer you are dealing with) is a compound effect of many lower layers. Google has done a large exploration into this space (load improvements at the HTTP level) - you can look at some of the results [url=http://www.chromium.org/spdy/spdy-whitepaper]here (SPDY Protocol)[/url]. There …
Re: Measuring the distance of a wireless router
Hardware and Software
Networking
15 Years Ago
by Bubba-H
Is a wireless router measured by distance only? 1500 vs. 3000 Or is it by speed or both?
Re: Measuring execution time of a loop
Programming
Software Development
13 Years Ago
by theprofoundgeek
Hey Mike! Thanks for the guidance! It made perfect sense... [url]http://www.gnu.org/s/hello/manual/libc/Processor-And-CPU-Time.html#Processor-And-CPU-Time[/url] Now the secondary problem is of IO time variation... as the read speed from HDD may vary a lot. Possible solution : Test under a linux after copying the file to be compressed …
Re: Measuring execution time of a loop
Programming
Software Development
13 Years Ago
by mike_2000_17
>> Do you agree this would work? It would certainly help. It wouldn't completely solve the problem, RAM is also variable in access time, but certainly not as much as the HD. Anyways, what is wrong with variability? What is wrong with taking statistics on the performance of your algorithm? You run it multiple times and take the average …
Re: Measuring execution time of a loop
Programming
Software Development
13 Years Ago
by ExpertsGuide
@theprofoundgeek (thread starter) I am having similar issue on windows vista. Not able to calculate the time my program took to complete. Would you please paste your code(only related to time calculation) here, in case you solved the issue?
Re: Measuring Facebook Success: Altimeter Knows How
Digital Media
Digital Marketing
12 Years Ago
by LastMitch
>In looking at brands, Altimeter found that retail industries and consumer goods/products tended to use Facebook more effectively than luxury hotels or regulated industries. Most brands fell short in setting expectations although brands currently facing controversy, such as BP, tended to score high in this area. This is an interesting article …
Measuring email marketing campaign success
Digital Media
Digital Marketing
19 Years Ago
by salesuniverse
What is a good open rate and click through rate for my eMail marketing campaign? Debbie Valdez (Sales Universe) What do these numbers mean anyway? They can mean a lot to some companies. Decisions on whether or not to sell a certain product or service are often based on a response to an email campaign. Here are some of the relevant numbers, which …
Measuring Performance...
Programming
Software Development
17 Years Ago
by n.aggel
Hi, i 've recently done a university project requiring me to construct a data structure{ a heap}.... Now that i 've finished the programming task , i am thinking how can i measure the programm's performance..... I will populate my data structure with 2 million random elements, and i will measure the time it takes to complete the varius …
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by Salem
Which OS / Compiler / type of machine ?
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by Ancient Dragon
use clock() to get the time before starting the algorithm and again afterwards, then subtract the two times. For example [code] clock_t start = clock(); // do something, such as call a function clock_t end = clock(); clock_t diff = end - start; [/code]
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by vijayan121
[code=cplusplus]#include <algorithm> #include <vector> #include <iostream> #include <ctime> #include <iterator> #include <boost/random.hpp> #include <limits> using namespace std ; using namespace boost ; inline double elapsed_msecs( clock_t start, clock_t end ) { return double( end - start ) * …
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by n.aggel
i was concerned that if i used clock, it's output would compromised by the fact that it is run from inside the program....
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by Ancient Dragon
I suppose you could use an external program to time it, but it would have a problem too in that it takes some time for one program to spawn another program so you would not be gaining anything. Calling the clock() function executes very quickly and would not throw off the timings very much if you execute the algorithm numerious times (such as a …
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by vijayan121
the time taken to call clock() would be much lower than the resolution of the clock provided by the library. [code=cplusplus]#include <iostream> #include <ctime> using namespace std ; int main() { const double res = 1000.0 / CLOCKS_PER_SEC ; cout << "resolution of libc clock: " << res << " …
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by n.aggel
guys your posts are very helpful {specially with vijayan121's posts i try to follow...} Some more questions: 1st) where can i find: mt19937 2nd) i just want to test a structure for a university project.... can a profiler help me?If yes, can you suggest me an easy-to-learn one.... 3rd) except from the time taken is it possible to see …
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by Salem
Yet my request for basic information about your setup goes unheeded - oh well, enjoy.
Re: Measuring Performance...
Programming
Software Development
17 Years Ago
by vijayan121
n.aggel> where can i find: mt19937 the one i have used is from the boost libraries. [url]http://www.boost.org/index.htm[/url] n.aggel> ... can a profiler help me? If yes, can you suggest me an easy-to-learn one.... n.aggel> .. is it possible to see how much space is consumed? ... Salem>> Which OS / Compiler / type of machine?…
1
2
3
14
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC