6
votes
1answer
154 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 …
6
votes
5answers
258 views
How do I get a particular derived object in a List<T>?
Let's say I have a generic list of Fruit (List<Fruit> fruits = new List<Fruit>()). I then add a couple of objects (all derived from Fruit) - Banana, Apple, Orange but with different …
6
votes
4answers
859 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 not found in a whitelist. Of course I've …
6
votes
11answers
1k views
Algorithm for separating nonsense text from meaningful text
I provided some of my programs with a feedback function. Unfortunately I forgot to include some sort of spam-protection - so users could send anything they wanted to my server - where every feedback …
5
votes
12answers
250 views
JavaScript: How to create an Object and filter on those attributes?
I have a JavaScript array of houses like so,
{
'homes' :
[{
"home_id" : "1",
"address" : "321 Main St",
"city" : "Dallas",
"state" : "TX",
"zip" : …
5
votes
4answers
726 views
How to print only parts of a page?
I am trying to hide some divs before the user prints this giant form, then display the divs again afterward. Thus I want to ignore the rest of the page, and only print the form itself.
Sure I could …
4
votes
4answers
205 views
SQL filtering by multiple items in the same column
I've got two tables in SQL, one with a project and one with categories that projects belong to, i.e. the JOIN would look roughly like:
Project | Category
--------+---------
Foo | Apple
Foo | …
4
votes
6answers
250 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, …
4
votes
3answers
672 views
Rails: Set a common instance variable across several controller actions
How should one have several different controller' actions set a common instance variable for use in templates but after the action runs.
In other words, I want this to work in my …
4
votes
8answers
764 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 …
4
votes
2answers
83 views
Is there a way to see all of the cases i’ve ever worked in fogbugz
Say we have the following case:
Jen Ninja (a Developer with an
awesome last name) likes to look at
the following list view filter:
All open cases assigned to Jen Ninja with the status of Active
…
4
votes
4answers
138 views
What is the best way to filter URLs for input?
I have a form that is accepting URLs from users in PHP.
What characters should I allow or disallow? Currently I use
$input= preg_replace("/[^a-zA-Z0-9-\?\:#.()\,\/\&\'\\"]/", "", $string);
…
4
votes
3answers
321 views
Algorithm to filter/normalise bad signal
Working on a tracking application using GPS.
It is all fine, but sometimes because of the closed areas or bad weather I get inaccurate points. When you plot them, it just doesn't look right, with lots …
4
votes
9answers
5k 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 …
3
votes
1answer
18 views
Filter Visual Studio 2008’s “Members” drop-down box.
Myself, along with my coworkers, aren't aware of any way to filter what is show in the "Members" drop-down box in Visual Studio. This is the drop-down box that lets you jump to different methods and …
