All Questions
0
votes
0answers
2 views
Scaling ASP.NET when using Bearer Tokens
I am building a ASP.NET Web API project that uses OWIN OAuth bearer token custom authentication. I have the API working well for a single machine, but don't really understand how I would scale the ...
0
votes
0answers
2 views
How do I give my player object each a playerID attribute and make them move based on different inputs?
using UnityEngine;
using System.Collections;
public class PlayerController : MonoBehaviour
{
public float speed = 80.0f; // Code for how fast the ball can move. Also it will be public so we can ...
0
votes
0answers
3 views
Array assignments not holding after iterating through and assigning with array.each{ }
I'm trying to make an n-order Markov Chain for predictive text in Ruby. For some reason an array I am using does not hold any assignments after I iterate through it and assign each array element a ...
0
votes
0answers
2 views
Tab Bar Item Stopped Changing ViewController
My TabBarController was working fine. I put custom images and also added a Navigation Bar behind the Tab Bar Controller on the stack. Before it was navigating to VCs when I click on the Tab Bar items ...
0
votes
0answers
1 view
Spring AOP, @JaversAuditable still trying to commit a change when exception has been thrown
This is with Spring 4.1.9.RELEASE, Spring-Data 1.11.4.RELEASE, Javers 1.6.0 with spring integration
So using Spring with @JaversAuditable, I'm finding that if an exception handles when I try and ...
0
votes
0answers
2 views
Give NSTextField Focus When View Loads (so that user can begin typing without having to click the text box)
I want my NSTextField (OS X NOT iOS) to have focus when my view loads so that the user can begin typing without having to click the text box. I created an IBOutlet for my NSTextField and called it ...
0
votes
0answers
2 views
Testing multipart/form-data in with Plug.Adapters.Test.Conn
Here is the sample code I am working with:
@body """
--13eba0c1a6344d0ca6850a87303ced0f
Content-Disposition: form-data; name="exists"
overwrite
--13eba0c1a6344d0ca6850a87303ced0f
...
0
votes
0answers
2 views
Parsing dynamic JSON with Newtonsoft.JSON is missing array in the deserialized object
First off: apologies for ill-formatted code blocks. Not sure what's up with my paste that the code block is getting messed up.
Question: When I get to the third loop, it blows up because it can't ...
0
votes
0answers
2 views
Multiple Counters C# - How to mimic in VBA? j = i++
I am trying to understand what the following loop is saying so that I can convert this to VBA:
for ( int i = 0, j = polygon.Length - 1 ; i < polygon.Length ; j = i++ )
What is the equivalent of ...
0
votes
0answers
2 views
Why does LogisticAggregator (Spark mllib.ml) not use z-score normalization?
I find LogisticAggregator in Spark.mllib.ml package standardizes feature values by this code : (value / featuresStd(index). It is very similar to z-score normalization. I wonder that Why ...
0
votes
0answers
3 views
Swift - Get a Circular Image in Spotlight Search (i.e. in the thumbnail)
Does anyone have any ideas as to how to go about cropping the image that appears in the spotlight search, so that 'thumbnailData' is a circular image not a square one?
None of these solutions work ...
0
votes
0answers
4 views
Inconsistency in python system function “dirname” on different linux distros
I am dealing with weird problem. Consider this simple code:
print(__file__)
print("***" + os.path.dirname(__file__) + "###")
now when I run this code on my laptop, where I have Fedora 23 OS, the ...
0
votes
0answers
2 views
Storyboarding for iOS and iPad
I'm developing a simple app for the iPhone and was preparing to submit it for review from Apple.
I found out I needed to supply screenshots for the iPad and when I ran the simulator on the iPad ...
0
votes
0answers
6 views
Search key by value in multi dimensional array
Using PHP's website as a reference I'm trying to search for a key of the known value in associative array:
http://php.net/manual/en/function.array-search.php
The following code always returns 1, but ...
0
votes
0answers
6 views
How to convert timespan to datetime
I have 3 datepickers that are on time formats:
Time From, Time To and Duration.
First I need to get the difference of Time From and Time to and display it to the Duration DatePicker.
...