tagged [graph]

Get user profile picture by Id

Get user profile picture by Id I'm now working on a web application which is mostly based of facebook graph api. I hold some data about users - actually , the possible public data available - such as ...

17 Dec at 05:4

Facebook API "This app is in development mode"

Facebook API "This app is in development mode" What does "development mode" mean for a facebook app? I find no exact explanation of what I can and can't do while in development mode and what's the rel...

14 Feb at 09:16

When should I use Kruskal as opposed to Prim (and vice versa)?

When should I use Kruskal as opposed to Prim (and vice versa)? I was wondering when one should use [Prim's algorithm](http://en.wikipedia.org/wiki/Prim%27s_algorithm) and when [Kruskal's](http://en.wi...

Plotting using a CSV file

Plotting using a CSV file I have a csv file which has 5 entries on every row. Every entry is whether a network packet is triggered or not. The last entry in every row is the size of packet. Every row ...

8 Sep at 11:7

How to prevent Gremlin injection in C#?

How to prevent Gremlin injection in C#? When user enters data in a text box, many possibilities of SQL Injection are observed. To prevent this, many methods are available to have placeholders in the S...

Check if Graph API folder exists

Check if Graph API folder exists I am using Microsoft Graph API and I am creating a folder like so: ``` var driveItem = new DriveItem { Name = Customer_Name.Text + Customer_LName.Text, Folder = ne...

11 May at 18:47

The developers of this app have not set up this app properly for Facebook Login?

The developers of this app have not set up this app properly for Facebook Login? I'm trying to make a login with Facebook available in my script. I've done everything, but when I attempt to login with...

C# directed graph generating library

C# directed graph generating library I noticed that Visual Studio can generate graphs using something called DGML. I would like to generate a graph like the following one in my C# application. ![http:...

8 Jun at 20:50

Breadth First Search time complexity analysis

Breadth First Search time complexity analysis The time complexity to go over each adjacent edge of a vertex is, say, `O(N)`, where `N` is number of adjacent edges. So, for `V` numbers of vertices the ...

Find all paths between two graph nodes

Find all paths between two graph nodes I am working on an implementation of Dijkstra's Algorithm to retrieve the shortest path between interconnected nodes on a network of routes. I have the implement...

how can i use localhost while developing facebook graph website?

how can i use localhost while developing facebook graph website? i want to use localhost for developing website facebook application using the graph api. i working in asp.net c# in the previous api of...

How to refresh a token for Microsoft Graph

How to refresh a token for Microsoft Graph I'm connecting to the Microsoft Graph using: ``` public GraphServiceClient GetAuthenticatedClient(string token) { GraphServiceClient graphClient = new Grap...

3 Jul at 18:21

Microsoft.Graph send mail with attachment

Microsoft.Graph send mail with attachment I can not seem to get this to take any "ContentBytes" which is in the FileAttachment.ContentBytes. My sample is from Microsoft [https://github.com/microsoftgr...

5 Dec at 19:35

Graph drawing library for Flash

Graph drawing library for Flash I have a bunch of numeric stats data gathered over time. I need to show it as a line graph to user in a HTML page. I want to render graph on client. It would be perfect...

Why is the time complexity of both DFS and BFS O( V + E )

Why is the time complexity of both DFS and BFS O( V + E ) The basic algorithm for BFS: So I would think the time complexity would be: ``` v1 + (incident edges) + v2 + (incident edges) + .... + v

Good Java graph algorithm library?

Good Java graph algorithm library? Has anyone had good experiences with any Java libraries for Graph algorithms. I've tried [JGraph](http://www.jgraph.com/jgraph.html) and found it ok, and there are a...

7 Dec at 12:47

Facebook Graph API, how to get users email?

Facebook Graph API, how to get users email? I'm using the Graph API, but I can't figure out how to get a logged-in users email address. The intro to Graph states "The Graph API can provide access to a...

15 Feb at 02:31

Redirecting to authentication dialog - "An error occurred. Please try again later"

Redirecting to authentication dialog - "An error occurred. Please try again later" Why does it always happen to me? This happens after my application verify for user user login and redirect user to th...

17 Feb at 10:52

Cycles in family tree software

Cycles in family tree software I am the developer of some family tree software (written in C++ and Qt). I had no problems until one of my customers mailed me a bug report. The problem is that the cust...

13 Aug at 23:13

Build graph-oriented visual editor on jquery

Build graph-oriented visual editor on jquery We need to build the javascript-based visual editor (on jQuery) which should edit some graph-represented model. Entities should be represented as nodes and...

22 Feb at 16:23

How to refresh oxyplot plot when data changes

How to refresh oxyplot plot when data changes ![GUI for the program](https://i.stack.imgur.com/7QFS3.png) Oxyplot graphs 13 points which are derived from the 6 user input text boxes. The values in the...

4 Jan at 22:44

C# Call Graph Generation Tool

C# Call Graph Generation Tool I just got a heaping pile of (mostly undocumented) C# code and I'd like to visualize it's structure before I dive in and start refactoring. I've done this in the past (in...

13 Sep at 12:41

Graph database for .NET

Graph database for .NET I've been designing an application, based on .NET/Mono framework, which should make an heavy use of the theories and I would like to use a native solution to traverse the nodes...

21 Jul at 12:22

Plotting two variables as lines using ggplot2 on the same graph

Plotting two variables as lines using ggplot2 on the same graph A very newbish question, but say I have data like this: ``` test_data

2 May at 11:37

Is there a way to discover all endpoints of a REST API?

Is there a way to discover all endpoints of a REST API? I'm wondering if its possible to programmatically discover all the endpoints of a particular API. So for example if I GET this URL with a browse...