A program or routine that blocks access to data that meet a particular criterion. An example would be a "Web filter" that screens out adult websites.

learn more… | top users | synonyms (1)

46
votes
4answers
26k views

How to make a nice looking ListView filter on Android

I want a nice looking filter for my ListView in Android. How can I do this?
26
votes
7answers
7k views

Python HTML sanitizer / scrubber / filter

Does anyone have experience using a Python HTML sanitizer / scrubber / filter? I'm looking for a module that will remove any HTML tags from a string that are not found in a whitelist. Of course I've ...
21
votes
3answers
10k views

Django filter — How do I go about filtering for empty or NULL names in a queryset

I have first_name, last_name & alias (optional) which I need to search for. So, I need a query to give me all the names that have an alias set. Only if I could do: Name.objects.filter(alias!="") ...
18
votes
3answers
15k views

Find all elements on a page whose element ID contains a certain text using jQuery

I'm trying to find all elements on a page whose element ID contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly ...
17
votes
4answers
6k views

R - remove rows with NAs in data.frame

I'd like to remove the lines in this dataframe that contains NAs across all columns. Below is my example data.frame. gene hsap mmul mmus rnor cfam 1 ENSG00000208234 0 NA NA NA ...
15
votes
7answers
1k views

What are the best PHP input sanitizing functions?

I am very new to PHP/programming, with that in mind I am trying to come up with a function that I can pass all my strings through to sanatize. So that the string that comes out of it will be safe for ...
15
votes
6answers
5k views

How do I reset or override IE CSS filters?

I'm using the proprietry MS 'filter' property to try and create a non ugly equivelant to css3 text-shadow and box-shadow; I was actually doing really well until i hit this problem. It looks like when ...
15
votes
10answers
2k views

Profanity Filtering / Profanity Dictionaries / Scunthorpe Problem / Profanity Generation

Here's a clbuttic question. I collect code that attempts to do profanity filtering. I personally like profanity, and whenever possible try to talk everyone out of using profanity filters. The filters ...
14
votes
6answers
7k views

How can I filter a date of a DateTimeField in Django?

I am trying to filter a DateTimeField comparing with a date. I mean: MyObject.objects.filter(datetime_attr=datetime.date(2009,8,22)) I get an empty queryset list as an answer because (I ...
13
votes
5answers
593 views

Target only high-resolution (pixels) devices on Android Market

I want to publish an application that specifically runs only on 800x480 or higher screens. I don't want users with 480x320, 320x240 etc devices to get it from Android Market. How do I configure it? ...
13
votes
4answers
7k views

filter and sort list using google collections

Suppose I have a list (or Set): List<String> testList = Lists.newArrayList("assocX","srcT","destA","srcX", "don't care Y", "garbage", "srcB"); I would like to get back an ImmutableList(Set) ...
12
votes
3answers
541 views

Django admin filter using F() expressions

does someone know how to filter in admin based on comparison on model fields - F() expressions? Let's assume we have following model: class Transport(models.Model): start_area = ...
12
votes
3answers
2k views

Jquery: get ancestors (or descendants) and self

One can use matchedset.find(selector) / matchedset.parents(selector) to get the descendants/ancestors of the current matched set filtered by a selector, but that doesn't include the matched set itself ...
12
votes
1answer
2k views

C# - How to allow multiple filetypes in an OpenFileDialog?

I knew this once but I keep forgetting; How do I allow multiple filetypes in one filter entry of the OpenFileDialog? Text files|*.txt // this is OK. Text files|*.txt,*.text // how do I ...
11
votes
2answers
376 views

What is the best way pre filter user access for sqlalchemy queries?

I have been looking at the sqlalchemy recipes on their wiki, but don't know which one is best to implement what I am trying to do. Every row on in my tables have an user_id associated with it. Right ...
11
votes
2answers
8k views

WPF's ICollectionView.filter with large sets of data

I'm working on an wpf app which contains a listview with quite a lot of data (10 000 to 100 000) rows. The user can apply all sorts of filters to this listview making the filter logic quite advanced ...
10
votes
1answer
450 views

How do I easily convert from one collection type to another during a filter, map, flatMap in Scala?

Suppose I have a List[Int], and I want to call toString on each element, and get back the result as a Vector[String]. What are the various ways to do this in Scala? Is there a solution with a minimal ...
10
votes
4answers
1k views

Brightness Screen Filter

Does anyone have an idea how to implement an Brightness Screen Filter like the one here: http://www.appbrain.com/app/screen-filter/com.haxor I need a starting point and I can't figure out how to do ...
10
votes
4answers
1k views

What’s the best profanity filter which supports Java integration?

What is the best profanity filter (free / open source or paid commercial) which supports Java integration? It needs to be able to take a string and return a clean string... Can be a web service and ...
10
votes
3answers
3k views

jQuery - filter element based on .data() key/value

Say I have 4 div elements with class .navlink, which, when clicked, use .data() to set a key called 'selected', to a value of true: $('.navlink')click(function() { $(this).data('selected', true); }) ...
10
votes
8answers
5k views

In Python, How Do You Filter a String Such That Only Characters in Your List Are Returned?

Imagine a string, like 'Agh#$%#%2341- -!zdrkfd' and I only wish to perform some operating on it such that only the lowercase letters are returned (as an example), which in this case would bring ...
9
votes
5answers
3k views

Android LogCat Filter for multiple tags in Eclipse

Clicked on create filter could not figure out from docs how to create a filter for say two or more tags. If I have two tags com.test.TestClassA and com.test.TestClassB how do I create a filter that ...
9
votes
4answers
413 views

Scala: Filtering based on type

I'm learning Scala as it fits my needs well but I am finding it hard to structure code elegantly. I'm in a situation where I have a List x and want to create two Lists: one containing all the elements ...
9
votes
5answers
460 views

Better way to implement filtered enumerator on TList<TMyObject>

Using Delphi 2010, let's say I've got a class declared like this: TMyList = TList<TMyObject> For this list Delphi kindly provides us with an enumerator, so we can write this: var L:TMyList; ...
9
votes
1answer
7k views

How to filter the jqGrid data NOT using the built in search/filter box

I want users to be able to filter grid data without using the intrinsic search box. I have created two input fields for date (from and to) and now need to tell the grid to adopt this as its filter ...
9
votes
5answers
10k views

XSS filtering function in PHP

Does anyone know of a good function out there for filtering generic input from forms? Zend_Filter_input seems to require prior knowledge of the contents of the input and I'm concerned that using ...
9
votes
6answers
3k views

filter to reverse lines of a text file

I'm writing a small shell script that needs to reverse the lines of a text file. Is there a standard filter command to do this sort of thing? My specific application is that I'm getting a list of Git ...
8
votes
1answer
173 views

R: how to efficiently filter a data frame?

I have a data frame and tried to select only the observations I'm interested in by this: data[data["Var1"]>10] Unfortunately, this command destroys the data.frame structure and returns a long ...
8
votes
4answers
404 views

python equivalent of filter() getting two output lists (i.e. partition of a list)

Let's say I have a list, and a filtering function. Using something like >>> filter(lambda x: x > 10, [1,4,12,7,42]) [12, 42] I can get the elements matching the criterion. Is there a ...
8
votes
5answers
2k views

List filtering: list comprehension vs. lambda + filter

I happened to find myself having a basic filtering need: I have a list and I have to filter it by an attribute of the items. My code looked like this: my_list = [i for i in my_list if i.attribute == ...
8
votes
1answer
2k views

How to override filter in android's ArrayAdapter?

I have an ArrayAdapter wrapped around an ArrayList of custom objects. I'd like to write a custom filter for that adapter so that when I call getListAdapter().getFilter().filter("abc") the list will ...
8
votes
4answers
7k views

Efficiently filter an ArrayList in Java/Android

I'm developing an Android app (Android 1.6), but this is probably a more general Java question. I have an ArrayList of about 10,000 objects the objects contain 3 strings (firstName, middleName, ...
8
votes
6answers
1k views

When to filter/sanitize data: before database insertion or before display?

As I prepare to tackle the issue of input data filtering and sanitization, I'm curious whether there's a best (or most used) practice? Is it better to filter/sanitize the data (of HTML, JavaScript, ...
7
votes
3answers
180 views

Number of elements in Haskell in pointfree style

I want to define a function that computes the number of elements in a list that satisfy a given predicate: number_of_elements :: (a -> Bool) -> [a] -> Int number_of_elements f xs = ...
7
votes
4answers
213 views

Writing “wc -l” using Iteratee library - how to filter for newline?

I am trying to come up with equivalent of "wc -l" using Haskell Iteratee library. Below is the code for "wc" (which just counts the words - similar to the code in iteratee example on hackage), and ...
7
votes
2answers
4k views

How to Calibrate Android Accelerometer & Reduce Noise, Eliminate Gravity

So, I've been struggling with this problem for some time, and haven't had any luck tapping the wisdom of the internets and related SO posts on the subject. I am writing an Android app that uses the ...
7
votes
2answers
536 views

Simulating color stops in gradients for IE

I want to give a div a gradient with multiple color-stops, which IE's filter property does not support. Anyone have a creative workaround to simulate the color stops in IE? I already thought of ...
7
votes
2answers
1k views

iphone low pass filter

I'm trying to implement a low-pass filter for an iphone app where I record a sound and then it gets played back slightly muffled; like the voice is coming from another room. I've looked into the ...
7
votes
3answers
1k views

ASP.NET MVC Pass object from Custom Action Filter to Action

If I create an object in a Custom Action Filter in ASP.NET MVC in public override void OnActionExecuting(ActionExecutingContext filterContext) { DetachedCriteria criteria = ...
7
votes
2answers
3k views

Grails filter syntax, or, How to call a Grails Filter outside Grails

Grails provides filters that run before your controllers. They're defined in classes that look like this: class SecurityFilters { def filters = { myFilter(controller:'*', action:'*') { // ...
7
votes
2answers
1k views

boost::filter_iterator — how would I do that with the STL?

I am passed an Iterator and I have to pass it on to another function -- but filtered so that certain elements are skipped (it's a range of pointers, and I want to filter out the NULL pointers). I ...
7
votes
9answers
17k views

What's the CSS Filter alternative for Firefox?

I'm using CSS Filters to modify images on the fly within the browser. These work perfectly in Internet Explorer, but aren't supported in Firefox. Does anyone know what the CSS Filter equivalent for ...
6
votes
5answers
63 views

oracle : how to ensure that a function in the where clause will be called only after all the remaining where clauses have filtered the result?

I am writing a query to this effect: select * from players where player_name like '%K% and player_rank<10 and check_if_player_is_eligible(player_name) > 1; Now, the function ...
6
votes
2answers
334 views

Scala: filtering a collection of Options

Say I have a function that checks whether some operation is applicable to an instance of A and, if so, returns an instance of B or None: def checker[A,B]( a: A ) : Option[B] = ... Now I want to ...
6
votes
4answers
105 views

Removing elements from an array whose value matches a specified string

I have an array that looks like this: Array ( [0] => Vice President [1] => [2] => other [3] => Treasurer ) and I want delete the value with other in the value. I try to use array_filter to ...
6
votes
3answers
512 views

Diagonal Gradient in IE

Is there a way to have a diagonal gradient in IE? In Chrome I could do something like this: body{ background-image:-webkit-gradient( linear, left top, right bottom, ...
6
votes
3answers
213 views

Design pattern for blocking undesirable content

Last year I was working on a Christmas project which allowed customers to send emails to each other with a 256 character free-text field for their Christmas request. The project worked by searching ...
6
votes
1answer
662 views

Using Internet Explorer filters and ClearType

I've read at length about issues with IE disabling ClearType when using filters, and I'm hoping that my conclusions are wrong. It seems that it is impossible to turn ClearType back on after applying ...
6
votes
2answers
563 views

I need to make a SVM in weka to filter documents using Java

I am an absolute beginner. Never made a classifier or anything in weka using Java I have used the interface before. Basically I am kind of lost I've looked at the filter class for weka and played ...
6
votes
4answers
1k views

Using strides for an efficient moving average filter

I recently learned about strides in the answer to this post, and was wondering how I could use them to compute a moving average filter more efficiently than what I proposed in this post (using ...

1 2 3 4 5 54