Unanswered Questions
7,253,587 questions with no upvoted or accepted answers
118
votes
0
answers
4k
views
Android ndk gdb loaded shared libraries are missing *.oat
Both gdb 7.7 and gbd 7.11 missed some shared libraries when debugging my device (oppo r7s). I've pulled all libraries to local.
Here is a complete list of libraries shown by info shared
(gdb) info ...
81
votes
0
answers
2k
views
swf respondDecisionTaskCompleted call, response time degrade overtime
We have a decided worker running and as the time goes we noticed the response time of the respondDecisionTaskCompleted call was getting slower and slower.
We tried using the same instance of the SWF ...
69
votes
0
answers
2k
views
How do I write a TDBCtrlGrid VCL Style custom class?
There are lots of questions here about XE2 VCL Styles and custom colors for Buttons, Panels, edits, etc, and VCL Styles. As much as I wish the existing questions covered it, they don't... So DB ...
66
votes
1
answer
2k
views
Materialize the Value for a Type that has One Inhabitant
Thanks to @MilesSabin's answer I can write a type level Fibonacci sequence:
sealed trait Digit
case object Zero extends Digit
case object One extends Digit
sealed trait Dense { type N <: Dense }
...
58
votes
0
answers
2k
views
Per-element atomicity of vector load/store and gather/scatter?
Consider an array like atomic<int32_t> shared_array[]. What if you want to SIMD vectorize for(...) sum += shared_array[i].load(memory_order_relaxed)?. Or to search an array for the first non-...
57
votes
0
answers
1k
views
Use the `pos` argument in Rgraphviz to fix node position
Based on this question Automatically curving an arc when it is overlapping with another one, I am trying to set the pos attribute in a RGraphviz plot.
Can someone show how to correctly use the pos ...
53
votes
0
answers
2k
views
How to make a composite manifest for Microsoft smooth streaming
I am new to Microsoft Smooth Streaming and have questions about the making of composite manifests.
Following the guidance from here.
I was able to make a composite manifest of a single clip element ...
53
votes
2
answers
2k
views
iOS SecTrustRef Always NULL
I'm trying to connect an iOS app to a Windows C# sever using TLS over TCP/IP.
The TLS connection is using untrusted certificates created from an untrusted CA root certificate using the makecert ...
53
votes
2
answers
3k
views
Chrome custom tabs not opening other apps
The Chrome custom tabs doesn't seem to launch other apps by deeplinking.
For example a PayPal payment, when Chrome is launched with this URL. It will ask the user if the URL has to be opened with the ...
52
votes
1
answer
344
views
View Product Quantity based on Base UoM and Purchase UoM in OpenERP 7
I am using different units of measure for the same products. Say 1 mL as a base unit of measure, 1 Litre can as purchase unit of measure.
Is it possible in OpenERP7 to view the product quantity ...
51
votes
2
answers
9k
views
Creating meta tags for Linkedin - Publish Date "not found"
I was using the following tags in relation to the posted date of a website (blog) article:
<meta name="article-published_time" property="article:published_time" content="2019-10-21T00:00:00-0600"&...
50
votes
1
answer
902
views
In Websphere Commerce 7, how do I remove the language and store name from an SEO url the correct way?
Currently the client I'm working for is making use of the SEO Friendly urls outlined here:
https://www.ibm.com/support/knowledgecenter/en/SSZLC2_8.0.0/com.ibm.commerce.seositemap.doc/concepts/...
50
votes
1
answer
6k
views
How Windows handles the clipboard interface with Xming?
My question comes from a problem:
I use Xming on Windows 7 to connect to a Linux host (through PuTTY) to start and display a gnome-terminal.
I have some troubles using the Windows clipboard:
Copy ...
49
votes
0
answers
1k
views
How to Update Frames for all Size Classes in a Storyboard in Xcode 6.1?
When working with Storyboard files in Interface Builder on Xcode 6.1, Apple recommends designing for the Any/Any size class. When finished, different size classes sometimes report warnings:
Misplaced ...
49
votes
0
answers
451
views
many parallel applications of a sequential transform in repa
In Repa, I would like to apply a certain d-dimensional linear transform in parallel across the innermost dimension of my array, i.e., on all "column" vectors.
In general, such a transformation can be ...