Tagged Questions

2
votes
1answer
36 views

Android TextView’s subscript being cliped off

The Android TextView clips off my text subscripts (see image below) even when I use android:layout_height="wrap_content" for the TextView. Is there a fix/work-around for this? P …
2
votes
4answers
106 views

Can I use Perl’s map with an array slice?

I'm just trying to shorten a line of code that assigns HTML::Element->as_trimmed_text from an array of HTML::Elements to some variables - pretty standard stuff like: my ($var1, va …
3
votes
1answer
28 views

how can you know if a problem(or lack of feature) on a certain software is a business case or technical one?

after some googling-fu on making subscript text in crystal report, i found this, this and numerous others. my question is, how can you know if a problem(or lack of feature) on a …
3
votes
3answers
240 views

Overloading operator [] for a sparse vector

I'm trying to create a "sparse" vector class in C++, like so: template<typename V, V Default> class SparseVector { ... } Internally, it will be represented by an std:: …
1
vote
1answer
207 views

Mixed Merge in R - Subscript solution?

Note: I changed the example from when I first posted. My first example was too simplified to capture the real problem. I have two data frames which are sorted differently in one …
0
votes
2answers
336 views

How to print subscripts/superscripts on a CLI?

Hello there, I'm writing a piece of code which deals with math variables and indices, and I'd need to print subscripts and superscripts on a CLI, is there a (possibly cross-platfor …