Detect relates to discover or identifying the presence of.
0
votes
3answers
42 views
PHP explode to detect username
I'm trying to build a PHP code to detect a twitter-like mention, but rather than linking to the @username, I'm locating the user's ID and referring to that.
function ...
2
votes
3answers
52 views
Count <img> within a <p> with no id or classes
I was wondering if there is a way of counting <img> tags uploaded by users before a <hr> tag with no id or class(es).
Here's my code so far:
var num = $('#content img').length;
...
0
votes
0answers
20 views
Detecting Unrecognized (codepage-unicode) Characters in a string
How do you detect an unrecognized code page character in a string in vb.Net? These charaters usually show up in a default character such as "?" or a square when the current code page can not recognize ...
1
vote
1answer
17 views
Detect a specific html entity character and replace it with another one
Using Javascript, I want to test for the presence of a right arrow character ⇒ in a string and replace it by a down arrow character ⇓
Basically, do something like this:
if ( ...
0
votes
3answers
36 views
How to detect an iOS App has been re-installed (from XCode) or upgraded (from AppStore)
An app we are developing uses a binary file included in the app bundle.
As this file needs to be processed and in some cases re-written, the app copies this file into the Library/Application Support ...
3
votes
1answer
39 views
Detect if power cable unplugged even when no power
Is there a way to detect if the power cable gets unplugged even if it's not plugged into a power source? For example, I plug in my phone to it's power cable prior to plugging it into the wall outlet.
...
2
votes
2answers
127 views
How to check if iPhone is jailbroken or not, from terminal on a Mac?
I would like to execute some scripts on my Mac, to which an iOS device is connected. The intent of the script would be to identify whether the connected device is jailbroken or not. Would be great if ...
2
votes
1answer
38 views
Regex for Hebrew, English, Symbols
as part of a small program i'm writing i need to filter a String input that might be "gibrish" (any sign in UTF8)
the input can be hebrew and/or english but also have all the normal signs like : ...
0
votes
1answer
26 views
Detect when <iframe> parent element changes from hidden to shown
How can I detect when an iframe is shown from hidden element ?
HTML :
<div style="display:none">
<iframe></iframe>
</div>
So when I show the <div> by jQuery via ...
0
votes
0answers
25 views
how to determine serial frequency notes of an audio recorded file 3gpp, amr, aac in Android
I'm new here.. can anybody help me with some tutoring about codes of how to create a simple frequency note detector from an audio file in Android. I'm trying to make an Android app to record ...
0
votes
0answers
43 views
Detect available HDMI source(s) programatically (PC)?
Here on Stack Overflow, we have a question like this:
Detect HDMI connection
Unfortunately, it deals with Android only. Now, is there any chance of detecting HDMI source on PC, like in C/C++? Are ...
1
vote
1answer
25 views
WPF GUI application is close with power failure,can i detect the last datetime when it ws unexpected interruption?
i need that last datetime when app was closed..i have the starting time but do not have the last date time which i am using in my application for user..because of unexpected power failure or any other ...
-2
votes
1answer
24 views
Android details viewing
I am developing an app that providing details about a city. When the user selects any of the city from the first page, the page has to direct to the next page..in that page the details of city has to ...
0
votes
1answer
41 views
Change banner depending on country
I want to show india.jpg if country is India and show srilanka.jpg is country is Srilanka.
This detects my country
alert("Your location is: " + geoplugin_countryName() + ", " + geoplugin_region() + ...
0
votes
1answer
26 views
Conditional stylesheets. I need to style according IE versions and having
Hi,I wrote a condition stylesheet, and I couldn't find condition for IE7-IE7.9
I wrote these:
• equal to IE6 or less than IE6 .. => [if lte IE 6]
• IE7-IE7.9 .. => [??]
• equal ...
0
votes
0answers
10 views
Firefox Site Pinning
Is it possible to detect if your site is pinned in Firefox just as it is possible to do so in Internet Explorer 9 and above? If so, how do you do it?
Thanks in advance!
-3
votes
1answer
53 views
What is battle formula of strategy game? [closed]
i try to find an algorithm for strategy game battles like travian or lord of ultima or ... but every program that i wrote it had bug for calculating dead Soldiers, some examples of this critical ...
0
votes
1answer
40 views
Detect the closure of an application Android
I making a module that is integrated into an application so I can't use OnDestroy function to kill my CountDownTimer.
I want to detect when an application is closing because I use a CountDownTimer to ...
0
votes
0answers
18 views
Detecting if Browser supports canplaythrough
I've got an issue at the moment, that some browsers do not seem to be playing a video when I wrap the play method inside an eventListener for the "canplaythrough" event.
My Code is
...
1
vote
0answers
244 views
Haar Cascade vs Hog Detection
I have been working around with OpenCV for few days now and I have a project where I should detect cars and humans from the sky.
So here are my inputs:
A moving camera in the sky (embedded on a ...
0
votes
1answer
38 views
How to check the uploaded file for image
I know methods with getimagesize and Fileinfo extension in PHP, but all of them requires some libraries(GD or Fileinfo).
I find this code for detect image from provided file:
function ...
2
votes
2answers
159 views
Detecting a radiobutton change
I have about 50 radiobuttons on one form and I don't want to create an if statement for each one to detect when one changes, they are not part of a group box. How would I detect if any radiobutton ...
2
votes
0answers
110 views
Cascade Classifier Method
I want to use the Cascade Classifier Method to compare a found round shape (from the image set where a face has been detected) and a reference circle that I define first so that I can match those two ...
0
votes
1answer
27 views
Script/code to detect screen dimensions
I have a div on my page containing images. As it is 800px high and situated 400px from the bottom of the page, my images are getting cut off from the top when viewed on smaller monitors. I am not ...
0
votes
0answers
34 views
Detect an iframe click and forward to url
I have an iframe and when someone clicks it I want it to go to my desired url location. Please give me a full code and explain how to use it. Now the iframe is not a page on my domain its a youtube ...
0
votes
1answer
80 views
Detect Click On Iframe Then Do An Action
I want to add a iframe to my website that has a button in it and when someone clicks on it, it does an action like maybe forward to another page or echo a message. I don't care about the code whether ...
0
votes
0answers
37 views
How to detect shake event [duplicate]
I have extensively searched the internet to find my answer but no luck. I was wondering if it was possible to shake the android device and have the phone recognize it. After the phone recognized it, ...
-4
votes
2answers
51 views
Normal, tablet and mobile website [closed]
For my arcade website I had designed many HTML5 games.
Some are for mobile phones and some are for tablets.
My plan is to create two extra versions of my website so I will have:
- website.com
- ...
-1
votes
3answers
54 views
How to detect when the browser is too small and then tell visitors to enlarge browser to continue?
Is it possible to create a jquery script, there can detect when the browser is to small and then tell your visitors to enlarge browser to continue?
Does anyone know a jquery script for that?
0
votes
0answers
85 views
cvMatchTemplate JavaCv
I have a problem with cvMatchTemplate in javacv. Can I detect couple the same object with this method? for example :
http://www.1manband.nl/sheetmusic/auld%20lang%20syne.jpg
and I want detect treble ...
0
votes
2answers
145 views
Detect OS, Browser, Adobe Reader, Bandwidth, etc [closed]
Basically, I am trying to create a compatibility test for some online programs, and I would like the user to see if they are compatible with the system I have in place sort of like it is found here.
...
1
vote
1answer
169 views
Detect if running inside PhoneGap/ Cordova
There has been a few questions how to detect an HTML page is running inside a device as a phonegap application.
Most of the solutions (here and here) have been
Detect if browser agent is ...
0
votes
1answer
71 views
OutOfMemoryError - from detect UTF-8 encoding
This class should check currentFile and detect encoding. If result is UTF-8 return true.
Output after runnig is - java.lang.OutOfMemoryError: Java heap space.
For read data you need have JDK 7 ...
4
votes
1answer
59 views
Upgrading from PHP 5.2 to PHP 5.3 - Backward Incompatible Changes - How to detect easily?
I am looking to upgrade a large PHP website from 5.2 to 5.3 and potentially beyond afterwards.
The inherited codebase I am working on is very large, 800,000+ lines of code, and for the most part ...
0
votes
1answer
23 views
Old Mobile Agents
I have a responsive website and I have a problem with old devices!
I want to design a basic web page for mobile users,therefor, I need to detect old moblies firt,so I need old mobile agents!
Finally I ...
0
votes
1answer
148 views
php: replace url by link unless its a picture tag
I use a script which detects a url in a string and replaces it with an anchor tag:
$string = preg_replace("/([^\w\/])(www\.[a-z0-9\-]+\.[a-z0-9\-]+)/i", "$1http://$2",$mytext);
$string = ...
0
votes
1answer
227 views
Redirecting a mobile user to a desktop version
I have a Wordpress website that is using device detection to redirect users browsing on their mobile device to a specific page using the following:
<script>
if( ...
1
vote
1answer
117 views
Detect whether iPhone/iPad device/simulator is connected/running on a Mac, using shell or python?
I am working on a tool for jailbroken iDevices. This tool will be run on a mac OS 10.8. Here's what I would like to achieve: When i run the tool (preferably sh or py or some script) it should be able ...
1
vote
1answer
23 views
spotting the point at which data stabilises using standard Bash utilities
I have a set of data (two columns of CSV numbers) which varies quite a bit initially and then stabilises around a certain number. I'm trying to spot the point at which the graph first seems to ...
1
vote
1answer
148 views
UserAgent Switcher to mobile web
I am using javascript as useragent to redirect main website to mobile website. but i can not switch to desktop view in mobile device.
Any ways to redirect to the main website on mobile device by ...
0
votes
1answer
79 views
How to detect scroll to bottom
This is code that detect if user is scroll to bottom.
$(window).scroll(function() {
var distance = $(window).scrollTop() -$(document).height() + $(window).height();
console.log(distance);
});
...
0
votes
2answers
168 views
Extract numbers from specific image
I am involved in a project that I think you can help me. I have multiple images that you can see here Images to recognize. The goal here is to extract the numbers between the dashed lines. What is the ...
1
vote
2answers
215 views
jquery detect window resize
I have a question about a site I'm working on regarding detecting when the window is resized. I know this has been discussed previously and I've read through many of the discussions and just couldn't ...
0
votes
0answers
23 views
Throttle Stream When Browser Minimized?
We have several live streams that we offer in high- and low-bandwidth versions. The problem we've run into is that we know people are clicking on the high-bandwidth option and then minimizing their ...
0
votes
2answers
53 views
iOS - UITableView Detect When Finger Crosses Keyboard While Scrolling
I have a feature in my app very similiar to the native Messages app. I like how the keyboard gets hidden when the messages table is scrolled and your finger crosses the keyboard UI.
I want to mimic ...
0
votes
0answers
121 views
iOS detect token action on downloading native App through UIWebView
When i'm downloading with wireless AdHoc Distribution through a UIWebview:
ae.
( <a ...
0
votes
1answer
64 views
Is there a way to prevent email detection with javascript
I'm going to try to describe this the best I can. I have a form that the user fills out, when it confirms the users info, it then prints it out on a table, and the user may edit it directly on the ...
0
votes
2answers
109 views
Check if my div contains a special image
I would like to add a background-image to a div if this div contains an special image. I give you an example
<ul>
<li><img src="image1"/></li>
<li><img ...
1
vote
1answer
120 views
T-SQL Detect the type of the columns that store procedure returns
I am not going to deep into the details but I need a way to determined the type of the return columns by store procedure.
Is there a way to achieved that and I do not look for a solution that works ...
0
votes
0answers
40 views
Detect form redirect, change output depending on results
I've developed a third-party iWebkit 5 app for a web service which previously had no iPhone support. At one point a form in the app uses POST to send data to an external web server, and depending on ...





