Tagged Questions

A reverse-polish calculator stores numbers on a stack. Entering a number pushes it on the stack. Arithmetic operations pop 1 to 3 arguments off the stack, depending on the operation, and push the results back onto the stack. See also bc (An arbitrary precision calculator)

learn more… | top users | synonyms

7
votes
2answers
266 views

Making decimal.Decimal the default numerical type in Python

Is there some way I could make decimal.Decimal the default type for all numerical values in Python? I would like to be able to use Python in a manner similar to the bc and dc programs without having ...
3
votes
1answer
95 views

What happens to the DC when I free a canvas?

In this code I would expect a call to ReleaseDC to happen in MyCanvas.Free, but this code runs fine, how come? And what happens to TCanvas' own DC? var GlobalDC: THandle; procedure ...
2
votes
1answer
103 views

Need help working with self.MemoryDC in wxPython

I'm trying to make a custom text widget that is double buffered (In order to avoid flicker). However, I'd like to be able to do a few things. Yet, I'm unsure of the exact methods I should use. The ...
1
vote
2answers
100 views

How to wrap an existing memory buffer as a DC in native win32?

I have an image in memory defined of an array 32bit ARGB values. I'ld like to get a DC of that to draw on it and afterwards have the result in the same array. The image never gets displayed on the ...
1
vote
1answer
31 views

Search engines that support searching by <META> tags

I'd like to be able to find websites that have specific metatags: eg <meta name="generator" content="http://www.jadu.net" /> <meta name="DC.subject" lang="en" scheme="eGMS.IPSV" ...
1
vote
2answers
221 views

Reading a newline character from a socket in Delphi

I'm working on a program in Delphi that has to conform to the ADC standard protocol. This protocol specifies that each line is terminated with a newline character (#10#13 OR sLineBreak). The problem ...
1
vote
2answers
137 views

Is there a good tool to parse/evaluate mathematical expressions?

Argghh: $ echo 2 4 | bc (standard_in) 1: parse error $ echo $? 0 Why on earth would an otherwise perfectly reasonable program succeed when it recognizes a parse error? Clearly, I cannot use bc to ...
1
vote
2answers
378 views

dc(1) and leading zeros

I've got a shell script and I do some calculations with dc(1). I need to have one number printed with leading zeros; I can't find an easy and straightforward way to do this with dc itself, but the ...
1
vote
1answer
328 views

Fastest method for blitting from a pixel buffer into a device context

Good evening, I have several 32-bit images in memory buffers that I wish to "blit" to a device context, quickly. Speed is an issue here because the buffer will be manipulated constantly and need to ...
1
vote
1answer
72 views

set MFC DC to Qprinter

I was just wondering is that possible to use my existing MFC creadted DC to associate with QPrinter so that it directly uses this existing DC rather creates its own with QPrintDialog?? Does Qprinter ...
1
vote
2answers
376 views

Saving an image of what a dc drew, wxPython

I need to be able to save an image (format doesn't matter) of the state of the dc canvas. I tried dc.GetAsBitmap but it returns invalid bitmaps. How can I do it?
1
vote
1answer
190 views

Associating System.Drawing.Graphics with a device context?

Is there a way of attaching a System.Drawing.Graphics class to a device context (HDC) for another window which was retrieved via GetDC API function? It is easier than using GDI+ directly.
0
votes
0answers
23 views

DC/MARVEL ICONS FROM CYDIA, WHAT DO I DO? [closed]

I´ve downloaded the awesome icons theme DC/MARVEL, but i have no idea how to get it to work, anyone else know? do i need som kind om othetr program to get in to the root of the phone to use them ?
0
votes
1answer
41 views

Change input base in shell script with dc?

I'm trying to change the input and the output base using dc in a shell script. I'm having trouble writing down the exact command. I do not have BASH. I've tried variations on this: (input numb) 2i ...
0
votes
1answer
144 views

How to create memory DC with 24 bits per pixel?

I need it to work with RGB24 data using GDI functions (specifically StretchBlt() which is pretty fast) and I can't use CreateCompatibleDC() since it can create memory DC only with color depth of other ...
0
votes
2answers
249 views

How to control a DC motor with mini Lab 1008 usb and LabVIEW

I am in an internship and unfamiliar with LabVIEW, and am having trouble figuring out how to output the pc +5 volts though LabVIEW to control a DC motor. If you can help with example program, that ...
0
votes
0answers
70 views

What does “DC.title” mean? How does it differ from “title” withing a meta-tag?

I'm in the process of optimizing my site for search engines. I downloaded a module for my CMS that places meta-tags within the head-tag. Instead of <meta name = title> there is <meta name = ...
0
votes
0answers
24 views

how to syncup timings between DC and windows 2008 r2 member server

I use VMWare machines for my product testing, where I have DC and member server configurations. I also used to take snapshots for member server where I can revert back whenever required. By reverting ...
0
votes
1answer
247 views

Win32: How to get window from DC (the reverse of GetDC)

Is there a way to get a window handle to the window owning a win32 DC? Or any other sort of information that might be useful for identifying the window, like DC width and height?
0
votes
1answer
426 views

how do I convert fractional decimal numbers to fractional binary numbers using dc

So dc is a great tool for converting between bases - handy for those bit twiddling coding jobs. e.g to convert 1078 into binary I can do this: bash> echo "2o1078p" | dc 10000110110 However I ...