active questions tagged filter - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T14:07:48Zhttp://stackoverflow.com/feeds/tag/filterhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812132/portletfilter-to-change-locale0Portletfilter to change locale?asrijaal2009-11-28T09:53:22Z2009-11-28T13:24:28Z
<p>Hello there,</p>
<p>the ServletResponse provides a setLocale() method to modify the locale of a response which is not commited yet. The PortletResponse doesn't provide such a method, only getLocale() - is there any other way to change the locale of a portlet request/response?</p>
http://stackoverflow.com/questions/1737009/answer-to-making-a-nice-looking-listview-filter-on-android0Answer to making a nice looking ListView filter on AndroidHamy2009-11-15T08:38:19Z2009-11-28T11:48:52Z
<p>Hey all, </p>
<p>After some playing around, I have finally made a ListView that is filter-able and looks ok. </p>
<p>HTH, </p>
<p>Hamy</p>
http://stackoverflow.com/questions/1700268/best-method-to-scale-dropshadows-in-as30Best method to scale DropShadows in AS3?Andy Moore2009-11-09T10:40:52Z2009-11-28T07:44:06Z
<p>I'm creating a flash application that makes use of both the dropShadow filter and scaling of various sprites.</p>
<p>And therein lies <a href="http://livedocs.adobe.com/flex/3/langref/flash/filters/DropShadowFilter.html" rel="nofollow">the problem</a>:</p>
<blockquote>
<p>This filter supports Stage scaling.
However, it does not support general
scaling, rotation, and skewing. If the
object itself is scaled (if scaleX and
scaleY are set to a value other than
1.0), the filter is not scaled.</p>
</blockquote>
<p>By happenstance the lack of rotation support is beneficial to me, but I really badly need the scaling to work. What's the best method for doing this?</p>
<p>Can I extend the DropShadow object and "make it" update?</p>
<p>Shall I make my own custom object that just recreates itself with a new .distance value to match the zoom level?</p>
<p>What's the best method to use (with performance in mind)?</p>
http://stackoverflow.com/questions/1811757/how-do-i-find-out-what-ldap-fields-will-be-returned-in-my-query0how do i find out what LDAP fields will be returned in my queryoo2009-11-28T06:14:41Z2009-11-28T06:14:41Z
<p>i have the following code:</p>
<pre><code> using (DirectorySearcher userSearcher = new DirectorySearcher(domain))
{
userSearcher.Filter = "CN=Mydistributionlist";
//userSearcher.Filter = "(&(objectClass=user)(objectCategory=person)(samAccountName=" + ntID_ + "))";//string.Format("(&objectClass=user)", User.Username, User.Domain + "*");
foreach (SearchResult AdObj in userSearcher.FindAll())
{
foreach (String objName in AdObj.GetDirectoryEntry().Properties["member"])
{
str += Convert.ToString(objName);
int selIndex = objName.IndexOf("CN=") + 3;
int selEnd = objName.IndexOf(",OU") - 3;
name += objName.Substring(selIndex, selEnd).Replace("\\", "");
DirectorySearcher dsSearch = new DirectorySearcher(domain);
dsSearch.Filter = "CN=" + objName.Substring(selIndex, selEnd).Replace("\\", "");
foreach (SearchResult rs in dsSearch.FindAll())
{
str1 += Convert.ToString(rs.GetDirectoryEntry().Properties["mail"].Value) +
"|" + Convert.ToString(rs.GetDirectoryEntry().Properties["displayName"].Value) +
"|" + Convert.ToString(rs.GetDirectoryEntry().Properties["sAMAccountName"].Value) +
</code></pre>
<p>how do i find out which fields are in my search results. i see things like:</p>
<p>displayName<br>
sAMAccountName<br>
department. </p>
<p>where can i get a list of all these field name that i can parse out of a result ?</p>
http://stackoverflow.com/questions/1579591/performancepoint-dashboard-designer-error-when-creating-a-filter-no-filter-data0PerformancePoint Dashboard Designer Error when creating a Filter - No Filter Data RetrievedMark Terry2009-10-16T18:19:06Z2009-11-27T21:00:02Z
<p>I'm attempting to create a filter using PerformancePoint's Dashboard Designer. After going through the wizard, however, the "Confirmation" page displays the following message:</p>
<blockquote>
<p>No filter data retrieved</p>
<p>Warning 1: Filter was created but no
data was retrieved. To resolve the
problme, follow the step(s) below.
1. Verify that the data source for this filter is configured properly.
2. Check the server event log. Additional information about this
problem may have been recorded.</p>
</blockquote>
<p>The data source is fine... I used the data source to build the report that the filter is supposed to be filtering... no problems with the report.</p>
<p>As for the logs, the only troubling spot is when the call is made from the PerformancePoint server (part of the SharePoint group) to the SQL Server -- the Event Viewer on the PerformancePoint server has a long message of which the important part is "An existing connection was forcibly closed by the remote host."</p>
<p>Has anyone else had trouble with Filters in PerformancePoint?</p>
http://stackoverflow.com/questions/1809042/asp-net-mvc-pass-object-from-custom-action-filter-to-action1ASP.NET MVC Pass object from Custom Action Filter to Actionreach4thelasers2009-11-27T14:18:32Z2009-11-27T16:16:41Z
<p>If I create an object in a Custom Action Filter in ASP.NET MVC in</p>
<pre><code>public override void OnActionExecuting(ActionExecutingContext filterContext)
{
DetachedCriteria criteria = DetachedCriteria.For<Person>();
criteria.Add("stuff");
// Now I need to access 'criteria' from the Action.....
}
</code></pre>
<p>is there any way I can access the object from the Action that is currently executing.</p>
http://stackoverflow.com/questions/1808474/creating-a-dynamic-linq-filter-over-listt0Creating a Dynamic Linq filter over List<T>Shalan2009-11-27T12:24:19Z2009-11-27T13:56:01Z
<p>Hi. Ok, I asked this question before, but deleted it as the way I went about describing my problem was wrong.</p>
<p>Firstly, let me state that Im creating a .NET3.5 Winforms app using C# and <a href="http://www.plinqo.com" rel="nofollow">Plinqo</a> (Professional Linq to Objects) as my ORM. Here's my situation: I have a DataGridview that is populated from a <code>SortableBindingList<T></code> - in my case, formed from a <code>List<Task></code> which is simply represented as follows:</p>
<pre><code>public class Task {
public long TaskID { get; set; }
public string TaskDescription { get; set; }
public enumPriority TaskPriority { get; set; }
public DateTime DueDate { get; set; }
public double PercentageComplete { get; set; }
}
</code></pre>
<p><br>
Now, I want to provide a Dialog to my user to allow him/her to Filter this list. I envision passing in a list of property names and associated DataType into the Dialog that I can use to populate a ComboBox. So the user will choose which property they want to query from the comboBox and based on the selection the appropriate comparers and UI control will be made available for the user to enter in thier criteria. Lastly, it will contain an AND/OR togglebutton at the end which the user can use to add additional criterion. Each criterion will be an object of type <code>FilterItem</code> as shown below:</p>
<pre><code>public class FilterItem {
public string MappedPropertyName { get; set; }
public enumComparer Comparer { get; set; }
public object FilterValue { get; set; }
public enumOpertor Operator { get; set; }
}
</code></pre>
<p><br>
After the user constructs his/her query, I intend to pass this as a <code>List<FilterItem></code> back to my calling form, which can then iterate thru the list and allow me to filter the original <code>List<Task></code>. </p>
<p>This is all fine, and something that I can put together with ease. But I want to make sure that the ACTUAL filter mechanism I go with is as strongly-typed as possible, and not using bulit up strings like in the Dynamic Query Library. (I used to do something similar previously with ADO.NET, DataViews and dynamically constructing a RowFilter string)</p>
<p>I've read up on Joseph Albahari's <a href="http://www.albahari.com/nutshell/predicatebuilder.aspx" rel="nofollow">PredicatBuilder</a> and <a href="http://tomasp.net/blog/dynamic-linq-queries.aspx" rel="nofollow">an article on tomasp.net</a>, but I seem heavily confused with it and expression trees in general.</p>
<p>I sincerely seek your assistance in helping me better understand these concepts, and how to go about using it up so that my intended architecture can work with it.</p>
<p>Much appreciation!</p>
http://stackoverflow.com/questions/1795992/overriding-the-jsp-servlet-filter-jsp-to-wrap-in-an-authentication-model0Overriding the JSP servlet (filter "*.jsp") to wrap in an authentication modeljohncc2009-11-25T10:23:31Z2009-11-25T11:45:03Z
<p>Hi there,</p>
<p>Can the JSP servlet that filters on *.jsp (org.apache.jasper.servlet.JspServlet in Tomcat 6) be extended in some way so whenever someone goes to a JSP page I can do some server side authentication to check whether the user can view the page. Our current technique is a taglib in a common include that is imported into each JSP page, but it's not very elegant.</p>
<p>The key here is that I don't want to reinvent the wheel and worry about compiling JSPs into Servlets, I would ideally like to delegate in each method with super.meth().</p>
<p>I've been searching Google but I don't know the right keywords to use. Anything containing JSP and Servlet returns beginner tutorials.</p>
<p>Thanks,</p>
<p>John</p>
http://stackoverflow.com/questions/1791859/custom-android-keyboard-input-filtering0Custom Android Keyboard Input Filteringspaceboy20002009-11-24T18:04:02Z2009-11-24T23:29:06Z
<p>I have an EditText that is to collect input for a basic calculator. I want to bring up the numeric keyboard, and thus I set android:inputType to numberDecimal|numberSigned. Problem is, the EditText filters out all characters that aren't numeric, such as "(", ")", "/", "*".</p>
<p>I have tried overriding this behaviour by setting a custom InputFilter which filters nothing out, but it seems to have no affect on the EditText. Is there any way for me to display the numeric soft keyboard without the filtering behaviour?</p>
http://stackoverflow.com/questions/1792369/report-builder-2-0-ssrs-filtering-in-row-groups-how-to-show-only-filtered-va0Report Builder 2.0 - SSRS - filtering in Row Groups: how to show only filtered values in the totals?Aedna2009-11-24T19:28:15Z2009-11-24T19:28:15Z
<p>I have an aging report with totals per patient and per month.</p>
<p>I need to have months as column groups and patients as row groups.</p>
<p>plus I need to filter out patients, whose totals overall (for all months) were negative.</p>
<p>I created a Row Group filter per patient with condition SUM(Totals) < 0. However, the row that shows the Grand total of all the table, still counts the values which were filtered out.</p>
<p>Is there any possible trick to make totals account only for filtered values?</p>
<p>Thank you very much!</p>
http://stackoverflow.com/questions/1507015/need-help-filtering-a-dojo-datagrid0Need help filtering a Dojo DataGridMorgan Delvanna2009-10-01T23:27:16Z2009-11-23T16:53:31Z
<p>I have a datagrid all set up, connected to an XMLStore. When the user selects a month from the dropdown list I want the grid to filter only that months data. Should be simple and according to every example it is. I can't figue out why it doesn't work, nor why IE tells me that none of the methods (filter, sort, setQuery) are supported by the dataGrid object.</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<style type="text/css">
@import "StyleSheet.css";
@import "js/dojotoolkit/dijit/themes/pfga/pfga.css";
@import "js/dojotoolkit/dojo/resources/dojo.css";
@import "js/dojotoolkit/dojox/grid/resources/pfgaGrid.css";
</style>
<script src="js/dojotoolkit/dojo/dojo.js" type="text/javascript" djConfig="parseOnLoad: true"></script>
<script type="text/javascript">
dojo.require("dojo.parser");
dojo.require("dojox.grid.DataGrid");
dojo.require("dojox.data.XmlStore");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.form.FilteringSelect");
dojo.require("dojo.data.ItemFileReadStore");
theMonth = new Date();
var month_name=new Array(12);
month_name[0]="January"
month_name[1]="February"
month_name[2]="March"
month_name[3]="April"
month_name[4]="May"
month_name[5]="June"
month_name[6]="July"
month_name[7]="August"
month_name[8]="September"
month_name[9]="October"
month_name[10]="November"
month_name[11]="December"
dojo.addOnLoad(function(){dojo.byId('monthInput').value=month_name[theMonth.getMonth()]});
var eventStore = new dojox.data.XmlStore({url: "events.xml", rootItem: "event", keyAttribute: "dateSort"});
function monthClick() {
var ctr, test, rtrn, grid;
test = dojo.byId('monthInput').value;
for (ctr=0;ctr<=11;ctr++)
{
if (test==month_name[ctr])
{
rtrn = ctr +1;
}
}
eventGrid.filter({month:rtrn});
}
</script>
</head>
<body class="pfga">
<div id="content" style="width:800px; overflow:visible" dojoType="dijit.layout.ContentPane" region="center" class="pfga">
<div dojotype="dojo.data.ItemFileReadStore" url="months.json" jsID="monthStore"></div>
<div id="pagehead" class="Heading1" >Upcoming Range Events - PF&amp;GA</div>
<p>
<input dojoType="dijit.form.FilteringSelect" store="monthStore" searchAttr="month" name="id" id="monthInput" class="pfga" onChange="monthClick()" />
</p>
<table dojoType="dojox.grid.DataGrid" store="eventStore" query="{month:'5'}" class="pfga" style="height:500px" clientSort="false" id="eventGrid" >
<thead>
<tr>
<th field="dateSort" hidden="true">DateSort</th>
<th field="date" width="80px">Date</th>
<th field="description" width="600">Description</th>
</tr>
<tr>
<th field="time" colspan="3">Details</th>
</tr>
</thead>
</table>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1784403/table2csv-and-columnfilters-how-to-generate-csv-with-the-result-only0table2csv and columnfilters how to generate CSV with the result only?lena2009-11-23T16:45:05Z2009-11-23T16:45:05Z
<p>Hi,</p>
<p>I'm using table2csv and and columnfilters jquery-plugins.
I'm wondering if there is a way to generate CSV of the filtered column not all the table.</p>
<p>Now I always got the CVS for the entire table.</p>
<p>(PHP-MySQL)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1783633/matlab-apply-a-low-pass-or-high-pass-filter-to-an-array3MATLAB: Apply a low-pass or high-pass filter to an arrayChristian2009-11-23T14:58:10Z2009-11-23T15:19:40Z
<p>Hi, is there an easy way to apply a low-pass or high-pass filter to an array in MATLAB? I'm a bit overwhelmed by MATLABs power (or the complexity of mathematics?) and need an easy function or some guidance as I couldn't figure it out from the documentation or searching the web. </p>
http://stackoverflow.com/questions/1272803/are-custom-filters-in-nunit-possible2Are Custom Filters in NUnit Possible?wawa2009-08-13T15:42:43Z2009-11-23T14:10:18Z
<p>Is it possible to define a custom filter so that NUnit will only run specific tests? I have many of my Nunit tests marked with a custom attribute "BugId". Is it possible to write a filter so that I can pass in a number and only run the tests with that attribute and number? If so show mockup or real code.</p>
http://stackoverflow.com/questions/1781965/price-filter-is-not-working-magento0price filter is not working- magentokuldeep2009-11-23T09:18:53Z2009-11-23T09:18:53Z
<p>price filter is not working even i clear the cache and rebuild search index.please help me</p>
http://stackoverflow.com/questions/1773542/matlab-filter-noisy-ekg-signal3MATLAB: filter noisy EKG signalkristia2009-11-20T22:04:45Z2009-11-21T17:32:52Z
<p>What is the best filter to use to remove noise from an <a href="http://en.wikipedia.org/wiki/Electrocardiography" rel="nofollow">ECG</a> signal with matlab?</p>
http://stackoverflow.com/questions/1768161/how-do-i-reset-or-override-ie-css-filters0How do I reset or override IE CSS filters?SpliFF2009-11-20T03:26:53Z2009-11-20T07:33:50Z
<p>I'm using the proprietry MS 'filter' property to try and create a non ugly equivelant to css3 text-shadow and box-shadow;</p>
<p>I was actually doing really well until i hit this problem. It looks like when I apply a filter to a div inside another div which also has a filter the filter effects end up being combined on the child object.</p>
<p>I can't explain it much better than that, here's a demo:
<a href="http://cableflow.dev.arc.net.au/test/filters.html" rel="nofollow">http://cableflow.dev.arc.net.au/test/filters.html</a></p>
<p>I've tried using filter:none; to do a reset but no joy. I've also tried different variations on the syntax, ie "-ms-filter: 'progid:...Glow()'", "filter: progid:...Glow()", "filter: Glow()", etc..</p>
<p>Testing in IE8</p>
http://stackoverflow.com/questions/1766299/make-search-input-to-filter-through-list-jquery1Make search input to filter through list JquerySpyderfusion022009-11-19T20:30:01Z2009-11-19T22:28:13Z
<p>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 no idea how to do this. everything I tried does not work unfortunately and im unsure of the best approach for this, like do i use show and hide or is there something better?</p>
<p>This is my HTML:</p>
<pre><code><html>
<head>
</head>
<body>
<label for="filter">Filter</label>
<input type="text" name="filter" value="" id="filter" />
<a id="addtag" href="#">Search</a>
<ul>
<li id="Hero1">Superman</li>
<li id="Hero2">Batman</li>
<li id="Hero3">Spiderman</li>
<li id="Hero4">Iron Man</li>
<li id="Hero5">The Hulk</li>
</ul>
</body>
</html>
</code></pre>
<p>So, if someone types in 'Superman' and clicks the search button, then only the Superman list element will be displayed.</p>
<p>Any help on this would be great. Thanks.</p>
http://stackoverflow.com/questions/1602988/convolution-matrix-for-diagonal-motion-blur0Convolution matrix for diagonal motion blurDave2009-10-21T19:16:41Z2009-11-19T22:18:22Z
<p>Hello,</p>
<p>I know my question is not really a programming question but it came out of programming need. Does anyone happen to know the convolution matrix for diagonal motion blur. 3x3, 4x4 or 5x5 are all good.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/674816/how-to-catch-an-exception-thrown-by-a-filter-in-nets-mvc0How to catch an exception thrown by a filter in .NET's MVC?Alex Fort2009-03-23T19:11:40Z2009-11-19T21:19:07Z
<p>One of the filters on an application I'm developing checks to see if a user owns the item they are trying to alter. The action is decorated by the <code>[RequiresOwnership]</code> attribute, and inside the attribute logic, I check to see if the user owns the item, and if they don't, I throw an <code>UnauthorizedAccessException</code>.</p>
<p>My question is this: Where can I catch that exception? I would ideally like to redirect the user to a page explaining why what they tried to do wasn't allowed, instead of just showing an exception page. I don't think I would be catching the exception inside the action that is decorated by the attribute, so is there some base part of the application where I can handle exceptions thrown higher up, in the .NET MVC model?</p>
<p>EDIT: I realize that I could just redirect to a page via the filter itself, but that seems a little hacky to me. It would be nice to throw exceptions via attributes, and have one standard place where they can be caught and dealt with.</p>
http://stackoverflow.com/questions/1763495/adding-extra-paramaters-to-a-objects-filter-via-dict0Adding Extra Paramaters to a Objects.filter (via Dict)?_bravado2009-11-19T14:06:00Z2009-11-19T15:50:45Z
<p>Say we have a <code>dvd</code> table where we want to search for <code>price=14.99</code> and <code>rating=18</code>. We could do:</p>
<pre><code>#Making some dictionary
dict1 = {}
#Adding some stuff
dict1['price']=14.99
dict1['rating']18
#Use dict as filter
dvd.objects.filter(**dict1)
</code></pre>
<p>Is there a way to add on extra parameters like:</p>
<pre><code>dvd.objects.filter(title__icontains='the')
</code></pre>
<p>I'd just like to add a bit more flexibility for the user because at present they can choose what fields they'd like to search in and specify exactly what it is they want. However I'd like to search partial matches, like what <code>__icontains</code> does. I'd also like <code>__gt</code>, <code>__lt</code>.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1757869/drupal-hide-single-taxonomy-term-in-particular-view-display0drupal: hide single taxonomy term in particular view displayKirk Hings2009-11-18T17:54:40Z2009-11-18T23:04:55Z
<p>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.), and a free-tagged project name (for when document group = project specific). </p>
<p>Have single view displaying all documents, segregated by tabbed page displays:</p>
<ul>
<li>All page/tab is for all docs</li>
<li>Forms page/tab is limited to doc type = form</li>
<li>Policy page/tab is limited to doc type = policy</li>
<li>Project Specific Docs is limited to doc group = project specific</li>
</ul>
<p>Exposed Filter on individual pages:</p>
<ul>
<li>Within Form and Policy pages, we offer an exposed filter of document groups as dropdown control. So for instance on the forms page you can quickly filter to just HR forms.</li>
<li>On the project specific docs page, we offer an exposed filter of project names, so you can quickly filter to your project, but these docs can be forms and/or policy.</li>
</ul>
<p>Now that we have the project specific page/tab, we want to remove 'project specific docs' taxonomy term from the Forms and Policy page/tabs dropdown filter on just those two views page displays. It's already filtered out, so if you select Project Specific Docs on those pages you get no results. Just need to remove the option from the select list.</p>
<p>UPDATE:
found my own answer</p>
http://stackoverflow.com/questions/1624443/crm-filtered-views-through-vpn-access0CRM Filtered Views through VPN accessBrian Scott2009-10-26T12:09:14Z2009-11-18T22:00:03Z
<p>Hi,</p>
<p>I'm currently developing a set of reports for Microsoft CRM. I'm using Visual Studio 2005 to create and design the RDL files from my local development machine which sits on a different network from the client. I have access to the CRM database through VPN and by using a SQL Server user logon which is not an Active Directory user setup within the CRM.</p>
<p>I need to use the filtered views from the CRM database but as I'm not logged in as an active directory user whilst I'm connected from Visual Studio I do not receive any results from my queries. </p>
<p>I've seen the solution some people have suggested whereby you use "EXECUTE AS USER = 'domain\user'" before performing the lookup but I cannot use a remote domain user as I get the following error upon querying:</p>
<p>"Cannot execute as the database principal because the principal "DomainEx\usernameEx" does not exist, this type of principal cannot be impersonated, or you do not have permission."</p>
<p>Can someone please provide me some guidance on how to use the filtered views during report development when you are not in the local domain context?</p>
http://stackoverflow.com/questions/1740724/filter-hidden-files-with-bash-for-batch-image-resize-script1Filter Hidden Files with Bash (for Batch Image Resize Script)msutherl2009-11-16T07:59:12Z2009-11-18T16:20:34Z
<p>I'm writing a script to batch resize images. Originally I was applying an operation <code>for file in $(ls $1)</code>, but I would like to be able to use globbing, so I'm looking at something more like <code>for file in $(echo $1)</code>. The problem is that dotglob may or may not be enabled, so <code>echo *</code> could return hidden files (notably, .DS_Store), which cause <code>convert</code> to throw an error and stop the script. <strong>I would like the default behavior of the command to be</strong> that if I <code>cd</code> into a directory full of images and execute <code>resize * 400x400 jpg</code>, all of the images will be resized <i>excluding</i> hidden files, regardless of whether dotglob is enabled.</p>
<p>So, in pseudo code, <strong>I'm looking for</strong>:</p>
<pre><code>for file in $(echo $1 | [filter-hidden-files])
</code></pre>
<p>Here is my script with the <strong>older behavior</strong>. Will update with new behavior when I find a solution:</p>
<pre><code># !/bin/bash
# resize [folder] [sizeXxsizeY] [outputformat]
# if [outputformat] is omitted, the input file format is assumed
for file in $(ls $1)
do
IMGNAME=$(echo "$file" | cut -d'.' -f1)
if test -z $3
then
EXTENSION=$(echo "$file" | cut -d'.' -f2)
convert $1/$file -resize $2 -quality 100 $1/$IMGNAME-$2.$EXTENSION
echo "$file => $IMGNAME-$2.$EXTENSION"
else
convert $1/$file -resize $2 -quality 100 $1/$IMGNAME-$2.$3
echo "$file => $IMGNAME-$2.$3"
fi
done
</code></pre>
<p>Here is the <strong>current</strong> script:</p>
<pre><code># !/bin/bash
# resize [pattern] [sizeXxsizeY] [outputformat]
# if [outputformat] is omitted, the input file format is assumed
for file in $(echo $1)
do
IMGNAME=$(echo "$file" | cut -d'.' -f1)
if test -z $3 && if test -f $3
then
EXTENSION=$(echo "$file" | cut -d'.' -f2)
convert $file -resize $2 -quality 100 $IMGNAME-$2.$EXTENSION
echo "$file => $IMGNAME-$2.$EXTENSION"
else
convert $file -resize $2 -quality 100 $IMGNAME-$2.$3
echo "$file => $IMGNAME-$2.$3"
fi
done
</code></pre>
<p>Given the command <code>resize * 400x400</code>, convert throws an error as it cannot process .DS_Store (a hidden file residing in every file on an OSX system). As I will never be processing hidden images, I would like to automatically filter them. I've been trying to do this with grep or find, but I haven't figured it out yet. </p>
<p>New script goes here:</p>
<pre><code>for file in $(echo $1)
do
</code></pre>
http://stackoverflow.com/questions/1756897/php-filter-string-input-cut-off-all-newlines-1-chars0PHP filter string input, cut off all newlines, 1 chars.Gal2009-11-18T15:44:02Z2009-11-18T16:04:39Z
<p>I'm writing in PHP!</p>
<p>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 <code><br /><br /></code>...).</p>
<p>example:</p>
<pre><code>I am a
SPaMmEr!
</code></pre>
<p>would become:</p>
<pre><code>I am a
SPaMmEr!
</code></pre>
<p>or</p>
<pre><code>I am a
.
.
.
.
SPaMmEr!
</code></pre>
<p>likewise</p>
http://stackoverflow.com/questions/1756951/ignoring-a-certain-file-type-in-a-net-filter0Ignoring a certain file type in a .net "filter"Cyclone2009-11-18T15:50:53Z2009-11-18T15:59:19Z
<p>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 filter to ignore certain types? For example, .LOG files. I don't want it telling me that that file updates, cause it does it every second practically.</p>
<p>Even better, is there any way to make it ignore some folders?</p>
<p>Thanks for the help!</p>
http://stackoverflow.com/questions/1754922/update-httpresponse-every-few-seconds0Update HttpResponse Every Few Seconds._bravado2009-11-18T10:09:37Z2009-11-18T15:38:14Z
<p>My application in Django <em>can</em> create some <strong>very</strong> 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 User. </p>
<p>Obviously, I can let the User wait for a minute whilst these many sets of queries are being executed and extracted from the database, then return this monolothic HTML page.</p>
<p>Ideally, I'd like to update the page when I want, something like:</p>
<pre><code>For i,e in enumerate(example):
Table.objects.filter(someObjectForFilter[i]).
#Return the object to the page.
#Then Loop again, 'updating' the response after each iteration.
</code></pre>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1753298/jquery-filter-on-table0jQuery, Filter on TableAlexander Corotchi2009-11-18T02:42:42Z2009-11-18T03:36:01Z
<p>Hello, </p>
<p>I have 1 problem , I've taken one jquery plugin (filter on table).</p>
<p>This is URL : <a href="http://gregweber.info/projects/demo/flavorzoom.html" rel="nofollow">http://gregweber.info/projects/demo/flavorzoom.html</a></p>
<p>But I have a little bit different case:</p>
<p>Instead (textbox) I use (dropdawn menu)</p>
<pre><code> <select class="filter_tb">
<option value="">All</option>
<option value="6-K">6-K</option>
<option value="20-F">20-F</option>
<option value="SC 13G/A">SC 13G/A</option>
<option value="SC 13G">SC 13G</option>
<option value="F-10/A">F-10/A</option>
<option value="F-X">F-X</option>
<option value="F-10">F-10</option>
</select>
</code></pre>
<p>I'm doing filter by value, but this is a problem: When I select "SC 13G" in the table of course is displaying "SC 13G/A" . </p>
<p>Can I stop this one ? I want to display just "SC 13G" the same one is for "F-10 --- > F-10/A"</p>
<p>This is My jquery selector :</p>
<pre><code>$(function() {
var theTable = $('table.RegulatoryFilingsTable')
$(".filter_tb").change(function() {
$.uiTableFilter( theTable, this.value );
});
});
</code></pre>
<p>If it is possible, help me</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1752355/the-fastest-datastructure-to-filter-with-in-c0The Fastest DataStructure to Filter with in C#Charles Conway2009-11-17T22:34:15Z2009-11-17T22:53:55Z
<p>Currently we are filtering and sorting data with a datatable. </p>
<pre><code> /// <summary>
/// Filters the data table and returns a new data table with only the filtered rows.
/// </summary>
/// <param name="dtInput">The dt input.</param>
/// <param name="filterExpression">The filter expression.</param>
/// <returns></returns>
protected virtual DataTable FilterDataTable(DataTable dtInput, string filterExpression)
{
DataTable t1 = dtInput.Clone();
if(!string.IsNullOrEmpty(filterExpression) && filterExpression.Trim().Length > 0)
{
t1.BeginLoadData();
foreach (DataRow r in dtInput.Select(filterExpression))
{
t1.Rows.Add(r.ItemArray);
}
t1.EndLoadData();
}
else
{
t1 = dtInput;
}
return t1;
}
</code></pre>
<p>Is there another Collection/Container that is optimized to do this type of filtering/sorting ? We are looking at the SortedList or a Dictionary. It's currently taking 15 to 25 seconds to sort and filter on a DataTable.</p>
<p><strong>Data Sample</strong></p>
<pre><code>HierarchyNodeId ParentHierarchyNodeId NodeName ExternalIdentifier
71 57 Skin Care Preparations - 3400 3400
72 56 UNKNOWN - 1110 1110
73 57 Sanitary Protection - 3380 3380
74 57 Kitchen Gadgets - 2890 2890
75 45 Seasonal GM - 2970 2970
76 52 UNKNOWN - 2500 2500
77 45 Juices & Drinks-Refrig - 2100 2100
78 56 Housewares, Appliances - 2870 2870
79 45 Condiments/Gravies/Sauce - 1170 1170
80 63 UNKNOWN - 2325 2325
</code></pre>
<p><strong>Filter Sample</strong></p>
<pre><code>HierarchyNodeId in (288,217,503,426,497,211,317,603,612,549,311,526,125,449,520,3071,2919,2624,85,111,3025,297,397,2833,2653,532,194,171,480,380,403,3105,271,457,134,205,632,420,2959,446,105,626,2641,2988,234,334,357,148,572,463,71,509,165,489,303,277,377,483,248,589,197,185,291,583,191,2707,477,500,340,240,552,546,623,2567,523,2773,363,2696,469,177,228,2982,2796,2690,506,320,220,606,114,609,323,2813,394,108,91,383,406,2713,615,268,563,168,560,300,88,2787,374,274,423,82,400,294,188,580,529,137,2942,2601,146,169,432,455,2902,540,440,122,360,145,74,3062,569,2661,460,2685,355,2971,564,2579,461,561,538,3079,351,592,2899,94,586,486,2825,352,275,326,140,246,123,624,547,223,2877,2668,409,2771,117,2897,2659,429,172,381,452,567,272,2582,558,458,166,3003,2791,249,3077,349,484,226,232,252,152,2951,332,354,174,466,2956,280,378,143,243,535,2858,156,182,251,543,331,386,437,3040,100,2646,628,371,159,76,3093,262,368,474,3090,2961,3067,365,471,577,153,130,259,236,2964,574,362,339,127,233,445,342,551,256,2784,77,2616,595,524,601,209,315,309,415,395,545,439,79,2569,548,2781,2910,2672,2993,336,442,438,338,2636,335,97,2851,358,3060,149,126,621,306,2665,183,418,2908,203,389,495,283,464,120,2822,412,2719,229,515,441,255,289,312,527,3014,2805,598,521,103,498,318,212,604,2887,413,625,2820,3034,200,329,541,435,3050,348,454,608,242,139,3114,3120,206,492,421,180,106,129,235,245,2543,2735,2732,136,3032,201,522,307,95,519,416,92,198,304,410,516,3006,133,110,322,216,428,534,345,557,451,239,2835,319,425,301,407,387,493,281,175,622,2643,513,3112,2723,596,490,278,593,2743,2849,384,487,2746,333,227,627,392,286,2699,2681,213,554,531,107,316,210,422,448,2764,222,93,585,2818,2924,328,199,116,225,113,219,2815,631,502,162,525,419,2864,2655,2588,121,98,204,101,2717,230,124,590,2932,537,325,408,87,196,620,514,90,431,302,2638,634,528,2867,142,2986,284,178,617,3001,402,299,511,190,273,614,193,508,296,393,287,181,3095,75,499,605,2880,3118,496,155,602,473,261,405,482,588,2632,505,485,119,379,2847,599,258,2620,364,470,367,2915,361,467,573,576,104,444,2912,78,290,2694,184,313,293,81,187,2591,570,207,128,260,517,414,314,2862,157,417,443,208,131,2936,231,343,629,237,337,2650,478,501,611,399,582,267,370,158,138,479,2860,2754,161,476,264,373,135,244,347,453,132,241,450,344,556,2683,3046,238,553,447,2892,530,550,2571,167,424,84,633,376,164,2889,3098,270,472,555,401,163,269,2917,263,610,607,346,109,160,3074,369,83,375,2808,2702,481,89,581,587,189,2991,504,2711,80,366,2628,266,2885,372,86,398,298,3103,186,292,192,584,285,2692,305,2904,308,202,73,391,179,96,2586,565,411,388,176,279,600,173,2875,494,282,385,276,170,2978,150,253,465,594,491,382,359,488,571,597,2801,99,356,568,2612,462,2560,562,118,221,433,350,436,542,330,3052,224,115,456,327,539,324,112,536,2769,2663,195,218,430,321,510,404,2766,427,2869,147,2657,2554,507,533,616,141,2843,144,247,2634,613,250,3055,2740,353)AND ParentHierarchyNodeId in(44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70)`
</code></pre>
<p>And I know this would be much faster in the DB. Currently that's not an option. We are looking at moving this into the database, but the effort and the timeline don't jive. It's a plan for the future.</p>
http://stackoverflow.com/questions/1748130/scheduling-filter-on-database-with-time-interval1Scheduling Filter on Database with Time Interval_bravado2009-11-17T11:07:15Z2009-11-17T13:24:25Z
<p>Let's you have a science experiment called <code>Weather</code> and it records general information about the weather, one of which is recording the <code>humidity</code> every minute. After say 10 hours, you'll have 600 database values stored.</p>
<pre><code>Weather.objects.filter().exclude(time__lt = commence).exclude(time__gt = cease)
</code></pre>
<p>This would create a filter for the <code>Weather</code> table, between the <code>commence</code> and <code>cease</code> times.</p>
<p>Let's say the time criteria is equal to -4 hours from present, therefore it would return the last 4 hours worth of data which is equal to 300 values. How would I ask for an interval of 10? Meaning, from these 300 values, how would I receive the 10th one of each, so 10, 20, 30, 40 ... 280, 290, 300... which would mean 30 values are being returned from the filter.</p>
<p>EDIT:</p>
<p>Would it be possible to ask for an interval of say 10 seconds? As opposed to each individual 10th value..</p>