User unexist - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T17:01:32Z http://stackoverflow.com/feeds/user/18179 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1498325/embeddedruby1-9-1-signalsandmultithreading 0 Embedded Ruby 1.9.1, signals and multithreading unexist 2009-09-30T14:04:05Z 2009-10-08T09:11:30Z <p>I am embedding ruby (1.9.1) as a scripting language in my window manager project (subtle). Since the switch from 1.8 to 1.9 I am facing many problems with asynchronous signals in multithreading.</p> <p>How is signal handling supposed to work and does the thread that ruby creates automatically have any own signal handlers? Due the asynchronous behaviour of signals like SIGINT the first thread with a handler will get the signal and this is sometimes not my main thread.</p> <p>Also when this ruby thread has any handler, can some signals be disabled or should I just add traps and rely fully on ruby and dispatch the signals to my main thread?</p> <p>Edit: Why can none say something to this?</p> http://stackoverflow.com/questions/1446806/getting-essid-via-ioctl-in-ruby 1 Getting essid via ioctl in ruby unexist 2009-09-18T20:56:02Z 2009-09-23T09:32:48Z <p>To avoid relying on the wireless tools I want to get the essid directly from the device with ioctl, in C this wouldn't be a problem, but in Ruby it's quite different. </p> <p>The problem is following struct from <em>wireless.h</em> that is used as input/reply of ioctl:</p> <pre><code>struct iw_point { void __user *pointer; /* Pointer to the data (in user space) */ __u16 length; /* number of fields or size in bytes */ __u16 flags; /* Optional params */ }; </code></pre> <p>The pointer part must be a valid address of a memory area, followed by the length in bytes, followed by a flag field. I tried with Array#pack and the bit-struct gem, but haven't found a solution yet. </p> <p>Is there a way to bypass this memory pointer problem?</p> http://stackoverflow.com/questions/1446806/getting-essid-via-ioctl-in-ruby/1464946#1464946 0 Answer by unexist for Getting essid via ioctl in ruby unexist 2009-09-23T09:32:48Z 2009-09-23T09:32:48Z <p>I finally got it working, the solution was to use the 'p' argument of pack in this way:</p> <pre><code>require "socket" # Copied from wireless.h SIOCGIWESSID = 0x8B1B IW_ESSID_MAX_SIZE = 32 iwreq = [ "wlan0", " " * IW_ESSID_MAX_SIZE, IW_ESSID_MAX_SIZE, 0 ].pack("a16pII") sock = Socket.new(Socket::AF_INET, Socket::SOCK_DGRAM, 0) sock.ioctl(SIOCGIWESSID, iwreq) interface, essid, len, flags = iwreq.unpack("a16pII") puts essid </code></pre> http://stackoverflow.com/questions/146291/manpage-scandir-prototype-weirdness 4 Manpage scandir() prototype weirdness unexist 2008-09-28T17:22:29Z 2009-09-14T21:48:46Z <p>I have a problem with <strong>scandir()</strong>: The manpage contains this as prototype:</p> <pre><code>int scandir(const char *dir, struct dirent ***namelist, int (*filter)(const struct dirent *), int (*compar)(const struct dirent **, const struct dirent **)); </code></pre> <p>Therefore I have this:</p> <pre><code>static inline int RubyCompare(const struct dirent **a, const struct dirent **b) { return(strcmp((*a)-&gt;d_name, (*b)-&gt;d_name)); } </code></pre> <p>And here's the call:</p> <pre><code>num = scandir(buf, &amp;entries, NULL, RubyCompare); </code></pre> <p>Finally the compiler says this:</p> <pre><code>warning: passing argument 4 of ‘scandir’ from incompatible pointer type </code></pre> <p>Compiler is <strong>gcc-4.3.2</strong>, my CFLAGS are following: </p> <pre><code>-Wall -Wpointer-arith -Wstrict-prototypes -Wunused -Wshadow -std=gnu99 </code></pre> <p>What is the meaning of this warning? The declaration of RubyCompare looks correct for me and besides the warning the code works completely.</p> http://stackoverflow.com/questions/719438/ruby-garbage-collection-mark-non-exported-variables 0 Ruby Garbage Collection: Mark non-exported variables unexist 2009-04-05T18:36:02Z 2009-08-27T00:00:01Z <p>I have several structs bound with <strong>Data_Wrap_Struct</strong> to ruby objects and I also supplied mark() and free() functions. </p> <p>When I manually start the GC or just wait until it jumps in my ruby objects are killed. Nothing new so far. </p> <p>The strange thing is: When I try to protect these objects with <strong>rb_gc_register_address</strong>() nothing happens - my objects will still be killed.</p> <p>I can only prevent the GC from doing that with something like this:</p> <pre><code>objects = rb_ary_new(); rb_gc_register_address(&amp;objects); rb_ary_push(objects, data); </code></pre> <p>Is that the only way and why can't I just use <strong>rb_gc_register_address</strong>()?</p> http://stackoverflow.com/questions/107749/what-is-your-favourite-buildsystem 2 What is your favourite buildsystem? unexist 2008-09-20T09:42:37Z 2009-05-18T15:02:58Z <p>There are so many different systems out there, what do you prefer? Using a system that is written in the same language like your own software?</p> <p>I started with the famous Autotools-Collection once. Some years later I found and tried <a href="http://www.scons.org" rel="nofollow">SCons</a> and was amazed. It's so clean and easy in comparison to Autotools-stuff - but to have <a href="http://www.python.org" rel="nofollow">Python</a> as a dependency for building a project is just a mess. At the moment I am embedding <a href="http://www.ruby-lang.org" rel="nofollow">Ruby</a> into my <a href="http://unexist.scrapping.cc/projects/show/subtle" rel="nofollow">project</a> and I am very confident with <a href="http://rake.rubyforge.org/" rel="nofollow">Rake</a>. </p> <p>So it's just another time choose the right one for the right job? What is your opinion?</p> http://stackoverflow.com/questions/214183/confusing-netsupportingwmcheck 1 Confusing _NET_SUPPORTING_WM_CHECK unexist 2008-10-17T23:28:11Z 2009-04-10T18:14:54Z <p>Hi,</p> <p>I am trying to make my window manager conform to the ICCCM specifications. I fully understand the reason for the _NET_SUPPORTING_WM_CHECK atom - this ensures that no invalid information stays whenever the window manager isn't running anymore.</p> <p>What I don't understand is why are no other atoms like _NET_NUMBER_OF_DESKTOPS expected on the supporting window besides _NET_WM_NAME and _NET_SUPPORTING_WM_CHECK itself. </p> <p>Window managers are supposed to set and overwrite the data but this can be misleading in the case the new window manager isn't compliant.</p> http://stackoverflow.com/questions/140270/humor-in-code/328951#328951 13 Answer by unexist for Humor in code unexist 2008-11-30T15:23:01Z 2009-02-05T14:35:03Z <p>Here's another one:</p> <pre><code>while ("my guitar gently weeps") { ... } </code></pre> http://stackoverflow.com/questions/453287/rails-domain-based-caching 0 Rails domain-based caching unexist 2009-01-17T13:05:30Z 2009-01-17T13:18:00Z <p>Rails caches (file cache) per default domain-based, but is there a way to disable this? My rails app can be reached via multiple domains and the content is all the same. I just don't want to have multiple cache files.</p> <p>(I know memcache is better, this is not part of the question)</p> http://stackoverflow.com/questions/225471/how-do-i-replace-accented-latin-characters-in-ruby/292598#292598 4 Answer by unexist for How do I replace accented Latin characters in Ruby? unexist 2008-11-15T14:18:52Z 2008-11-15T14:18:52Z <p>Rails has already a builtin for normalizing, you just have to use this to normalize your string to form KD and remove the other chars like this:</p> <pre><code>&gt;&gt; "àáâãäå".chars.normalize(:kd).gsub(/[^\x00-\x7F]/n,'').downcase.to_s =&gt; "aaaaaa" </code></pre> http://stackoverflow.com/questions/195305/tracker-tool-in-sourceforge/195338#195338 3 Answer by unexist for Tracker tool in Sourceforge unexist 2008-10-12T10:52:51Z 2008-10-12T12:07:49Z <p>I started my project there and moved later to an own server for many reasons. I bet it's a matter of taste - the SF menus are often really complicated and I always have a long way to find what I am actually seeking.</p> <p>The advantage of own project management software like <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> or <a href="http://redmine.org" rel="nofollow">Redmine</a> is that you have the power of everything. You can install addons at will, use other VCS and style it as you like. The biggest disadvantage is that you probably must do all that.</p> <p>There are several free hosting services out there that offer a <a href="http://trac.edgewall.org" rel="nofollow">Trac</a> or similar:</p> <ol> <li><a href="http://devjavu.com/" rel="nofollow">http://devjavu.com/</a></li> <li><a href="http://www.assembla.com/" rel="nofollow">http://www.assembla.com/</a></li> <li><a href="http://sharesource.org/" rel="nofollow">http://sharesource.org/</a></li> </ol> http://stackoverflow.com/questions/194121/how-to-deprecate-a-function-in-php/194129#194129 1 Answer by unexist for How to deprecate a function in PHP? unexist 2008-10-11T14:30:31Z 2008-10-11T14:37:27Z <p>I haven't checked it by myself, but found this in my bookmarks: <a href="http://wiki.php.net/rfc/e-user-deprecated-warning" rel="nofollow">http://wiki.php.net/rfc/e-user-deprecated-warning</a></p> <p>Edit: Okay this doesn't work yet - so instead of E_USER_DEPRECATED just use something like E_USER_NOTICE:</p> <pre><code>&lt;?php class Foo { public function __construct() { trigger_error('Use Bar instead', E_USER_NOTICE); } } $foo = new Foo() </code></pre> <p>This will end up with this:</p> <pre><code>Notice: Use Bar instead in /home/unexist/projects/ingame/svn/foo.php on line 6 </code></pre> http://stackoverflow.com/questions/192900/wait-cursor-over-entire-html-page/192917#192917 1 Answer by unexist for Wait cursor over entire html page unexist 2008-10-10T20:27:13Z 2008-10-10T20:27:13Z <p>Why don't you just use one of those fancy loading graphics (eg: <a href="http://ajaxload.info/" rel="nofollow">http://ajaxload.info/</a>)? The waiting cursor is for the browser itself - so whenever it appears it has something to do with the browser and not with the page.</p> http://stackoverflow.com/questions/130575/whats-a-good-free-bug-tracker-for-a-small-shop/191774#191774 1 Answer by unexist for What's a good free bug tracker for a small shop unexist 2008-10-10T15:09:04Z 2008-10-10T15:09:04Z <p><a href="http://flyspray.org/" rel="nofollow">Flyspray</a> is another option if you really just want a small bugtracker.</p> http://stackoverflow.com/questions/183001/build-c-project-automaticly/183038#183038 2 Answer by unexist for Build C project automaticly unexist 2008-10-08T14:25:01Z 2008-10-08T14:25:01Z <p>I don't think that there's a buildsystem that is capable of doing all this tasks - but what about combining them?</p> <p><a href="http://www.scons.org" rel="nofollow">SCons</a> is a nice buildsystem that runs on every machine that has <a href="http://www.python.org" rel="nofollow">Python</a>. It can even build directly from <a href="http://subversion.tigris.org/" rel="nofollow">SVN</a>. For automatic building you can try <a href="http://buildbot.net/trac" rel="nofollow">Buildbot</a>.</p> http://stackoverflow.com/questions/170101/how-do-you-get-other-people-to-contribute-to-the-project-wiki/170105#170105 0 Answer by unexist for How do you get other people to contribute to the project Wiki? unexist 2008-10-04T10:42:20Z 2008-10-04T10:42:20Z <p>It's always hard to change other people habits - especially when they argue like 'it works - why should we change it?'. Just speak with them about the advantages of the wiki and always refer to it if someone asks something project related.</p> <p>It's the same problem like forcing people to document their code.</p> http://stackoverflow.com/questions/144542/what-are-your-strategies-to-keep-the-memory-usage-low 10 What are your strategies to keep the memory usage low? unexist 2008-09-27T21:41:33Z 2008-10-02T16:42:39Z <p><a href="http://www.ruby-lang.org" rel="nofollow">Ruby</a> is truly memory-hungry - but also worth every single bit. </p> <p>What do you do to keep the memory usage low? Do you avoid big strings and use smaller arrays/hashes instead or is it no problem to concern about for you and let the garbage collector do the job?</p> <p><strong>Edit</strong>: I found a nice article about this topic <a href="http://whytheluckystiff.net/articles/theFullyUpturnedBin.html" rel="nofollow">here</a> and another one <a href="http://gnomecoder.wordpress.com/2007/10/02/rubys-garbage-collection-problem/" rel="nofollow">here</a> - old but still interesting.</p> http://stackoverflow.com/questions/161403/what-is-your-favorite-firebug-tip-or-trick/161448#161448 4 Answer by unexist for What is your favorite Firebug tip or trick? unexist 2008-10-02T09:02:19Z 2008-10-02T10:12:55Z <p>Not a <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a> trick itself - but another nice extension for <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a> is <a href="https://addons.mozilla.org/en-US/firefox/addon/6683" rel="nofollow">Firecookie</a>. It allows to easy manage cookies.</p> http://stackoverflow.com/questions/161590/how-do-you-track-your-time/161612#161612 8 Answer by unexist for How do you track your time? unexist 2008-10-02T10:08:08Z 2008-10-02T10:08:08Z <p>We use <a href="http://www.redmine.org" rel="nofollow">Redmine</a> - you can just add the spent time directly to a ticket. Actually a web-based tracker is the best solution if you work on different computers.</p> <p>Maybe one of the tools <a href="http://freelanceswitch.com/productivity/6-cool-tools-to-track-your-time/" rel="nofollow">here</a> can help too.</p> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/158211#158211 1 Answer by unexist for Do you have a hobby development project? unexist 2008-10-01T15:27:08Z 2008-10-01T15:27:08Z <p>I think every programmer has at least one - so here's my: I am writing a tiling window manager called <a href="http://unexist.scrapping.cc/projects/show/subtle" rel="nofollow">subtle</a>.</p> http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/158119#158119 0 Answer by unexist for What are the best movies about Geeks/Programmers/Hackers. (for inspiration) unexist 2008-10-01T15:10:33Z 2008-10-01T15:10:33Z <p>Not a movie but I always liked <a href="http://welcometothescene.com/" rel="nofollow">The.Scene</a> - too bad that the second season is a bit worse.</p> http://stackoverflow.com/questions/157959/how-do-i-make-the-apple-terminal-window-auto-change-colour-scheme-when-i-ssh-to-a/157983#157983 0 Answer by unexist for How do I make the apple terminal window auto change colour scheme when I ssh to a specific server unexist 2008-10-01T14:44:38Z 2008-10-01T14:44:38Z <p>Why not just changing the shell prompt whenever you are logged in via SSH? There are usually specific shell variables: <strong>SSH_CLIENT</strong>, <strong>SSH_CONNECTION</strong>, <strong>SSH_TTY</strong></p> http://stackoverflow.com/questions/154864/function-chaining-how-many-is-too-many/154926#154926 0 Answer by unexist for Function Chaining - How many is too many? unexist 2008-09-30T20:31:22Z 2008-09-30T20:31:22Z <p>Chaining is okay as long as you as know what you are doing and what can happen in a bad case. I personally never like to wrap everything in a try/catch-block.</p> http://stackoverflow.com/questions/151026/how-do-i-unlock-a-sqlite-database/151041#151041 0 Answer by unexist for How do I unlock a SQLite database? unexist 2008-09-29T22:39:39Z 2008-09-29T22:39:39Z <p>There might be another process accessing the database file - did you check lsof?</p> http://stackoverflow.com/questions/148451/how-to-use-sed-to-replace-only-the-first-occurrence-in-a-file/148476#148476 1 Answer by unexist for How to use sed to replace only the first occurrence in a file? unexist 2008-09-29T12:30:36Z 2008-09-29T12:30:36Z <p>Just add the number of occurrence at the end:</p> <pre><code>sed s/#include/#include "newfile.h"\n#include/1 </code></pre> http://stackoverflow.com/questions/147865/will-learning-a-couple-of-languages-in-parallel-blow-my-mind/148023#148023 2 Answer by unexist for Will learning a couple of languages in parallel blow my mind? unexist 2008-09-29T09:03:23Z 2008-09-29T09:03:23Z <p>I would say it heavily depends on the language/type of language. Like learning different OOP-based language should be no problem, if can remember all those differences and quirks. More complicated is it to learn one OOP like <a href="http://www.ruby-lang.org" rel="nofollow">Ruby</a> and one functional language like <a href="http://www.haskell.org/" rel="nofollow">Haskell</a>.</p> <p>I would suggest just to focus on one language and make your experience with it. It's much easier to learn a new language when you have more experience.</p> http://stackoverflow.com/questions/143321/best-hosted-wiki-solution-for-private-wikis/143813#143813 0 Answer by unexist for Best hosted wiki solution for private wikis? unexist 2008-09-27T15:27:19Z 2008-09-27T15:27:19Z <p>Just have a look here: <a href="http://en.wikipedia.org/wiki/Wiki_farm" rel="nofollow">Wikipedia</p> <p>I would suggest <a href="http://en.wikipedia.org/wiki/Wikia" rel="nofollow">Wikia</a>, but I don't know if they allow private-only wikis. It's based on Mediawiki</a>.</p> http://stackoverflow.com/questions/143791/how-do-i-find-which-process-is-leaking-memory/143804#143804 1 Answer by unexist for how do i find which process is leaking memory unexist 2008-09-27T15:21:33Z 2008-09-27T15:21:33Z <p>Difficult task. I would normally suggest to grab a debugger/memory profiler like <a href="http://valgrind.org/" rel="nofollow">Valgrind</a> and run the programs one after one in it. Soon or later you will find the program that leaks and can tell it the devloper or fix it yourself.</p> http://stackoverflow.com/questions/143756/postgresql-rename-database/143790#143790 1 Answer by unexist for PostGreSQL - Rename database unexist 2008-09-27T15:18:03Z 2008-09-27T15:18:03Z <p>What is the exact error message and did you look up this error in the postgres docs? Maybe there's a perfect reason for that behaviour. Normally renaming should work.</p> <p>If you have problems with pending or dead connections just restart the database to get rid of them.</p> http://stackoverflow.com/questions/143747/is-it-possible-to-trigger-a-links-or-any-elements-click-event-through-javascr/143763#143763 0 Answer by unexist for Is it possible to trigger a link's (or any element's) click event through JavaScript? unexist 2008-09-27T15:03:22Z 2008-09-27T15:03:22Z <p>Mozilla has a stricter policy for allowed JS actions/events - I had similar problems with the click() event too. It's disabled on some elements to prevent XSS. </p> <p>What is wrong with redirecting the browser? This sould work everywhere.</p> http://stackoverflow.com/questions/225471/how-do-i-replace-accented-latin-characters-in-ruby/292598#292598 Comment by unexist on How do I replace accented Latin characters in Ruby? unexist 2009-11-16T07:56:25Z 2009-11-16T07:56:25Z It is in activesupport, but you will have to do it like this: ActiveSupport::Multibyte::Chars.new(&quot;&#224;&#225;&#226;&#227;&#228;&#229;&quot;).mb_chars.normalize(:kd).gsub(/[^\x00-\x7F]/n,'').downcase.to_s http://stackoverflow.com/questions/1480953/how-to-implement-search-for-2-different-table-data Comment by unexist on how to implement search for 2 different table data? unexist 2009-09-30T14:26:26Z 2009-09-30T14:26:26Z Wouldn't it be easier to rely for fulltext-search on Sphinx or Xapian? Creating the index at a given interval and only search in it will greatly improve the search speed. http://stackoverflow.com/questions/1446806/getting-essid-via-ioctl-in-ruby/1447085#1447085 Comment by unexist on Getting essid via ioctl in ruby unexist 2009-09-21T07:58:26Z 2009-09-21T07:58:26Z True, but devices normally have to follow a draft to be useable by customers which is most likey applicable for vendors and/or driver writers. The problem in this case is just the lack of pointers in Ruby which probably can't be covered easily by bitstruct. During my work on my window manager I am aware of the C API of Ruby - so this will be no problem at all. :) http://stackoverflow.com/questions/1446806/getting-essid-via-ioctl-in-ruby/1447085#1447085 Comment by unexist on Getting essid via ioctl in ruby unexist 2009-09-19T17:44:59Z 2009-09-19T17:44:59Z Well, guess I have no other choice. Actually ioctl should work in both ways properly and not only segfault when some struct like the above is used. ;) http://stackoverflow.com/questions/107840/how-to-display-latest-revision-in-a-file/107848#107848 Comment by unexist on How to display latest revision in a file? unexist 2009-03-21T13:53:15Z 2009-03-21T13:53:15Z Of course, but it works. If you have a better solution go ahead. ;) http://stackoverflow.com/questions/225471/how-do-i-replace-accented-latin-characters-in-ruby/292598#292598 Comment by unexist on How do I replace accented Latin characters in Ruby? unexist 2008-12-06T19:23:32Z 2008-12-06T19:23:32Z % ruby -v ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-linux] http://stackoverflow.com/questions/138783/css-coders-out-there-what-is-your-fav-editor/212342#212342 Comment by unexist on CSS coders out there! What is your fav editor? unexist 2008-10-17T14:46:28Z 2008-10-17T14:46:28Z The script seems to be horrible slow on larger CSS files. Can you confirm this? http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compiler Comment by unexist on Have you ever crashed the compiler? unexist 2008-10-11T21:30:02Z 2008-10-11T21:30:02Z Of course, it happens sometimes - consider a compiler is software too. It's more scary whenever the debugger dies. http://stackoverflow.com/questions/167165/what-c-c-functions-are-most-often-used-incorrectly-and-can-lead-to-buffer-overf Comment by unexist on What C/C++ functions are most often used incorrectly and can lead to buffer overflows? unexist 2008-10-04T10:24:22Z 2008-10-04T10:24:22Z @Zathrus: So malloc() always leads to an overflow? I just said that the title of the question is misleading and MrValdez has already fixed it. ;) http://stackoverflow.com/questions/167165/what-c-c-functions-are-most-often-used-incorrectly-and-can-lead-to-buffer-overf Comment by unexist on What C/C++ functions are most often used incorrectly and can lead to buffer overflows? unexist 2008-10-03T21:23:25Z 2008-10-03T21:23:25Z @Martin: Indeed - so the title of the question is completely wrong. You can mark many of the C-functions with 'They may case an overflow'. http://stackoverflow.com/questions/167165/what-c-c-functions-are-most-often-used-incorrectly-and-can-lead-to-buffer-overf Comment by unexist on What C/C++ functions are most often used incorrectly and can lead to buffer overflows? unexist 2008-10-03T14:43:43Z 2008-10-03T14:43:43Z I don't get the sense of this question. None of the functions here causes any overflow if handled with care. http://stackoverflow.com/questions/161286/most-amazing-piece-of-code-youve-ever-seen/161506#161506 Comment by unexist on Most amazing piece of code you've ever seen unexist 2008-10-02T10:16:36Z 2008-10-02T10:16:36Z It's just a nice Xor. ;) http://stackoverflow.com/questions/144542/what-are-your-strategies-to-keep-the-memory-usage-low/161206#161206 Comment by unexist on What are your strategies to keep the memory usage low? unexist 2008-10-02T08:56:50Z 2008-10-02T08:56:50Z That's a solution, but in Ruby there's no way to explicit delete an object. There aren't even any destructors. Sometimes the Ruby-way is a bit strange. ;) http://stackoverflow.com/questions/154630/recommended-gcc-warning-options-for-c/154638#154638 Comment by unexist on Recommended gcc warning options for C unexist 2008-09-30T20:32:56Z 2008-09-30T20:32:56Z +1 This will turn compiling into fun. ;) http://stackoverflow.com/questions/153889/when-would-you-not-want-to-use-memcached-in-a-ruby-on-rails-app Comment by unexist on When would you NOT want to use memcached in a Ruby on Rails app? unexist 2008-09-30T16:40:05Z 2008-09-30T16:40:05Z What do you mean with 'when'? What data do you want to store in memcache?