Tagged Questions
The scores tag has no wiki summary.
3
votes
3answers
93 views
Converting JSONArray to normal Array
I created a a JSON Array from a normal array of user defined object.How do i convert the JSONArray back to a normal array of the user-defined type..?
I'm using Json for shared preference in ...
3
votes
3answers
223 views
Getting percentage of similarity of two texts
first at all, I want to apologize for my english.
And now, the main problem I have. I need to get the score of the similarity between texts, when one is inside the second.
For example:
Text1: aaa bbb ...
2
votes
1answer
54 views
How to implement a complex token-matching algorithm in SOLR
Problem Description
I'm trying to implement a custom algorithm to match user provided free-text input, a company name such as "Ford Motor", against a reference data source consisting of 1.4 million ...
2
votes
2answers
29 views
Java IO outside jar
I'm working on a browser based applet game, and I intend to store the top ten scores in a text file in the directory with the JAR file. How would I read and write to a text file if it's outside the ...
2
votes
0answers
208 views
Uncaught OAuthException: thrown in posting scores
I'm trying to post a test account user's score from a test facebook application using the graph "/me/scores" with an acquired app token. However, in trying to do so I get
Uncaught OAuthException: ...
2
votes
1answer
97 views
How bad is publishing the app secret really?
After significant voodoo, I have finally got the scores API working. Turns out you have to set Enhanced Auth Dialog to disabled or Facebook ignores your publish_actions permission. Just a heads up ...
2
votes
3answers
1k views
Is 'publish_actions' extended permissions available for testing?
I've been trying to test out Scores and Achievements using the 'publish_actions' extended permissions but when I add it, it doesn't show up in the Request for Permission page. It's like its ignored.
...
2
votes
1answer
661 views
Facebook Graph API Explorer won't POST scores
According to Facebook documentation:
"Create or update a score for a user
You can post a score or a user by issuing an HTTP POST request to /USER_ID/scores with the app access_token as long as you ...
2
votes
2answers
168 views
Comparison Scoring Algorithm
I am having a tricky time determining a scoring algorithm for something like a peer-reviewed research paper.
Take this class:
public class ResearchPaper
{
int StudentID;
int PaperID;
...
2
votes
2answers
942 views
Solr: fieldNorm different per document, with no document boost
I want my search results to order by score, which they are doing, but the score is being calculated improperly. This is to say, not necessarily improperly, but differently than expected and I'm not ...
2
votes
1answer
851 views
Document score effecting the sort order of results, Lucene
Even after passing a sortfield, score of the document is effecting the sort order of the search results. Is there a way to make lucene to ignore the document score when a specific sort field is ...
2
votes
2answers
546 views
How to apply default sorting in lucene on equal scores?
Good day,
If I have for example the documents which have the following fields
Person_name - Birthday
Jordan - 2009-06-15
Marc - 2009-01-01
Marcos - 2009-01-01
Marcissh_something_something - ...
2
votes
2answers
1k views
Lucene multiple indexes : Normalize document scores?
Suppose I've got multiple lucene indexes (not replicas) on several PC's.
I query each index and then merge the results.
Is there any way to normalize the document scores so that I could sort by ...
2
votes
3answers
296 views
Calculate final scores in a game relative to previous scores and other players
Supposing a multi-player game, what you be the fairest way give final scores based on the previous scores of all players.
For example, in a two player match, player A having two times the score of ...
1
vote
1answer
87 views
Trying to post score with scores api from an iOS app, but app access_token is required
I have an iOS game that wants to publish user scores to Facebook. I use lastest Facebook SDK from git.
The app is in the Games category, and marked as Native/Desktop app.
The iOS bundle is set ...
1
vote
0answers
27 views
Localization of Game Score Data displays incorrectly (see image)
The thousands separator in Turkish is '.' and I believe this is causing some issues with the display of player scores using the new Scores API.
The screen shot (link) below is from a Turkish player ...
1
vote
0answers
183 views
How do I post and delete scores in a Facebook app?
I have read and tried to implement the scores system on the Facebook API almost word for word but am getting and getting an error
{"error":{"message":"Unsupported post
...
1
vote
2answers
88 views
Why can't post scores via Scores API in Javascript?
I'm writing a javascript game library that I want to integrate with Facebook Scores. Games made with my library typically run on static file servers (i.e. just ordinary HTML+JS, no server side ...
1
vote
1answer
282 views
Scores and Achievemnts, understanding the process
I am a bit confused when it comes to Scores and Achievements. I am currently registering Achievements 1 - 1000 assigned to points 1 - 1000, where each point is an achievement.
I know each ...
1
vote
1answer
56 views
How can I return the Lucene score of my query when using the Neo4J REST server?
I have been able to use the Lucene query syntax so far. Now I need to be able to return the scores and number of hits on nodes by modifying my query line:
GET ...
1
vote
3answers
178 views
Password Strength Meter
I'm trying to create my own JS Password Strength Meter.
It was working before but i didn't like how it worked so I tried using
{score +=10;}
Instead of just:
score++
This is my code:
...
1
vote
4answers
378 views
Saving game score locally on iOS device…is security needed?
Do I need to store the score with a hash, ie to protect it from being edited/cheated by a user? From my newb knowledge, the user is unable to view and manipulate this locally stored data, as plist ...
1
vote
4answers
336 views
How do I keep score in a rock paper scissors game?
I'm just starting Python and writing a simple rock paper scissors game. Here's what I have so far. I can play a game with another player perfectly. What I want to know is how to keep score of the ...
1
vote
2answers
801 views
Redis: Sum of SCORES in Sorted Set
What's the best way to get the sum of SCORES in a Redis sorted set?
1
vote
1answer
136 views
How to add a score tracker in an if/else statement for a multiple choice game, and a few other things
//this is what I have so far.. just wondering where and how I'd put the rest for the score tracker? I'm going to be making 3 of these multiple choice questions, so what would be the best way I lay ...
1
vote
1answer
282 views
FULLTEXT query with scores/ranks in Postgresql
Im new to Postgres and I dont know how to translate this MySQL query to postgres:
SELECT pictures.id, MATCH (title, cached_tag_list) AGAINST ('phrase') AS score FROM pictures WHERE MATCH (title, ...
1
vote
2answers
439 views
When to use geometric vs arithmetic mean?
So I guess this isn't technically a code question, but it's something that I'm sure will come up for other folks as well as myself while writing code, so hopefully it's still a good one to post on SO.
...
1
vote
1answer
1k views
Java: How to check the random letters from a-z, out of 10 letters minimum 2 letter should be a vowels
I am writing a program to validate the following scenarios:
Scenario 1:
I am using the Random class from java.util. The random class will generate 10 letters from a-z and within 10 letter, minimum 2 ...
1
vote
7answers
467 views
Assign places in the rating (MySQL, PHP)
I have a MySQL database with the following columns:
id company rating_score rating_place
I have companies and rating scores for each company. So, my db looks like:
id company ...
1
vote
2answers
316 views
Calculate score in a pyramid score system
I am trying to calculate gamescores for a bunch over users and I haven't really got it yet. It is a pyramid game where you can invite people, and the people you invite is placed beneth you in the ...
0
votes
0answers
18 views
Platform for comparing stats with friends in a non-game app
I'm working on an app which walks the user through various exercises. It records which exercises they do and for how long, and allows them to share that information using Facebook and Twitter, as well ...
0
votes
0answers
57 views
Using the Facebook scores and achievements API with test or insight users
I'm developing an application for a University study, in which I'm posting scores and achievements to the API, I was wondering if it's possible to compare scores among the test or insight users using ...
0
votes
3answers
30 views
Total up values of table cell but only one value is allowed per row
I'm trying to create a scorecard program which allows the user to select cells of a table and gauge a score, I'm at a point where I can add each score the user clicks (admittedly in probably a very ...
0
votes
0answers
56 views
XNA Hi-Score Screen that never updated
right now my problem comes from my high score display.
this is how my code are :
public class HiScoreScreen : GameScreen
{
Texture2D ScoreBG;
Texture2D backButton;
Texture2D ...
0
votes
0answers
79 views
Facebook Score API on iOS
I'm trying to post a high score to the graph api in iOS, but having no luck getting past all the token stuff. I've modified the iOS library to store the app token and the user token and I swap the ...
0
votes
0answers
38 views
Scores API not available to JS SDK?
I've been through every piece of relevant documentation and the few sparsly commented questions regarding the Scores API and the JS SDK. Is this even possible, or am I wasting time trying to get this ...
0
votes
0answers
37 views
I can't seem to update scores
I'm doing a post request to "https://graph.facebook.com/USER_ID/scores? score=USER_SCORE&access_token=APP_ACCESS_TOKEN"
With the right User_id, the right App Access token (not the user access ...
0
votes
0answers
102 views
Using Facebook scores API in an Android App?
I am integrating the scores API for facebook in an Android game. I had the exact same problem as this question: Facebook Graph API Explorer won't POST scores. The fix was to set my app as Web ...
0
votes
1answer
41 views
Tanimoto vector comparison algorithm
What Tanimoto comparison algorithm is exactly doing? How can we use this for comparing with weights?
0
votes
1answer
37 views
FullText search MYSQL
so I am trying to make a simple search engine, that allows a user to search username, email, firstname and lastname.
However everytime I run the following it only returns russell.harrower instead of ...
0
votes
0answers
247 views
Using correct app access token still receive (#15) This method must be called with an app access_token cannot find help or answer anywhere
Hi guys this is my first post in here hope someone can help.
Using correct app access token still receive (#15) This method must be called with an app access_token cannot find help or answer ...
0
votes
0answers
72 views
Can't update score of any other user but myself
This is my first attempt to write a game app. It is a simple quiz that generates a score in the end.
I have the app in sandbox mode and I have two test users (real people, not test accounts) on top ...
0
votes
1answer
58 views
How to safe game scores per level on Facebook?
I have a facebook app defined as game and I want to save the users score, time and rating for each level. Is this possible at all?
I've been reading about saving highscores on Facebook, but couldn't ...
0
votes
0answers
52 views
How to get more than one score using scores api?
I'm testing facebook's scores api.
So far, i can set a score and retrieve it.
To set a score, I use "/[your id]/scores" through POST method
To retrieve, I use the same api through GET method
When I ...
0
votes
2answers
338 views
How to solve 'This method must be called with an app access_token' error?
I'm testing out scores api on my test app.
So...I've singed up my app with the following permissions.
publish_stream,
publish_actions,
user_status,
user_photos
After logged in, I'm requesting the ...
0
votes
2answers
59 views
How can I keep user scores inside my iPhone App?
I'm working on a game, but I'm having trouble trying to set the scores and keeping them in a table. What I've done is I've made it to where my game runs a method at the end of every level to check ...
0
votes
1answer
62 views
User scores Object and App scores Object
With the new Scores and Achievements roll-outs I have the following questions
Is there a difference between the user's scores object and the
app's scores object for the user?
Does setting one affect ...
0
votes
1answer
259 views
AS3 Flash api not setting game category app score - acces token error
Hope it's not a very noobish question i'm asking :) -
I'm trying to set the score parameter for my app ( Game category app ) with the AS3 Flash API ( Which i see is a wrapper around JS Api ) but i ...
0
votes
2answers
94 views
How to assign a float to a int64_t
To upload a score to the game center, they require you to have a value which is of type int64_t.
Is there a way to simply convert my float to int64_t?
I have built my whole game around the score ...
0
votes
1answer
126 views
MySQL: Why score is always 1 in Fulltext?
If I run this query and print the score of each rows, they are always 1:
Here are some sample query results:
First | Last | Score
------------------------------
Jonathan | Bush | 1
...