User binOr - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T00:03:14Z http://stackoverflow.com/feeds/user/990 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines 0 Why does Vim add spaces when joining lines? binOr 2009-10-16T16:00:43Z 2009-10-17T01:15:41Z <p>I want to unwrap text in Vim. When I join lines I get an additional space between sentences.</p> <p>Why is that?</p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/1574222#1574222 0 Answer by binOr for What is the best UI you've ever used? binOr 2009-10-15T18:32:03Z 2009-10-15T18:37:07Z <p><img src="http://www.mackie.com/products/tracktion/images/overview.gif" alt="alt text" /></p> <p>When Mackie Tracktion got released it came with this advertising:</p> <p><em>Tracktion is a radical new type of music production software - giving you a clean, intuitive, and clutter-free interface without losing the features you find in software costing much more.</em></p> <p><em>If you like your software to use dozens of overlapping windows, Tracktion is not for you. It won't pretend to be a mixing desk or show you panels with pictures of screws that are accurately copied from a real piece of hardware. There is no Windows clutter, nor obscure menus full of commands that you'll never use. In short, Tracktion is a little bit different. It's a continuously evolving product with new features and updates regularly released. Most people who've used a sequencer before can get to grips with Tracktion in about 10 minutes, and once you've grasped a handful of basic concepts (which aren't exactly rocket-science), the learning curve practically disappears.</em></p> <p>And IMHO they promised not too much! I love to use it and don't wanna use Cubase or Logic again.</p> http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/834800#834800 13 Answer by binOr for What is your favorite "programmer" t-shirt? binOr 2009-05-07T13:58:39Z 2009-05-07T13:58:39Z <p><img src="http://img57.imageshack.us/img57/6659/real.gif" alt="Reality is where the pizza man comes from." /></p> http://stackoverflow.com/questions/768263/what-does-your-conkerorrc-look-like/786231#786231 1 Answer by binOr for What does your .conkerorrc look like? binOr 2009-04-24T15:05:08Z 2009-04-24T15:05:08Z <p>Well, I can't really help you here but I just wanted to say that although I'm an emacs guy, I dropped Conkeror for <a href="http://vimperator.org" rel="nofollow">vimperator</a> because IMHO the browsing experience is much better!</p> http://stackoverflow.com/questions/730751/hiding-m-in-emacs/750933#750933 3 Answer by binOr for Hiding ^M in emacs binOr 2009-04-15T09:33:34Z 2009-04-15T09:33:34Z <pre><code>(defun remove-dos-eol () "Removes the disturbing '^M' showing up in files containing mixed UNIX and DOS line endings." (interactive) (setq buffer-display-table (make-display-table)) (aset buffer-display-table ?\^M [])) </code></pre> <p>Solution by Johan Bockgård. I found it <a href="http://www.archivum.info/comp.emacs/2007-06/msg00003.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/515246#515246 1 Answer by binOr for Best IT/Programming/Technology related Acronym binOr 2009-02-05T10:06:05Z 2009-02-05T10:06:05Z <p><a href="http://en.wikipedia.org/wiki/WYSIWYG" rel="nofollow"><strong>WYSIWYG</strong></a> was burned into my brain forever when I heared it for the first time.</p> <p>German Wikipedia lists some funny descendants of it, like:</p> <p><strong>WYSINQWYG</strong> - What You See Is Not Quite What You Get<br /> <strong>WYGIWYGAINUC</strong> - What You Get Is What You're Given And It's No Use Complaining </p> http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13554#13554 18 Answer by binOr for Insert Update stored proc on SQL Server binOr 2008-08-17T07:22:43Z 2009-01-31T22:27:36Z <p>Your assumption is right, this is the optimal way to do it and it's called <a href="http://en.wikipedia.org/wiki/Upsert" rel="nofollow">upsert/merge</a>.</p> <p><a href="http://www.sqlservercentral.com/articles/T-SQL/61773/" rel="nofollow">Importance of UPSERT - from sqlservercentral.com</a>: </p> <blockquote> <p>For every update in the case mentioned above we are removing one additional read from the table if we use the UPSERT instead of EXISTS. Unfortunately for an Insert, both the UPSERT and IF EXISTS methods use the same number of reads on the table. Therefore the check for existence should only be done when there is a very valid reason to justify the additional I/O. The optimized way to do things is to make sure that you have little reads as possible on the DB.</p> <p>The best strategy is to attempt the update. If no rows are affected by the update then insert. In most circumstances, the row will already exist and only one I/O will be required.</p> </blockquote> <p><strong>Edit</strong>: Please check out <a href="http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/193876#193876">this answer</a> and the linked blog post to learn about the problems with this pattern and how to make it work safe.</p> http://stackoverflow.com/questions/12141/whats-your-worst-database-accident-happened-in-production 4 What's your worst database accident happened in production? binOr 2008-08-15T11:13:53Z 2008-11-23T22:20:58Z <p>For example: Updating all rows of the customer table because you forgot to add the where clause.</p> <p>What was it like, realizing it and reporting it to your coworkers or customers? And, what's your lessons learned?</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/255320#255320 2 Answer by binOr for The single most useful Emacs feature binOr 2008-11-01T00:33:52Z 2008-11-01T00:33:52Z <p>How about Digit-Arguments for the next command. Before, I have always used Universal-Arguments via C-u but you can go much faster since Digit args are bound to both, Control and Meta.</p> <p>Examples: </p> <ul> <li>move point 3 words forward: hold down Meta and type 3f</li> <li>kill those lines below: hold down Control and type 33k</li> </ul> http://stackoverflow.com/questions/81698/task-issue-tracking-system-with-command-line-interface/81799#81799 0 Answer by binOr for Task/issue tracking system with command-line interface binOr 2008-09-17T10:25:28Z 2008-09-17T10:25:28Z <p>Fogbugz has a <a href="http://support.fogcreek.com/default.asp?W840" rel="nofollow">Command Line Client</a>.</p> http://stackoverflow.com/questions/45400/source-control-system-for-single-developer/45412#45412 9 Answer by binOr for Source control system for single developer binOr 2008-09-05T08:10:44Z 2008-09-05T08:10:44Z <p>Go for subversion and tortoiseSVN, you don't need to set it up on a server. </p> <ul> <li>Costs are zero</li> <li>The subversion documentation is great and fun to read</li> <li>tortoiseSVN is a very convenient client</li> </ul> http://stackoverflow.com/questions/4736/learning-regular-expressions/19997#19997 8 Answer by binOr for Learning Regular Expressions binOr 2008-08-21T14:05:48Z 2008-08-21T14:53:24Z <p><a href="http://weitz.de/regex-coach/" rel="nofollow">The Regex Coach</a> is another great regex tool which is <strong>free</strong> and <strong>made with lisp.</strong> :)</p> <blockquote> <ul> <li>It tries to describe the regular expression in plain English</li> <li>It can show a graphical representation of the regular expression's parse tree.</li> </ul> </blockquote> http://stackoverflow.com/questions/11043/sql-table-aliases-good-or-bad/14437#14437 0 Answer by binOr for SQL Table Aliases - Good or Bad? binOr 2008-08-18T10:42:07Z 2008-08-18T10:42:07Z <blockquote> <p>Aliases are required when joining tables that columns with identical names.</p> </blockquote> <p>@Juha: </p> <p>Not necessarily aliases but at least table prefixes are required to distinct columns from others with identical names.</p> http://stackoverflow.com/questions/13343/how-much-of-your-work-day-is-spent-coding/13429#13429 4 Answer by binOr for How much of your work day is spent coding? binOr 2008-08-17T00:34:27Z 2008-08-17T00:34:27Z <blockquote> <p>Well, I generally come in at least fifteen minutes late, ah, I use the side door - that way Lumbergh can't see me, heh heh - and, uh, after that I just sorta space out for about an hour. </p> <p>...Yeah, I just stare at my desk; but it looks like I'm working. I do that for probably another hour after lunch, too. I'd say in a given week I probably only do about fifteen minutes of real, actual, work. </p> </blockquote> <p>For me, switching between projects is a big cause of procrastination. When I've just finished a project I tend to procrastinate on kicking off the next requirement assigned to me. My mind feels still like in coding mode, but I then have to estimate the expenses for creating a spec first. So I have to switch from coding to calling customers and the like, which feels uncomfortable.</p> <p>What helps me most in being productive is to cut away any distraction in the first hours of the day and starting immediately with the day's most important task. I need to get into the flow as early as possible.</p> <p><hr /></p> <p>I recommend having a look at The Programmers’ Stone:</p> <p><a href="http://the-programmers-stone.com/about/" rel="nofollow" title="Human Interface Guidelines">We know that stress impairs some cognitive functions. The loss of those functions can precisely explain why programming is hard, and show us many other opportunities to improve the ways we organize things. The consequences roll out to touch language, logic and cultural norms. Click here for the Introduction...</a></p> http://stackoverflow.com/questions/11941/getting-started-with-agile-and-tdd/12148#12148 3 Answer by binOr for Getting started with Agile and TDD.. binOr 2008-08-15T11:27:54Z 2008-08-15T11:27:54Z <p>Some links of my collection on agile I find very helpful:</p> <ul> <li><a href="http://www.mountaingoatsoftware.com/article_view/27-advantages-of-user-stories-for-requirements" rel="nofollow" title="Coding Guidelines for Cocoa">Advantages of User Stories for Requirements</a></li> <li><a href="http://blog.versionone.net/blog/2007/05/you_might_not_b.html" rel="nofollow" title="Apple Developer Connection">You might not be agile if...</a></li> <li><a href="http://stuq.nl/weblog/2007-04-03/competing-on-the-basis-of-speed" rel="nofollow">Competing on the basis of speed</a></li> <li><a href="http://gettingreal.37signals.com/toc.php" rel="nofollow">Getting Real - A smaller, faster, better way to build software - by 37signals</a></li> </ul> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/1574222#1574222 Comment by binOr on What is the best UI you've ever used? binOr 2009-10-24T18:14:32Z 2009-10-24T18:14:32Z May look complex but this is just because it provides most of what you need at a glance. Hence it's actually pretty easy to use compared to classical sequencer UIs where, i.e., the mixer is separated from the arrangement and you have to switch between those windows all the time. http://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines Comment by binOr on Why does Vim add spaces when joining lines? binOr 2009-10-16T16:41:42Z 2009-10-16T16:41:42Z no joke. got help. thanks. http://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines/1579090#1579090 Comment by binOr on Why does Vim add spaces when joining lines? binOr 2009-10-16T16:41:07Z 2009-10-16T16:41:07Z I just wanted to have some text not wrapped at column 79. Joining lines added additional spaces, which got me confused. Sorry that I didn't make that clear in the first place. http://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines/1578964#1578964 Comment by binOr on Why does Vim add spaces when joining lines? binOr 2009-10-16T16:38:03Z 2009-10-16T16:38:03Z Most definitely, thanks! I was unfamiliar with this 2 spaces after a sentence thing. http://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines/1578964#1578964 Comment by binOr on Why does Vim add spaces when joining lines? binOr 2009-10-16T16:24:09Z 2009-10-16T16:24:09Z Thank you very much. I already tried joining lines but what annoys me is that suddenly multiple spaces occur between sentences after joining lines. http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/146176#146176 Comment by binOr on What are your favorite Vim tricks? binOr 2009-10-09T09:54:48Z 2009-10-09T09:54:48Z C-[ has the same effect as Esc. Having CapsLock remapped with Ctrl, it feels very comfortable for me. http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/386900#386900 Comment by binOr on What was your first home computer? binOr 2009-06-03T14:48:47Z 2009-06-03T14:48:47Z That's a beautiful girl! http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/730564#730564 Comment by binOr on What are the dark corners of Vim your mom never told you about? binOr 2009-04-14T22:07:20Z 2009-04-14T22:07:20Z Thanks! What does the A at the end mean? http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/132253#132253 Comment by binOr on Best IT/Programming/Technology related Acronym binOr 2009-02-05T09:41:17Z 2009-02-05T09:41:17Z Wow, finally I understand these... :] http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13554#13554 Comment by binOr on Insert Update stored proc on SQL Server binOr 2009-01-31T22:46:21Z 2009-01-31T22:46:21Z Well, it did at least answer one question, I think. And I didn't add code because the code in the question seemed right for me already. Though I would put it in a transaction, I did not take the isolation level into account for the update. Thanks for pointing that out in your answer! http://stackoverflow.com/questions/154097/whats-in-your-emacs/154980#154980 Comment by binOr on What's in your .emacs? binOr 2008-10-27T10:18:33Z 2008-10-27T10:18:33Z thanks a lot for the cygwin stuff http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/31777#31777 Comment by binOr on Should programmers be excellent typists? binOr 2008-09-15T20:32:19Z 2008-09-15T20:32:19Z Typeracer is cool, thanks!