User binOr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T00:03:14Zhttp://stackoverflow.com/feeds/user/990http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines0Why does Vim add spaces when joining lines?binOr2009-10-16T16:00:43Z2009-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#15742220Answer by binOr for What is the best UI you've ever used?binOr2009-10-15T18:32:03Z2009-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#83480013Answer by binOr for What is your favorite "programmer" t-shirt?binOr2009-05-07T13:58:39Z2009-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#7862311Answer by binOr for What does your .conkerorrc look like?binOr2009-04-24T15:05:08Z2009-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#7509333Answer by binOr for Hiding ^M in emacsbinOr2009-04-15T09:33:34Z2009-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#5152461Answer by binOr for Best IT/Programming/Technology related AcronymbinOr2009-02-05T10:06:05Z2009-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#1355418Answer by binOr for Insert Update stored proc on SQL ServerbinOr2008-08-17T07:22:43Z2009-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-production4What's your worst database accident happened in production?binOr2008-08-15T11:13:53Z2008-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#2553202Answer by binOr for The single most useful Emacs featurebinOr2008-11-01T00:33:52Z2008-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#817990Answer by binOr for Task/issue tracking system with command-line interfacebinOr2008-09-17T10:25:28Z2008-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#454129Answer by binOr for Source control system for single developerbinOr2008-09-05T08:10:44Z2008-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#199978Answer by binOr for Learning Regular ExpressionsbinOr2008-08-21T14:05:48Z2008-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#144370Answer by binOr for SQL Table Aliases - Good or Bad?binOr2008-08-18T10:42:07Z2008-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#134294Answer by binOr for How much of your work day is spent coding?binOr2008-08-17T00:34:27Z2008-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#121483Answer by binOr for Getting started with Agile and TDD..binOr2008-08-15T11:27:54Z2008-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#1574222Comment by binOr on What is the best UI you've ever used?binOr2009-10-24T18:14:32Z2009-10-24T18:14:32ZMay 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-linesComment by binOr on Why does Vim add spaces when joining lines?binOr2009-10-16T16:41:42Z2009-10-16T16:41:42Zno joke. got help. thanks.http://stackoverflow.com/questions/1578951/why-does-vim-add-spaces-when-joining-lines/1579090#1579090Comment by binOr on Why does Vim add spaces when joining lines?binOr2009-10-16T16:41:07Z2009-10-16T16:41:07ZI 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#1578964Comment by binOr on Why does Vim add spaces when joining lines?binOr2009-10-16T16:38:03Z2009-10-16T16:38:03ZMost 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#1578964Comment by binOr on Why does Vim add spaces when joining lines?binOr2009-10-16T16:24:09Z2009-10-16T16:24:09ZThank 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#146176Comment by binOr on What are your favorite Vim tricks?binOr2009-10-09T09:54:48Z2009-10-09T09:54:48ZC-[ 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#386900Comment by binOr on What was your first home computer?binOr2009-06-03T14:48:47Z2009-06-03T14:48:47ZThat's a beautiful girl!http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/730564#730564Comment by binOr on What are the dark corners of Vim your mom never told you about?binOr2009-04-14T22:07:20Z2009-04-14T22:07:20ZThanks! What does the A at the end mean?http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/132253#132253Comment by binOr on Best IT/Programming/Technology related AcronymbinOr2009-02-05T09:41:17Z2009-02-05T09:41:17ZWow, finally I understand these... :]http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/13554#13554Comment by binOr on Insert Update stored proc on SQL ServerbinOr2009-01-31T22:46:21Z2009-01-31T22:46:21ZWell, 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#154980Comment by binOr on What's in your .emacs?binOr2008-10-27T10:18:33Z2008-10-27T10:18:33Zthanks a lot for the cygwin stuffhttp://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/31777#31777Comment by binOr on Should programmers be excellent typists?binOr2008-09-15T20:32:19Z2008-09-15T20:32:19ZTyperacer is cool, thanks!