0
votes
0answers
17 views
Record filtering using several parameters
I'm just following up on my question at this page. The filter views for make, model, series, colour, and year are currently separate views...this is one part of the question. I w …
2
votes
2answers
65 views
MATLAB: filter noisy EKG signal
What is the best filter to use to remove noise from an ECG signal with matlab?
0
votes
2answers
25 views
Adding Extra Paramaters to a Objects.filter (via Dict)?
Say we have a dvd table where we want to search for price=14.99 and rating=18. We could do:
#Making some dictionary
dict1 = {}
#Adding some stuff
dict1['price']=14.99
dict1['rati …
1
vote
2answers
30 views
Make search input to filter through list Jquery
Hey, I am trying to create a search field that will filter or show/hide(which ever is best) the list elements based on what the user typed in and clicked the search button. I have …
0
votes
1answer
38 views
drupal: hide single taxonomy term in particular view display
Have a documents content type, with three taxonomies applied to it. Taxonomies are document type (form, policy, other), document group (hr, i.t., training, project specific, etc.), …
0
votes
2answers
16 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 …
0
votes
2answers
64 views
Update HttpResponse Every Few Seconds.
My application in Django can create some very big SQL queries. I currently use a HttpRequest object, for the data I need, then a HttpResponse, to return what I want to show the Use …
0
votes
4answers
51 views
PHP filter string input, cut off all newlines, 1 chars.
I'm writing in PHP!
There's a user string input, and I want to cut off all newlines,1 chars that are more than 1 in a row (avoid <br /><br />...).
example:
I am a
…
0
votes
2answers
22 views
Ignoring a certain file type in a .net “filter”
I made a program which uses a filesystemwatcher component, but it seems to record absolutely EVERY change made, and I want to set it to ignore some file types. How can I set the fi …
0
votes
2answers
31 views
jQuery, Filter on Table
Hello,
I have 1 problem , I've taken one jquery plugin (filter on table).
This is URL : http://gregweber.info/projects/demo/flavorzoom.html
But I have a little bit different c …
1
vote
1answer
40 views
Scheduling Filter on Database with Time Interval
Let's you have a science experiment called Weather and it records general information about the weather, one of which is recording the humidity every minute. After say 10 hours, yo …
2
votes
1answer
64 views
how can I filter on the second element in a tuple of tuples?
In my model I have a field:
country = models.CharField(_('Country'), max_length=2, choices=COUNTRIES)
Where COUNTRIES is a tuple of tuples like this:
COUNTRIES = (
('AF' …
0
votes
2answers
58 views
The Fastest DataStructure to Filter with in C#
Currently we are filtering and sorting data with a datatable.
/// <summary>
/// Filters the data table and returns a new data table with only the filtered rows.
…
2
votes
2answers
64 views
How to make a Simple FIR Filter using Matlab?
How can I make a simple low-pass FIR filter using Matlab (without using the built-in function) ?
Problem example:
Implement a FIR LPF with cut-off frequency 250Hz
it may also b …
1
vote
4answers
48 views
Filter Hidden Files with Bash (for Batch Image Resize Script)
I'm writing a script to batch resize images. Originally I was applying an operation for file in $(ls $1), but I would like to be able to use globbing, so I'm looking at something m …
