The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
36 views

friend and friend of friends in facebook [closed]

I am trying to extract all the friends and friends of friends in my facebook app , its working fine , but as soon as a someone who as been restricted by one his friends , or whose friends have listed ...
-2
votes
0answers
27 views

OOP concepts for a graph plotter [closed]

My project currently includes classes like function and table function has two dynamically managed arrays of coefficients and powers table has a domain and creates a range. i need to add oop concepts ...
0
votes
2answers
20 views

undefined local variable or method friendship

I'm trying to add some social functionality to my app, and following RailsCast #163 about self-referential association, but I have a problem with deleting friendship. On user#show page I have 2 ...
0
votes
0answers
86 views

PHP Ajax Friend Request Not Getting User's ID And Name

I'm Making a Social Network and Having Issues With The Add Friend. When You Click "Add Friend" Below it slides down Says Add user and you can click Yes Or Cancel. If You click Yes, Sends the request ...
0
votes
2answers
59 views

rails create controller for model “friendship”

Here I want to make "relationship" between two models. I have model User, model Prog, model Relationship. I tied them up with has_many :through relationships. I want to have button_to add Prog to ...
0
votes
1answer
27 views

Resuming debugging session not building changes VS2012

My visual studio does not build/compile changes made under a paused debugging session. I cannot find i reason on google for this, so i decided it is no longer my friend, and came here seeking new ...
0
votes
1answer
48 views

Heuristics to find “surprising” mutual friends

I have the undirected friends graph of my Facebook friends, G i.e. G[i][j] = G[j][i] = true iff my friend i and friend j are friends with each other. I want to find "surprising" mutual friends i.e. ...
0
votes
0answers
18 views

“Function does not take 1 arguments” error with object as parameter

Ok, so I am creating code for a group project in my class. All my group members made a header file with an object in it with their functions. One of the functions in my partner's code uses a data ...
3
votes
1answer
71 views

SQL composite primary key without ordering (pair of integers in either order must be unique)

I have a MySQL table for Users with the primary key _id, and I want to represent friendships (visibility on friends lists of other users) as a table with pairs of userId foreign keys. I'm thinking ...
0
votes
0answers
130 views

friend request page and profile page

hello I have two pages the friend request page and profile page thats code in the pages i want to understand that code I want simplified explanation to that scripts what i know is that scripts is send ...
0
votes
2answers
60 views

C++: friend function passing to non-friends [closed]

Doesn't this break encapsulation? B.h: class B{ private: int x, y; public: B(){this->x = 1; this-> y = 1;}; B(const B& obj){this->x = obj.x; this->y = obj.y;} ~B(){}; ...
0
votes
1answer
38 views

iOS 6.0: how to send a friendship request

I'm developing an app based on the Facebook SDK 3.1 which should allow the user to send a friendship request to another user who has an account on Facebook. I have already dealt with the ...
0
votes
1answer
77 views

Combine photo tagging results with friend relationships and display one instance of the user

I have 2 tables: user_connected and user_buddies. The user_connected table is for users connected via images (aka photo tagging) and the user_buddies table is your basic "friends" feature allowing ...
0
votes
2answers
108 views

C++ friend functions

My question is pretty simple. I'm learning about friend functions, but this does not work for some reason. It only words if i swap the screen class with the Window_Mgr class, and then add a forward ...
9
votes
1answer
139 views

Class friendship - a puzzle

I am an object-oriented programming enthusiast at a beginner level. I have encountered the following puzzle: class A { }; class B { protected: friend class A; }; class C { public: ...
-2
votes
1answer
2k views

how to suggest friends to friends [closed]

This is a personnal suggestion I'd like you to propose to any user. I quite often think about suggestionning personnally a friend to become friend with another friend of mine. Could that be possible? ...
-1
votes
1answer
104 views

C++: granting member function friendship forward declaration?

I have a problem with friendship in c++. I have two classes, A and B, where the definition of B uses some instance of A. I also want to give a member function within B access to private data members ...
0
votes
1answer
69 views

friend of base accesses derived

I came across this unanswered question and it is really puzzling. Is this behavior supposed to make any sense? Is it in the standard? This is the question: class parentFriend; class parent { ...
0
votes
1answer
73 views

Limit view of content based on friends

I'm currently working on a new project and I came around something I can't figure out myself. I got a user - friend system based on different layers (family, friends, colleagues,...). Users are able ...
6
votes
2answers
127 views

C++ Forward Declaration and Friendship in Namespace

According to 7.3.1.2 Namespace member definitions in C++ Standard ISO/IEC 14882:2003(E) Every name first declared in a namespace is a member of that namespace. If a friend declaration in a ...
3
votes
5answers
160 views

friend class with inheritance

If I have two Classes as follows with inheritance: class A { ... } class B : public A { ... } And a third class with defined as a friend class A: class C { friend class A; } Will I be able ...
1
vote
2answers
54 views

Friendship model : how to find whether a friendship exists?

I have the following model class User(db.Model): name = db.StringProperty(require=True) class Friendship(db.Model): user1 = db.ReferenceProperty(User, collection_name='user1_set') user2 ...
0
votes
2answers
95 views

how to create friendships between devise users and get the list of friends of each user through api?

I use devise for authentication in my web application and my web application also responds to iphone applications. So far i have done only authentication and so when the iphone app sends the username ...
7
votes
1answer
149 views

Specific Template Friendship in C++

I have a question for Specific Template Friendship in C++. in the book C++ Primer, the specific template friendship is written like this: template <class T> class Foo3; template <class ...
0
votes
0answers
48 views

how can i send a request link for accepting friend request?

I have followed http://railscasts.com/episodes/163-self-referential-association and it works fine. In this all the users will be displayed and when clicked on the add as friend link the user will be ...
0
votes
1answer
107 views

how to make friendship request to the user in rails? [closed]

I am using devise and i wanted to login using my id and password and then i want to display the users name along with a link add as friend which when clicked should send a request to that user and ...
0
votes
1answer
62 views

ruby on rails friendship following shows always my name

friendship.rb belongs_to :user, :include => [:profile] belongs_to :friend, :class_name => 'user' user.rb #following code has_many :friendships has_many :friends, :through => ...
0
votes
2answers
202 views

ruby on rails use “create” method in controller as GET not working

friendships_controller.rb class FriendshipsController < ApplicationController # POST /friendships # POST /friendships.json def create #@friendship = Friendship.new(params[:friendship]) ...
0
votes
1answer
68 views

C++ - unable to set method friendship

I try to set friendship to method from class GameSimulator on Player class. for some reason I get error. I really need your help GameSimulator.h: Player.h Tanks!!
0
votes
2answers
85 views

Can't define method of a class as a friend of another class

I'm trying to make MainScheduler's method addJob a friend function of the class Job, as so: #include "MainScheduler.h" //forward declaration class MainScheduler; class Job: { friend void ...
3
votes
1answer
355 views

High Performance Social Network Feed?

A few years back I built a social network site that had around 500,000 registered users, it was similar to Myspace at the time where users could post and view Bulletin post from there friends. So I ...
2
votes
2answers
286 views

OneToMany relation with multiple join columns

I have this entity Friendship: @ManyToOne private User user1; @ManyToOne private User user2; ... and other properties of the friendship Per friendship there is only one instance/record of this ...
1
vote
1answer
494 views

Extract dates from facebook - date of established friendship / date of when person joined fan page / group

is there a way (API) to extract the date of a established friendship or the date of when a specific person joined a fan page/group in Facebook? I haven't found anything in the docs and the Web, but ...
0
votes
1answer
98 views

Rails self referential associations, how to determine mutual intersection?

I want to have friends/followers mechanzm, so I've created following DB structure: user_id friend_id I want to know what's the easiest and simpliest way to determine (rails-way) that following ...
7
votes
2answers
115 views

Inheritance and Friendship access. C++

I have the following query; classB inherits from classA classC is friend of classB Doesn't this mean classC should be able to access protected member of classA? Since classB inherits this from ...
4
votes
2answers
106 views

Django ORM query for friends of a user

I am having trouble getting a Django ORM query to work correctly. I have this Friendship model: class Friendship(models.Model): user1 = models.ForeignKey(User, related_name='friendships1') ...
0
votes
0answers
451 views

Twitter PHP post friendship create … stumped

I've been working on this code to get followers and if i'm not following them already the script will post a friendship create. I've used Json to get all data/arrays for both friends and followers in ...
0
votes
0answers
423 views

How do I get rails amistad friendship gem to work?

I am trying to implement the Amistad friendship gem. I tried to ask for a working example on the github page and received a link I already included in the initial post. I used this link to implement ...
1
vote
2answers
1k views

Get the date when two users became friends in php

It's possible to get the date when two users first interacted on Facebook? For example: in a comment, photo tags, wall post, etc. I need this for a FB app since isn't possible to get the date when two ...
1
vote
1answer
156 views

Need help in designing friendship request sql table

I have SQL table for friendship requests. Table is on server - clients are mobile phones Table: Key = index, int, auto increment C1 = userA_ID C2 = userB_ID (C1, C2 = unique) C3 = status (pending, ...
0
votes
1answer
699 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 ...
1
vote
2answers
378 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 ...
2
votes
2answers
789 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
3answers
304 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
261 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 ...
1
vote
1answer
222 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 ...
5
votes
1answer
142 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 ...
3
votes
2answers
393 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 ...
0
votes
2answers
52 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 ...
3
votes
3answers
393 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 ...

1 2