The take tag has no wiki summary.
1
vote
2answers
93 views
Haskell - make a 2D list out of a 1D list
I have to make a 2D list [[Int]]. out of a 1D list [Int] in Haskell.
The function should take to args "r" Int indicates the count of rows and a 1D list, which should be sliced into rows with the ...
0
votes
2answers
54 views
Nhibernate Linq - fetchmany where many count == 0
I have this query:
var query = session.Query<Album>()
.FetchMany(x => x.Tracks)
.ThenFetchMany(x => x.Indices)
.Where(t => ...
3
votes
3answers
170 views
Implementing take using foldr
This is my take version using foldl:
myTake n list = foldr step [] list
where step x y | (length y) < n = x : y
| otherwise = y
main = do print $ ...
0
votes
1answer
65 views
LINQ, Skip and Take against Azure SQL Databse Not Working
I'm pulling a paged dataset on an ASP.NET MVC3 application which uses JQuery to get data for endlesss scroll paging via $ajax call. The backend is a Azure SQL database. Here is the code:
[Authorize]
...
0
votes
1answer
110 views
iOS Zbar SDK - Is there a way to capture an image at a user selected moment?
Is there a way to take a photo with Zbar library?
I would like to give the user the possibility to take a picture while showing a started ZBarReaderView instance.
P.S.Don't need the image from ...
2
votes
0answers
72 views
Taking Picture With Camera Android Gets Error in Eclipse
Eclipse is giving me an error with TAKE_PICTURE in the following code. I tried replacing it with CAMERA_PIC_REQUEST and got the same error. I am developing for Android 4.2 here.
@Override
protected ...
2
votes
3answers
115 views
Haskell List With Guards error
i am trying to write a very simple function in haskell to change a value in a list depending on an input as follows
update_game :: [Int] -> Int -> Int -> [Int]
update_game (x:xs) row ...
1
vote
3answers
50 views
groovy take how to reimplement
The take and drop methods were added to the list object in groovy v 1.8.1, and work like this:
def list = ['Simple', 'list', 'with', 5, 'items']
assert list.take(2) == ['Simple', 'list']
I ...
0
votes
0answers
33 views
Audio recording is corrupted while taking photo on iOS
I'm trying to record audio while taking photo for my app. However while taking picture, capturing process is corrupted and continue after a while. I tried to start recording with dispatch_async but it ...
2
votes
1answer
144 views
cassandra snapshot without nodetool but by java api only
How to take cassandra snapshot without nodetool but by java api only? I need to take snapshot of keyspace in cassandra by not using nodetool utility. I have to do it by java api
If any one know how ...
0
votes
0answers
88 views
Linq to SQL - OrderBy and Take combined
I'm having problems with the following query:
context.EntityA
.Include("EntityB.EntityC.EntityD")
.Include("EntityB.EntityC.EntityE")
.Include("EntityB.EntityC.EntityF")
...
0
votes
2answers
234 views
Vb.net PRTSC (Screen capture) - Error
Hi again my question this time its related with this piece of code, im using the visual studio beta 2012, i cant seem to find the issue, if you guys could help me out ill appreciate it
Public Class ...
0
votes
1answer
145 views
LinkedBlockingDeque.take() - separate instance in multipe thread
In our multithreaded java app, we are using LinkedBlockingDeque separate instance for each thread, assume threads (c1, c2, .... c200)
Threads T1 & T2 receive data from socket & add the object ...
-1
votes
3answers
1k views
How do I get the last 5 rows of a datatable?
How do I get the last 5 rows of a datatable? I tried something like this:
var Long_bottom = LongSlection.Last(5);
Where LongSlection is a DataRow. But I had an error, any idea?
1
vote
3answers
143 views
Aborting a linq query after finding x items?
If I know there is only one matching item in a collection, is there any way to tell Linq about this so that it will abort the search when it finds it?
I am assuming that both of these search the full ...
2
votes
2answers
780 views
RavenDB OrderByDescending and Take - Incorrect Results
This query was working for me until recently. I now have 135 InstallationSummary documents in my RavenDB. Instead of getting the most recent by start time, it's mostly working, but the last couple, ...
0
votes
1answer
540 views
Linq DataTable and Take Method
I have the following use of Linq from a datatable:
var query = dt.AsEnumerable();
query = dt.AsEnumerable().Where(log => log.Field<byte>("Day") == day).Take(10);
The following error:
...
1
vote
3answers
4k views
Issues takeing picture with Android (Vertical Camera | Portrait)
With the following code shows a preview of the camera vertically and it's works..
BUT!! I get a photo in landscape! :(
How I can build it vertically?
I've the preview view in vertical, but I can't ...
0
votes
0answers
91 views
Android: exception before select image from gallery twice
first, sorry for my English, it's not very good.
I'm trying to select photo from gallery. All it's ok in this step.
When I select the photo, on ActiviyResult get the Uri of the image and set an ...
0
votes
2answers
49 views
Using the Take Method on my model Substitute Variable
Basically I want to have a way to select the number in my
foreach(var sheet in Model.Sheets.Take(100))
{
...
}
I would like the user to be able to specify this value and reload the page using the ...
3
votes
1answer
1k 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
1k 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 ...
0
votes
2answers
800 views
How to return datatable using Take() using C#
I have a function that returns a datatable, I added a code that will sort the datatable using dataview and should return Top 10 rows from a sorted dataview.
DataView dvDt = dtData.DefaultView;
...
0
votes
1answer
6k views
Entity framework joins
I'm using the entity framework 4.0 and I'm having some issues with the syntax of my query. I'm trying to join 2 tables and pass a parameter to find the value at the same time.I would like find all of ...
1
vote
1answer
259 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 ...
2
votes
2answers
261 views
Is it possible to combine rake task and bundle install into one command?
I have several rake tasks combined into one rake command. Just wondering is it possible to have one command run the "bundle install" within a rake task ?
Or other way around ?
So when I deploy my ...
2
votes
2answers
197 views
Implementing take with F# by translating ML's equivalent
I'd like to translate this ML code into F#.
fun take ([], i) = []
| take (x::xs, i) = if i > 0 then x::take(xs, i-1)
else [];
I tried this one
let rec take n ...
3
votes
4answers
2k views
how to `.Take()` on a string and get a string at the end?
LINQ to Objects supports queries on string objects but when I use code such as below:
string SomeText = "this is some text in a string";
return SomeText.Take(6).ToString();
All I get is:
...
-2
votes
1answer
808 views
custom camera zoom Functionality IPhone Take Photo
I am successfully able to Make custom Zoom using Slider in my Custom Camera view using following code
imagePickerController.cameraViewTransform = CGAffineTransformScale(initialTransform, ...
2
votes
1answer
680 views
.Take(5) returns a count of 0 on an ObservableCollection
I'm trying to use LINQ to return the top 5 ping results from an ObservableCollection<PingReply> but the resulting IEnumerable has a count of 0.
Can anyone explain why the lastFive object in the ...
1
vote
2answers
371 views
F# take items from a sequence
Im trying to learn F#
What I would like to do is download a webpage, split it into a sequence then find the index of an item and take the next 3 items after it.
Heres the code -- can someone show ...
1
vote
3answers
122 views
How much is performance improved when using LIMIT in a SQL sentence?
Let's suppose I have a table in my database with 1.000.000 records.
If I execute:
SELECT * FROM [Table] LIMIT 1000
Will this query take the same time as if I have that table with 1000 records and ...
4
votes
3answers
211 views
Bug ? Seq.take 10 works well , Seq.take 100 doesn't work
let a = [1;2;3;]
for i in (a |> Seq.take 10) do Console.WriteLine(i)
for i in (a |> Seq.take 100) do Console.WriteLine(i)
first line works well but second line gives error : The input ...
0
votes
2answers
592 views
GroupBy then Take in LINQ to Entities?
Let's say I have the following items:
ID Category Name
1 Fruit Banana
2 Car Mescedes
3 Fruit Blackberry
4 Fruit Mango
5 ...
0
votes
1answer
531 views
Why Skip and Take does not work when passing through a method?
Suppose following codes:
IEnumerable<MyClass> MakeQuery()
{
var query = from m in session.Linq<MyClass>()
select m;
return query;
}
List<MyClass> m1()
{
return ...
16
votes
7answers
4k views
LINQ Partition List into Lists of 8 members [duplicate]
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 ...
1
vote
3answers
3k views
LINQ to SQL group by with take
I have a table that looks like this:
Id GroupId Value
and it has about 100 rows
How can I return the top 10 rows for value but with no duplicating GroupId?
3
votes
4answers
1k views
How do I truncate a list in C#?
I know in python you can do something like myList[1:20] but is there anything similar to C#?
Thanks!
0
votes
1answer
42 views
Does anyone know why Take() isn't working here
i have the following code using Nhibernate.Linq
var apps = Session.Linq<History>().OrderByDescending(r => r.LastUpdated).Take(50);
Console.Write(apps.Count());
the count returns 1000 ...
8
votes
2answers
5k views
Taking screenshot of Android OpenGL
I'm fighting from some time with taking a screenshot of Android OpenGL.
The code I found is as follows:
nt size = width * height;
ByteBuffer buf = ByteBuffer.allocateDirect(size * 4);
...
1
vote
1answer
2k views
C# Custom Dictionary Take - Convert Back From IEnumerable
Scenario
Having already read a post on this on the same site, which didn't work, I'm feeling a bit stumped but I'm sure I've done this before.
I have a Dictionary.
I want to take the first 200 ...