Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
6answers
10k views

Print a file skipping X lines in Bash

I have a very long file which I want to print but skipping the first 1e6 lines for example. I look into the cat man page but I did not see nay option to do this. I am looking for a command to do this ...
13
votes
6answers
1k views

LINQ Partition List into Lists of 8 members

How would one take a List (using LINQ) and break it into a List of Lists partitioning the original list on every 8th entry? I imagine something like this would involve Skip and/or Take, but I'm still ...
8
votes
2answers
268 views

Optimize LINQ for IList

A while ago I wrote an IList extension method to enumerate across part of a list by using the indices. While refactoring I realized a similar query could be performed by calling ...
5
votes
3answers
94 views

Most elegant way to process first IEnumerable item differently

What would be the most elegant way to process the first IEnumerable item differently than others, without having to test on each iteration? With a test on each iteration, it would look like this: // ...
4
votes
6answers
824 views

java foreach skip first iteration

Is there an elegant way to skip the first iteration of the new Java5 foreach loop ? Example pseudo-code: for ( Car car : cars ) { //skip if first, do work for rest . . }
4
votes
2answers
207 views

program skipping a line of code

I have been working on this program for a while and I finally got rid of the compile errors. But when I tried it, the program basically skipped a line of code. #include <iostream> #include ...
4
votes
2answers
985 views

Skip directory in msdeploy

I have a msdeploy in my nant script(Team City) that is working except it is copying some folders that I do not want to copy. What command will skip these directories? I tried: <arg ...
4
votes
5answers
3k views

Python: How to ignore #comment lines when reading in a file

In Python, I have just read a line form a text file and I'd like to know how to code to ignore comments with a hash # at the beginning of the line. I think it should be something like this: for ...
4
votes
5answers
5k views

Maven - skip parent project build

I know it's mauvais ton to ask twice in a single day but here's another Maven puzzler: I have a parent POM which defines 5 modules (5 subprojects). Since each module is executed in exactly the same ...
3
votes
2answers
157 views

I have some problems with LINQ expression, OrderBy(), Skip(), Take() works incorrect

I have LINQ expression like var a = ctx.EntitySet .OrderByDescending(t => t.Property) .Skip(pageIndex * size) .Take(size); OrderBy() should call before Skip() and ...
3
votes
1answer
148 views

Array.Copy vs Skip and Take in c#

I was browsing this question and some similar ones: C# arrays , Getting a sub-array from an existing array Many places I read answers like this: C# arrays , Getting a sub-array from an existing ...
3
votes
1answer
196 views

python itertools skipping ahead

I have a list of lists. Using itertools, I am basically doing for result in product([A,B],[C,D],[E,F,G]): # test each result and the result is the desired product, with each result containing ...
2
votes
2answers
80 views

Skip to a database record in c#

Here is some background on what I have been following. http://www.homeandlearn.co.uk/csharp/csharp_s12p9.html That will go to the last or first record of the database. I want to skip to a record in ...
2
votes
2answers
47 views

C++/Visual Studio 2005 - Template Class skipped during compilation of debug configuration

I have a template class, which had always been able to be compiled in Debug, with no problems. All of a sudden though, it refuses to detect changes to the class and skips it, unless I Rebuild. There's ...
2
votes
2answers
214 views

C# skip all proxy exceptions - time-out

Is there any way i can skip/catch all proxy exceptions? And also maybe put a time-out so the program wont get stuck in-between webProxy = new WebProxy("" + prox + ""); webProxy.Credentials = ...
2
votes
3answers
334 views

Why is my program skipping a prompt in a loop?

My code is supposed to continuously loop until "stop" is entered as employee name. A problem I am having is that once it does the calculation for the first employee's hours and rate, it will skip over ...
2
votes
2answers
640 views

skip validation after create mongoid rails

I want to skip a validation after an object is created. Lets take an example person has many company and company has many people person has many placements and placement belongs to person person can ...
2
votes
2answers
286 views

C# foreach loop item soft “break”

let's say I have a foreach loop to perform some processing on List MyTypeInstanveVariable foreach(MyType item in MyTypeInstanceVariable) { if (cond1) {} if (cond2) {} } If cond1 is met I ...
2
votes
2answers
58 views

How can I distinguish between “run all tests” and “run just this test”?

I have tests which run very slow, say a test which exports a large database to test the exporting code for memory leaks. I'd like to have these tests in my usual test suite but they should be ignored ...
2
votes
3answers
671 views

Why does Subversion/TortoiseSVN skip revision numbers if a file has only been changed one time?

I am fairly new to Subversion/TortoiseSVN and I want to know if there is a way to prevent Subversion from skipping revision numbers on files so that I can track the amount of time a file is changed ...
2
votes
3answers
330 views

Testing for external resource consistency / skipping django tests

I'm writing tests for a Django application that uses an external data source. Obviously, I'm using fake data to test all the inner workings of my class but I'd like to have a couple of tests for the ...
2
votes
2answers
728 views

JSF skips phases - How to debug that?

I have to debug a foreign jsf application thanks god. The problem is, that I submit a form, but the values aren't carried over. With a phase listener I can see, that the life cycle doesn't run ...
2
votes
2answers
241 views

maven prevent denpendency compile

I have a custom jar which including java sources; Maven tries to compile when it builds. How do I skip source compile in the jar file? I have tried such as exclude with some pattern in the ...
2
votes
0answers
199 views

Can one configure gdb/ddd to never step into certain functions? [closed]

Possible Duplicate: Preventing GDB from stepping into a function (or file) I have some infrastructure C++ code (containers, memory managers etc.) and I want the debugger to never step into ...
2
votes
2answers
650 views

LINQ, Skip, OrderBy, and SQL Server 2000

I'm accessing a data context object that is auto-generated by using LINQ to SQL. The SQL database is a SQL Server 2000 box. The class I'm working with is a SQL View. I have a statement that is similar ...
1
vote
2answers
66 views

How can I Hide Excel rows if SUM of contents = zero and skip rows containing any text?

In line with a previous question I asked I am trying to hide rows that contain zeros, but skip over rows that contain any text in any one or more cells. I received excellent help previously skipping ...
1
vote
1answer
111 views

How can I Hide Excel rows if SUM of contents = zero and skip blanks?

I have two codes, below, one that hides and the other that unhides rows based on the sum of values contained therein equaling zero. However, this code also hides blank rows which I do not want since ...
1
vote
7answers
152 views

C code, seems to be skipping if statements

First and foremost, I am not asking anyone to write a program for me or to do my homework for me... I have an error and I can't figure out what's causing it, and where to look to fix it. So I'm ...
1
vote
2answers
62 views

Skip loop iteration from called function in PHP

I have a while loop that calls a function that checks some stuff from the database. How can I continue; the while loop from this function? Simply calling continue does not work. The problem is that ...
1
vote
4answers
46 views

Skipping errors in a loop? (PHP)

I have a loop where the code loops and in every loop it connects to different server and then makes MySQL query. However sometimes one of the loops/queries cannot reach to the end and all the code ...
1
vote
1answer
125 views

Linq + SQLite + Take() == Problem

I'm using System.Data.SQLite to access a SQLite database via c#/linq. I had no problems until I tried to use the Take()/Skip() functionality which caused an exception. The error message in case of ...
1
vote
2answers
125 views

Using automapper to apply a filter to a collection

I have a domain model that contains a collection and I want to use AutoMapper to map the parent and children to the view model but I don't want children that have been "soft" deleted to be taken ...
1
vote
1answer
1k views

Maven: skip test-compile in the life cycle?

I have project that I set to build with the test-jar and normal jar by using this setting: <plugin> <groupId>org.apache.maven.plugins</groupId> ...
1
vote
4answers
24 views

How could I go by storing items from my database into an array, but only if that item is not already in the array?

I need to grab categories name from my database and store them into an array, but I don't want to grab the same category twice. Is there a way to, once I grab the category name and store it into an ...
1
vote
2answers
283 views

Trying to Customize OrderBy with IQueryable - “Skip” method error

The first part of my code gets the IQueryable data results: var issues = repository.GetAllIssues().Where(i => i.IssueNotificationRecipients.Any(r => r.Status == "Open")); ...
1
vote
2answers
1k views

SVN with Eclipse: Commit doesnt work, instead “Skipped” message

I use Eclipse with SVN. Besides others I have a folder "application". This folder contains several other folders, among these "cache" and "logs". I added the svn:ignore property to "cache" and "logs". ...
1
vote
1answer
133 views

SQL INSERT: skip values allready present

I'm trying to add sequence of tags to a list subjects. I wouldn't make unique tag column field because I may have the same duplicate depending by the user language like in the example table_houses id ...
1
vote
3answers
655 views

LINQ: How to skip one then take the rest of a sequence

i would like to iterate over the items of a List<T>, except the first, preserving the order. Is there an elegant way to do it with LINQ using a statement like: foreach (var item in ...
1
vote
8answers
802 views

Skip when error occurs

i have the following code in batch (cmd): for /f "delims=" %%f in ('dir /b /s Example') do ( command if %errorlevel%==1 ( command SKIP ) command ) EDIT: To make things more clear: for /f... ...
1
vote
2answers
446 views

Skip first column and get distinct from other columns

I need to select distinct rows from Textfile display below. TextFile 123| one| two| three <br/> 124| one| two| four <br/> 125| one |two| three <br/> Output should like this ...
1
vote
2answers
738 views

Skip a project while building a solution using msbuild 3.5

I have a solution with a number of libraries + web site on folder. When I use msbuil vs. this solution it precompiles web site to a new folder name PrecompiledWeb. I want to skip it, just build all ...
1
vote
4answers
3k views

Skipping Iterations in Python

I have a loop going, but there is the possibility for exceptions to be raised inside the loop. Which of course would stop it all together. I want to catch the exceptions and basically just skip to the ...
1
vote
5answers
1k views

How to skip fields using javascript?

I have a form like this: <form name="mine"> <input type=text name=one> <input type=text name=two> <input type=text name=three> </form> When user types a value in 'one', ...
0
votes
1answer
54 views

Reading specific values from file c++

I need some help with getting a code for c++, The situation is that, i need to read a text file which contains something like: //THIS LINE IS COMMENTED OUT //THIS LINE TOO Variable1 = "1"; //comment ...
0
votes
2answers
68 views

How can I copy a database table to an array while accounting for skipped IDs? (PHP/MySQL) - Solved

I previously designed the website I'm working on so that I'd just query the database for the information I needed per-page, but after implementing a feature that required every cell from every table ...
0
votes
1answer
24 views

Wordpress - Skip posts/pages when a custom field equals something

I'm writing a plugin but I have a problem. When Wordpress is displaying posts & pages on the site, I want it to skip that post/page when the custom field show_post equals 0 (this is a simplified ...
0
votes
1answer
43 views

Skip client side validation in Trinidad without immediate=“true”

I am using MyFaces Trinidad JSF 2 and want to skip the client side validations but still update the bean on a button click and navigate to a different page. I do not want to use immediate="true" as ...
0
votes
2answers
97 views

Python: For loop skip in If

Why do the line "old_langpacks.append(act_item)" get skipped? When I use just the for loop, without the if, then it works. if act_file == "Languages.csv": temp_list = open(act_file,"r") ...
0
votes
6answers
65 views

Read all lines in .txt that are all upper or all lower case Python 2.7.1?

I'm trying to read all lines of a file that are either all upper or all lower case. If file.txt contains: Rememberr 8? when you . Tellingmee THAT one didntrememberthat onethingtoday I would want ...
0
votes
1answer
46 views

JavaCC lexical error on any type of whitespace

I cleary have the unicode whitespace characters defined in my SKIP token like so: SKIP { " " | "\r" | "\n" | "\t" } However, when I run Java CC it parses all the tokens fine until I hit any of ...

1 2