Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 165 results for
member-impact
- Page 1
New impact stat in member profiles
Community Center
Meta DaniWeb
6 Years Ago
by Dani
Member
profiles now have a new statistic that measures
impact
. It counts how many people the user has reached. It should be noted that we just started calculating this number earlier this year, so at this time, the highest number is roughly one million.
Need help accessing a member from another class
Programming
Software Development
14 Years Ago
by crodriguez08
… class Node; };[/CODE] [CODE]/* llist.cpp * Implementation of
member
functions for the classes Node and LList. */ #include "…quot;\nCreating a big list so that we can see
impact
in memory..\n"; cin >> dummy; …quot;Creating a big list so that we can see
impact
in memory..\n"; cin >> dummy; …
Re: New impact stat in member profiles
Community Center
Meta DaniWeb
6 Years Ago
by rproffitt
I'm seeing 1.2 million for Dani, similar numbers for Happy Geek, James Cherrill. Me at 800K+. PS. Added with edit. Homepage change noticed too. Much better.
Re: New impact stat in member profiles
Community Center
Meta DaniWeb
6 Years Ago
by Dani
Out of curiosity, do you find this statistic motivating? In other words, is it motivating to contribute and see how many people you've touched / impacted as a result of your efforts?
Re: New impact stat in member profiles
Community Center
Meta DaniWeb
6 Years Ago
by rproffitt
I found the number surprising but not moving. Maybe those that live on Facebook, Twitter and such may put more value here. For me it's interesting but would not influence me one way or the other. To me it's important to try. I am running into folk that are scared to try, scared to be wrong. I think making an attempt is important otherwise …
Re: Need help accessing a member from another class
Programming
Software Development
14 Years Ago
by sundip
Why you are trying to cerate a manual Linked list. You can also use stl::list [CODE]#include <list>[/CODE]
Re: Need help accessing a member from another class
Programming
Software Development
14 Years Ago
by hag++
You need to make the lList class inherit from the Node class if you want to access the protected members in Node from lList. [CODE=c++]class lList : public Node { // Insert code for class } [/CODE]
python program help
Programming
Software Development
10 Years Ago
by photoguy77
…check the element is in the set or not def
member
(self, x): if x in self.list1: return …# the result is stored in new set and has no
impact
#on original set def intersection(self, aSet1=[]): self.list3 …method to check the element in the set valid = s.
member
(n) if valid == True: print "Element is…
Re: python program help
Programming
Software Development
10 Years Ago
by photoguy77
…the element is in the set or not def
member
(self, x): if x in self.list1:… result is stored in new set and has no
impact
#on original set def intersection(self, aSet1=[]): self… result is stored in new set and has no
impact
#on original set def subtract(self, aSet3=[]): self…
Issue with smaller browsers
Digital Media
UI / UX Design
14 Years Ago
by Hell Bomb
…</option><option value="
Impact
" style="font-family:
Impact
">
Impact
</option><option value…;a href="http://forum.trinityentertainment.net/129-
member
-month">
Member
Of The Month</a></td>…
Mixing Static and Dynamic Polymorphism
Programming
Software Development
11 Years Ago
by mike_2000_17
…each value-type, because that will have a profound
impact
on performance because it's the fundamental operational type…, and thus, there is probably very little performance
impact
associated with inlining and optimizing the calls to the …s not going to work because a "virtual
member
function template" is impossible, and not just because…
Understanding C++ - From source to binaries
Programming
Software Development
11 Years Ago
by mike_2000_17
… /* ... code goes here ... */ }; // definition of the static
member
function: void Foo::world() { /* ... code goes here ... */ …}; // definition of the static
member
function: int global_var = 0; This gives an example …optimizations (but can have a huge
impact
when it's in a fast …
(Tutorial)Extension methods in C#
Programming
Software Development
12 Years Ago
by Michael27
… an extension method, it is visible as an instance
member
for all strings. Lets test this string testString = …Object, every class and structure will receive the new
member
. Modify the extension method as follows: public static …from the classes that use them, they can significantly
impact
the readability of the code. For this reason, …
Joe Brockmeier talks open source and social media
Hardware and Software
Linux and Unix
15 Years Ago
by Techwriter10
….net/gwibber"]Gwibber[/URL] was driven by a community
member
. Many of the features and enhancements have been driven by… job it (usually, anyway) they're looking to make an
impact
in the time that they have -- and since most of… lot of time or effort, but there is a cumulative
impact
that everyone helping can see. [B]RM[/B]: One thing…
Is Social Media a Fire Hose or a Filter?
Digital Media
Digital Marketing
15 Years Ago
by Techwriter10
… content that matters most to you. Tools also have an
impact
on how well you can filter the larger river of… said, I do believe that social media has a positive
impact
on people's work lives when you use the correct…] The other day on one of my mailing lists, a
member
wrote to complain about Twitter. He had tried it, but…
Need help with T/F and Multiple Choice
Programming
Software Development
17 Years Ago
by sayso36
…you created. 2. Using the mechanism of inheritance, every public
member
of the class Object can be overridden and/or invoked… which catch blocks are placed in a program has no
impact
on which catch block is executed. 17. The methods …between the formal parameter and actual parameter. 19. If a
member
of a class is a method, it can (directly) …
Helping yourself: What to do before starting a new thread or posting a HiJackThis log
Hardware and Software
Information Security
21 Years Ago
by Catweazle
…themselves). Regularly backing up your data helps alleviate the
impact
of such an event. The tools and techniques described… to [u][url="http://www.daniweb.com/techtalkforums/
member
.php?userid=3183"]crunchie [/url][/u]for those!…of [u][url="http://www.daniweb.com/techtalkforums/
member
.php?find=lastposter&t=6917"]caperjack[/url…
Be the best, blog at DaniWeb, win BIG prizes
Community Center
Geeks' Lounge
18 Years Ago
by happygeek
… to start blogging.[/B] The winner will be the
member
whose blog postings attract the most traffic during the life…some thought to what you call your blog, this might
impact
upon the number of visitors it attracts! [B]THE …topic, IT news related postings will be counted. [*]If no
member
reaches a minimum of 10,000 views or 1000 trackbacks…
Anonymous methods
Programming
Software Development
15 Years Ago
by atx
… the containing function
member
. 2) An anonymous method requires an explicit method signature 3) An anonymous method can
impact
the lifetime of… struct may not declare an anonymous method which directly references
member
fields. In my opinion, the correct answers are #1 and…
Re: Anonymous methods
Programming
Software Development
15 Years Ago
by serkan sendur
… containing function
member
. - true 2) An anonymous method requires an explicit method signature - false 3) An anonymous method can
impact
the lifetime… struct may not declare an anonymous method which directly references
member
fields. -true
Re: Late e-mail
Community Center
Meta DaniWeb
14 Years Ago
by Agapelove68
… this e-mail. It involved the new rules and the
member
of the month for September along with other informative insights… ever been to, and the only one I'm a
member
of? :icon_confused: I want to help and be an asset… here; thus making one feel there not making a positive
impact
. That is simply not right. I know that it would…
Re: Remembering Dave Sinkula
Community Center
Meta DaniWeb
10 Years Ago
by ~s.o.s~
… met him in real life but would never forget the
impact
he had on his friends and in growing the forum… for those who really want to understand the kind of
impact
Dave had on this community.](https://www.daniweb.com/community…
Re: Be the best, blog at DaniWeb, win BIG prizes
Community Center
Geeks' Lounge
18 Years Ago
by Dani
… from different computers isn't necessarily going to make any
impact
. What we're looking for is how creative you can…
Darksma Addware brought system to a hault
Hardware and Software
Information Security
18 Years Ago
by sandman3514
… done so far. 1) Removed using Antispyware on PC. Little
impact
as the spyware came back. 2) Vundo scan and clean…: {30528230-99F7-4BB4-88D8-FA1D4F56A2AB} (YInstStarter Class) - [URL]http://img.
member
.yahoo.com/dl/atty/yinst_current.cab[/URL] O16 - DPF: {C4925E65…
Check this out - Free PHP Security Videos
Programming
Web Development
16 Years Ago
by Arne1983
… to give back by doing something that will have an
impact
. Without this community I just wouldn't be where I… and that there aren't even any ads in the
member
's area. I realize that some people might regard this…
ICANN say .xxx cannot
Hardware and Software
Networking
18 Years Ago
by happygeek
… and has lobbied ICANN to this effect. AN FSC board
member
, Reed Lee, has said that ICANN members who voted against… the largest organizations to the smallest, this undoubtedly has an
impact
upon ICANN which prides itself upon a bottom-up decision…
Microsoft Code in the Linux Kernel? It's OK, Linus Says So
Hardware and Software
Linux and Unix
15 Years Ago
by khess
… likely to include it because it’s from a new
member
of the community rather than less (again, I’d like… to point out that drivers are special. They don’t
impact
other things, so they get merged much more easily than…
Why buying social media reviews is a recipe for marketing disaster
Digital Media
Digital Marketing
12 Years Ago
by happygeek
…. Somewhere else that the wisdom of crowds has made an
impact
is the consumer review market. Most of my family, friends… five star reviews written by the proprietor or a staff
member
. Most of the time they stick out like a, well…
Re: Event website Logic
Programming
Web Development
12 Years Ago
by JorgeM
…and providing discounts if the person has been given the
member
ID. You may not be able to control users… a
member
unless you put additional controls with regard to membership? Maybe those controls would cause a negative
impact
so …having those few instances where a person takes the
member
number is not that …
Re: Auto assign a number
Programming
Web Development
13 Years Ago
by BrickZ28
… a specific range. This table doesnt have any
impact
and is merely a
Member
ID field. I would even compromise if need…
1
2
3
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC