Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
12answers
402 views

Priorities for writing code

I've been following SO for a while now, and every so often I see people asking about the fastest way to do something. I certainly acknowledge that code must be well written and even tuned every now ...
8
votes
14answers
536 views

What are the five priorities for software development?

At another development company I recently saw some project management/workload prioritisation graphs on the wall. I'm used to the maxim "Good, Fast, Cheap: Pick two". But this system used five ...
3
votes
2answers
216 views

Search query, 'order by' priority

I need implement simple search in small content table: id, name, description, content. Results must be order by priorities name description content it's mean that if searched word was found in ...
2
votes
2answers
734 views

RabbitMQ reordering messages

RabbitMQ ticks all the boxes for the project I am planning, save one. I would have different workers listening on a queue and it is important that they process the newest messages (i.e., latest ...
2
votes
2answers
121 views

Managing execution priorities and request expiry time in your web application

Some installations that run our applications can be under hefty stress on a busy day. Our clients ask us is there is a way to manage priorities in our application. For example, in a typical internet ...
2
votes
3answers
352 views

Need tips on how to prioritize and schedule a bunch of work items

It took me some time, but I've finally managed to write down all the tasks that need to go into Version 1.0 of the software product I'm working on. The list is almost 1000 items long. We are a ...
1
vote
2answers
50 views

MySQL priorities

I have a question... Is it possible to set priorities in MySQL? On one server I have application that receives data from or primary server and store it to DB for further use. On the other side I ...
0
votes
1answer
159 views

Mongo db full text search and priorities

I'm planning to build a full text search in my php application powered with Mongo db. The full text search will be hover collection's documents stored like this: title: "the title" STRING ...
0
votes
2answers
87 views

Looking for issue tracking/project management software with per user priority

I am the IT department at a medium sized ecommerce company, and I'm at the point now where I need to implement issue tracking to help me keep everything straight. I've played around with a few ...
0
votes
4answers
48 views

How to implement a prioritised collection

I need to implement a prioritised collection. Assuming we have the following three values in the collection (and their priorities): thisIsUrgent = Priority.High thisIsImportant = Priority.Medium ...
0
votes
1answer
737 views

pthreads with real time priority

I need to manage a pool of threads having different priorities, so I wrote the following thread startup procedure: static int startup(thrd_t *thrd, thrd_sync_t *sync, int prio) { pthread_attr_t ...
0
votes
2answers
416 views

Prioritize JavaScript Scripts: Defer Not Working

I need to prioritize scripts so jQuery, Cufon, and my .js files come before Twitter does. I've tried defer="defer" as well as placing scripts in the bottom in the order I want them to execute but all ...
0
votes
1answer
171 views

mysql row priority

I have a database table full of some really ugly and messy data. In a seperate table i have a cleaner version of the data and they are linked by an id, but I need to keep the messy dataset and can't ...
0
votes
3answers
209 views

How do I extend infix and stack priorities to additional operators?

How would the infix and stack priorities be extended to include the operators <, >, <=, >=, ==, !=, !, &&, and ||? When parsing an infix expression, for example: P + (Q – F) / Y#, ...
0
votes
6answers
338 views

What are your top priorities for features in a general purpose programming language?

My definition of general purpose is a bit specific: a general purpose programming language should be able to handle all problem domains, including implementing operating system kernels, device drivers ...