Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
219 views

Scala functional set problem

In Stanford Scala course I've come across the following assignment: Exercise 1 – Sets as Functions: In this exercise we will represent sets as functions from Ints to Booleans: type Set = Int => ...
6
votes
2answers
303 views

Breakout Game in Java does not pass boolean value after calling remove() method

I have been following the CS106A lectures online and doing the assignments. I've been stuck for a few days though on the breakout game because I cannot understand it's behavior. Basically, I have ...
5
votes
3answers
4k views

Are the solutions to Stanford's online iPhone development course anywhere on the web?

I am working through Stanford's online CS course for iPhone development and from time to time I get stuck on something. Does anyone know if they supplied solutions to the weekly homework anywhere? It ...
3
votes
4answers
253 views

How to pass a function in a function?

That's an odd title. I would greatly appreciate it if somebody could clarify what exactly I'm asking because I'm not so sure myself. I'm watching the Stanford videos on Programming Paradigms(that ...
2
votes
1answer
413 views

extracting all nouns, adjectives form a text via stanford parser

I'm trying to extract all nouns and adjectives from a given text via the Stanford parser. My current attempt is using pattern matching in the getChildrenAsList() of the Tree-Object for locating ...
2
votes
4answers
3k views

Where is 'Class Actions' in the 'Object Identity' panel in Interface Builder?

I thought I was fairly experienced at iPhone development, but I'm tripping up on the Stanford iPhone course on the very first video ...
2
votes
6answers
2k views

Passing object from controller to a view

I'm following iPhone dev courses from Stanford Open-University, and I've been blocked for 2 days on assignment3, maybe someone can help me here? The tasks are: Create a custom UIView subclass that ...
1
vote
1answer
466 views

Stanford CS106B C++ libraries in XCode 4

I'm trying to use the Stanford CS106B C++ libraries, like simpio.h and genlib.h. I'm using XCode 4 (this is a beta version btw) and Mac OS X 10.6. I installed the libraries, but they don't seem to be ...
1
vote
0answers
76 views

SNAP graph analyzer framework

Do anybody ever heard about SNAP ? I don't mean the first thing come into your mind (framework to build web-application), but the C++ framework to analyze graph's properties. SNAP stands for Stanford ...
1
vote
2answers
149 views

IncompatibleClassChangeError while running Stanford NER and Stanford POS tagger

I am trying to use Stanford NER and Stanford POS tagger in one application. I am getting IncompatibleClassChangeError when I try to run POS tagger method. I have jar files of both NER and POS tagger ...
1
vote
4answers
564 views

iPhone - creating outlets and actions on object from Interface Builder

In the initial lecture "1. Introduction to Mac OS X, Cocoa touch, Objective-C and Tools" the students are instructed to drag an "Object" into interface builder and set the class actions and outlets. I ...
1
vote
1answer
528 views

Can't find the example projects from Stanford cs193p

I am looking for the Flickr multithreaded example application that is used in lecture 10 "Performance and Threading". He does a few things that I would like to look at. The particular files I'm ...
1
vote
1answer
486 views

NSMutableDictionary question

NSMutableDictionary *bookmarks = [NSMutableDictionary dictionary]; [bookmarks setObject:[NSURL URLWithString:(NSString *) @"http://stanford.edu"] forKey: @"Stanford University"]; [bookmarks ...
0
votes
1answer
29 views

Starting a project with Stanford C++ Libraries in XCode

I'm trying to follow along with the Stanford CS106B course. They provide some libraries for use in the course but I can't for the life of me start and new project, import the libraries and get it to ...
0
votes
0answers
92 views

Is there a support community around Stanford's “CS 193P iPhone Application Development” anywhere on the web? [closed]

Searching Google brought me here: Are the solutions to Stanford's online iPhone development course anywhere on the web? Searching "193p" on Stackoverflow.com did spit out a bunch of results, but ...
0
votes
1answer
78 views

how can I obtain the value of subject of the Stanford Dependencies “nsubj” of a tree?

NEW thanks, Bart Kiers. adding the following lines of your code I get what I wanted: System.out.println(td.dep()); System.out.println(td.gov()); which will print: dog-2 likes-4 now how do I ...
0
votes
1answer
74 views

add a language in the Stanford parser

I started to use the Stanford parser a few weeks ago and it surely is a great tool. However, I would like using it in another language not already implemented. I looked on the website but found ...
0
votes
1answer
94 views

expected unqualified-id before numeric constant in STK code

I included the The Synthesis ToolKit in C++ (STK) from stanford into my project and when I try to build I get the following error: error: expected unqualified-id before numeric constant in the ...
0
votes
0answers
378 views

CS106a Stanford Programming Course - feedback on answer to Assignment 1? [closed]

I have just started the online CS106a course by Stanford, and it would be great to be able to have somebody more experienced than me look over my assignment attempts, either here or in private (I'm ...
0
votes
1answer
104 views

Extracting Sub-Trees Using Stanford Tregex

I have made a class to extract subtrees using Tregex. I used some code snips from "TregexPattern.java", as i don't want to let the program use the console commands. In general, having a tree for a ...
0
votes
0answers
627 views

Stanford cs106a - Breakout exersize

I'm trying to learn java by following the cs106a course online. Currently I've arrived at the breakout exersize and I'm having some trouble with bugs I haven't finished it completely but I want to ...
0
votes
1answer
281 views

Applet not running: Stanford Engineering Everywhere Hangman

I've written working on a java applet, which seems to be opening sun.applet.AppletViewer when it is running. I'm using the acm libraries for the Stanford Engineering Everywhere Hangman assignment. The ...
0
votes
1answer
137 views

how the tokenization is done in Stanford POS tagger?

hi i am going to use Stanford POS tagger to tag the sentences, for that i want to split the documents into sentences and then sentences to tokens. As i am using java for the first time i just want to ...
0
votes
2answers
609 views

out of heap space memory error

I am trying to run the coreNLP package with the following program package corenlp; import edu.stanford.nlp.pipeline.*; import java.io.IOException; /** * * @author Karthi */ public class Main { ...
0
votes
1answer
178 views

Is there a PHP port of the Stanford Javascript Crypto Library?

Is there a php implementation of the Stanford Javascript Crypto Library?
0
votes
1answer
193 views

illegal argument exception - stanford parser

I tried to parse a sentence using stanford parser, but i get the exception please help me. the input file, code and exception are specified below I think the problem is because the penn tree in input ...
0
votes
1answer
345 views

Stanford parser - typed dependencies

The typed dependencies given by stanford parser online http://nlp.stanford.edu:8080/parser/ and the dependencies generated by the sourcecode given aren't same The versions of source codes available ...
0
votes
1answer
209 views

Stanford parser - typed dependencies

I need to handle with possessive dependencies in stanford parser.I read in a mailing list that to use the output format includePunctuationDependencies but i get this exception. Can anyone please ...
0
votes
1answer
181 views

Stanford's initial assignment not working

Stanford put out for free a series of videos and handouts for their iPhone programming course. I've played around with the first assignment, but all I get on the Simulator is a blank screen. Here's ...
0
votes
5answers
2k views

Stanford Engineering Everywhere CS106B Library

I am currently a C# programmer and have been interested in learning more about C++ and data structures. I found the CS106B class offered free online through the Stanford Engineering Everywhere ...