The exclude tag has no wiki summary.
0
votes
0answers
15 views
exclude dir from cache on nginx
I cached all pages like this:
http {
......
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=test:1000m inactive=1d max_size=50g;
server {
listen 8080;
location / {
...
1
vote
2answers
28 views
find grep exclude some file names for dos2unix
so far I have gotten this far:
prompt$ find path/to/project -type f | grep -v '*.ori|*.pte|*.uh|*.mna' | xargs dos2unix 2> log.txt
However, the files with extensions .ori, .pte, .uh and .mna ...
0
votes
1answer
20 views
Can ff object do this ff_object %in% ff_object?
I have two ff objects A and B (from package ff), all integer list
A has 1656644 rows while B hase 202897 rows
I want to get vector C <- A %in% B
But C = logical(0)
Is there any way do ...
0
votes
2answers
100 views
MySQL and PHP - using 'LIKE' AND 'NOT LIKE'
I need some help with using LIKE and NOT LIKE together... I have a query that I pass WHERE clauses through based on what my request variable is from another server. One of the queries is like the ...
0
votes
1answer
31 views
Matlab: Exclude matrix elements from calculation with respect to performance
I am trying to save some calculation time. I am doing some Image processing with the well known Lucas Kanade algorithm. Starting point was this paper by Baker / Simon.
I am doing this Matlab and I ...
0
votes
0answers
24 views
Elapsed time between 2 dates, excluding weekend in SQL [duplicate]
Experts, can someone please tell me in SQL Server how to calculate the time elapsed (in hours) between two time stamps, but excluding weekend days? For example, from 2013-05-03 17:00:00 to 2013-05-06 ...
1
vote
3answers
41 views
Exclude a few words from a simple regex in PHP
I'm categorizing a few folders on my drives and I want to weed out low quality files using this regex (this works):
...
2
votes
2answers
50 views
Using Powershell “where” command to compare against Array of values
I'm trying to figure out a way to get this command to filter from an array of values as opposed to one value. Currently this is how my code is (and it works when $ExcludeVerA is one value):
...
0
votes
2answers
42 views
Exclude one category in a custom post type
I have a custom post type called 'portcat' and I want to exclude one portcat category ('weather' - which has an ID of '5') from the page. What can I add to the below code to exclude it?
<?php
...
0
votes
0answers
14 views
Rsync: Combining '--files-from' and '--exclude' does not work
I do my backups with rsync and used the option "--files-from" to define a list of directories that should be synced. Right now, I am planning to extend the command by the '--exclude' option, but it ...
0
votes
2answers
39 views
How to change na.action for zero-inflated regression model?
I am running a zero-inflated negative binomial regression model using the function zeroinfl from the pscl package.
I need to exclude NA's from the model in order to be able to plot the residuals ...
0
votes
0answers
31 views
Get current post category ID and exclude others
I all,
Here is the situation... I have a post, and I want to display 'related projects' by related I mean using one of projects cat ID's lets say 16. However the post has other category IDs.
How ...
-1
votes
0answers
11 views
How to exclude lazyload.min.js from minify?
I have some issues with minify and lazyload. So I want to exclude the lazyload.min.js in the minify.php, but I dont know how? Some tips?
-1
votes
0answers
22 views
Passing multiple directories to the -prune option in find [closed]
In using find to perform some action, I need to exclude several directories.
I could do this using the syntax \( -name dir1 -o -name dir2 ... -o -name dirN \) -prune but it seems a little clunky, ...
0
votes
2answers
36 views
How to exclude characters from a RegEx pattern with category property codes?
There is a number of category property codes (see part "Unicode character properties"), that can be used for a Perl-compatible Regular Expression (PCRE)
I defined a regex pattern (named subpattern), ...
0
votes
1answer
77 views
Linux how to use rm and exclude switch
Hi guys I was wondering how we can use linux rm command with --exclude switch?
For example like grep has exclude function when searching over the files.
0
votes
1answer
22 views
Remove posts permalink (href)
I am trying to figure out a way to remove permalink's from posts with the category 'nolink'. I have tried a few java script attempts - but have not managed to get it to work. Would love a solution! :)
...
1
vote
6answers
38 views
How to exclude elements inside a child-element from a selection without using children()?
I have an element like so:
<div id="foo">
<a href="#" class="some">click me</a>
<div id="bar">
<a href="#" class="some">click me too</a>
</div>
...
0
votes
1answer
34 views
C# - Exclude Already Followed Users in Second Level Followers
I want to find followers of my followers that I'm not following in Twitter.
To do this, I have a table called Following which has three coulmns ID, Follower_iD and Following_iD
And my code is the ...
1
vote
2answers
89 views
How to exclude JQuery/Javascript fade in & out function on certain links?
I'm using this fade in and out JQuery/Javascript effect on my site to have each page fade in and out when a link is clicked. It's working great when the link that is clicked leads to a different page, ...
-1
votes
1answer
15 views
Exclude script from all posts in a certain category
But include it on all other pages & posts.
Any pointers?
The category would be (for example) /newsletters/
0
votes
1answer
43 views
Python tarfile and excludes
This is an excerpt from Python's documentation:
If exclude is given it must be a function that takes one filename
argument and returns a boolean value. Depending on this value the
respective ...
0
votes
1answer
62 views
Excluding large sets of objects from a query on a table with fast changing order
I have a table of products with a score column, which has a B-Tree Index on it. I have a query which returns products that have not been shown to the user in the current session. I can't simply use ...
0
votes
1answer
61 views
How to exclude classes when compiling SWC from Haxe?
This question is specifically for creating SWCs from Haxe in FlashDevelop (not from AS3 code).
Is there a compiler argument to specify some classes to NOT be compiled within a SWC? And if so, is it ...
0
votes
1answer
28 views
exclude first value from foreach django
Hi I have a shopping cart site powered by django
in this i got a thumbnail images of product by using below code
{% for image in images %}
<li>
<a rel="zoom-id:zoom;" rev="{{ ...
0
votes
1answer
84 views
how to exclude individual numbers from math.random
I need jquery to make an array, which includes only the numbers, that are selected with checkboxes. In other words I need math.random to exclude answers that arent checked. There will be more ...
1
vote
2answers
36 views
filter elements bound with jQuery “on” method
i would like to bind events to all elements in the body but a container and its descendants and have trouble getting it working. Let's say the html markup is :
<div class="myDiv">
...
-4
votes
2answers
57 views
Select from table A which does not exist in table B
I am trying to compose a SELECT statement for MySQL which select from table A what does not exist in table B. For example:
Table A:
+------+
| BAND |
+------+
| 1 |
| 2 |
| 3 |
| 4 |
| ...
0
votes
1answer
64 views
Sphinx: how to exclude imports in automodule?
I have a Raspberry Pi project written in Python that uses RPi.GPIO module. All the work on the code is done on a Windows box where RPi.GPIO will not install and every time I try to run autodoc it ...
0
votes
1answer
44 views
excluding .svn .git files from find+xargs+grep pipe
I have an Emacs function (fgf "thing") that creates a subprocess that looks like this:
find . \( -type f -a \! -regex '\.(svn|git)' \) -print0 | xargs -0 grep -nH -e 'thing'
Basically I don't want ...
0
votes
0answers
20 views
Nutch - exclude domain except for injected URL
is there any way to exclude domain from crawling except for a page that is injected in the begining in seeds file? E.g.
In my urls.txt which are starting point for crawler I have a lot of links to ...
0
votes
1answer
34 views
WooCommerce: exclude recent products from all products
I want to show a number of recent products and than all other without those in recent.
I know that it's possible to do with posts in Wordpress by using 'offset' but I have no idea what to do with ...
0
votes
1answer
90 views
Exclude data with LINQ
I have this LINQ query that returns data and coordinates for an amount of routes. When the amount of coordinates exceeds a specifik value i would like to exclude coordinates for the following routes.
...
0
votes
1answer
49 views
Team City Code Coverage includes excluded code in total
We have this issue with the Code Coverage in Team City (using dotCover).
In the the coverage of statements, the percentage is calculated as covered/Total.
Which is good.
When we exclude neamespaces ...
1
vote
4answers
50 views
Outputting ONLY folders and excluding specific ones
To start I am brand new to powershell.
Hello, I have a database with over 10TB of data and need to organize the data. I am doing this by using Powershell to output only the folders to a text file and ...
0
votes
3answers
132 views
Nginx rewrite a folder with exclude
i am working on nginx webserver.
I want to redirect all urls inside folder1 www.site.com/folder1/ but not the subfolder1 www.site.com/folder1/subfolder1
I created these rules to nginx configuration ...
1
vote
1answer
55 views
Django Filter Query Solution
I need to filter null and blank fields for several attributes. So far the solution I have found that works is this one :
...
0
votes
2answers
110 views
Mysql exclude records
I have two tables, user and role, one user can have more than 1 role
user: ID | FIRSTNAME | LASTNAME | etc..
1 | PETER | Blomp |
role: ID | ROLEID | USERID (which is user ID)
...
0
votes
1answer
53 views
Regular expression - Match, if not in X and Y and Z
i have a stupid problem. I want to match mail addresses in a string. That's no problem. But for any reason, i fail on excluding special html tags and attributes.
My mail regex:
...
0
votes
1answer
53 views
Exclude comma character from a non-whitespace string
I need a regex expression that will validate that a string is not all whitespace and that it does not include the comma (,) character.
I've been able to find examples that do one or the other, but ...
1
vote
2answers
81 views
Return matching values, exclude the ones that aren't matching, remove duplicates MYSQL
I have a problem that I can't seem to solve. I have a table that tracks userID's and app ID's. The table looks like this:
Library:
ID userID appID
1 1 11122 ...
0
votes
1answer
210 views
Advanced date range calculation excluding weekends and holidays
I have gotten my script to calculate from start to end date, but the more I did this, the more I realized what had to be calculated...
The company I am writing this for has a 'Request Off' page. Two ...
0
votes
2answers
58 views
Exclude child of specific class when jQuery automatically adds prettyPhoto class to links
I'm using jQuery to add class="prettyPhoto" to all links that are both inside of <div class="entry-content"> and that contain an image.
$('.entry-content a').has('img').addClass('prettyPhoto');
...
0
votes
2answers
138 views
Batch script to list folders but exclude specific folders
I want this script to list all folders that contains "deleted" in the folder name but not if they is in a folder called "done".
For exampel: list the folder if it's in C:\temp and if it's in ...
0
votes
1answer
49 views
linux find prune
Please help me resolve the following command. I am tryihng to exclude two directories; vntvdone and downloading, but for some reason, my command still goes in there and outputs the file within it:
...
2
votes
1answer
51 views
Django: Remove a field from a Form subclass
class LoginForm(forms.Form):
nickname = forms.CharField(max_length=100)
username = forms.CharField(max_length=100)
password = forms.CharField(widget=forms.PasswordInput)
class ...
0
votes
1answer
69 views
0
votes
0answers
42 views
Winrar - Include specific folder inside excluded folder
I would like to know how i can include a specific folder inside and excluded folder using command line winrar
my inclusions :
C:\Documents and Settings
*\Application Data\Microsoft\Outlook
my ...
0
votes
1answer
108 views
Simple RSync EXCLUDE option?
I want a simple and working (multiple) exclude option inside my rsync command. Lets say i will exclude a file and a directory:
/var/www/html/test.txt
/var/www/html/images/
What i did is:
rsync ...
1
vote
4answers
94 views
Jquery checkbox target id's only one
$(document).ready(function (){
$(function(){
$('input:checkbox').prop('checked', false)
$('input:checkbox').click(function(){
if($(this).is(':checked')){
...


