User Tommy Herbert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T23:43:36Z http://stackoverflow.com/feeds/user/11575 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/725046/why-cant-i-get-my-cdatabase-object-to-understand-my-data-source-name 0 Why can't I get my CDatabase object to understand my Data Source Name? Tommy Herbert 2009-04-07T10:44:05Z 2009-11-16T15:58:11Z <p>I'm using the MFC class CDatabase. To establish a connection to SQL Server, I'm calling OpenEx() with a connection string. My problem is that the object seems unable to interpret the DSN part of the string. The connection string looks like this:</p> <pre><code> ODBC;DSN=mySystemDSN;UID=myUsername;WSID=myMachineName;DATABASE=myDatabaseName;Trusted_Connection=Yes </code></pre> <p>That ought to be right because I got it by using OpenEx( NULL ), choosing the data source manually and then calling GetConnect().</p> <p>But this string doesn't seem to contain enough information: OpenEx() always pops up a dialogue asking for more. It doesn't seem to matter what I choose from this dialogue - I can pick a DSN associated with a completely different database and things still work (a call to GetConnect() in that situation shows that it's using my connection string except for the DSN part, which is borrowed from the other data source).</p> <p>I need my application to be able to connect to the database automatically - dialogue boxes are a deal-breaker. I've tried a DSN-less connection with similar results. What's going on here, and what can I do about it?</p> <p><em>edit in answer to Neil Butterworth's question:</em></p> <p>The information I provided when I created the DSN in the ODBC Data Source Administrator was as follows:</p> <p>driver: SQL Server<br /> name: mySystemDSN<br /> server: myMachineName<br /> authentication type (can be Windows or SQL Server): Windows<br /> checkbox "Connect to SQL Server to obtain default settings for the additional configuration options.": ticked<br /> checkbox "Change the default database to": ticked and myDatabaseName chosen from drop-down menu<br /> checkbox "Use ANSI quoted identifiers": ticked<br /> checkbox "Use ANSI nulls, paddings and warnings": ticked<br /> checkbox "Perform translation for character data": ticked</p> http://stackoverflow.com/questions/1266319/processing-english-statements/1347074#1347074 0 Answer by Tommy Herbert for Processing English Statements Tommy Herbert 2009-08-28T13:44:17Z 2009-08-28T13:44:17Z <p>Apart from the Stanford parser, <a href="http://www.informatics.sussex.ac.uk/research/groups/nlp/rasp/" rel="nofollow">RASP</a> is a possibility too - it can produce lists of grammatical relations as part of its output. See <a href="http://stackoverflow.com/questions/1318197/how-to-determine-subject-object-and-other-words">this question</a>.</p> http://stackoverflow.com/questions/1318197/how-to-determine-subject-object-and-other-words/1341182#1341182 0 Answer by Tommy Herbert for How to determine subject, object and other words? Tommy Herbert 2009-08-27T13:42:18Z 2009-08-27T13:42:18Z <p>StompChicken has given the right answer to this question, but I'd like to add that the concepts of subject and object are known as grammatical relations, and that Briscoe and Carroll's <a href="http://www.informatics.sussex.ac.uk/research/groups/nlp/rasp/" rel="nofollow">RASP</a> is a parser that can go the extra step of deducing a list of relations from the parse.</p> <p>Here's some example output from their <a href="http://www.informatics.sussex.ac.uk/research/groups/nlp/rasp/offline-demo.html" rel="nofollow">demo page</a>. It's an extract from the output for a sentence that begins "We describe a robust accurate domain-independent approach...":</p> <p>(|ncsubj| |describe:2_VV0| |We:1_PPIS2| _)<br /> (|dobj| |describe:2_VV0| |approach:7_NN1|)</p> http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing 4 Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T16:59:07Z 2009-06-24T20:05:07Z <p>In the following C++ code, I realised that <code>gcount()</code> was returning a larger number than I wanted, because <code>getline()</code> consumes the final newline character but doesn't send it to the input stream.</p> <p>What I still don't understand is the program's output, though. For input "Test\n", why do I get " est\n"? How come my mistake affects the <em>first</em> character of the string rather than adding unwanted rubbish onto the end? And how come the program's output is at odds with the way the string looks in the debugger ("Test\n", as I'd expect)?</p> <pre><code>#include &lt;fstream&gt; #include &lt;vector&gt; #include &lt;string&gt; #include &lt;iostream&gt; using namespace std; int main() { const int bufferSize = 1024; ifstream input( "test.txt", ios::in | ios::binary ); vector&lt;char&gt; vecBuffer( bufferSize ); input.getline( &amp;vecBuffer[0], bufferSize ); string strResult( vecBuffer.begin(), vecBuffer.begin() + input.gcount() ); cout &lt;&lt; strResult &lt;&lt; "\n"; return 0; } </code></pre> http://stackoverflow.com/questions/839739/with-cdatabase-can-i-send-sql-without-using-crecordset 0 With CDatabase, can I send SQL without using CRecordSet? Tommy Herbert 2009-05-08T13:16:00Z 2009-06-17T03:00:00Z <p>When using the MFC class CDatabase to connect to a data source, is there any way to execute SQL statements without having to open a CRecordSet object? I ask because CRecordSet::Open() appears to throw an exception when I use it to call stored procedures that don't return anything - and there's no reason to expect results from, say, sp<code>_</code>delete<code>_</code>row.</p> http://stackoverflow.com/questions/725046/why-cant-i-get-my-cdatabase-object-to-understand-my-data-source-name/725377#725377 0 Answer by Tommy Herbert for Why can't I get my CDatabase object to understand my Data Source Name? Tommy Herbert 2009-04-07T12:13:42Z 2009-04-07T12:13:42Z <p>Thanks to Neil Butterworth, I found a working answer <a href="http://www.connectionstrings.com/" rel="nofollow">here</a>:</p> <p>"Driver={SQL Native Client};Server=myMachineName;Database=myDatabaseName;Trusted_Connection=yes;"</p> <p>I'm still baffled as to why calling GetConnect() when the connection is working doesn't produce a perfect DSN string, but now that I've got a DSN-less solution I don't care as much!</p> http://stackoverflow.com/questions/650340/do-python-lists-have-an-equivalent-to-dict-get 3 Do Python lists have an equivalent to dict.get? Tommy Herbert 2009-03-16T13:04:46Z 2009-03-16T15:39:23Z <p>I have a list of integers. I want to know whether the number 13 appears in it and, if so, where. Do I have to search the list twice, as in the code below?</p> <pre><code>if 13 in intList: i = intList.index(13) </code></pre> <p>In the case of dictionaries, there's a <code>get</code> function which will ascertain membership and perform look-up with the same search. Is there something similar for lists?</p> http://stackoverflow.com/questions/308581/how-should-i-order-the-members-of-a-c-class 7 How should I order the members of a C++ class? Tommy Herbert 2008-11-21T12:13:00Z 2009-03-16T11:02:15Z <p>Is it better to have all the private members, then all the protected ones, then all the public ones? Or the reverse? Or should there be multiple private, protected and public labels so that the operations can be kept separate from the constructors and so on? What issues should I take into account when making this decision?</p> http://stackoverflow.com/questions/484142/how-can-you-make-an-mfc-application-with-an-html-view-consistently-accept-drag-dr 1 How can you make an MFC application with an HTML view consistently accept drag-dropped files? Tommy Herbert 2009-01-27T16:39:27Z 2009-01-30T13:10:34Z <p>I'm trying to decipher CHtmlView's behaviour when files are dragged into the client area, so I've created a new MFC app and commented out the CHtmlView line that navigates to MSDN on startup. In my main frame, I've overridden CWnd::OnDropFiles() with a function that shows a message box, to see when WM_DROPFILES is sent.</p> <p>OnDropFiles() gets triggered on all except the first time you try to drag a file into the application. Uniquely, that first time appears to be interpreted by the application as a request to display the data in the file rather than a request to open the file. I've tried overriding OnDrop() from the view class, but it's never called.</p> <p>Why is the first time different? How can I catch all attempts to drag a file into my app?</p> http://stackoverflow.com/questions/473338/does-sql-server-transform-text-in-any-way-when-performing-a-bulk-insert 1 Does SQL Server transform text in any way when performing a BULK INSERT? Tommy Herbert 2009-01-23T15:35:48Z 2009-01-23T15:47:02Z <p>I'm trying to use a BULK INSERT statement to populate a large (17-million-row) table in SQL Server from a text file. One column, of type nchar(17) has a UNIQUE constraint on it. I've checked (using some Python code) that the file contains no duplicates, but when I execute the query I get this error message from SQL Server:</p> <p>Cannot insert duplicate key row in object 'dbo.tbl_Name' with unique index 'IX_tbl_Name'.</p> <p>Could Server be transforming the text in some way as it executes BULK INSERT? Do SQL Server databases forbid any punctuation marks in nchar columns, or require that any be escaped? Is there any way I can find out which row is causing the trouble? Should I switch to some other method for inserting the data?</p> http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever 54 How do you stop interim solutions from lasting forever? Tommy Herbert 2008-10-03T17:10:01Z 2009-01-21T19:50:10Z <p>Say there are two possible solutions to a problem: the first is quick but hacky; the second is preferable but would take longer to implement. You need to solve the problem fast, so you decide to get the hack in place as quickly as you can, planning to start work on the better solution afterwards. The trouble is, as soon as the problem is alleviated, it plummets down the to-do list. You're still planning to put in the better solution at some point, but it's hard to justify implementing it right now. Suddenly you find you've spent five years using the less-than-perfect solution, cursing it the while.</p> <p>Does this sound familiar? I know it's happened more than once where I work. One colleague describes deliberately making a bad GUI so that it wouldn't be accidentally adopted long-term. Do you have a better strategy?</p> http://stackoverflow.com/questions/362953/what-are-uses-of-the-c-construct-placement-new/362974#362974 1 Answer by Tommy Herbert for What are uses of the C++ construct "placement new"? Tommy Herbert 2008-12-12T14:55:14Z 2008-12-12T14:55:14Z <p>It can be useful when paging out memory to a file on the hard drive, which one might do when manipulating large objects.</p> http://stackoverflow.com/questions/353632/why-use-to-initialise-a-primitive-type-in-c 3 Why use = to initialise a primitive type in C++? Tommy Herbert 2008-12-09T17:52:07Z 2008-12-09T18:47:21Z <p>Where I work, people mostly think that objects are best initialised using C++-style construction (with parentheses), whereas primitive types should be initialised with the = operator:</p> <pre><code>std::string strFoo( "Foo" ); int nBar = 5; </code></pre> <p>Nobody seems to be able to explain why they prefer things this way, though. I can see that <code>std::string = "Foo";</code> would be inefficient because it would involve an extra copy, but what's wrong with just banishing the <code>=</code> operator altogether and using parentheses everywhere?</p> <p>Is it a common convention? What's the thinking behind it?</p> http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/351127#351127 0 Answer by Tommy Herbert for Best programming novel to take on holiday Tommy Herbert 2008-12-08T22:15:42Z 2008-12-08T22:22:08Z <p>Big If, by Mark Costello.</p> <p><img src="http://bks3.books.google.com/books?id=RzJQ3jRoXbAC&amp;printsec=frontcover&amp;img=1&amp;zoom=1&amp;sig=ACfU3U0ktISfHGUBGcRe7J7472Wv0Mae1g" alt="alt text" /></p> http://stackoverflow.com/questions/346788/difference-between-baseline-and-benchmark-in-performance-of-an-application/351101#351101 0 Answer by Tommy Herbert for difference between baseline and benchmark in performance of an application Tommy Herbert 2008-12-08T22:04:24Z 2008-12-08T22:04:24Z <p>In scientific research, a benchmark is a kind of test and a baseline is a kind of result.</p> <p>Let's look at an example of a benchmark test: we might take a collection of 5,000 sentences in English and use the lab's four-core Dell machine to translate them into Spanish using various algorithms. Because we've kept the data and the machine constant, we can meaningfully compare the time taken by the different algorithms to complete the task, as well as their relative accuracy (measured against gold-standard human translations).</p> <p>To find a baseline for this benchmark test, we might write a very naive translation algorithm that just finds the commonest translation for each individual word, with no regard for the context. Measuring the accuracy of this algorithm against our human translations gives us an idea of the minimum score - the baseline - that the others must beat, and gives us a feel for what level of accuracy counts as "good".</p> <p>At the other end of the scale from a baseline, an upper bound is a useful yardstick too. In the translation example, we might find the upper bound by measuring the accuracy of one of our human translations with respect to the others. This gives us an idea of how high it's possible to get on our "accuracy" measure before you hit the ceiling of human disagreement. We expect our machine translation algorithms to perform at a level between the baseline and the upper bound.</p> http://stackoverflow.com/questions/323774/how-can-i-make-a-clistctrl-keep-its-scrollbar 0 How can I make a CListCtrl keep its scrollbar? Tommy Herbert 2008-11-27T13:30:01Z 2008-11-28T00:31:07Z <p>In MFC, a CListBox has a "disable no scroll" property. When you set it to true, the vertical scrollbar is always there, no matter how many items you have. How can I do the same thing with CListCtrl?</p> http://stackoverflow.com/questions/114830/is-a-python-dictionary-an-example-of-a-hashmap 8 Is a Python dictionary an example of a hashmap? Tommy Herbert 2008-09-22T13:22:28Z 2008-11-24T14:34:30Z <p>One of the basic data structures in Python is the dictionary, which allows one to record "keys" for looking up "values" of any type. Is this implemented internally as a hashmap? If not, what is it?</p> http://stackoverflow.com/questions/301626/how-can-i-preserve-utc-in-a-cdatetimectrl 0 How can I preserve UTC in a CDateTimeCtrl? Tommy Herbert 2008-11-19T11:30:32Z 2008-11-19T14:09:29Z <p>My MFC application has a dialogue with a date picker. When I initialise this dialogue, I need to call CDateTimeCtrl::SetTime() and I'm trying to decide what argument to give it. I have an array of integers representing a year, month, day, hour and minute in UTC. Here's the important bit: the date picker must display the time in UTC, not local time. And when I call GetTime() later, I need to be sure that what I get back can be treated as UTC.</p> <p>The SetTime() function has three overrides: the first takes a CTime*, the second takes a COleDateTime&amp; and the third takes an LPSYSTEMTIME. It looks as though CTime's constructor automatically converts its input to local time and that COleDateTime's one doesn't. Is that true? And I think LPSYSTEMTIME isn't really designed to be built by hand? So is my best course to build a COleDateTime from my array and pass it to SetTime?</p> <p>Given that I'm in London in winter, how can I test these things to make sure they're behaving as I want them to? Is there a way to temporarily pretend I'm in Chicago and check that this doesn't affect my date picker?</p> http://stackoverflow.com/questions/251159/what-is-the-use-of-const-overloading-in-c 9 What is the use of const overloading in C++? Tommy Herbert 2008-10-30T18:04:24Z 2008-10-31T10:32:46Z <p>In C++, a function's signature depends partly on whether or not it's const. This means that a class can have two member functions with identical signatures except that one is const and the other is not. If you have a class like this, then the compiler will decide which function to call based on the object you call it on: if it's a const instance of the class, the const version of the function will be called; if the object isn't const, the other version will be called.</p> <p>In what circumstances might you want to take advantage of this feature?</p> http://stackoverflow.com/questions/226302/where-can-i-look-up-the-definition-of-sizetype-for-vectors-in-the-c-stl 3 Where can I look up the definition of size_type for vectors in the C++ STL? Tommy Herbert 2008-10-22T15:29:23Z 2008-10-23T07:37:53Z <p>It seems safe to cast the result of my vector's size() function to an unsigned int. How can I tell for sure, though? My documentation isn't clear about how size_type is defined.</p> http://stackoverflow.com/questions/191980/in-an-mfc-application-whats-the-easiest-way-to-copy-a-file-from-one-directory-t 3 In an MFC application, what's the easiest way to copy a file from one directory to another? Tommy Herbert 2008-10-10T15:50:00Z 2008-10-14T05:07:10Z <p>Should I create two CFile objects and copy one into the other character by character? Or is there something in the library that will do this for me?</p> http://stackoverflow.com/questions/187567/how-can-i-stop-my-mfc-application-from-calling-onfilenew-when-it-starts 1 How can I stop my MFC application from calling OnFileNew() when it starts? Tommy Herbert 2008-10-09T14:41:31Z 2008-10-10T05:56:27Z <p>I used Visual Studio's Application Wizard to create a skeleton MFC program with a multi-document interface. When I start this program, it automatically creates a child frame, which I don't want it to do - I need the main frame's client area to be empty until the user chooses to open a file.</p> <p>The debugger tells me that a CChildFrame object is created when the application class's InitInstance() function calls ProcessShellCommand(), but what is a good entry point for me to override this behaviour?</p> http://stackoverflow.com/questions/103512/in-c-why-use-staticcastintx-instead-of-intx 20 In C++, why use static_cast<int>(x) instead of (int)x? Tommy Herbert 2008-09-19T16:33:58Z 2008-09-19T19:20:43Z <p>I've heard that, in C++, the static_cast function should be preferred to C-style or simple function-style casting. Is this true? Why?</p> http://stackoverflow.com/questions/81584/what-ide-to-use-for-python/81966#81966 1 Answer by Tommy Herbert for What IDE to use for Python Tommy Herbert 2008-09-17T10:52:22Z 2008-09-17T10:52:22Z <p>I code Python mainly under Linux, and use Bluefish, a text editor intended mainly for web design but which has syntax highlighting for Python. I think the power of a Python interactive session means there's no need for an IDE.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/74407#74407 0 Answer by Tommy Herbert for What development book made the most impact on you as a developer? Tommy Herbert 2008-09-16T16:47:03Z 2008-09-16T16:47:03Z <p>I hate to be a suck-up, but I'm new to this profession and for me the most influential book so far has been More Joel on Software.</p> http://stackoverflow.com/questions/71108/what-use-is-multiple-indirection-in-c 4 What use is multiple indirection in C++? Tommy Herbert 2008-09-16T10:41:21Z 2008-09-16T15:10:13Z <p>Under what circumstances might you want to use multiple indirection (that is, a chain of pointers as in **foo) in C++?</p> http://stackoverflow.com/questions/70577/best-online-resource-to-learn-python/70626#70626 2 Answer by Tommy Herbert for Best online resource to learn Python? Tommy Herbert 2008-09-16T09:13:37Z 2008-09-16T09:13:37Z <p>The <a href="http://docs.python.org/tut/tut.html" rel="nofollow">tutorial</a> at Python's homepage is a good place to start. Also, there are some screencasts <a href="http://showmedo.com" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1040356#1040356 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-25T09:22:04Z 2009-06-25T09:22:04Z Thanks, Dolphin. A lot of us had been assuming that gcount() returned 5. I don't know why - it seems obvious that it would be 6 now that you've pointed it out. The difference between subtracting 1 from gcount's result and subtracting 2 can't be seen using my posted code, but Naaff's suggested change to the cout line shows it up. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1040094#1040094 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:49:31Z 2009-06-24T18:49:31Z Excellent. Thanks for the explanation. It's what I'd started to suspect. The only remaining question is why Naaff's result differs from mine and T.E.D.'s. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1039961#1039961 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:43:51Z 2009-06-24T18:43:51Z Yes, that makes everything fine. Mysterious though. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:40:36Z 2009-06-24T18:40:36Z vecBuffer.begin() + input.gcount() - 1 makes the weirdness stop, I think because gcount includes the dropped newline character in its total. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1040043#1040043 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:38:51Z 2009-06-24T18:38:51Z That sounds promising. The newline character shouldn't be getting into the string at all, but maybe Notepad's CR+LF newlines are interpreted as a weird instruction followed by a new line. The weird instruction must be to go to the front and then print a space - see the comments to Naaff's answer. Wonder why he couldn't reproduce? http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1039961#1039961 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:32:53Z 2009-06-24T18:32:53Z ' &quot;rResult = &quot;Test' - which appears to support T.E.D.'s theory. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1039961#1039961 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:27:16Z 2009-06-24T18:27:16Z Oh, hang on, I'll try what you suggested - I hadn't updated before commenting. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1039961#1039961 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:26:43Z 2009-06-24T18:26:43Z Weird: I just did the same and it spat out &quot; est&quot;. The &quot;About&quot; box for my installation of Visual Studio has &quot;(SP.050727-7600)&quot; after the version number. So I guess I don't have SP2 installed. Do you think that could be it? http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:17:10Z 2009-06-24T18:17:10Z No, no warnings. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing/1039961#1039961 Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T18:16:33Z 2009-06-24T18:16:33Z Interesting. How did you create the test file? I used Notepad++. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T17:36:59Z 2009-06-24T17:36:59Z Sorry - they return iterators that point to 'T', not chars as I implied. http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T17:33:52Z 2009-06-24T17:33:52Z Both calls to vecBuffer.begin() are returning 84 ('T'). http://stackoverflow.com/questions/1039627/why-is-the-beginning-of-my-string-disappearing Comment by Tommy Herbert on Why is the beginning of my string disappearing? Tommy Herbert 2009-06-24T17:27:55Z 2009-06-24T17:27:55Z I'm using Visual Studio 2005 on Windows XP. Could it be something to do with the fact that I'm creating my test file in a Windows environment, and the newline is therefore made out of two characters? http://stackoverflow.com/questions/839739/with-cdatabase-can-i-send-sql-without-using-crecordset/1004869#1004869 Comment by Tommy Herbert on With CDatabase, can I send SQL without using CRecordSet? Tommy Herbert 2009-06-18T10:50:24Z 2009-06-18T10:50:24Z Don't have time to test this at the moment, but it looks like the right thing so I'm accepting it on trust. Thanks very much. His name was Bobby, not Johnny, by the way. http://stackoverflow.com/questions/905551/are-there-any-o1-n-algorithms/905558#905558 Comment by Tommy Herbert on are there any O(1/n) algorithms? Tommy Herbert 2009-05-25T09:27:18Z 2009-05-25T09:27:18Z Big O notation doesn't allow you to specify that something takes a single step. O(1) means constant time in general, so an algorithm that always takes a million steps would be O(1). O(1/n) algorithms, if they existed, would beat constant-time algorithms for large n.