Unanswered Questions
7,253,592 questions with no upvoted or accepted answers
36
votes
3
answers
2k
views
How can I skip the first occurrence of a repeating UNCalendarNotificationTrigger?
Say today is a Monday and it's 1 PM. I want to schedule a weekly local notification from my iOS app starting today at 2 PM. I'd do this:
NSDateComponents *components = [[[NSDateComponents alloc]init]...
36
votes
0
answers
767
views
Writing Coverity model: pointer in struct ALWAYS points to tainted data
I reguarly check lwIP, a free TCP/IP stack with Coverity.
As a network stack, we have untrusted data coming in from the network which is stored in struct pbuf (some members omitted for clarity):
...
36
votes
0
answers
7k
views
What happen to SketchFlow and what we should use instead?
What is the new Microsoft way of UI prototyping since VS2015 doesn't support SketchFlow projects. (I'm having hard time to accept that they removed such a useful tool without providing alternative)
...
35
votes
0
answers
5k
views
Add Xcode Developer Account from the Command Line
I am trying to use xcodebuild -allowProvisioningUpdates on a machine that I only have access via the command line (Azure Devops macOS Hosted Machine).
Unfortunately, according to man xcodebuild in ...
35
votes
1
answer
3k
views
Keyboard cannot present view controllers warning
When tapping the "Passwords" button at the top of the keyboard for login/password Autofill, this warning prints to the console log:
Keyboard cannot present view controllers (attempted to present <...
35
votes
0
answers
2k
views
How does "parallel apps" feature work on OnePlus 3 devices, and how can we use Intents properly with them?
Background
Apps use Intents to open other apps, sometimes with specialized Intents.
One example is this Intent, to choose a contact from WhatsApp:
val WHATSAPP_PACKAGE_NAME = "com.whatsapp"
val ...
35
votes
0
answers
1k
views
Using JQuery Server side datatables in ruby app and pagination shows blank page after 1st page
I am using Jquery Server side datatables and am not able to get the pagination to work on pages 2+.
I have 200 records. The first page shows 50. When I click the pagination numbers at the bottom of ...
35
votes
0
answers
3k
views
Crashing on iOS 11 inside of CFNetwork
I'm seeing dozens of crashes every few hours for an app, solely in iOS 11. The stack trace doesn't help and I've got no clue since the rest of the threads are doing something completely different in ...
35
votes
1
answer
310
views
How do I force the use of the desktop menu when the grid is fluid?
I'm using Drupal 7 and Omega 3. The front page of my website needs an image that covers only the top half of the page, and it needs to expand to full width regardless of the browser size. I found ...
35
votes
1
answer
671
views
UIActionSheet centralisation on rotation
A number of others have asked this question, but it's never been answered. The problem seems trivial and yet it hasn't been addressed in Apple's documentation or elsewhere.
I'm presenting my ...
35
votes
0
answers
410
views
Error while building the whole enchilada in openmobster
cd ~/openmobster-read-only/cloud mvn -DskipTests -Pbuild-all install
Error: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.5:resources (default-resources) on project ...
35
votes
0
answers
773
views
How to get GHCi to load the opengl package under GHC 7.6.1 x86-64 Windows 7?
I can successfully build executables that link against OpenGL using GHC, however, I cannot get the package to load into GHCi. This is definitely a regression for me because it works on 32-bit GHC (at ...
35
votes
2
answers
13k
views
Looking for a Dual Listbox with AngularJS and Bootstrap
I am looking for a component like this to be included in my project:
http://geodan.github.io/duallistbox/sample-100.html
I want to install it with npm.
The problem is that I tested some of the ...
35
votes
1
answer
2k
views
ASP.NET MVCScaffolding is very slow
We try to use ASP.NET MVC Scaffolding (
http://blog.stevensanderson.com/2011/01/13/scaffold-your-aspnet-mvc-3-project-with-the-mvcscaffolding-package , http://mvcscaffolding.codeplex.com/). Great tool,...
35
votes
1
answer
3k
views
Modal BottomSheetDialog with fullscreen ToolBar and Softkeyboard
How is it possible to create a modal BottomSheetDialog(Fragment) which switches to fullscreen with a ToolBar as shown in the Material Design Spec?
I could add a ToolBar manually by adding a ...