Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
65answers
3k views

I am compiling a Rules of Programming Mindset for my team: What are yours?

I have been working on a list for a while that helps me share the why of programming approach and thought as much as how to do something. For this, I wanted to build a list of things that are: best ...
28
votes
12answers
19k views

jquery create css rule / class @ runtime

usually i have a css file which has the following rule: #my-window { position: fixed; z-index: 102; display:none; top:50%; left:50%; } how can i avoid creating such a static css ...
25
votes
1answer
509 views

List of C++ name resolution (and overloading) rules

Where I can find a list of the rules that a C++ compliant compiler must apply in order to perform names resolution (including overloading)? I'd like something like a natural-language algorithm or ...
17
votes
3answers
6k views

Pros and cons of Java rules engines

What are the pros and cons to adopting the Java rules engines JESS and Drools? Are there any other players? I understand that Drools is Open Source and JESS is not, but how do they compare in other ...
15
votes
7answers
436 views

Rules engine for .NET

We have a business requirement to let power users edit rules for insurance rates and enrollments. We need a web ui that lets them say "this product is only for people <55 unless they are from ...
14
votes
4answers
9k views

how to emulate “insert ignore” and “on duplicate key update” (sql merge) with postgresql?

what's the best way to emulate "insert ignore" and "on duplicate key update" with postgresql ?
12
votes
5answers
760 views

C# - StyleCop - SA1121: UseBuiltInTypeAlias - Readability Rules

Not found it in StyleCop Help Manual, on SO and Google so here it is ;) During StyleCop use I have a warning: SA1121 - UseBuiltInTypeAlias - Readability Rules The code uses one of the ...
11
votes
3answers
3k views

Design patterns and algorithms for applying rules to facts

I am in the midst of trying to nail down requirements from a client for a pricing engine in a retail environment. We have defined the pricing engine as operating on a set of pricing rules that ...
11
votes
6answers
1k views

Are there any rules for OOP?

Recently I heard that there are 9 rules for OOP(Java). I know only four as Abstraction, Polymorphism, Inheritance and Encapsulation. Are there any more rules for OOP?
9
votes
4answers
169 views

How to compare two lists of rules?

I need to compare two Lists of Rules of form var -> integer on the fact of mismatch. To determine, if there are any rules the same by lhs and different by rhs. For example: {a->3, b->1, ...
9
votes
3answers
1k views

Rules for building Graphical User Interface

I like the back-end programming in service and database layers. Mainly because I was never able to figure out how to build decent user interface. I'm talking about GWT and Swing. Is there something ...
9
votes
5answers
2k views

How do browser cookie domains work?

Due to weird domain/subdomain cookie issues that I'm getting, I'd like to know how browsers handle cookies. If they do it in different ways, it would also be nice to know the differences. In other ...
9
votes
2answers
2k views

Ruby & Rules Engines

I'm looking for a simple way to let users define a set of rules to filter objects. Eg. let them define something like "notify me about a booking if booking date < 2009/04/30 AND value > 100.00" ...
9
votes
8answers
2k views

What would you use for a business validation layer?

In my project I need to create a business object validation layer that will take my object and run it against a set of rules and return either pass or fail and it's list of failure reasons. I know ...
9
votes
17answers
686 views

Do you have your own DNUT/NDT (“Do Not Use This/Never Do That”) list?

I was reviewing this morning a piece of code written by a beginner, when I found these lines: If ... ElseIf ... ElseIf ... Endif I told him "Please, Do Not Use This". And the other guy sitting ...
8
votes
2answers
207 views

Out of Core Rules Engine

Are there any implementations of production rule systems that operate out of core? I've checked out the open source implementations like CLIPS and Jess, but these only operate in memory, so they tend ...
8
votes
4answers
385 views

What are PostgreSQL RULEs good for?

Question I often see it stated that rules should be avoided and triggers used instead. I can see the danger in the rule system, but certainly there are valid uses for rules, right? What are they? ...
8
votes
6answers
5k views

Implementing a “rules engine” in Python

I'm writing a log collection / analysis application in Python and I need to write a "rules engine" to match and act on log messages. It needs to feature: Regular expression matching for the message ...
7
votes
8answers
1k views

I need a simple rules engine, I think?

I need some advice on the best approach to solving this problem. I've researched DROOLS, Java Rule Engine and a few others. All of these are powerful, and have good things about them. I don't know ...
7
votes
6answers
392 views

Capitalization of Person names in programming

Is anyone aware of some code/rules on how to capitalize the names of people correctly? John Smith Johan van Rensburg Derrick von Gogh Ruby de La Fuente Peter Maclaurin Garry McDonald (these may ...
7
votes
2answers
2k views

VSTO: process mail using newmailex before outlook rules move mail

I am creating an addon for Outlook 2007 that reads a mail item when it is received, and then rewrites it. The addon works great, and rewrites the mail for items that do not have an Outlook rule that ...
7
votes
12answers
2k views
6
votes
1answer
70 views

What are the other solutions for the following rule design?

I want to make a simple validation system for certain class of objects, basically public interface IMyClassRule { bool IsValid(MyClass obj, Context someAdditionalData) } The list of rules is ...
6
votes
2answers
89 views

How to find the windows dialing rules in .NET

This should be simple, but isn't apparently. Since..Windows 3 or so, there is a control panel called Phone or Phone & Modem. In that control panel is a bunch of information about how a modem ...
6
votes
1answer
103 views

javascript dom, how to handle “special properties” as versus attributes?

issue is whether to use property or attribute. have not found this documented, so have run some tests (chromium 12): property <=> attribute accept, alt, formMethod, formTarget, id, name, ...
6
votes
1answer
289 views

When does one need to call revalidate() on a swing component to make it refresh, and when not?

When dealing with swing components, and when changing the components during runtime, one (often) needs to call the revalidate() method on the components in order for them to refresh. What are the ...
6
votes
7answers
255 views

Are modifiable join views a reasonable design choice?

To be clear, by modifiable join view I mean a view constructed from the joining of two or more tables that allows insert/update/delete actions that modify any/all of the component tables. This may be ...
6
votes
5answers
625 views

What Rules does compiler have to follow when dealing with volatile memory locations?

I know when reading from a location of memory which is written to by several threads or processes the volatile keyword should be used for that location like some cases below but I want to know more ...
6
votes
2answers
262 views

How to balance DRY principle with minimizing dependencies?

I'm having a problem with the DRY principle (Don't Repeat Yourself) and minimizing dependencies that revolves around Rete rules engines. Rules engines in large IT organizations tend to be Enterprise ...
5
votes
4answers
640 views

rules engine design & examples in c#

I am currently writing a .net application with c# and want to check a number of rules and based on passing or failing the rules, perform an action. So I am looking to implement a generic solution that ...
5
votes
1answer
125 views

Lazy C++ (LZZ) rule files for Visual C++ 2010

Has anyone made LZZ rule files for Visual C++ 2010 so you can add .lzz files to a project and compile without seeing the intermediate .cpp and .h files?
5
votes
2answers
151 views

Javascript validation - sync with server

In the interests of DRY, is there a framework / library / design pattern for specifying validation rules in one place, and having them evaluated on both the client and server sides? It seems like an ...
5
votes
2answers
4k views

PostgreSQL's rules and nextval()/serial problem (very PostgreSQL-specific)

When I use a rewrite rule that splits an insert into one table into inserts to two other tables where one of the inserted values has as default nextval('some_sequence') with the same sequence for both ...
5
votes
2answers
389 views

Has anyone created any cool rules for FxCop/StyleCop?

I'm just looking for some inspiration. Especially in the area of performance and security, naming conventions are important but not as 'cool' ;) Even if your rule was only applicable to your ...
5
votes
5answers
599 views

Which rule from FxCop do you deactivate?

I personally don't use FxCop yet. We want to work out the unit testing first before going with code analysis. However, which rules would you permanantly deactivate? Which rules would you deactivate ...
5
votes
5answers
446 views

Good references / tips for designing rule systems?

I often need to implement some sort of rule system that is user-editable -- the requirements are generally different enough that the same system isn't directly applicable, so I frequently run into the ...
4
votes
1answer
99 views

How does Tomcat maintain session integrity?

HttpServletRequest's getSession(boolean) method mentions session integrity. How does Tomcat maintains session integrity? What rules does it use? What method? What is happening under the hood ...
4
votes
5answers
120 views

Why does changing what a reference points to not throw an error?

Iv got to the stage in my c++ study concerning references. It states the following rule: Once a reference is initialized to an object, it cannot be changed to refer to another object. Iv wrote a ...
4
votes
2answers
172 views

CA1726: FxCop Forbidden Word: Flags

someone wants me to make other people's code compliant to some FxCop ruleset which includes rule CA1726:Use preferred terms. Most of the terms/replacements are all right and I can understand that one ...
4
votes
2answers
317 views

GNU Prolog - searching a list of facts

I must be having a brain fart or something, but i just can't seem to find a solution to this. If you have a list facts such as: %country(country, population, capital) country(sweden, 8823, ...
4
votes
4answers
474 views

Do not allow a user to delete a node but allow to delete through Views Bulk Operations

I have the following scenario: Editor Role should not be allowed to delete nodes. Therefore the corresponding permission is de-selected in the permissions page. However Editor should be able to to ...
4
votes
3answers
507 views

How to use only certain validation set for validating data in Cake PHP?

I was trying to validate my User model data and I came upon this problem. Say i have the following validation rules, stored in $validate variable: var $validate=array( "username" => ...
4
votes
6answers
402 views

Inference engine to calculate matching set according to internal rules

I have a set of objects with attributes and a bunch of rules that, when applied to the set of objects, provides a subset of those objects. To make this easier to understand I'll provide a concrete ...
4
votes
2answers
577 views

Logging SELECT statements in PostgreSQL 8.4

I've got a table which contains sensitive data and according to data protection policy we have to keep a record of every read/write of the data including a row identifier and the user who accessed the ...
4
votes
6answers
291 views

Predicate Searching in Java

Not quite sure how to word this question. I am wondering if there is a method to check certain parts of a custom java class to see if it matches a certain criteria. Such as this public Name(String ...
4
votes
4answers
2k views

Should I use Drools in this situation?

I'll use a university's library system to explain my use case. Students register in the library system and provide their profile: gender, age, department, previously completed courses, currently ...
4
votes
2answers
693 views

Rules to Develop a Delphi Windows 7 App

Where can I find the best set of rules to follow for developing a Delphi application for Windows 7?
4
votes
4answers
442 views

Open Source Expression Engines (Java)

Are there any good open source expression engines for java? I am not looking for a rules engine (which implement conditionals and logic). I want to be able to define a number of "facts" and ...
4
votes
4answers
747 views

How do you decide when to use Postback or Callback?

I was wondering what to take into consideration when deciding between a full postback or a quick callback. There are two extremes: You could do it the "old" way, where every user action causes a ...
4
votes
11answers
3k views

What technology to use in creating DSL for rules engine?

What technology would you recommend to create a DSL for a Business Rules and Validation Application Block for .NET? And why? The architecture of the framework is established and proof-tested by a ...

1 2 3 4 5 7