Tagged Questions
The representation tag has no wiki summary.
18
votes
12answers
1k views
Biggest number in computer ever
Just asked by my 5 year old kid: what is the biggest number in the computer?
We are not talking about max number for a specific data types, but the biggest number that a computer can represent.
...
12
votes
3answers
279 views
Generating a linear, timeline-based, representation from items that consume time and items which do not, but still need space to be drawn on
This is a question about generating an image, or any other representations, for a set of parallel data. Is is not about drawing or GUI programming but calculating positions.
First I'll explain a bit ...
10
votes
6answers
3k views
Haskell - How to best to represent a programming language's grammar?
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 (particularly a recursive ...
7
votes
3answers
544 views
Python proper use of __str__ and __repr__
My current project requires extensive use of bit fields. I found a simple, functional recipe for bit a field class but it was lacking a few features I needed, so I decided to extend it. I've just got ...
6
votes
2answers
114 views
Lisp: How to override default string representation for CLOS class?
In Common Lisp, how can I override the default string representation of a CLOS class so that calls to format or princ will print something intelligible, even when objects of that class are embedded ...
6
votes
3answers
3k views
Nicely representing a floating-point number in python
I want to represent a floating-point number as a string rounded to some number of significant digits, and never using the exponential format. Essentially, I want to display any floating-point number ...
5
votes
1answer
75 views
String representation of custom data in Racket
I like how you can retain representation in transparent structs:
(struct posn (x y)
#:transparent)
> (posn 1 2)
(posn 1 2)
But is there a way to customize it? Like in Python?
5
votes
4answers
170 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 and dollar value of ...
4
votes
1answer
139 views
The C standard's word on the switch statement
Consider this code example:
char c = 0xff;
char mask = 0xfe;
switch ((unsigned)(c & mask)) {
case -2: /* do task 1 */ break;
default: /* do task 2 */
}
Let us assume that CHAR_BIT = 8 and the ...
4
votes
2answers
113 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 and beautiful way.
...
4
votes
7answers
660 views
What's the best format to represent one day?
How to represent the start and end times for one day?
Using October 23, 2008 as an example, is it start 2008-10-23 12:00:00 AM and end 2008-10-23 11:59:59 PM?
3
votes
1answer
121 views
C checking for signed number representation
The following way of checking for the signed number representation checks for twos complement correctly on my machine, but I dont have ones complement or signed magnitude machines to check it. Would ...
3
votes
2answers
86 views
How can I represent an infinite number in Python?
For example when you want in python to give to a set of elements an associated value, and you use this value for comparisons between them, I would want this value is infinite, I mean, no matter which ...
3
votes
1answer
361 views
UnicodeDecodeError: 'ascii' codec can't decode
I'm reading a file that contains Romanian words in Python with file.readline().
I've got problem with many characters because of encoding.
Example :
>>> a = "aberație" #type 'str'
...
3
votes
4answers
126 views
Do any other languages have builtin rational types like scheme?
I haven't heard of any, most languages seem to just have division of ints round or be a floating point number. Was it found to be a problem in scheme and so not used in other languages?
3
votes
4answers
117 views
Methods for Python classes representation
I know that methods __repr__ and __str__ exist to give a formal and informal representation of class instances. But does an equivalent exist for class objects too, so that when the class object is ...
3
votes
1answer
146 views
Python: pytz returning unusable __repr__()
I understand that repr()'s purpose is to return a string, that can be used to be evaluated as a python command and return the same object. Unfortunately, pytz does not seem to be very friendly with ...
3
votes
1answer
144 views
Binary representation of a .NET Decimal
Hey all, quick question: How does a .NET decimal type get represented in binary in memory?
We all know how floating-point numbers are stored and the thusly the reasons for the inaccuracy thereof, ...
3
votes
5answers
951 views
What is the binary representation of a boolean value in c#
I know that a boolean value is 1 byte (8 bits long)
But I would like to know is what is its binary representation.
e.g.
decimal => binary
4 => 100 (0000 0100)
8 => 1000 (0000 ...
3
votes
2answers
582 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 representation should be used by ...
2
votes
2answers
24 views
Select statement of a table SQL 2008
I have a table with 3 columns, representing a matrix:
i j val
-------
1 1 1
1 2 12
1 3 4
2 1 3
2 2 4
2 3 4
3 1 0
3 2 2
3 3 2
How would I select this table in such a way i get
a1 a2 a3
...
2
votes
2answers
58 views
Representation and efficiency of Switch statements in bytecode?
Though a switch statement can be represented as a series of if statements, it appears that when a Java switch statement is compiled into bytecode, a different approach is used.
What is the ...
2
votes
1answer
53 views
representation format in web2py database
db.define_table('person', Field('name'), format='%(name)s')
What does this format do here?
2
votes
1answer
125 views
What is the perl's equivalent of repr in python/ruby's inspect method
What is the perl's equivalent of repr in python/ruby's inspect method?
(I'm asking so I can use it for doing print debugging)
2
votes
3answers
54 views
how to encode the following representation of numbers
well its a question i got in an assignment..and i am getting no clue to proceed
the question is like this
A man want to communicate with alien to land him safely on earth station by providing
...
2
votes
1answer
243 views
REST to my wife - can somebody explain this phrase from it?
I've been reading How I Explained REST to My Wife. Great article but I don't get the ending :D.
Wife: So this is what you and all the computer people are working on now? Deciding what the data ...
2
votes
5answers
575 views
Converting a hex-string representation to actual bytes in Python
i need to load the third column of this text file as a hex string
http://www.netmite.com/android/mydroid/1.6/external/skia/emoji/gmojiraw.txt
>>> ...
2
votes
4answers
154 views
How are things represented visually?
I'm a beginner and I was wondering how pictures,video,windows and buttons etc are represented visually on the screen. I'm not asking whether it was made from for example gtk or wxwidgets, My question ...
2
votes
2answers
2k 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
878 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 format. (Kind of ...
2
votes
3answers
309 views
Good Collision Representation of Player Character in 3d Platform 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 floor collisions) with ...
1
vote
5answers
110 views
How do I pick a good representation for a board game tactic for a genetic algorithm?
For my bachelor's thesis I want to write a genetic algorithm that learns to play the game of Stratego (if you don't know this game, it's probably safe to assume I said chess). I haven't ever before ...
1
vote
2answers
82 views
Binary representation of a number in Matlab
Is there a Matlab function that returns the binary representation of a float number?
1
vote
4answers
73 views
Does c standard guarantee bit pattern interpretation for signed and unsigned?
Does the C standard state how bit representations should be interpreted? In other words do the following if conditions always evaluate to true? Assume sizeof (int) = 4 and CHAR_BIT = 8
unsigned u = ...
1
vote
1answer
43 views
allegro library 4.4 korean broken
I am working with allegro 4.4 library
when I print korean, korean string breaks but english isn't
in Allegro Manual, it says, allegro uses UTF8 encoding by default.
I have no idea what was wrong, ...
1
vote
0answers
18 views
How to represent 2 points on a chart or guage?
I'd need to display 2 pieces of information very nicely and using a free tool!
Previous Week Score: 85.60%
and
Current Week Score: 96.00%
I can implement this using a MS bar chart but it would be ...
1
vote
2answers
95 views
REST - allow GET resource/ to output different versions
For simplicity, say I have a resource users. The HTTP call GET users/ returns a list of links to concrete users:
<users>
<link rel='user' href='/users/user/1/'/>
<link ...
1
vote
4answers
227 views
C represent int in base 2 [closed]
Possible Duplicate:
Can I use a binary literal in C or C++?
I am learning C and i recently found out that we can represent integers in different ways, like that:
(Assuming i has ...
1
vote
2answers
119 views
What is the most compact way to represent a database?
I have a database (20 tables, up to a maximum of 17 rows) that I need to represent schematically or graphically on one A4 sheet.
I'm looking for a way to do this, since I only know about ER models ...
1
vote
2answers
103 views
how is a file represented on a disk
so I want to ask, and forgive me if this is obvious, or newbie question:
if I create a file, say a text file - save it, (I'm using Ubuntu), so this file I have created, has some extra information ...
1
vote
3answers
203 views
What type should I use for binary representation of C enum?
As I know C enum is unsigned integer, but this may vary by implementation.
What type should I use for the enum in binary representation?
*PS
'binary representation' means byte-array. I want to ...
1
vote
1answer
74 views
Given a decompressed gzip file, is there any way to recreate the exact original gzip file?
Given a gzip file Z, if I decompress it to Z', is there any way I can recompress it to get the exact same gzip file Z back? After a cursory reading of the DEFLATE format, I am guessing no, as any ...
1
vote
2answers
1k views
How to model rules for generating geometric patterns?
For my problem it would be best to find a numeric representation of kazakh national ornaments for generating new ones. But other approaches are also fine.
The ornaments essentially consist of ...
1
vote
2answers
438 views
Graph/tree representation and recursion
I'm currently writing an optimization algorithm in MATLAB, at which I completely suck, therefore I could really use your help. I'm really struggling to find a good way of representing a graph (or well ...
1
vote
3answers
2k 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 representation and also what ...
1
vote
9answers
5k views
Display the binary representation of a number in C? [closed]
Possible Duplicate:
Is there a printf converter to print in binary format?
Still learning C and I was wondering:
Given a number, is it possible to do something like the following?
char a ...
1
vote
3answers
203 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 representation of ...
1
vote
3answers
314 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 structures we tried ...
0
votes
0answers
34 views
Represening audio .wav file numerically
I am currently doing a project which captures sound and I am recording it in .wav file format, but further I have to process the sound by applying various formulas and hence it needs to be represented ...
0
votes
1answer
27 views
Represent a Mixture with a Django Model
I'm trying to represent a mixture in Django. Something like:
Chemical #1 - 50%
Chemical #2 - 30%
Chemical #3 - 20%
I figured I would use a wrapper called composition as follows:
class ...