The checker tag has no wiki summary.
4
votes
4answers
614 views
What Vim script you recommend for checking Python syntax on the fly?
I have visited Vim website , script section and found several synthax checkers for python. But which one to choose ? I would prefer something that supports python 3 as well, even though I code in ...
3
votes
2answers
468 views
Coding a domain lookup tool
I have been coding a domain checker and really stuck with the php. This is what i have so far:
<?php
set_time_limit(0);
ob_start();
$domain = $_GET['domain'];
########### Extensions to be checked
...
3
votes
3answers
109 views
How to detect a bad way of re-throwing a C# Exception using StyleCop or VS2010?
My colleagues are seasoned C++ hackers switching to .Net. One of the mistakes that they make unintentionally is writing code like this:
catch(ArgumentExcepttion ae)
{
// Code here logs the ...
3
votes
3answers
531 views
CSS Redundancy checker for GWT
In my project i have a lot of css styles. Some of them are never used (not anymore). I check this manually with eclipse: i select text and then with "Search -> Text -> Project" i can find, if this ...
2
votes
7answers
216 views
+100
Status checker for hundreds IP addresses
I wonder how to make a status checker, checking about 500 addresses in a few minutes?
(it'll check a certain port if its listening).
But I care about the performance... so I don't know if it can be ...
2
votes
1answer
15 views
iGoogle Gadget Checker throws error on for loop
I'm trying to put a for loop in my google gadget definition, but iGoogle Gadget Checker throws an error on a simple for loop.
Does anyone have any experience with this? Should I be using a different ...
2
votes
2answers
722 views
Link Checker (Spider Crawler)
I am looking for a link checker to spider my website and log invalid links, the problem is that I have a Login page at the start which is required. What i want is a link checker to run through the ...
1
vote
1answer
56 views
Password-checking with prolog
I want to write a prolog program which tells me if a password fulfills the rules, which are:
the password must contain a letter(a-z),
a number(0-9),
a double letter (aa,ll,ww etc.),
must start with ...
1
vote
1answer
141 views
link checker for hotfile, rapidshare
i have over 20k links to check.
those are rapidshare and fileserve links.
right now i'm using 'file_get_content' and check if a fileserve link content contain 'This file was either in breach of a ...
1
vote
1answer
286 views
Integrating JavaScript Lint in Notepad++
Followed directions in Using JSLint in Notepad++. Using JavaScript Lint (not JSLint).
I am using jQuery library. How do you ignore the 300 jQuery warnings?
1
vote
3answers
382 views
online encoding checker tool
I am looking for a tool buy which i can identify the exact encoding of input file.
please suggest any online encoding checker tool,
Thanks
0
votes
1answer
42 views
How to add a reciprocal link checker in PHP e-mail script
I have a php e-mail script which I am using for my website where users can submit their website. I wish to add a reciprocal link checker script which can be act just like Google rEcaptha in my php ...
0
votes
0answers
76 views
tinymce, ajax and spell checking
I have tinymce and ajax incorporated in a form where the data saves as you type.
With ajax when the user types the data is continuously saved for them. The field usually contains just a few words.
...
0
votes
0answers
115 views
How can I get aYahoo Messenger Invisible Checker PHP Script?
I really need a php script that checks invisibles on Yahoo messenger....
some websites that does this are listet below:
http://www.imvisible.info/
http://ystats.in/
If anyone can give me a php script ...
0
votes
1answer
98 views
Dependencies Checker Diagnostics utility using C#
Update:
I want use any WinForms application to validate my computer configuration and diagnostics utility that can be ran by an end user or by technical support personnel to determine whether a ...
0
votes
1answer
58 views
A website sells three types of components. What's a good way to make an interactive component compatability checker for visitors?
A company sells a variety of component As, a variety of component Bs and a variety of component Cs (for example CPUs, motherboards and RAM). They want some kind of web app that allows a visitor to ...
0
votes
1answer
241 views
USACO: Task Checker Challenge
I am doing the USACO checker problem, and gosh I am on the verge of pulling my hair out! I have a solution but it is off by about .3 seconds for the last test case (n=13). Is there any way the program ...
0
votes
1answer
234 views
socks4/5 proxy checker in perl?
does anyone have an example? ive been searching google but cant find anything.
0
votes
2answers
308 views
Simple Model Checker Tool
Is there a simple Model Checker tool. I am planning to implement a model checker tool which will analyze the code for some of the predefined properties.
-1
votes
1answer
44 views
Coverity reference function inputs for a custom checker
Is there a simple way to take the general arguments of a function (Pointer, Array, Integer) and get the values backing the expression, when writing a custom checker? As in, I match against a function ...