User Ayman - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:47:45Z http://stackoverflow.com/feeds/user/77222 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start 1 python database / sql programming - where to start Ayman 2009-09-10T19:31:36Z 2009-11-26T07:47:27Z <p>What is the best way to use an embedded database, say sqlite in Python:</p> <ol> <li>Should be small footprint. I'm only needing few thousands records per table. And just a handful of tables per database.</li> <li>If it's one provided by Python default installation, then great. Must be open-source, available on Windows and Linus. </li> <li>Better if SQL is not written directly, but no ORM is fully needed. Something that will shield me from the actual database, but not that huge of a library. Something similar to ADO will be great.</li> <li>Mostly will be used through code, but if there is a GUI front end, then that is great</li> <li>Need just a few pages to get started with. I don't want to go through pages reading what a table is and how a Select statement works. I know all of that.</li> <li>Support for Python 3 is preferred, but 2.x is okay too.</li> </ol> <p><em>The usage is not a web app. It's a small database to hold at most 5 tables. The data in each table is just a few string columns. Think something just larger than a pickled dictionary</em></p> <p><strong>Update</strong>: Many thanks for the great suggestions.<br /> The use-case I'm talking about is fairly simple. One you'd probably do in a day or two.<br /> It's a 100ish line Python script that gathers data about a relatively large number of files (say 10k), and creates metadata files about them, and then one large metadata file about the whole files tree. I just need to avoid re-processing the files already processed, and create the metadata for the updated files, and update the main metadata file. In a way, cache the processed data, and only update it on file updates. If the cache is corrupt / unavailable, then simply process the whole tree. It might take 20 minutes, but that's okay.</p> <p>Note that all processing is done in-memory.</p> <p>I would like to avoid any external dependencies, so that the script can easily be put on any system with just a Python installation on it. Being Windows, it is sometimes hard to get all the components installed. So, In my opinion, even a database might be an overkill. </p> <p>You probably wouldn't fire up an Office Word/Writer to write a small post it type note, similarly I am reluctant on using something like Django for this use-case.</p> <p>Where to start?</p> http://stackoverflow.com/questions/1665890/java-compilation-date-like-c-date 1 Java Compilation date, like C __DATE__ Ayman 2009-11-03T08:05:51Z 2009-11-03T08:41:53Z <p>I need to automate getting the compilation date in a specific format into one Java Source file, like the C compilers <strong>DATE</strong> define, How?</p> http://stackoverflow.com/questions/1571901/c-fixed-length-string-class 0 C++ fixed length string class? Ayman 2009-10-15T11:52:29Z 2009-10-24T19:46:16Z <p>Is there anything like this in Standard C++ / <a href="http://en.wikipedia.org/wiki/Standard%5FTemplate%5FLibrary" rel="nofollow">STL</a>? Ideally it should be constructed like</p> <pre><code>fstring s = fstring(10); </code></pre> <p>I need to sometimes construct or have a string of fixed size. Sometimes to be able to read / write only that many characters into a stream.</p> <p><em>Edit:</em></p> <p>Note that the size is only known at runtime, and is different from one to the other. But all of the <code>fstring</code>s should know how to work together and have all the fancy <code>string</code> behavior.</p> http://stackoverflow.com/questions/1565277/stackoverflow-search-results-disappearing 0 Stackoverflow search results disappearing [closed] Ayman 2009-10-14T09:47:21Z 2009-10-14T12:18:07Z <p>Just few days ago I noticed that when searching on SO, results flash for less than a second, and then disappear. Using both Firefox and Chrome latest stable builds on Windows XP causes same result.</p> http://stackoverflow.com/questions/1559925/c-sizeof-char-array 2 C sizeof char* array Ayman 2009-10-13T12:33:06Z 2009-10-13T16:46:22Z <p>I have a <code>char*</code> array as follows:</p> <pre><code>char *tbl[] = { "1", "2", "3" }; </code></pre> <p>How do I use the <code>sizeof</code> operator to get the number of elements of the array, here 3? </p> <p>The below did work, but is it correct?</p> <pre><code>int n = sizeof(tbl) / sizeof(tbl[0]) </code></pre> http://stackoverflow.com/questions/1559925/c-sizeof-char-array/1559937#1559937 2 Answer by Ayman for C sizeof char* array Ayman 2009-10-13T12:34:54Z 2009-10-13T12:34:54Z <p>This was actually answered <a href="http://stackoverflow.com/questions/37538/c-how-do-i-determine-the-size-of-my-array">here</a></p> <p>And that was the correct way of doing it.</p> http://stackoverflow.com/questions/1552933/vim-count-determine-number-of-errors-in-quickfix 1 VIM count / determine number of errors in quickfix Ayman 2009-10-12T05:54:36Z 2009-10-12T06:26:42Z <p>This may sound silly, but I did not find it in the help.</p> <p>How to determine the number of errors in the QuickFix, after running <code>:make</code> ? </p> <p>Or at least see if there are any errors, i.e. errors > 0?</p> http://stackoverflow.com/questions/1542804/vim-highlighting-to-right-edge-of-screen/1549894#1549894 -1 Answer by Ayman for vim highlighting to right edge of screen Ayman 2009-10-11T04:56:29Z 2009-10-11T04:56:29Z <p>See <a href="http://stackoverflow.com/questions/1524380/vim-left-and-right-column-highlight">this question</a></p> <p>You may be able to use:</p> <pre><code>:match DiffAdd '\%&gt;72v.*' </code></pre> http://stackoverflow.com/questions/1525377/vim-errorformat 0 Vim errorformat Ayman 2009-10-06T12:47:32Z 2009-10-06T18:07:51Z <p>I read the docs, but got even more confused.<br /> I have the following error generated by the compiler:</p> <pre><code> rot; ^ "cpp\c1.cpp", line 13: error(114): identifier "rot" is undefined 1 error detected in the compilation of "c1.cpp". </code></pre> <p>I know how to detect the line where the error line is given, but I get loads of extra useless info in my errorlist, and the error message is split in two lines, whcih i would prefer to merge.</p> <p>My starting errorformat is:</p> <pre><code>:set efm=\"%f\"\\,\ line\ %l:\ error(%n):\ %m </code></pre> <p>Since we are at it, is there a quick way of testing the efm without resorting to run make all the time?</p> http://stackoverflow.com/questions/1524380/vim-left-and-right-column-highlight 1 vim left and right column highlight Ayman 2009-10-06T08:50:58Z 2009-10-06T08:54:44Z <p>I need to highlight anything beyond column 72 with a different background color. What's the best method? Something similar to a visible line margin that some editors do is also good. Is it possible?</p> <p><em>Some background:</em></p> <p>The syntax is a Pascal like, and works correctly.</p> <p>Only the Background needs to change. The foreground is already highlighted as it should be. There are cases where a String will be more than 80 characters and will pass the 72 column limit, and should be highlighted as a string.</p> <p>The coding standards are similar to COBOL and all characters beyond column 72 <em>should</em> by comment lines. These column 72 comments do start with the comment start character, and are highlighted properly.</p> http://stackoverflow.com/questions/1512602/highlighting-defined-value-in-vim/1515550#1515550 0 Answer by Ayman for Highlighting #defined value in VIM Ayman 2009-10-04T04:01:18Z 2009-10-06T06:28:50Z <p>I have done a very crude way of doing this for Java constants (static finals), based on the fact that all constants, are all caps with underbars. Almost no other identifiers match that criteria. </p> <p>So a very simple, and very fast, but not 100% accurate is to match all caps to the same syntax group as your defines.</p> <p><em>Edit. Adding sample</em></p> <p>In your language syntax file just add something like:</p> <pre><code>syn match defined "[A-Z][A-Z0-9_]*" HiLink defined Type </code></pre> <p>You can do HiLink to <code>Constant</code>, or any of the defined highlight groups you like.</p> http://stackoverflow.com/questions/1494146/how-to-define-for-class-in-python/1494172#1494172 4 Answer by Ayman for How to define [] for class in Python? Ayman 2009-09-29T18:28:13Z 2009-09-29T18:28:13Z <p>define a method in your class with <code>__getitem__(key)</code> and <code>__setitem__(key, value)</code></p> http://stackoverflow.com/questions/1494130/design-an-algorithm-to-find-all-pairs-of-integers-within-an-array-which-sum-to-a/1494145#1494145 2 Answer by Ayman for Design an algorithm to find all pairs of integers within an array which sum to a specified value ? Ayman 2009-09-29T18:22:06Z 2009-09-29T18:22:06Z <p>Assume required sum = R</p> <ol> <li>sort the array</li> <li>for each number in the array A(n), do a binary search to find the number A(x) such that A(n) + A(x) = R</li> </ol> http://stackoverflow.com/questions/1491494/telnet-automation-scripting 1 Telnet automation / scripting Ayman 2009-09-29T09:29:42Z 2009-09-29T09:44:36Z <p>I have already checked <a href="http://stackoverflow.com/questions/709801/creating-a-script-for-a-telnet-session">This Question</a> but could not find what i'm looking for. I am running Windows (the client), and the server is a legacy mainframe type server.</p> <p>Basically I need to write a script, python code or whatever, to send some know commands to the server via telnet, and preferable capture the output. Then return when done.</p> <p>What's the best approach?</p> http://stackoverflow.com/questions/1483796/get-offset-of-current-buffer-in-vim-in-particular-via-python-scripting/1484076#1484076 0 Answer by Ayman for Get offset of current buffer in vim (in particular, via python scripting) Ayman 2009-09-27T18:01:40Z 2009-09-27T18:01:40Z <p>You may also want to look at the <code>statusline</code> setting. This will add the bye offset to the statusline:</p> <pre><code>set statusline+=%o </code></pre> <p>See <code>:h statusline</code></p> <p>Just be careful because the default statusline is blank, and by appending the %o to it, you loose all the defaults.</p> http://stackoverflow.com/questions/1445992/vim-file-navigation/1447915#1447915 0 Answer by Ayman for Vim file navigation Ayman 2009-09-19T06:02:24Z 2009-09-19T06:02:24Z <p>In addition to the <code>wildmenu</code> answers, I use <a href="http://www.vim.org/scripts/script.php?script%5Fid=42" rel="nofollow">BufExplorer</a> plugin, and the following mappings to quickly jump buffers:</p> <pre><code>nmap &lt;A-1&gt; :b 1&lt;CR&gt; nmap &lt;A-2&gt; :b 2&lt;CR&gt; nmap &lt;A-3&gt; :b 3&lt;CR&gt; ... nmap &lt;A-0&gt; :b 10&lt;CR&gt; nmap &lt;A-=&gt; \bs </code></pre> <p>Or you can just replace the buffer explorer with the <code>:ls</code> command, which basically display the same thing.</p> <p>The last one maps the <code>Alt-=</code> to show the buffer explorer.</p> <p>I don't use Windows that much, as I generally have one or two windows only.</p> <p>I also modified the <code>statusline</code> to include the buffer number <code>%2n</code>, so that the I always know which buffer is being edited. See <code>:h statusline</code></p> http://stackoverflow.com/questions/1438042/basic-vim-questions-on-nerdtree-toggling-and-keyboard-mapping/1438181#1438181 2 Answer by Ayman for basic vim questions on nerdtree toggling and keyboard mapping Ayman 2009-09-17T11:10:27Z 2009-09-17T11:10:27Z <p>to remap in normal mode use </p> <pre><code>nmap &lt;silent&gt; &lt;C-D&gt; :NERDTreeToggle&lt;CR&gt; </code></pre> <p><code>nmap</code> means map in normal mode<br /> <code>imap</code> means map in insert mode</p> <p>the <code>nore</code> part in <code>nnoremap</code> and its friends prevent expanding the mapping recursively. For example, i use to also hide search string so, in my vimrc I have </p> <pre><code>nnoremap &lt;silent&gt; &lt;C-L&gt; :noh&lt;CR&gt;&lt;C-L&gt; </code></pre> <p>Without the <code>nore</code>, the above mapping will loop.</p> http://stackoverflow.com/questions/1428920/reading-efficiently-paths-in-vim/1431210#1431210 7 Answer by Ayman for Reading efficiently PATHs in Vim Ayman 2009-09-16T06:07:07Z 2009-09-17T03:39:58Z <p>In Vim 7.2, you can set the suffixesadd to .txt as below:</p> <pre><code>:set suffixesadd=.tex,.latex,.java </code></pre> <p>see <code>:help suffixesadd</code></p> http://stackoverflow.com/questions/1431458/preventing-vim-to-auto-expand-folds/1431700#1431700 0 Answer by Ayman for Preventing vim to auto-expand folds Ayman 2009-09-16T08:32:35Z 2009-09-16T08:32:35Z <p>Try adding a match for the <code># {{{</code> like <code># {{{1</code> and then a <code># }}}1</code></p> http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start/1409333#1409333 0 Answer by Ayman for python database / sql programming - where to start Ayman 2009-09-11T06:41:53Z 2009-09-11T06:41:53Z <p>This is an aggregate of answers, in no particular order:</p> <p>Everybody is recommending an ORM layer. Which makes perfect sense, if you really need a database. Well, that was sort of requested in the title :-)</p> <ol> <li><a href="http://www.sqlalchemy.org/" rel="nofollow">SQLAlchemy</a></li> <li><a href="http://autumn-orm.org/" rel="nofollow">Autumn</a></li> <li><a href="http://www.djangoproject.com/" rel="nofollow">Django ORM</a></li> <li>Use SQLite official support <a href="http://pysqlite.org/" rel="nofollow">Pysqlite</a></li> <li><a href="https://storm.canonical.com/" rel="nofollow">Storm</a></li> <li><a href="http://elixir.ematia.de/trac/wiki" rel="nofollow">Elixir</a></li> <li>Just use Python's own Pickle</li> </ol> <p>But I'm starting to think that if an in-memory database is sufficient, in this will be used in scripts only, not a web app or even a desktop gui, then option 7 is also perfectly valid, provided no transaction support is needed and "database" integrity is not an issue.</p> http://stackoverflow.com/questions/1388673/vim-copy-command-to-clipboard-buffer 2 vim copy command to clipboard / buffer Ayman 2009-09-07T10:35:06Z 2009-09-07T11:53:50Z <p>How to copy the ex command to the clipboard or paste it to the buffer?</p> <p>Using gvim on Windows.</p> http://stackoverflow.com/questions/1385196/vim-restore-last-search-pattern 1 VIM Restore last search pattern Ayman 2009-09-06T08:17:41Z 2009-09-06T08:54:31Z <p>I remapped <code>[[</code> and <code>]]</code> to find the previous and next pattern in the file. The mappings are as follows:</p> <pre><code>nmap [[ ?^.section &lt;CR&gt; nmap ]] /?section /&lt;CR&gt; </code></pre> <p>The issue is that when I use any of them, I "loose" the current search pattern, so when doing <code>n</code> for the next match, I search for the next "section".</p> <p>Is there a way to restore the search pattern, or for the <code>[[</code> and <code>]]</code> mappings to not affect the current search pattern?</p> http://stackoverflow.com/questions/1384250/vim-edit-multiple-locations-simultaneously/1385099#1385099 1 Answer by Ayman for vim edit multiple locations simultaneously Ayman 2009-09-06T07:18:18Z 2009-09-06T07:18:18Z <p>Have a look at <a href="http://vim.sourceforge.net/scripts/script.php?script%5Fid=1318" rel="nofollow">SnippetsEmu</a>. It should be doing something very similar to what you need.</p> <p>It emulates TextMates snippets. You should be able to have one snippet with the same tag repeated, and editing will do the right thing, updating the same tag in all locations, as you type.</p> http://stackoverflow.com/questions/1340404/vim-highlight-changed-lines 2 VIM highlight changed lines Ayman 2009-08-27T11:15:35Z 2009-08-27T12:15:26Z <p>Is it possible to have VIM highlight the changed lines since the last save? I know it can be done with version control, but can it be done without? I do not want to use any version control system, because the code I work on does not have that. </p> <p>I think UltraEdit has something like that.</p> http://stackoverflow.com/questions/1334020/delete-none-values-from-python-dict 1 Delete None values from Python dict Ayman 2009-08-26T11:21:15Z 2009-08-26T11:31:19Z <p>Newbie to Python, so this may seem silly.</p> <p>I have two dict:</p> <pre><code>default = {'a': 'alpha', 'b': 'beta', 'g': 'Gamma'} user = {'a': 'NewAlpha', 'b': None} </code></pre> <p>I need to update my defaults with the values that exist in user. But only for those that have a value not equal to None. So I need to get back a new dict:</p> <pre><code>result = {'a': 'NewAlpha', 'b': 'beta', 'g': 'Gamma'} </code></pre> http://stackoverflow.com/questions/1330532/vim-search-for-pattern-into-quickfix 2 VIM search for pattern into quickfix Ayman 2009-08-25T19:47:03Z 2009-08-26T06:49:34Z <p>Basically I need to create a quickfix buffer listing all lines that match a regex. What is the best way? </p> <p>The global command may not be the best, but I think it should be usable. The output of the global command is perfect, but I need it to <em>hyperlink</em> the matching lines.</p> http://stackoverflow.com/questions/1330532/vim-search-for-pattern-into-quickfix/1332781#1332781 1 Answer by Ayman for VIM search for pattern into quickfix Ayman 2009-08-26T06:49:34Z 2009-08-26T06:49:34Z <p>You can also not use the global command and stick with what is built-in. Use the vimgrep command as below:</p> <pre><code>:vimgrep /pattern/ % </code></pre> <p>And then <code>:copen</code> or <code>:cwindow</code></p> http://stackoverflow.com/questions/887485/keeping-track-of-state-in-jflex/1062473#1062473 1 Answer by Ayman for Keeping track of state in JFlex Ayman 2009-06-30T08:40:55Z 2009-06-30T08:40:55Z <p>I think that's one very good way of doing it. I actually needed some similar feature to add Groovy GString, Python like String and some HTML to JavaDocs.</p> <p>What I would also like to add is a Lexer calling a Lexer to parse sub sections. Something like JavaScript embedded in HTML. But I could not get the time to do it.</p> <p>I like StackOverflow, but just wondering why didn't you post this on JSyntaxPane's issues?</p> http://stackoverflow.com/questions/944229/vim-options-variables-and-converting-between-the-two 1 VIM: Options, variables and converting between the two Ayman 2009-06-03T11:31:03Z 2009-06-04T13:37:40Z <p>I'm confused about these in VIM. Some things need set and others let. And, how can I check for a certain option. I know it's an option because I use set to change it.</p> <p>For example, how do I check if current filetype option is java?</p> http://stackoverflow.com/questions/944229/vim-options-variables-and-converting-between-the-two/944314#944314 4 Answer by Ayman for VIM: Options, variables and converting between the two Ayman 2009-06-03T11:54:29Z 2009-06-04T13:37:40Z <p>Just got this by researching some more: To get the value of an option, prefix the option with a <code>&amp;</code>.</p> <p>so, the above can be done as</p> <pre><code>if &amp;filetype == 'java' </code></pre> http://stackoverflow.com/questions/1665890/java-compilation-date-like-c-date/1665925#1665925 Comment by Ayman on Java Compilation date, like C __DATE__ Ayman 2009-11-03T09:24:55Z 2009-11-03T09:24:55Z You need to call the &lt;tstamp/&gt; task before using ${TODAY}. Otherwise, it works like a charm. http://stackoverflow.com/questions/1665890/java-compilation-date-like-c-date Comment by Ayman on Java Compilation date, like C __DATE__ Ayman 2009-11-03T09:11:14Z 2009-11-03T09:11:14Z Version control. Need to know from the jar file when it was built. http://stackoverflow.com/questions/1571901/c-fixed-length-string-class Comment by Ayman on C++ fixed length string class? Ayman 2009-10-15T16:16:54Z 2009-10-15T16:16:54Z fancy stuff include input and output from streams (including padding and reading only the required chars), string subscripts, iterators, and such. Seems i'll need to write my own. http://stackoverflow.com/questions/1571901/c-fixed-length-string-class/1571931#1571931 Comment by Ayman on C++ fixed length string class? Ayman 2009-10-15T13:35:32Z 2009-10-15T13:35:32Z Problem is, the created string does not do any trimming / padding, or ensuring its 10 char limit. http://stackoverflow.com/questions/1571901/c-fixed-length-string-class/1571931#1571931 Comment by Ayman on C++ fixed length string class? Ayman 2009-10-15T12:34:18Z 2009-10-15T12:34:18Z How can that be put in code? I'm relatively new to C++ syntax. http://stackoverflow.com/questions/1524380/vim-left-and-right-column-highlight/1524393#1524393 Comment by Ayman on vim left and right column highlight Ayman 2009-10-06T08:59:39Z 2009-10-06T08:59:39Z This is great, but only works if the line contains characters beyond column 72. Is it possible to have it highlight even when the line contains less characters? http://stackoverflow.com/questions/1494130/design-an-algorithm-to-find-all-pairs-of-integers-within-an-array-which-sum-to-a/1494135#1494135 Comment by Ayman on Design an algorithm to find all pairs of integers within an array which sum to a specified value ? Ayman 2009-09-30T04:22:01Z 2009-09-30T04:22:01Z I agree with @Beta. It gets too complicated if you have negative numbers. Which was not mentioned in the question. That's why I resorted to a full sort and binary search. http://stackoverflow.com/questions/1494130/design-an-algorithm-to-find-all-pairs-of-integers-within-an-array-which-sum-to-a/1494145#1494145 Comment by Ayman on Design an algorithm to find all pairs of integers within an array which sum to a specified value ? Ayman 2009-09-30T04:19:18Z 2009-09-30T04:19:18Z Isn't binary search O(log n)? http://stackoverflow.com/questions/1491494/telnet-automation-scripting/1491516#1491516 Comment by Ayman on Telnet automation / scripting Ayman 2009-09-29T11:14:03Z 2009-09-29T11:14:03Z Just a note that on my server, I needed to add a <code>\r</code> instead of the <code>\n</code>. Took me a while to debug that. http://stackoverflow.com/questions/1491494/telnet-automation-scripting/1491566#1491566 Comment by Ayman on Telnet automation / scripting Ayman 2009-09-29T09:47:55Z 2009-09-29T09:47:55Z PExpect does not run on Windows clients. It gives an error that it needs a UNIX like system. http://stackoverflow.com/questions/1438042/basic-vim-questions-on-nerdtree-toggling-and-keyboard-mapping/1438181#1438181 Comment by Ayman on basic vim questions on nerdtree toggling and keyboard mapping Ayman 2009-09-17T11:55:42Z 2009-09-17T11:55:42Z You need to do the nnoremap because &lt;c-d&gt; is scroll down by default. http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start Comment by Ayman on python database / sql programming - where to start Ayman 2009-09-10T20:02:18Z 2009-09-10T20:02:18Z not web application. Barely a desktop app. For this particular case, I need to store some metadata about many files and some of their contents. CRUD and UI is not really needed except for debugging. http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start/1407345#1407345 Comment by Ayman on python database / sql programming - where to start Ayman 2009-09-10T19:58:47Z 2009-09-10T19:58:47Z @Stephen answer is pretty close to what I want. I'm creating a web app, so I don't think I need Django. http://stackoverflow.com/questions/1407248/python-database-sql-programming-where-to-start/1407259#1407259 Comment by Ayman on python database / sql programming - where to start Ayman 2009-09-10T19:43:51Z 2009-09-10T19:43:51Z Django, even though it is great, is too &quot;heavy&quot; for my needs. Something much smaller footprint is needed. http://stackoverflow.com/questions/563616/vimctags-tips-and-tricks/563625#563625 Comment by Ayman on Vim+ctags tips and tricks Ayman 2009-09-10T07:56:26Z 2009-09-10T07:56:26Z I think this is more intuitive and cleaner than the default.