Tagged Questions

0
votes
3answers
16 views

What is the difference between category/category_id/item_id and category?category_id={}&item_id={} in REST?

I just began looking at REST and was wondering what the basic difference between the two representations was. The first one looks pretty nice to me and the second one has to pass s …
0
votes
3answers
87 views

Changing internal representation in runtime

UPDATE The main questions remain the ones under the example, but I guess it boils down to : **If you have a type where 99% of the values could be represented in one …
3
votes
2answers
79 views

Visual / artistic representations of code

I don't know if there is a name for this. What I am interested in is what sort of graphical programs there are for representing code or code development in a high level, abstract …
4
votes
4answers
72 views

Transient REST Representations

Let's say I have a RESTful, hypertext-driven service that models an ice cream store. To help manage my store better, I want to be able to display a daily report listing quantity an …
1
vote
2answers
184 views

C# binary constants representation

I am really stumped on this one. In C# there is a hexadecimal constants representation format as below : int a = 0xAF2323F5; is there a binary constants representation format?
2
votes
5answers
218 views

subclassing int to attain a Hex representation

Basically I want to have access to all standard python int operators, eg __and__ and __xor__ etc, specifically whenever the result is finally printed I want it represented in Hex f …
0
votes
2answers
126 views

What does Canonical Representation mean and its potential vulnerability to websites

I searched on google for a meaning of canonical representation and turned up documents that are entirely too cryptic. Can anyone provide a quick explanation of canonical representa …
0
votes
2answers
95 views

When do you decide to represent something as a vector?

In information retrieval, the words in the documents were represented as a "Term Vector", they did it primarily to check the angle between two vectors. When have you represented so …
2
votes
3answers
93 views

Good Collision Representation of Player Character in 3d Plaform Game?

I am trying to make a simple 3d platform game. The issue I'm having is with the collision detection and response. I am currently representing my player character (for wall and fl …
3
votes
6answers
621 views

Haskell - How to best to represent a programming language’s grammar?

Hey, I've been looking at Haskell and I'd quite like to write a compiler (as a learning exercise) in it, since a lot of it's innate features can be readily applied to a compiler ( …
2
votes
2answers
200 views

Compilers and negative numbers representations

Recently I was confused by this question. Maybe because I didn't read language specifications (it's my fault, I know). C99 standard doesn't say which negative numbers representati …
0
votes
8answers
834 views

Display the binary representation of a number in C?

Still learning C and I was wondering: Given a number, is it possible to do something like the following? char a = 5; printf("binary representation of a = %b",a); > 101 Or w …
1
vote
3answers
135 views

Is the semantic of the data integral part of REST?

This is a follow up on a question asking for an explanation of REST. As you can see from the comments to my answer, we've had a small argument with Darrel Miller on the best media …
0
votes
3answers
153 views

What is the best modeling methodology for representing software system?

What is the best modeling methodology for representing software system. I mean like UML and so on. Is UML better or is there something better than that out there? My need is to re …
1
vote
3answers
225 views

Replacement for XML to represent Data structures in C++

At work we have a testing tool that is used to send queries to a data source. The tool takes in input as XML files. The XML files were simple and easy to parse as long as the data …