Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

61
votes
20answers
16k views

How do you implement a good profanity filter?

Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be filtered out. Where ...
19
votes
9answers
16k views

Filtering collections in C#

I am looking for a very fast way to filter down a collection in C#. I am currently using generic List<object> collections, but am open to using other structures if they perform better. ...
14
votes
2answers
122 views

PHP IP Filtering

i want to allow users to filter their login based on their ip address (a new settings in the user preferences i will implement). so if a user with a specific ip login and there is not restriction, ...
13
votes
5answers
6k views

Using Lucene to count results in categories

I am trying to use Lucene Java 2.3.2 to implement search on a catalog of products. Apart from the regular fields for a product, there is field called 'Category'. A product can fall in multiple ...
10
votes
4answers
4k views

Remember (persist) the filter, sort order and current page of jqGrid

My application users asked if it were possible for pages that contain a jqGrid to remember the filter, sort order and current page of the grid (because when they click a grid item to carry out a task ...
10
votes
6answers
266 views

Are there any good PHP based HTML filters available?

I am currently in a project with a PHP frontend. We're pretty concerned about security, because we'll have quite a lot of users and are an attractive target for hackers. Our users are able to submit ...
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
1answer
488 views

Using Multiply Accumulate Instruction Inline Assembly in C++

I am implementing a FIR filter on an ARM9 processor and am trying to use the SMLAL instruction. Initially I had the following filter implemented and it worked perfectly, except this method uses too ...
9
votes
9answers
16k views

Fastest Gaussian blur implementation

How do you implement the fastest possible Gaussian blur algorithm? I am going to implement it in Java, so GPU solutions are ruled out. My application, planetGenesis, is cross platform, so I don't ...
8
votes
2answers
298 views

LINQ Where Ignore Accentuation and Case

What is the easiest way to filter elements with LINQ through the Where method ignoring accentuation and case? So far, I've been able to ignore Casing by calling methods on the properties, which I ...
8
votes
2answers
302 views

Using SlopeOne algorithm to predict if a gamer can complete a level in a Game?

I am planning to use SlopeOne algorithm to predict if a gamer can complete a given level in a Game or not? Here is the scenario: Lots of Gamers play and try to complete 100 levels in the game. Each ...
8
votes
6answers
2k views

“stop words” list for english?

I'm generating some statistics for some english-language text and I would like to skip uninteresting words such as "a" and "the". Where can I find some lists of these uninteresting words? Is a list ...
8
votes
4answers
8k views

Adding the current date with Maven2 filtering

I have a Maven2 project, and I need to add, in a properties file, the current version and the current date. For the current version, I've used ${project.version}, which works correctly. My question ...
8
votes
9answers
16k views

What is the best way to remove duplicates in an Array in Java?

I have an Array of Objects that need the duplicates removed/filtered. I was going to just override equals & hachCode on the Object elements, and then stick them in a Set... but I figured I should ...
7
votes
5answers
286 views

Partial search in HashMap

I need to create phone book kind of thing. It contains name & number. Now when I type letters matching list should be returned. For the example given below, when I type H, a list containing ...
7
votes
3answers
242 views

Is there a way to filter output in Google Chrome's console?

I'm getting a lot of noise from the output of the 3rd party's page i'm currently playing with and i wonder if there's a way to filter the output on the console. Something like Logcat's flags. Is there ...
7
votes
4answers
798 views

xPath: Select parent element only if child element doesn't contain a certain value

Given this: <element_1> <element_2>Text</element_2> <element_3> <element_4> <element_5>Text with @ in Value</element_5> ...
7
votes
3answers
816 views

Filtering a hierarchical object displayed with nested xaml data templates

I'm having trouble filtering hierarchical data that's being displayed in nested xaml templates. I've got a ObservableCollection<Foo> Foos, that I'm displaying in XAML. Lets say Foo looks like: ...
7
votes
2answers
926 views

Override Maven's default resource filter replacement pattern

By default maven will filter resources like this: <properties> <replace.me>value</replace.me> </properties> <some-tag> <key>${replace.me}</key> ...
7
votes
2answers
2k views

Filtering data in R

I have a CSV of file of data that I can load in R using read.csv() Some of the data is missing, so I want to reduce the data frame down to set that consists entirely of non-missing data, i.e. if a ...
6
votes
1answer
404 views

Secure XSS cleaning function (updated regularly)

I've been hunting around the net now for a few days trying to figure this out but getting conflicting answers. Is there a library, class or function for PHP that securely sanitizes/encodes a string ...
6
votes
4answers
2k views

kalman filtering for programmers

Does anybody know a tutorial for Kalman filtering for programmers, like "what programmers should know about Kalman", or "Kalman in practice"?
6
votes
3answers
225 views

Django: remove a filter condition from a queryset

I have a third-part funtion which gives me a filtered queryset (e.g. records with 'valid'=True) but I want to remove a particular condition (e.g. to have all records, both valid and invalid). Is ...
6
votes
4answers
3k views

DSP - Filtering in the frequency domain via FFT

I've been playing around a little with the Exocortex implementation of the FFT, but I'm having some problems. Whenever I modify the amplitudes of the frequency bins before calling the iFFT the ...
6
votes
3answers
2k views

Laplacian of gaussian filter use

This is a formula for LoG filtering: Also in applications with LoG filtering I see that function is called with only one parameter: sigma(σ). I want to try LoG filtering using that formula (previous ...
6
votes
3answers
822 views

How to best use GPS data?

I am currently developing an application that receives GPS data gathered using and android phone. I need to analyze that data in terms of speed, acceleration, etc... My question is: Can I trust the ...
6
votes
3answers
3k views

Filtering out values from a C# Generic Dictionary

I have a C# dictionary, Dictionary<Guid, MyObject> that I need to be filtered based on a property of MyObject. For example, I want to remove all records from the dictionary where ...
6
votes
1answer
932 views

ELMAH filtering not working

I have the following settings in my web.config: <configSections> <sectionGroup name="elmah"> <section name="security" requirePermission="false" ...
6
votes
13answers
740 views

Is it irrational to sanitize random character strings for curse words?

If you exposing randomly generated strings or strings with data encoded in them (Product keys). Is it irrational to sanitize them for curse words to avoid the client possibly getting offended in the ...
6
votes
6answers
39k views

SQL if statement in where clause for searching database

I'm creating a stored procedure to return search results where some of the parameters are optional. I want an "if statement" in my where clause but can't get it working. The where clause should ...
5
votes
2answers
211 views

How to filter parameters in rails?

Rails has built in log filtering so you don't log passwords and credit cards. Works great for that but when you want to trigger a custom log (like to email) and send your own params or other data ...
5
votes
4answers
169 views

How to fast filter objects that satisfy date range condition

I have a large collection of objects public class Restriction { // which days this restriction applies to public DateTime From { get; set; } public DateTime To { get; set; } // valid ...
5
votes
1answer
94 views

php - how to validate a regular expression itself?

I need to validate user input that might be a regular expression for filtering fields in his/her own application, how can I check the validity of that regex?
5
votes
2answers
64 views

How to run code at exiting point of web request in java

I have a web application written in java. i would like to run a 'clean up' method that would run at the end of each web request as in after all the work has been done. I'm looking for something like a ...
5
votes
5answers
758 views

Filtering JavaScript out of HTML

I have a rich text editor that passes HTML to the server. That HTML is then displayed to other users. I want to make sure there is no JavaScript in that HTML. Is there any way to do this? Also, I'm ...
5
votes
2answers
220 views

How can I filter compilation output only for a specific mode or buffer in Emacs?

I have a HTML page, with html-mode enabled. I call function sgml-validate to check for any markup errors. It's based on compilation-mode. I want to remove some warnings from the compilation output, so ...
5
votes
3answers
376 views

Efficient Filtering / Searching

We have a hosted application that manages pages of content. Each page can have a number of customized fields, and some standard fields (timestamp, user name, user email, etc). With potentially ...
5
votes
5answers
446 views

Good references / tips for designing rule systems?

I often need to implement some sort of rule system that is user-editable -- the requirements are generally different enough that the same system isn't directly applicable, so I frequently run into the ...
5
votes
2answers
660 views

Unfiltering NSPasteboard

Is there a way to unfilter an NSPasteboard for what the source application specifically declared it would provide? I'm attempting to serialize pasteboard data in my application. When another ...
4
votes
3answers
107 views

PHP Time Filtering and MYSQL Filtering

I have 3 columns: Day, start_schedule and end_schedule. Day | start_schedule | end_schedule -------|-----------------|-------------- Monday | 1:00 | 3:00 Monday | 6:00 ...
4
votes
5answers
98 views

Which is the best way to skip characters before underscore ( _ ) in a string using c#

Which is the best way to skip characters before underscore _ in a string using c#? eg:case 1 String contain _ string s="abc_defg" I want to get defg to another string case 2 some times string ...
4
votes
2answers
106 views

Filtering paste in Silverlight 4

I have TextBox which allow insert only numeric values (filtering), But when I paste copied text it's allow any kind of symbol. How can I prevent or filter text before pasting?
4
votes
2answers
79 views

Input filtering in PHP

I am filtering user input in this way $id= intval($_REQUEST['id']); I am accepting only integers in $id. Is there anything else which i can use to make it more secure? Thanks!
4
votes
2answers
349 views

Bilinear filter with SSE4.1 intrinsics

I am trying to figure out a reasonably fast bilinear filtering function just for one filtered sample at a time now as an exercise in getting used to using intrinsics - up to SSE41 is fine. So far I ...
4
votes
1answer
1k views

jQuery DataTables filter column with comparison operators

I've been using the DataTables jQuery plugin with the filter plug in, and it is awesome. However, I was wondering if it is possible to filter table columns by row using a comparison operator (e.g. ...
4
votes
2answers
453 views

Using checkboxes to filter records

I am trying to learn rails from zero programming experience and have an app im trying to make. With much help from people on here, I have an index page of venues which are filterable by which area ...
4
votes
3answers
1k views

Android Accelerometer filtering?

I saw many examples about filtering Accelermeter's values, to cancel out the gravity (High-pass filter). But most of them were 1st order one, which is said to be simple, but laggy and not the best ...
4
votes
3answers
115 views

Filtering a sub set of (potentially) 1.000.000+ items

I have a large dataset with possibly over a million entries. All items have an assigned time stamp and items are added to the set at runtime (usually, but not always, with a newer time stamp). I need ...
4
votes
2answers
164 views

Fastest way to filter punctuation in C

I need to filter punctuation from UTF-8 strings quickly in C. The strings could be long and they are quite numerous. The function I'm using currently seems very inefficient: char *filter(char ...
4
votes
2answers
113 views

How do I filter chat messages by normalizing letter forms?

I'm filtering chat messages on a chat system where constraining strings to Latin-1 English is desirable. Users tend to use creative typing, e.g. ßòógīě§ instead of Boogies In Java, there are ...

1 2 3 4 5 16