User he_the_great - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T18:28:01Zhttp://stackoverflow.com/feeds/user/34435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1310661/for-what-to-use-vi/1312696#13126960Answer by he_the_great for For what to use VI?he_the_great2009-08-21T15:35:20Z2009-08-21T15:35:20Z<p>Vim is not very good at code awareness. What it is good at is text manipulation. It provides you with the tools for you to edit text, not to edit for you. If you just do "small" edits and don't read up on the occasional "vim commands you wish you know" you'll never understand the power provided.</p>
<blockquote>
<p>code formatting</p>
</blockquote>
<p>This is handled while you type.</p>
<blockquote>
<p>import organizing</p>
</blockquote>
<p>Vim won't be able to remove unused imports but if you select the import lines</p>
<pre><code>:'<,'>sort
</code></pre>
<blockquote>
<p>simple overview over all packages</p>
</blockquote>
<pre><code>:vs .
</code></pre>
<p>This will open a vertical window containing the current working directory :)</p>
<p>In conclusion, vim can't replace your IDE but it will let you edit you text.</p>
http://stackoverflow.com/questions/1272173/in-vim-how-do-i-break-one-really-long-line-into-multiple-lines/1272247#12722476Answer by he_the_great for In VIM, how do I break one really long line into multiple lines?he_the_great2009-08-13T14:17:48Z2009-08-13T14:42:18Z<p>Vim does this very easily.</p>
<pre><code>gq{motion}
{Visual}gq
gqq
...
</code></pre>
<p>I'd suggest you check out :help gq and :help gw</p>
<p>Also setting textwidth (tw) will give you auto line break when exceeded during typing. It is used in gq too, though if disabled gq breaks on window size or 79 depending on which comes first.</p>
<pre><code>:set tw=80
</code></pre>
http://stackoverflow.com/questions/1223710/we-have-to-use-c-for-performance-reasons/1224674#12246741Answer by he_the_great for We have to use C "for performance reasons"he_the_great2009-08-03T21:13:01Z2009-08-03T21:13:01Z<p>You may want to look at <a href="http://www.prowiki.org/wiki4d/wiki.cgi?FrontPage" rel="nofollow">The D Programming Language</a>. It could use some performance tuning, as there are some areas python can outperform it. I can't really point you to benchmarking comparisons since haven't been keeping a list, but as pointed to by Peter Olsson, <a href="http://shootout.alioth.debian.org/gp4/" rel="nofollow">Benchmarks & Language Implementations</a> has D Digital Mars.</p>
<p>You will probably also want to look at these lovely questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1207958/getting-embedded-with-d-the-programming-language">Getting Embedded with D (the programming language)</a></li>
<li><a href="http://stackoverflow.com/questions/1113938/how-would-you-approach-using-d-in-a-embedded-real-time-environment">How would you approach using D in a embedded real-time environment?</a></li>
</ul>
http://stackoverflow.com/questions/729692/why-should-files-end-with-a-newline/1070302#10703020Answer by he_the_great for Why should files end with a newline?he_the_great2009-07-01T17:10:42Z2009-07-01T17:10:42Z<p>I was always under the impression the rule came from the days when parsing a file without an ending newline was difficult. That is, you would end up writing code where an end of line was defined by the EOL character or EOF. It was just simpler to assume a line ended with EOL.</p>
<p>However I believe the rule is derived from C compilers requiring the newline. And as pointed out on <a href="http://stackoverflow.com/questions/72271/no-newline-at-end-of-file-compiler-warning">“No newline at end of file” compiler warning</a>, #include will not add a newline.</p>
http://stackoverflow.com/questions/780837/what-is-a-good-linux-ide-for-code-completion/908991#9089913Answer by he_the_great for What is a good Linux IDE for code completion?he_the_great2009-05-26T04:59:08Z2009-05-26T04:59:08Z<p>Based on the requirements you are looking for an answer that does not exist. You wish to have an IDE that has better auto-complete than VS then list every IDE found in Linux saying it isn't good enough. Adding a bounty will not cause these editors to become better.</p>
<p>The only comfort I can provide is it might come eventually. C++ is difficult to parse to be able to provide such quick reflections on live code. If <a href="http://en.wikipedia.org/wiki/Clang" rel="nofollow">Clang</a> replaces gcc in Eclipse you might see the kind of auto-completion that you are looking for.</p>
http://stackoverflow.com/questions/902047/what-is-ethaddrt-and-friends-in-libdnet1What is eth_addr_t and friends in libdnethe_the_great2009-05-23T17:52:11Z2009-05-23T21:09:50Z
<p>I'm attempting to create a wrapper around <a href="http://libdnet.sourceforge.net/" rel="nofollow">libdnet</a> for the D programming
language. The issue I have run into is not knowing what the
underlining types for eth_addr_t, ip_addr_t, and ip6_addr_t while
converting <a href="http://www.google.com/codesearch/p?hl=en#uBwkDcB0O2A/honeyd-src-1.1.1/libdnet-1.10/include/dnet/addr.h" rel="nofollow">addr.h</a>. The last mystery type is sockaddr</p>
<p>And I'm also interest in why there is a do while loop that is always false.</p>
<pre><code>#define addr_pack(addr, type, bits, data, len) do { \
(addr)->addr_type = type; \
(addr)->addr_bits = bits; \
memmove((addr)->addr_data8, (char *)data, len); \
} while (0)
</code></pre>
<p>is it required for C to execute the code in the macro?</p>
http://stackoverflow.com/questions/876188/problem-on-tag-filesystem/880863#88086311Answer by he_the_great for Problem on Tag "Filesystem"he_the_great2009-05-19T03:40:33Z2009-05-19T03:40:33Z<p>If you have use of hard/soft links than you might look into giving each tag it's own directory having a link for each file with that "tag." Then when you are given multiple tags you can compare those found in both. Then the files could be stored in a single folder and having them unique in name of course.</p>
<p>I don't know how this would be different from having a meta file named by the tag, then listing all files that exist in that tag.</p>
http://stackoverflow.com/questions/856328/compiling-with-dmd-on-64bit-linux-or-linking-with-32bit-object-files1Compiling with DMD on 64bit Linux or Linking with 32bit object fileshe_the_great2009-05-13T06:12:17Z2009-05-13T18:45:06Z
<p>What is the best way to compile programs with DMD on a 64bit machine? It doesn't need to compile to 64Bit code. I know about GDC, but want to work with D2 also. There is also chroot, but am hoping for a simpler way.</p>
<p>The actual problem isn't with compiling, but linking. DMD calls on GCC to perform linking with system libraries. Could I get DMD to have GCC link against 32bit library? Or how would I do it manually?</p>
<p>I already have the ia32 libraries installed which is why I can run DMD.</p>
http://stackoverflow.com/questions/816113/unable-to-move-upwards-by-t-in-vims-tlist-when-i-use-dvorak/816405#8164050Answer by he_the_great for Unable to move upwards by t in Vim's Tlist when I use Dvorakhe_the_great2009-05-03T05:24:03Z2009-05-03T05:24:03Z<p>The problem is that Tag List has defined very specific action to these keys, so rebinding them has moved functionality on top of it and can not be used to shift responsibility. There might be another way, but you can edit taglist.vim at line :1560 and :1562</p>
<pre><code> nnoremap <buffer> <silent> t
nnoremap <buffer> <silent> <C-t>
</code></pre>
<p>change 't' to the letter you want, maybe 'l'. You will also find all the other key bindings in this area. While not needed or affected by these changes, you can also update the help message if you change other bindings starting at line :535</p>
http://stackoverflow.com/questions/796005/how-to-get-started-with-mono-in-linux-for-a-beginner/798574#7985740Answer by he_the_great for How to get started with Mono in Linux for a beginner?he_the_great2009-04-28T15:34:44Z2009-04-28T15:34:44Z<p>Debian and Ubuntu, and probably all other children, have mono in the repository. So, setting up mono in Linux can be as easy as # aptitude install monodevelop</p>
<p>However I would suggest version 2 which requires using the 'sid' repository in Debian (don't know about Ubuntu). # vim /etc/apt/sources.list [ :%s/squeeze/sid/g ]</p>
http://stackoverflow.com/questions/618398/does-using-linux-benefit-you-as-a-programmer/621301#6213012Answer by he_the_great for Does using linux benefit you as a programmer?he_the_great2009-03-07T04:22:11Z2009-03-07T04:22:11Z<p>I want to point out some prominent points complete missed by others that have posted. Linux provides some tools that I have tried on other OS's like Windows, but fail to have the proper flow. This is mostly going to be about the shortcomings of Windows, also you can interchange Linux with GNU for those that feel it is important to do so.</p>
<p><a href="http://fy.chalmers.se/~appro/nt/TXMouse/" rel="nofollow">True X-Mouse Gizmo</a>. In Linux Sloppy-Focus very nice once you get use to it. And the middle-mouse past is integrated so nicely.</p>
<p><a href="http://virtuawin.sourceforge.net/" rel="nofollow">VirtuaWin</a> MacOS does well with this, but yet again, Windows fails when it comes to Virtual Desktops (And you will love them)</p>
<p>In Windows you can get a proper shell <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> and <a href="http://sshwindows.sourceforge.net/" rel="nofollow">SSH Server</a>, but it is so nicely integrated into the life of Linux. And if you are not already a shell user, that will help you as a programmer.</p>
<p>Proper window management is also important. Everyone has their own needs in this area and Linux provide the options to get it right for yourself.</p>
<p>All this is really going to depend on how you actually do development. Windows really is the perfect development environment for some people, but gives very little option if it doesn't suit your needs. If you are a .Net developer Linux probably isn't the best option for improving. If your big on IDE's you might not see much of a difference, but not being afraid of the shell is a big win. If you want Linux to teach you to be a better programmer, the switch will not be a walk in the park (I recommend breaking your system to the point of having to reinstall at least twice a week :) Linux might not be right for you but the only way to find out is to try it.</p>
<p>I didn't go into the importance of these things because not everyone finds them important, and it is just hard to really explain. And as others have said, it isn't just the environment, its the mindset.</p>
http://stackoverflow.com/questions/337570/is-it-worth-it-to-code-different-functionality-for-users-with-javascript-disabled/337780#3377802Answer by he_the_great for Is it worth it to code different functionality for users with javascript disabled?he_the_great2008-12-03T16:33:53Z2008-12-03T16:33:53Z<p>I am one of those that uses 'No-Script.' And I can tell you that sites that use javascript and don't work without it enabled is extremely annoying, stackOverflow... No we don't expect it to be very fancy, if I upvote load a new page that says "Thank you."</p>
<p>We expect to be able to use the site with reasonable limitations, don't ever display a page that says JS must be enabled, though, even if the site is crap without it. And yes if your site convinces us to stay we will enable. A function that isn't in common use on the site can also require javascript.</p>
<p>Please note that your site should also look good with no JS or CSS, if nothing else it is good for Bots.</p>
<p>As others have pointed out some phones don't have JS, this is changing but another good reason to have reasonable non-JS. I suggest code with non-JS and add JS after the former works, there are good ways where JS can work with the non-JS layout.</p>
http://stackoverflow.com/questions/316132/what-ever-happened-to-aspect-oriented-programming/316167#3161671Answer by he_the_great for What ever happened to Aspect Oriented Programming?he_the_great2008-11-25T02:23:36Z2008-11-25T02:53:58Z<p>I'm going to suggest that it wasn't big enough. It sounds very appealing, but does it really make coding any easier? I've been wanting to try it out and find what benefits it really holds, but I don't think I do enough coding where I need the relationships that it provides. I don't think it is as beneficial as it sounds.</p>
<p>Also at this point, making it easier to do multicore programming easier is a big thing and I don't think aspect-oriented programming will assist with that.</p>
<p>You can also find lots of content on <a href="http://en.wikipedia.org/wiki/Aspect-oriented_programming#Adoption_risks" rel="nofollow" title="Adoption Risks">Adoption Risks</a>.</p>
http://stackoverflow.com/questions/313527/simple-algorithm-tutorials/313535#3135352Answer by he_the_great for Simple algorithm tutorials?he_the_great2008-11-24T06:21:35Z2008-11-24T06:21:35Z<p>Recursion really isn't an algorithm. Since you don't have anything specific you're interested in I'd suggest you read <a href="http://en.wikipedia.org/wiki/List_of_algorithms" rel="nofollow" title="wikipedia's List of alorithms">wikipedia's List of alorithms</a> or as others have suggested grab a book.</p>
http://stackoverflow.com/questions/312785/why-is-using-a-class-as-a-struct-bad-practice-in-java/312800#3128000Answer by he_the_great for Why is using a class as a struct bad practice in Java?he_the_great2008-11-23T18:30:51Z2008-11-23T18:30:51Z<p>I think he might be confusing "not very OOP" for bad practice. I think he expected you to provide several methods that would each return 1 value that was needed (as you will have to use them in your new class anyway that isn't too bad).</p>
<p>Note that in this case you probably shouldn't use getters/setters, just make the data public. No this is "not very OOP" but is the right way to do it.</p>
http://stackoverflow.com/questions/305793/why-does-microsoft-windows-performance-appear-to-degrade-over-time/305904#30590438Answer by he_the_great for Why Does Microsoft Windows' Performance Appear To Degrade Over Time?he_the_great2008-11-20T16:27:14Z2008-11-20T19:47:33Z<p>I don't know what it is with the others here, I haven't met someone that doesn't know what you are talking about. There are many reasons for it, but some have not been identified.</p>
<p>I'll start with a better description for those that don't know. A fresh install of Windows will boot in under 1min. Over a period of 6 months the computer's boot time will not only slow but the entire experience of the OS is not on par with a clean slate. If you ever reinstall windows after 1 year of use you are sure to see the difference.</p>
<p>Reasons for the slow down have been attributed to increased clutter in your registry, and fragmentation of your disk. You have noticed that uninstalling does not help, this is in part because everything isn't cleaned from the registry. Ad-ware can be an issue, but this is usually not the cause.</p>
<p>You can get registry cleaners, defreg, and remove ad-ware, but even this will not return the system to its original speed, no one has come up with a reasonable explanation for this, it just is.</p>
<p>Note to others, this is not a normal behavior for an OS that is being used, I have been using Linux for 4 years, while this wasn't without re-installation, there had never been performance increase from a re-install or a slowdown from large amounts of installing/uninstalling programs.</p>
http://stackoverflow.com/questions/282984/naming-an-intermediary-table-in-a-database0Naming an intermediary table in a databasehe_the_great2008-11-12T04:01:08Z2008-11-12T04:05:21Z
<p>Consider two tables transaction and category each having their own ID and information.</p>
<p>A transaction can have more than one category, I have read creating a 3rd table to link transaction and category using their IDs is best. But what would you call this table, assuming you would have many like it?</p>
<p>transactionCategories is the best I'm coming up with, is there anything better?</p>
http://stackoverflow.com/questions/264309/why-do-people-defend-the-regex-syntax/264384#26438421Answer by he_the_great for Why do people defend the regex syntax?he_the_great2008-11-05T05:04:23Z2008-11-05T05:04:23Z<p>Most of what I have to say were addressed by Adam and DGM, but I don't think they cover your second point very well.</p>
<p>"how about all the very easy to understand, non compact, non cryptic and dare I say pretty domain languages out there like SQL or LINQ?"</p>
<p>I think a good way to express an answer to this is to ask, how would you use English to explain a regular expression?</p>
<pre><code><TAG\b[^>]*>(.*?)</TAG>
</code></pre>
<p>Look for "<TAG" a word boundary zero or more of something that is not '>' followed by a '>' remember zero or more of something, stopping at the first "</TAG>"</p>
<p>This is a fairly simple regex. Is the English form really easier to understand? Could you do better?</p>
<p>Regular expressions are hard to read, but what you want from them can be just as hard to explain.</p>
http://stackoverflow.com/questions/250511/does-the-d-programming-language-have-a-future/1790259#1790259Comment by he_the_great on Does the D programming language have a future?he_the_great2009-11-24T15:14:31Z2009-11-24T15:14:31ZI'm not sure how Eiffel could be classified as "a better Java." it is about 10yrs before Java and is not similar.http://stackoverflow.com/questions/1601220/vim-omnicompletion-for-java/1621170#1621170Comment by he_the_great on Vim omnicompletion for Javahe_the_great2009-10-25T15:48:37Z2009-10-25T15:48:37ZIDEs are always missing a good text editor, that is why.http://stackoverflow.com/questions/1613963/some-d-template-questionsComment by he_the_great on Some D template questionshe_the_great2009-10-23T21:23:40Z2009-10-23T21:23:40ZStackOverflow is thinking your second code block is an new paragraph for point 2.http://stackoverflow.com/questions/1394056/dmd-2-on-snow-leopard/1439711#1439711Comment by he_the_great on DMD 2 on Snow Leopardhe_the_great2009-09-17T21:25:00Z2009-09-17T21:25:00ZDMD is quite stable in Linux. OS X I think it is doing better, but I don't use it there.http://stackoverflow.com/questions/264309/why-do-people-defend-the-regex-syntax/264384#264384Comment by he_the_great on Why do people defend the regex syntax?he_the_great2009-09-06T22:50:50Z2009-09-06T22:50:50Z@RCIX That is only if you don't know regex.http://stackoverflow.com/questions/47420/how-can-i-break-on-exception-using-ddbg/47974#47974Comment by he_the_great on How can I break on exception using ddbghe_the_great2009-08-25T14:39:21Z2009-08-25T14:39:21ZThis isn't a discussion form, you should edit the question to add this information and delete this answer.http://stackoverflow.com/questions/557011/d-programming-language-char-arraysComment by he_the_great on D programming language char arrayshe_the_great2009-08-19T15:29:59Z2009-08-19T15:29:59ZThe word invariant has been replaced with immutable and will not exist in the stable release of D2.xhttp://stackoverflow.com/questions/557011/d-programming-language-char-arrays/1296711#1296711Comment by he_the_great on D programming language char arrayshe_the_great2009-08-19T15:29:28Z2009-08-19T15:29:28ZThe word invariant has been replaced with immutable and will not exist in the stable release of D2.xhttp://stackoverflow.com/questions/1276760/use-a-mouse-for-non-mouse-inputComment by he_the_great on Use a mouse for non-mouse inputhe_the_great2009-08-14T20:11:31Z2009-08-14T20:11:31ZYou don't want "any traditional effect on the X environment," but you do want the x and y axes? Don't coordinates only have meaning/availability in an X environment?http://stackoverflow.com/questions/1279153/malloc-and-free-in-d-tango-not-freeing-memoryComment by he_the_great on malloc and free in D/Tango not freeing memory?he_the_great2009-08-14T19:08:59Z2009-08-14T19:08:59Zmalloc and free are just rappers for the C calls. I don't know why the results would be different.http://stackoverflow.com/questions/1223710/we-have-to-use-c-for-performance-reasons/1223757#1223757Comment by he_the_great on We have to use C "for performance reasons"he_the_great2009-08-03T21:36:51Z2009-08-03T21:36:51ZRemoving the GC doesn't fix the problem, malloc/free are non-deterministic. The D programming language allows you to disable the GC so it doesn't run during critical code.http://stackoverflow.com/questions/1208256/would-you-recommend-vim-emacs-for-beginner-programmers/1208352#1208352Comment by he_the_great on Would you recommend vim/emacs for beginner programmers?he_the_great2009-07-31T01:29:19Z2009-07-31T01:29:19ZNo, if they are truly beginning to program intellisense is not the way to go. It would likely confuse a new user with all the help it gives them. Sure they could write a "Hello world" program by creating a new project, but that isn't programming.http://stackoverflow.com/questions/1113938/how-would-you-approach-using-d-in-a-embedded-real-time-environment/1114016#1114016Comment by he_the_great on How would you approach using D in a embedded real-time environment?he_the_great2009-07-13T03:16:40Z2009-07-13T03:16:40ZYou can disable the GC std.gc.disable() which will prevent the running of the garbage collector until std.gc.enable(). http://stackoverflow.com/questions/902047/what-is-ethaddrt-and-friends-in-libdnet/902242#902242Comment by he_the_great on What is eth_addr_t and friends in libdnethe_the_great2009-05-23T20:08:14Z2009-05-23T20:08:14ZThanks, spent lots of time using grep and Google yesterday, just didn't know what I was looking for. Also I think the sockaddr I'm looking for is from sys/socket.hhttp://stackoverflow.com/questions/856328/compiling-with-dmd-on-64bit-linux-or-linking-with-32bit-object-files/856411#856411Comment by he_the_great on Compiling with DMD on 64bit Linux or Linking with 32bit object fileshe_the_great2009-05-13T15:27:46Z2009-05-13T15:27:46ZThank you. And to complete the answer, The needed package for development is gcc-multilib. Also the switch I used was -melf_i386 and to have dmd forward to gcc -L-melf_i386. Could you update your answer?