User unexist - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T17:01:32Zhttp://stackoverflow.com/feeds/user/18179http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1498325/embeddedruby1-9-1-signalsandmultithreading0Embedded Ruby 1.9.1, signals and multithreadingunexist2009-09-30T14:04:05Z2009-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-ruby1Getting essid via ioctl in rubyunexist2009-09-18T20:56:02Z2009-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#14649460Answer by unexist for Getting essid via ioctl in rubyunexist2009-09-23T09:32:48Z2009-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-weirdness4Manpage scandir() prototype weirdnessunexist2008-09-28T17:22:29Z2009-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)->d_name, (*b)->d_name));
}
</code></pre>
<p>And here's the call:</p>
<pre><code>num = scandir(buf, &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-variables0Ruby Garbage Collection: Mark non-exported variablesunexist2009-04-05T18:36:02Z2009-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(&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-buildsystem2What is your favourite buildsystem?unexist2008-09-20T09:42:37Z2009-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-netsupportingwmcheck1Confusing _NET_SUPPORTING_WM_CHECKunexist2008-10-17T23:28:11Z2009-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#32895113Answer by unexist for Humor in codeunexist2008-11-30T15:23:01Z2009-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-caching0Rails domain-based cachingunexist2009-01-17T13:05:30Z2009-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#2925984Answer by unexist for How do I replace accented Latin characters in Ruby?unexist2008-11-15T14:18:52Z2008-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>>> "àáâãäå".chars.normalize(:kd).gsub(/[^\x00-\x7F]/n,'').downcase.to_s
=> "aaaaaa"
</code></pre>
http://stackoverflow.com/questions/195305/tracker-tool-in-sourceforge/195338#1953383Answer by unexist for Tracker tool in Sourceforgeunexist2008-10-12T10:52:51Z2008-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#1941291Answer by unexist for How to deprecate a function in PHP?unexist2008-10-11T14:30:31Z2008-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><?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#1929171Answer by unexist for Wait cursor over entire html pageunexist2008-10-10T20:27:13Z2008-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#1917741Answer by unexist for What's a good free bug tracker for a small shopunexist2008-10-10T15:09:04Z2008-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#1830382Answer by unexist for Build C project automaticlyunexist2008-10-08T14:25:01Z2008-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#1701050Answer by unexist for How do you get other people to contribute to the project Wiki?unexist2008-10-04T10:42:20Z2008-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-low10What are your strategies to keep the memory usage low?unexist2008-09-27T21:41:33Z2008-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#1614484Answer by unexist for What is your favorite Firebug tip or trick?unexist2008-10-02T09:02:19Z2008-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#1616128Answer by unexist for How do you track your time?unexist2008-10-02T10:08:08Z2008-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#1582111Answer by unexist for Do you have a hobby development project?unexist2008-10-01T15:27:08Z2008-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#1581190Answer by unexist for What are the best movies about Geeks/Programmers/Hackers. (for inspiration)unexist2008-10-01T15:10:33Z2008-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#1579830Answer by unexist for How do I make the apple terminal window auto change colour scheme when I ssh to a specific serverunexist2008-10-01T14:44:38Z2008-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#1549260Answer by unexist for Function Chaining - How many is too many?unexist2008-09-30T20:31:22Z2008-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#1510410Answer by unexist for How do I unlock a SQLite database?unexist2008-09-29T22:39:39Z2008-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#1484761Answer by unexist for How to use sed to replace only the first occurrence in a file?unexist2008-09-29T12:30:36Z2008-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#1480232Answer by unexist for Will learning a couple of languages in parallel blow my mind?unexist2008-09-29T09:03:23Z2008-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#1438130Answer by unexist for Best hosted wiki solution for private wikis?unexist2008-09-27T15:27:19Z2008-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#1438041Answer by unexist for how do i find which process is leaking memoryunexist2008-09-27T15:21:33Z2008-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#1437901Answer by unexist for PostGreSQL - Rename databaseunexist2008-09-27T15:18:03Z2008-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#1437630Answer by unexist for Is it possible to trigger a link's (or any element's) click event through JavaScript?unexist2008-09-27T15:03:22Z2008-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#292598Comment by unexist on How do I replace accented Latin characters in Ruby?unexist2009-11-16T07:56:25Z2009-11-16T07:56:25ZIt is in activesupport, but you will have to do it like this:
ActiveSupport::Multibyte::Chars.new("àáâãäå").mb_chars.normalize(:kd).gsub(/[^\x00-\x7F]/n,'').downcase.to_shttp://stackoverflow.com/questions/1480953/how-to-implement-search-for-2-different-table-dataComment by unexist on how to implement search for 2 different table data?unexist2009-09-30T14:26:26Z2009-09-30T14:26:26ZWouldn'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#1447085Comment by unexist on Getting essid via ioctl in rubyunexist2009-09-21T07:58:26Z2009-09-21T07:58:26ZTrue, 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#1447085Comment by unexist on Getting essid via ioctl in rubyunexist2009-09-19T17:44:59Z2009-09-19T17:44:59ZWell, 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#107848Comment by unexist on How to display latest revision in a file?unexist2009-03-21T13:53:15Z2009-03-21T13:53:15ZOf 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#292598Comment by unexist on How do I replace accented Latin characters in Ruby?unexist2008-12-06T19:23:32Z2008-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#212342Comment by unexist on CSS coders out there! What is your fav editor?unexist2008-10-17T14:46:28Z2008-10-17T14:46:28ZThe script seems to be horrible slow on larger CSS files. Can you confirm this?http://stackoverflow.com/questions/194464/have-you-ever-crashed-the-compilerComment by unexist on Have you ever crashed the compiler?unexist2008-10-11T21:30:02Z2008-10-11T21:30:02ZOf 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-overfComment by unexist on What C/C++ functions are most often used incorrectly and can lead to buffer overflows?unexist2008-10-04T10:24:22Z2008-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-overfComment by unexist on What C/C++ functions are most often used incorrectly and can lead to buffer overflows?unexist2008-10-03T21:23:25Z2008-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-overfComment by unexist on What C/C++ functions are most often used incorrectly and can lead to buffer overflows?unexist2008-10-03T14:43:43Z2008-10-03T14:43:43ZI 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#161506Comment by unexist on Most amazing piece of code you've ever seenunexist2008-10-02T10:16:36Z2008-10-02T10:16:36ZIt's just a nice Xor. ;)http://stackoverflow.com/questions/144542/what-are-your-strategies-to-keep-the-memory-usage-low/161206#161206Comment by unexist on What are your strategies to keep the memory usage low?unexist2008-10-02T08:56:50Z2008-10-02T08:56:50ZThat'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#154638Comment by unexist on Recommended gcc warning options for Cunexist2008-09-30T20:32:56Z2008-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-appComment by unexist on When would you NOT want to use memcached in a Ruby on Rails app?unexist2008-09-30T16:40:05Z2008-09-30T16:40:05ZWhat do you mean with 'when'? What data do you want to store in memcache?