Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
16answers
779 views

How do I find/make programming friends? [closed]

I recently got my first programming internship and was extremely excited to finally be able to talk with and interact with fellow programmers. I had this assumption that I would find a bunch of like ...
11
votes
3answers
755 views

Is friendship inherited in C++?

Suppose I have a Base class: class Base { friend SomeOtherClass; }; And there is another (different) class that inherits from Base: class AnotherClass : public Base {} Is friendship ...
7
votes
3answers
192 views

Friendship not inherited - what are the alternatives?

This may be a futile question. I have written/am writing a piece of physics analysis code, initially for myself, that will now hopefully be used and extended by a small group of physicists. None of ...
5
votes
1answer
114 views

In a social network environment, what would be the easiest way to check for friendships globally?

For reference, here is a question on SO that I asked recently that is relevant to this question: How to model Friendship relationships On that question, we figured out a way to display news feed ...
4
votes
5answers
468 views

When is it prudent to use friendship in OOP?

I'm currently getting through the http://www.cplusplus.com tutorial and I came across this section here: http://www.cplusplus.com/doc/tutorial/inheritance.html that deals with the subject of friend ...
3
votes
3answers
138 views

C++ Friendship and inheritance [closed]

I know that friendship is not inherited. I was asking myself: why? Why the C++ designers decided to not let friendship be inherited? Do you find that friendship inheritance would be a useful thing to ...
2
votes
2answers
109 views

How to model Friendship relationships

I have been trying to figure out how to do this, and even with looking at other examples, I can't get it figured out, so maybe I can get some personalized help. I've got two tables, users_status and ...
2
votes
4answers
365 views

Friendship vs inheritance

I've the class hierarchy below. Basically, I would like to establish a "has-a" relationship between the classes Foo and CComplexMat, i.e. class Foo "has-a" CComplexMat. From what I know, private and ...
2
votes
2answers
60 views

Call a function in class members (C++)

Consider the following: These classes are in different header files and each header file has its corrresponding source files. //------------------------------------------ // in Z.h class Z { ...
2
votes
5answers
2k views

Friend of a friend in PHP/MySQL?

Ok I have searched before asking, all I found was several questions asking what I am but 0 answers so maybe someone who knows will see this or I will make it a more clear question. I have a social ...
2
votes
9answers
2k views

Using PHP and MySQL, how to structure a “Friendship” in database for a community website?

For community websites like Facebook, myspace, etc.. They have a feature called "Friendship", means you can add friends, send "add friends request", etc.. How to structure it in database? I means, ...
1
vote
2answers
56 views

Best Models for a Friendship relation (in Django)

What is the best way to model friendships between users for a social networking site? The possible states are: no Friendship FriendRequest from A to B, B needs to confirm (this is asymmetric) A and ...
1
vote
2answers
89 views

How can I call a private destructor from a shared_ptr?

I have a resource_manager class which maintains a std::vector<boost::shared_ptr<resource> > internally. resource_manager is a friend class of resource. I want resources to only be ...
1
vote
1answer
72 views

Creating a Friendship-system database-schema, how to?

I'm creating a social system, and I need to create a friendship. Can any body help me please to create it's database-schema? I want to be able to assign friends in groups (like google+) and set posts ...
1
vote
1answer
124 views

Accept or decline Friend Request using FB Graph API

How I can accept or decline friend requests of other users via Graph API
1
vote
2answers
138 views

Rails social linking question : Why friendships?

Looking at a lot of tutorials on social linking systems in rails. I notice that there seems to be a consistent use of friends as alias for user objects, with a join model "friendships". I followed ...
1
vote
2answers
215 views

MySQL: InnoDB |OR| MyISAM?

I have two tables: Users and Friendships. The actions I have in the website are: Register Log in Select friends/people from users table Add people as friends There are a little more actions but ...
1
vote
3answers
267 views

user has many :users, or must I use another way for a friend based social network?

I'm creating a little social network in Rails, where people can add eachother as a friend. I have created a model called 'user', which contains, e-mail, strong md5 hash with salt of password etc... ...
1
vote
3answers
382 views

Best way to show friends of a user in alphabetical order

On a social network I am working on in PHP/MySQL, I have a friends page, it will show all friends a user has, like most networks do. I have a friend table in mysql, it only has a few fields. auto_ID, ...
0
votes
1answer
61 views

PHP Facebook API: How to retrieve how long I've been friends with someone

I'm curious if it's possible to get the "friendship" information via the Facebook PHP API, meaning information about the friendship the logged in user and one of his friends share? Information that ...
0
votes
3answers
78 views

Friendship problems when overriding operator<<

I'm trying to overload operator<< in the standard way. I have a class called SymbolTable residing in a file called SymbolTable.h as follows: namespace Compaler // It's a pun; don't ask { ...
0
votes
5answers
119 views

Alternative to friendship?

Is there any alternative to friendship in the following scenario? I have a Window class which represents an UI window. Also, a WindowManager class, implemented as a singleton, manages all window ...
0
votes
2answers
40 views

Differing access on a member of a class according to the context

Sorry for the bad shape of the question but I don't really know how to express it Let's say I have a class MainApp using methods of a dynamic library via an interface FrontEnd FrontEnd uses ...
0
votes
1answer
143 views

Get friendship start date

I've been looking for a way to know the date two users became friends. I've found this question but it only explains how to simulate the friendship page with multiple FQL queries. What I want to ...
0
votes
4answers
262 views

Mutual friends sql with join (Mysql)

I have two tables users table: id|name user_relationships id | user_id | friend_id and want to get names of mutual friends of 2 users. i.e: user_relationships 1 | 1 | 3 2 | 2 | 3 users 3| ...
0
votes
1answer
28 views

Realizing on-side connection in django models

How to realize on-side connection in django models? Say, I want to realize "friendship" mechanism, i.e., if you add me to your friends list it doesn't mean that you are in my friends list. I tried to ...
0
votes
1answer
341 views

rails 3 advance friendship model and queries

I have friendship model, and for every new friendship, i create two new records: User1 and Friend1 Friend1 and User1 I can retrieve all standard staffs like: friends, friendships, pending_friends... ...
0
votes
2answers
86 views

Blocking friends sql (super slow sql??)

Hi im having trouble with this sql. Basically it displays statuses that my friends posted, and it filters out the friends that i blocked. The sql is slooooowwwwwww though.. It takes 2 seconds to ...
0
votes
3answers
390 views

Best way to make django's “user” system have “friends”

Hay, I'm using Django's Auth system to make accounts on my application, whats the best way at making a "friends" system using the Auth system? I want to be able to link Users together, but they have ...
0
votes
2answers
87 views

friendship and operator overloading help

I have the following class #ifndef Container_H #define Container_H #include <iostream> using namespace std; class Container{ friend bool operator==(const Container &rhs,const ...
0
votes
4answers
286 views

friendship scope c++

In section 11.5.1 of "The C++ Programming Language", Bjarne Stroustrup writes: Like a member declaration, a friend declaration does not introduce a name into an enclosing scope. For example: ...