Code Monkey home page Code Monkey logo

java-intelligent-tutor's Introduction

Hi there 👋, I'm Tiago André

  • 🔭 I’m currently working as Information Technology Consultant

My Language Stats

My GitHub Activity

GitHub Streak

java-intelligent-tutor's People

Contributors

browndog avatar vasanthk avatar

java-intelligent-tutor's Issues

Problems with comments in the source code

What steps will reproduce the problem?
1. feed WordInfoPresenter.GetCodeToWordInfoMap(query, List<sourceCode>) with a 
list of source code, any of which has comments in it.


What is the expected output? What do you see instead?
Expected: Comments should be removed from the source code while preparing 
tutorial, but should be saved in another file. This will also help to avoid 
license infringement. Thus any tutorial should have an option of displaying the 
license (stripped off comments) along with the actual tutorial.
Current: Any file with comments creates problems in building 
CompilationInfoFacade.setLinesOfCode which is essential for building WordInfo.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 7 Oct 2010 at 2:20

Set hints field stays on when Quiz -> Example change is made

What steps will reproduce the problem?
During tutorial creation - when quiz is chosen and a blank is checked 
The hints textbox appear. This is correct
But, when it is changed to example now... hint text box does not disappear

What is the expected output? What do you see instead?
Hint box must be removed or hidden when example is chosen


Original issue reported on code.google.com by [email protected] on 26 Jan 2011 at 9:46

Set hints field resets during tutorial selection

What steps will reproduce the problem?
When creating tutorials, when we return to a previous tutorial by 
clicking on it, the hints entered earlier in it disappear.

What is the expected output? What do you see instead?
The hint chosen earlier for the tutorial must appear.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 26 Jan 2011 at 9:44

WordInfo.columnNumber is not set properly in special case

What steps will reproduce the problem?
1. In wordInfoStore.java: when the wordToBeBlanked was "close", for the method 
invocation ".close()" ; it was found that in line "closeable.close()", the 
first 4 letters of "closeable" were blanked out since that was the 
indexOf("close").

What is the expected output? What do you see instead?
Expected: closeable.close() should appear as closeable.------() in the tutorial
Instead: appears as ----able.close()


Original issue reported on code.google.com by [email protected] on 20 Oct 2010 at 1:18

Landing page for teachers after finishing tutorialSelection

What steps will reproduce the problem?
1. Select tutorials using the normal scenario
2. In the end, a testing page that shows data in a completely unformatted way.

What is the expected output? What do you see instead?
A nice looking page. It should have links to go back to the home page or 
whatever page that seems relevant.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 14 Jan 2011 at 10:45

Change implementation of selecting top X sorted items in TFIDFVector.java

In public ArrayList<String> getSortedTerms(NodeToCompare nodeType, int topX):
Instead of selecting top X items in the current way, implement a List<KeyValue> 
replacing Map<>, so that the Collection utilities sort() and reverse() and List 
utility subList() can be implemented directly on the map rather than 
Set<values> of the map.

Original issue reported on code.google.com by [email protected] on 10 Jan 2011 at 1:21

Cannot Progress Through Tutor Creation Process

What steps will reproduce the problem?
1. Start up tutor creation process
2. Find a code sample which only has one blank out choice
3. choose quiz, select difficulty, fill in hints, click next snippet
4. It will say "Please finish required steps"

What is the expected output? What do you see instead?
I expect to be able to continue. Instead it asks me to fill in the required 
steps, even though the steps are completed.


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 21 Jan 2011 at 1:33

Attachments:

NUll pointer exception in login

What steps will reproduce the problem?
1.Login as invalid teacher. (i.e. login information not available in db)
2. try the same for student login too.
3.

What is the expected output? What do you see instead?
If invalid login--> proper message (which works even now)
Expected: no Null pointer exception. Invalid condition should be handled 
properly.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 15 Feb 2011 at 1:15

Hide dups

What steps will reproduce the problem?
1. Search for "sorting arraylist in java examples". 
2. Browse to any snippet that has duplicate words. 
3.

What is the expected output? What do you see instead?
Duplicate words should be shown as one word with multiple line numbers in front.
Currently, it shows multiple instances of same word.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 15 Feb 2011 at 3:52

Does not allow multiple blanks on a single line of code

What steps will reproduce the problem?
1. Add multiple WordInfo objects into an ArrayList<WordInfo> and pass it along 
with linesOfCode to the TutorialPresenter.GetTutorial


What is the expected output? What do you see instead?
Expected: Should allow to add multiple blanks or at least one of it.
Current: Prints System.err

Original issue reported on code.google.com by [email protected] on 4 Oct 2010 at 3:46

If snippet contains < OR > marks, then brd generation breaks.

What steps will reproduce the problem?
1. Add a snippet that has < or > in it.
2. Generate brd and check if XML is well-formed.
3. Deploy the tutor

What is the expected output? What do you see instead?
The deployed tutor should work properly. Instead it breaks showing, .brd file 
not found exception, which occurs if XML is not well-formed.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 14 Jan 2011 at 11:01

document builder error

What steps will reproduce the problem?
1. documentbuilder API java
2. printNode : 26
File : 25
3. http://www.ibm.com/developerworks/java/library/x-jaxp/ 

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 21 Dec 2010 at 11:29

Loading image (gif) doesn't stop

What steps will reproduce the problem?
1. When searching for code samples, the gif image continues running even 
when the page load is stopped abruptly

What is the expected output? What do you see instead?
gif image should stop loading when the page is stopped.



Original issue reported on code.google.com by [email protected] on 26 Jan 2011 at 9:41

Improve tf-idf ranking

Current approach: 

tf = ( # times term appears in the CURRENT document ) / ( Total # of terms in 
the CURRENT document )

Proposed approach:

tf = ( # times term appears in all the results ) / ( Total # of terms in all 
the results)


Original issue reported on code.google.com by [email protected] on 3 Feb 2011 at 2:58

Case Sensitivity in Answers entered

The Answers entered has to be checked for case sensitivity.

As of now, only the string comparison of input answer to correct answer is 
done. But, in java case sensitivity has to be taken into account and only those 
answers entered by students that match both string and case should should be 
marked correct.

Original issue reported on code.google.com by [email protected] on 26 Jan 2011 at 9:38

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.