Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
2k views

Ruby dependency injection libraries

I've been looking at some Ruby dependency injection libraries. In particularly, I checked out Needle and Copland. They've been around for quite awhile, yet not a lot of usages. What are some of ...
2
votes
1answer
134 views

Needle is in haystack but barn door is jammed shut!

The test below returns false ($pos = 0) when $haystack = "my keyword" and $needle = "my keyword", presumably because my stripos test returns 0 since there is no empty space in the barn. What do I ...
1
vote
5answers
408 views

PHP array_search

Is there any function which will accomplish the equivalent of array_search with a $needle that is an array? Like, this would be an ideal solution: $needle = array('first', 'second'); $haystack = ...
0
votes
1answer
147 views

Android Gauge Animation Help

I am new to android and i could really use some help here. I have two images both are PNG one represents a gauges and the second is the needle. I am trying to animate the needle according to speed ...
0
votes
1answer
163 views

Define multiple needles using stripos

How can i define multiple needles and still perform the same actions below. Im trying to define extra keywords such as numbers, numerals, etc... as of now i have to create a duplicate if loop with the ...
0
votes
4answers
120 views

PHP: How do I check the contents of an array for my string?

I a string that is coming from my database table say $needle. If te needle is not in my array, then I want to add it to my array. If it IS in my array then so long as it is in only twice, then I ...