The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
13 views

Ordering items in a block that have been pulled out of a join model

Below is the block. Group and Workout are models connected with a has_many :through relationship and a GroupsWorkout join model in between. <% @group.workouts.each do |workout| %> <%= ...
0
votes
0answers
11 views

Hardware/Software rasterizer vs Ray-tracing

I saw the presentation at the High-Perf Graphics "High-Performance Software Rasterization on GPUs" and I was very impressed of the work/analysis/comparison.. ...
1
vote
1answer
28 views

How can I get objects to maintain their order

I know this has been talked about and I have tried many examples with no avail. Guessing I have a no win here but I want one last go at it, so I'll ask good old StackOverflow. Here is an example ...
0
votes
1answer
14 views

How to create Expression Tree for multiple column OrderBy Expression

I have create an orderby expression for my EF generic Repository as following string command = orderByDesc ? "OrderByDescending" : "OrderBy"; var type = typeof(T); var property = ...
0
votes
1answer
21 views

Multithreading logic

Multihreading is way over me. I do not ask for a specific code, instead I'd like you to help me on the logical structure of my problem. We have a restaurant with only 2 waiters, which are taking ...
0
votes
0answers
2 views

How to sort/order a column in data frame by a specified list and then sort by another column

I am working in R and trying to order my data frame by two columns, but the first in a specific order. My data frame is 6 columns by 1041 rows with column headings: tag, spp, dbh, x, ...
0
votes
1answer
51 views

How to change method calling order in python?

My question is about operator overloading in python. I want to set, the 'priority' or 'order' of the method's calling in python, and I'm looking for a pythonic way to do that. Below is a very bizarre ...
0
votes
1answer
29 views

reordering factor levels in ggplot2 doesn't fit the y geom_text annotation

I have a problem in ggplot2. If I reorder factor levels and I plot the text labels value (in this case frequency), the text label values still remains in the old levels. What's wrong???? 29 and 71 ...
0
votes
2answers
67 views

Oracle sql sort week days by current day

I am trying to sort the days based on the order: Saturday, Sunday, Monday, Tuesday, Wednesday, Thursday, Friday. I am trying using case: select day, CASE day WHEN 1 THEN 1 WHEN 2 THEN 2 ...
0
votes
2answers
72 views

dynamic linq query - OrderBy with properties that are null

I'm using The Ordering-By-String extensions from here: http://blog.cincura.net/229310-sorting-in-iqueryable-using-string-as-column-name/ In my datasource, some objects may be null, and therefore ...
1
vote
1answer
59 views

How to run forked processes in some order?

Given the scenario, I am asked to paint the boxes which have various color tags which indicate the color that the boxes will be painted with and those boxes arrive at a painting unit which has a box ...
0
votes
1answer
32 views

Order MySQL result by column value

I'm sorry if this is bad being my 2nd post today, but I need a little help one more time. I have table in mysql DB which holds some products( id, name, description, price, url, CATEGORY ). Now, when I ...
0
votes
0answers
17 views

C/C++ - HWInfo - libhd - Which libraries to link?

I have gotten into libhd (included in hwinfo) since I need to get device information. I got into the documentation and tried this (C/C++): hd_data_t devices__; hd_get_input_devices(&devices__); ...
0
votes
0answers
29 views

Avoid select options being automatically sorted by value

I have a select element which I fill with jquery like this: $.each(myDictionary, function (key, value) { $("#ddlDepartments").append('<option value=' + key + '>' + value ...
0
votes
1answer
42 views

PHP: How to create a unique ordered list?

This is for a game. I have an array with 52 elements in it. I want to be able to create a unique list of these elements each time, but don't want to use randomized because it runs the risk of having ...
1
vote
1answer
67 views

selectOneMenu shows after submit always the last item in the list as selected item

Info JSF 2.0 Primefaces 3.4 Both objects are People objects I have a simple drop down menu that is contained within a form that submits the selection on form submit (AJAX call): <h:form> ...
1
vote
3answers
68 views

Make list of X and Y coordinates

I have the following list: Filedata: [1, 0, 0, 0] [2, 0, 0, 100] [3, 0, 0, 200] [4, 100, 0, 0] [5, 100, 0, 100] [6, 100, 0, 200] ... where the first column is an ID, the second is the X coordinate, ...
1
vote
1answer
84 views

haskell, typing with ordering

I have one problem. I want to implement function which will compare two nodes and give ordering,where nodes the following structure: data Node a = Node { label :: a, adjacent :: [(a,Int)] } deriving ...
-1
votes
1answer
38 views

SQL Table Row Order

Consider the following scenario: I have two comma-separated strings of some table primary key Ids as ('1,2,3,4' and '2,3,4') in variables @table1Ids and @table2Ids. Then I have the following lines: ...
1
vote
1answer
27 views

MySQL Database fixed (?) query ordering

I have a MySQL database with different picture names which I want to order by name. Problem is that I don't know if I need to do this with PHP or if MySQL can be of any use :) This is how MySQL ...
1
vote
1answer
76 views

How to create a Purchase Order form in JS

I'm new to this forum and new to JS as well. I am trying to make a purchase order form for a site I'm creating. Basically I need it to add the total of the items I select and then send the order. ...
0
votes
0answers
24 views

Is depth peeling for intersecting transparent objects still up to date?

I want to use depth peeling, so that I can correctly render transparent intersecting objects. Is this still the way to do, or are there better ways for the problem today ? Thanks in advance.
2
votes
1answer
83 views

How to add a ItemSorter to a table container in Vaadin?

I have a Container class which is extends from BeanItemContainer. I want to add a ItemSorter to DATE_CREATED attribute to sort the values in descending order. Container class. public class ...
2
votes
1answer
133 views

vaadin table must sort entries in chronological order descending i.e. latest at the top then down to the earliest notes

I have a vaadin table which is displaying Notes, with created date time. I want to sort entries in chronological order descending (i.e. latest at the top then down to the earliest notes) by default. ...
1
vote
1answer
66 views

Cypher order by aggregation

I need to aggregate data during the query and then order by this data. According to cypher documentation: If you want to use aggregations to sort your result set, the aggregation must be ...
0
votes
2answers
36 views

Pick x smallest elements in Matlab

I have a matrix of integer values, the x axis represent different days and y axis represents hour of the day. And in each cell is a number that indicates how many hours of the day of the day ...
0
votes
1answer
37 views

Dynamic linq unable to parse ordering

Say I have a query that selects into a defined type like so: public class SomeObject { public DateTime CreatedDate { get; set; } } private class MyType { internal SomeObject Object1 { get; ...
1
vote
0answers
97 views

C# MVC - Using a Webgrid and jquery-dataTables-rowOrdering.js

Anyone got the a webgrid and jquery-dataTables-rowOrdering.js playing together in a MVC application?
3
votes
1answer
83 views

How to sort python unittest discover tests?

I created my bunch of Python tests using the Python unittest format. Now I'm able to run them with python -m unittest discover -s TestDirectory -p '*.py' -v I finds them all, and runs them. Now ...
0
votes
2answers
50 views

Mysql group/ordering

i have a student management system for my martial arts club, different types of info are stored in different DB tables, for attendance, and gradings a NEW row is added for each new event. I am ...
0
votes
3answers
115 views

SQL column sorting by value

Using T-SQL I'm creating a temp table grid. I need to reorder the columns based on the total of the column starting with the largest. For example ---- DO MO BC NI SC Total 22 44 53 57 ...
1
vote
1answer
22 views

Ordering array according to index ~ text

Please, put in R these datas: S.names <- c("FXI", "XLB", "GLD", "IWM", "XLE", "XLF", "EWZ", "GDX", "XLK", "TLT", "IYR", "QQQ", "SLV", "EWJ", "XLV", "DIA", "XHB", "EEM", "USO", "VWO", "SPY", ...
-5
votes
1answer
41 views

How to make a Blog table, latest topic should be on topic, while the previous topic should be going down [closed]

How do i make a blog table with a database that the first latest topic i put will be on top and the previous post should go down next.
1
vote
2answers
77 views

How can I override compareTo method in a class I wrote to compare Strings stored in the class?

I wrote a class, MyClass, and each instance has a String "name" field. I want to override the compareTo method so that when called it will compare the two "name" fields of each instance. Here is ...
1
vote
2answers
86 views

Quick sort an array and store the new ordering in C

I have two int arrays *start and *end whose size might be 5 millions. *start stores the start node number of an edge and *end stores the end node number. Now I want to sort *start in ascending way and ...
1
vote
2answers
97 views

Mysql sorting Hierarchical data

I have a question and working last week with this and couldnt solve yet.. I can query submenus with join but i cant order it. I have a table like this | id | name | parent | order | ...
0
votes
2answers
67 views

PriorityQueue has objects with the same priority

I'm using a priority queue to sort and use a large number of custom objects. The objects have a "weight" that is their natural ordering. However, different objects that are inserted into the priority ...
0
votes
0answers
51 views

Java ScheduledExecutorService (single-threaded) execution ordering

I have a single-threaded ScheduledExecutorService. private ScheduledExecutorService m_es=Executors.newSingleThreadScheduledExecutor(); The documentation says: "Tasks are guaranteed to execute ...
1
vote
2answers
84 views

Serial No Based On Column Info Required In SQL

I have few columns in my table (SQL Server 2000 database). I have information like OrderID Design Qty ------------------------------ 28500 R6192WHM+DWN 1 28500 P3150WHM+DWN ...
0
votes
2answers
81 views

Ordering int pairs [duplicate]

I have a list of int pairs such as [(1,2),(3,5),(0,1),(1,3),(3,0),(0,3)] I want to order this list from the smallest pair to the greatest. For the example above , it should be ...
0
votes
2answers
153 views

Multi criteria sorting of a list of objects with Guava Ordering

I have a class WHICH CANNOT implement comparable, but needs to be sorted based on 2 fields. How can I achieve this with Guava? Let's say the class is class X { String stringValue; ...
0
votes
2answers
61 views

Implementation of Long Atomic Int

I would like to use an atomic counter (multi-thread computation) that counts to typically 2^40, so I cannot use a 32 bit int atomic counter directly. I do not have c++11 yet (I will migrate to it but ...
0
votes
1answer
107 views

Java: Longest Ascending substring

I am trying to create a Java program that reads a numerical string typed from the keyboard, and gives out the longest ascending substring. The following is my code: import java.util.Scanner; ...
1
vote
0answers
57 views

models.Meta.ordering vs ModelAdmin.ordering — How to reclaim performance after Meta.ordering test?

Setup I had two Django (1.4.2) models like so: class CoreData(models.Model): cdid = models.AutoField(primary_key=True,editable=False) name = ...
1
vote
3answers
60 views

MVC 3 OrderByDescending not working

I'm followed the ASP.Net tutorial here, and it worked fine: ...
0
votes
1answer
122 views

Wpf data grid custom column sorting

How do I add a special sorting method to a particular column to allow different types of sorting(such as sorting 120.5.1.50 in between 120.5.1.12 and 120.5.1.110 instead of having 120.5.1.110 be the ...
1
vote
1answer
52 views

Representing 2D data optimized by row vs by column vs flat

In D3 I need to visualize loading lab samples into plastic 2D plates of 8 rows x 12 columns or similar. Sometimes I load a row at a time, sometimes a column at a time, occasionally I load flat 1D ...
0
votes
1answer
57 views

How get array from multidimensional array by order

I have this kind of array: array(2) { [1] => array(3) { [3] => array(3) { ["data"] => array(3) { ["id"] => string(1) "3" ["depth"] => string(1) "1" ...
1
vote
5answers
100 views

Creating two priority queues from the same struct with the opposite order

I have got this struct: struct Passenger { unsigned arrive; unsigned depart; }; Now I need to create an A and a B priority_queue with the opposite order. If I overload the operator<, they will ...
0
votes
0answers
26 views

Google Maps API for delivery system

I am currently creating an online ordering/delivery system, a requirement for my school. Here's the scenario, I have 3 branches of the store, then the user will input their complete home address. ...

1 2 3 4 5 12