User tialaramex - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T15:24:13Zhttp://stackoverflow.com/feeds/user/9654http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1449114/how-to-decode-a-string-that-has-been-utf-8-encoded-twice-to-simple-utf-8/1554570#15545700Answer by tialaramex for How to decode a string that has been UTF-8 encoded twice to simple UTF-8?tialaramex2009-10-12T13:24:17Z2009-10-12T13:24:17Z<p>When you write "The MySQL .Net connector downloads them this way." there's a good chance this means the MySQL .Net connector believes it is speaking Latin-1 to MySQL, while MySQL believes the conversation is in UTF-8. There's also a chance the column is declared as Latin-1, but actually contains UTF-8 data.</p>
<p>If it's the latter (column labelled Latin-1 but data is actually UTF-8) you will get mysterious collation problems and other bugs if you make use of MySQL's text processing functions, ORDER BY on the column, or other situations where the text "means something" rather than just being bytes sent over the wire.</p>
<p>In either case you should try to fix the underlying problem, not least because it is going to be a complete headache for whoever has to maintain the system otherwise.</p>
http://stackoverflow.com/questions/1163500/what-is-the-best-way-to-get-a-string-that-fits-the-provided-width-in-pixels/1163523#11635230Answer by tialaramex for What is the best way to get a string that fits the provided width in pixels?tialaramex2009-07-22T07:03:09Z2009-07-22T07:03:09Z<p>You can approximate the width of a string as being the sum of the width of sub-strings. If your substrings are bounded by whitespace† it may even be a pretty good approximation. But you can't know until you ask <strong>exactly</strong> how wide any particular string will be, because the text rendering engine does things like kerning (altering the spacing between characters).</p>
<p>† and you probably want them to be, at least in a European language, because it is much easier to read text broken only on whitespace than text broken mid-word, even if it results in the text looking slightly more ragged.</p>
http://stackoverflow.com/questions/1154546/sorting-sparql-results-by-date/1158904#11589040Answer by tialaramex for Sorting SPARQL results by datetialaramex2009-07-21T12:32:14Z2009-07-21T12:32:14Z<p>Since you've said you don't actually store the creation date in your RDF then any possible mechanism for doing this would be specific to the SPARQL implementation you were using and the backing RDF store or whatever. It's quite likely that it's just not possible.</p>
http://stackoverflow.com/questions/1020354/injecting-current-git-commit-id-into-java-webapp1Injecting current git commit id into Java webapptialaramex2009-06-19T22:42:58Z2009-07-17T20:52:30Z
<p>We have a git repository which contains source for a few related Java WARs and JARs. It would be nice if the Java code could somehow:</p>
<pre><code>System.err.println("I was built from git commit " + commitID);
</code></pre>
<p>(Obviously real code might be putting this into an HTTP header, logging it on startup, or whatever, that's not important right now)</p>
<p>We are using Ant to build (at least for production builds, it seems some programmers do their testing from inside Eclipse which I know even less about) binaries.</p>
<p>Is there a canonical way to get the commit id for the current git checkout into our Java at build time? If not, can people using Ant to build suggest how they'd do it and we'll see if a canonical solution emerges? I'm sure I can invent something myself entirely from whole cloth, but this seems like a re-usable building block, so I'd rather not.</p>
http://stackoverflow.com/questions/1138990/git-equivalent-of-svn-status-u/1139066#11390665Answer by tialaramex for git equivalent of svn status -utialaramex2009-07-16T17:26:53Z2009-07-16T17:26:53Z<p>I can't think of a way to do it without actually fetching the updates (maybe someone else will). Assuming you are on the default branch "master" and the upstream from which these hypothetical updates will come is the default remote "origin", try....</p>
<pre><code>git fetch
git log --name-only ..origin/master
</code></pre>
<p>Note the double dots .. not a single dot or an elipsis.</p>
<p>This will give you a list of log entries for changes that are only upstream, with the filenames affected, you can alter the parameters to git log to get more or less information.</p>
<p>NB in git "fetching" these updates isn't the same as applying them to your local branch. You no doubt already know how to do that with git pull.</p>
http://stackoverflow.com/questions/1137737/web-page-memory-usage-in-firefox/1137930#11379300Answer by tialaramex for web page memory usage in firefoxtialaramex2009-07-16T14:17:40Z2009-07-16T14:17:40Z<p>There's a problem of definition in this question, which is common to many questions about "how much memory".</p>
<p>Suppose I have only your page open. Arguably then, all the memory consumed by the browser is for your page, since if I wasn't looking at that I could close the browser and free up all the memory it uses.</p>
<p>On the other hand, consider if I have a dozen similar pages (e.g. pages from the same part of the same site but just with slightly different content) open in tabs. In this case there's a lot of data which the browser could share (and all the popular ones do) between the pages - such as image files, external javascript and CSS, thus reducing the per-page memory usage.</p>
<p>So any certain answer will be predicated on a lot of assumptions.</p>
http://stackoverflow.com/questions/1134840/in-php-how-do-logical-operators-work-with-non-booleans/1134860#11348603Answer by tialaramex for In php, how do logical operators work _with non-booleans_?tialaramex2009-07-16T00:32:17Z2009-07-16T00:32:17Z<p>In PHP the result of a boolean comparison is always a boolean, the operands are coerced to boolean.</p>
<p><a href="http://us3.php.net/manual/en/language.types.boolean.php" rel="nofollow">http://us3.php.net/manual/en/language.types.boolean.php</a></p>
<p>explains which values, when they are coerced, will becomes true or false.</p>
http://stackoverflow.com/questions/1134657/have-you-ever-written-code-that-uses-the-procfs/1134843#11348431Answer by tialaramex for Have you ever written code that uses the procfs?tialaramex2009-07-16T00:29:26Z2009-07-16T00:29:26Z<p><a href="http://github.com/tialaramex/leakdice/tree/master" rel="nofollow">http://github.com/tialaramex/leakdice/tree/master</a></p>
<p>Uses proc to figure out the memory address layout of a process, and dump random pages from its heap (for reasons which are explained in its documentation).</p>
http://stackoverflow.com/questions/1089966/utf8-filenames-in-php-and-different-unicode-encodings/1126910#11269100Answer by tialaramex for UTF8 Filenames in PHP and Different Unicode Encodingstialaramex2009-07-14T17:41:44Z2009-07-14T17:41:44Z<p>Firstly: You should try to avoid imposing semantics on the names of files. I can't really tell why PHP is generating filenames in your scenario, so I can't suggest how you should apply this rule.</p>
<p>The different (two byte and three byte) representations of é are UTF-8 encodings of the composed and decomposed variations of this character in Unicode. In Unicode these are distinct ways to represent the same visual character. Unicode has the concept of "canonicalisation" in which all representations of the same character are converted to a single representation, sort of like squashing two strings to lowercase to perform a caseless comparison.</p>
<p>Linux does not perform canonicalisation or any other processing automatically for file names, so a file may be named with precomposed (like the two byte sequence) or decomposed (like the three byte sequence) characters or any mix of the two, it's up to whoever named the file. If you are creating the files, you could set a policy (e.g. always use precomposed characters) and write some code to enforce it. Otherwise, you can't rely on any particular rule here.</p>
http://stackoverflow.com/questions/1092182/how-to-include-variable-in-sparql-query-using-php/1097087#10970871Answer by tialaramex for How to include variable in SPARQL query using PHPtialaramex2009-07-08T09:38:57Z2009-07-08T09:38:57Z<p>Both the query in the question and laalto's answer aren't valid SPARQL, but laalto is getting closer.</p>
<p>It seems like Ismet wants to replace the ?name variable with a fixed value. If so, the ?name variable must be removed from the SELECT and the query body, or it shouldn't parse and certainly won't return the desired results. The PHP used also has the wrong escaping for a T_VARIABLE, the PREFIX was missing a colon required by SPARQL syntax rules.</p>
<p>Try:</p>
<pre><code> $querystring = "
PREFIX try: <http://www.semanticweb.org/ontologies/2009/5/test.owl#>
SELECT ?age
WHERE {
?url try:has-name \"${abc1}\" .
?url try:has-age ?age
}";
</code></pre>
<p>This should at least emit a syntactically correct SPARQL query which contains your variable.</p>
http://stackoverflow.com/questions/1061171/sha-1-hashes-mixed-with-strings/1065141#10651410Answer by tialaramex for SHA-1 Hashes Mixed with Stringstialaramex2009-06-30T18:12:24Z2009-06-30T18:12:24Z<p>OK, now that you've clarified that these are raw bytes</p>
<p>No, you cannot read this into Java as a string, you will need to read it as raw bytes.</p>
http://stackoverflow.com/questions/1064947/customizing-default-values-for-http-request-headers-in-internet-explorer/1065055#10650550Answer by tialaramex for customizing default values for HTTP request headers in Internet Explorertialaramex2009-06-30T17:52:37Z2009-06-30T17:52:37Z<p>A google search suggests you don't want to send compressed data to IE6 because <a href="http://sebduggan.com/posts/ie6-gzip-bug-solved-using-isapi-rewrite" rel="nofollow">it can cause corruption and other mysterious problems.</a> (no doubt you can do your own search and find dozens more like this)</p>
<p>Microsoft seem to have "fixed" this problem more than once (e.g. it's listed as fixed in IE6 SP1, and again in IE6 SP2_ yet users continued to report the problem in IE6 SP2, which suggests they have no idea what was actually wrong and most likely just ripped out all the related code and replaced it wholesale in IE7.</p>
<p>So if the web app must work in IE6 (I pity you) then you will probably want to pay the price of holding uncompressed versions of all files. Alternatively you could add a filter to your web app that uncompresses gzip'd files on the fly for IE6 users. This would make IE6 users more CPU hungry and slower to service, but retain the saving of disk space.</p>
http://stackoverflow.com/questions/1060630/why-does-this-prolog-predicate-works/1060882#10608822Answer by tialaramex for Why does this Prolog predicate works?tialaramex2009-06-29T22:23:52Z2009-06-29T22:23:52Z<p>Prolog uses a technique called "backtracking".</p>
<p>Take a look at the first step, your step 1.</p>
<p>Prolog has two rules it can use here, if it uses the rule you chose in your explanation, it will always fail. But once it has failed, Prolog will backtrack and try the alternative rule:</p>
<p>equals([1,2,3],[1,2,1,3]) :- contains([1,2,3],[1,2,1,3]), contains([1,2,1,3],[1,2,3])</p>
<p>By repeatedly backtracking after finding false answers, eventually Prolog finds a solution which is true, and thus it knows the answer is true.</p>
<p>If if tried every possible way of applying the rules, without finding a true answer, the answer must be false.</p>
<p>This is a very fundamental part of Prolog. I am surprised you got this far without understanding it.</p>
http://stackoverflow.com/questions/1049355/browser-fails-to-recognise-content-type-header-correctly/1060701#10607010Answer by tialaramex for Browser fails to recognise Content Type header correctlytialaramex2009-06-29T21:34:35Z2009-06-29T21:34:35Z<p>In our family of RDF storage engines we attack this problem by doing content negotiation.</p>
<p>That is, we check the Accept line in the HTTP request headers, and adjust our behaviour accordingly. If the Accept line mentions any RDF flavours, or the SPARQL results MIME type explicitly, then we send back the appropriate Content-type and associated response. This serves dedicated SPARQL clients, hand-rolled code and various RDF "browser" tools very well in our experience.</p>
<p>But for a typical web browser the Accept line just lists HTML and a few image formats, and our HTTP daemon sets the Content-type to text/plain (or for a blank SPARQL query, text/html, with the response body being a web page with a form for writing manual queries from a web browser for testing)</p>
<p>Finally if the Accept header is missing altogether we know it's a very naive piece of software, most likely someone's Perl script or something, and we have a special case for that to make people's lives easier when developing against the storage engine.</p>
http://stackoverflow.com/questions/1059232/what-is-the-maximum-java-heap-space-for-suse-linux/1060579#10605790Answer by tialaramex for What is the Maximum Java Heap Space for SuSE Linuxtialaramex2009-06-29T21:11:38Z2009-06-29T21:11:38Z<p>Firstly, you are crazy to be running a 32-bit OS when you have this much address space pressure. Migrate to a 64-bit JVM on 64-bit Linux. How much time have you wasted already trying to diagnose this problem which you must have suspected from the outset would go away with the larger address space of a 64-bit system ?</p>
<p>Secondly, it's well known that out of all the Linux vendors Red Hat has the most kernel engineers on staff and makes some serious tweaks for the kernels in their RHEL products. These often include patches for large workloads like yours (well, it's a large workload for a 32-bit system, it's nothing special on 64-bit). So there's some chance the reason ultimately is that RHEL has other customers doing the same crazy stuff as you and you're benefiting from work they did to support those customers.</p>
<p>Finally though, since I suspect you're going to insist on trying to find a way to do this on 32-bit SuSE I will point out that Linux offers a variety of address space trade-offs on 32-bit x86, and it's possible (but not certain) that your SuSE systems just have a different trade-off selected. If you can bring up the configuration of the running kernels (often in /boot/config....) then you can compare settings like HIGHMEM.</p>
<p>The conventional option until a few years ago was 2:2 split, that is userspace is limited to 2GiB of address space, an easy solution to program and it has decent efficiency but in this scenario obviously you can't have your requested heap since it would leave no space for the program text, stack etc. More recently the trend has been for 3:1 (similar to the Windows /3GB switch) which expands userspace address space at the cost of cramming the OS kernel itself into less space which potentially causes its own problems. This might work, but it would be very cramped so I also wouldn't be surprised if it didn't work for your jobs. Finally newer Linux kernels also offer an option where you get 4GiB 32-bit userspace, which might be enough to make your jobs run reliably, at a significant performance cost since then obviously userspace and kernel addresses can't co-exist.</p>
<p>To try this you'd need a new kernel. You may be able to just install one provided by SuSE (see if they offer others to choose from, e.g. a "PAE" option) or you may have to compile your own, in which case it probably invalidates your support contract.</p>
<p>But really, you should just go with option 1, switch to a 64-bit JVM and put your feet up.</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/1021266#10212660Answer by tialaramex for How do you detect/avoid Memory leaks in your (Unmanaged) code?tialaramex2009-06-20T08:59:46Z2009-06-20T08:59:46Z<p>At the top of this list (when I read it) was valgrind. Valgrind is excellent if you are able to reproduce the leak on a test system. I've used it with great success.</p>
<p>What if you've just noticed that the production system is leaking right now and you have no idea how to reproduce it in test? Some evidence of what's wrong is captured in the state of that production system, and it might be enough to provide an insight on where the problem is so you can reproduce it.</p>
<p>That's where Monte Carlo sampling comes into the picture. Read Raymond Chen's blog article,
“The poor man's way of identifying memory leaks” and then check out my implementation (assumes Linux, tested only on x86 and x86-64)</p>
<p><a href="http://github.com/tialaramex/leakdice/tree/master" rel="nofollow">http://github.com/tialaramex/leakdice/tree/master</a></p>
http://stackoverflow.com/questions/460140/is-there-a-decent-way-to-inhibit-screensavers-in-linux/460954#4609542Answer by tialaramex for Is there a decent way to inhibit screensavers in linux?tialaramex2009-01-20T11:44:52Z2009-01-20T11:44:52Z<p>No, but yes...</p>
<p>There's no nice clean way to do this. In my opinion there should be a mechanism administrated by the X server, which both screensavers and interested applications can voluntarily use to negotiate suppression of any screensaver during the runtime of one or more programs. But no such mechanism yet exists to my knowledge. GNOME and KDE look to be implementing a DBUS approach to this problem, but in my opinion even if it becomes widespread (it isn't yet widespread enough to rely on it in 3rd party code) it's not the right approach.</p>
<p>However, xdg-screensaver is a FreeDesktop standardised shell script which you can run as a sub-process to control the screensaver. It controls most popular screensavers, and the OS vendor would be responsible for updating it/ maintaining it to work with newer screensavers or better ways of doing this in the future. Unlike many other kludges it will automatically re-enable the screensaver if your application crashes or exits via some route that forgets to call the re-enable code. See the manual page for details in how to use it.</p>
<p>As a GTK+ user probably the trickiest aspects of this for you would be creating the sub-process to run the shell script (if you haven't done this before you will want to find a tutorial about using fork + exec) and getting the XWindow ID of your application's main window to give to xdg-screensaver.</p>
<p>You ask that the code should be "fast". This makes me wonder if you're expecting to run it every frame - don't. The xdg-screensaver solution allows you to disable or renable the screensaver explicitly, rather than trying to suppress it once per frame or anything like that.</p>
http://stackoverflow.com/questions/222782/git-vs-perforce-two-vcs-will-enter-one-will-leave/225716#2257164Answer by tialaramex for GIT vs. Perforce- Two VCS will enter... one will leave.tialaramex2008-10-22T13:28:50Z2008-10-22T13:28:50Z<p>I think in terms of keeping people happy during/ post switch over, one of things to get across early is just how private a local branch can be in Git, and how much freedom that gives them to make mistakes. Get them all to clone themselves a few private branches from the current code and then go wild in there, experimenting. Rename some files, check stuff in, merge things from another branch, rewind history, rebase one set of changes on top of another, and so on. Show how even their worst accidents locally have no consequences for their colleagues. What you want is a situation where developers feel safe, so they can learn faster (since Git has a steep learning curve that's important) and then eventually so that they're more effective as developers.</p>
<p>When you're trying to learn a centralised tool, obviously you will be worried about making some goof that causes problems for other users of the repository. The fear of embarrassment alone is enough to discourage people from experimenting. Even having a special "training" repository doesn't help, because inevitably developers will encounter a situation in the production system that they never saw during training, and so they're back to worrying.</p>
<p>But Git's distributed nature does away with this. You can try any experiment in a local branch, and if it goes horribly wrong, just throw the branch away and nobody needs to know. Since you can create a local branch of anything, you can replicate a problem you're seeing with the real live repository, yet have no danger of "breaking the build" or otherwise making a fool of yourself. You can check absolutely everything in, as soon as you've done it, no trying to batch work up into neat little packages. So not just the two major code changes you spent four hours on today, but also that build fix that you remembered half way through, and the spelling mistake in the documentation you spotted while explaining something to a colleague, and so on. And if the major changes are abandoned because the project is changing direction, you can cherry pick the build fix and the spelling mistake out of your branch and keep those with no hassle.</p>
http://stackoverflow.com/questions/157163/how-to-do-something-with-bash-when-a-text-line-appear-to-a-file/171925#1719250Answer by tialaramex for How to do something with bash when a text line appear to a filetialaramex2008-10-05T12:51:33Z2008-10-05T12:51:33Z<p>Also you might look at inotail, a replacement for tail -f which uses the inotify framework to wake up only when the file you're interested in has changed. The usual tail -f just sleeps for short periods of time between polling, which is an effective but not very efficient solution.</p>
http://stackoverflow.com/questions/86548/how-do-i-protect-my-file-data-from-disk-corruption/86748#867480Answer by tialaramex for How do I protect my file data from disk corruption?tialaramex2008-09-17T19:34:13Z2008-09-17T19:34:13Z<p>That article significantly exaggerates the problem by misunderstanding the source. It assumes that data loss events are independent, ie that if I take a thousand disks, and get five hundred errors, that's likely to be one each on five hundred of the disks. But actually, as anyone who has had disk trouble knows, it's probably five hundred errors on one disk (still a tiny fraction of the disk's total capacity), and the other nine hundred and ninety-nine were fine. Thus, in practice it's not that there's a 56% chance that you can't read all of your disk, rather, it's probably more like 1% or less, but most of the people in that 1% will find they've lost dozens or hundreds of sectors even though the disk as a whole hasn't failed.</p>
<p>Sure enough, practical experiments reflect this understanding, not the one offered in the article.</p>
<p>Basically this is an example of "Chinese whispers". The article linked here refers to another article, which in turn refers indirectly to a published paper. The paper says that of course these events are <em>not independent</em> but that vital fact disappears on the transition to easily digested blog format.</p>
http://stackoverflow.com/questions/86090/openid-providers-what-stops-malicious-providers/86518#865182Answer by tialaramex for OpenID providers - what stops malicious providers?tialaramex2008-09-17T19:10:46Z2008-09-17T19:10:46Z<p>Notice that unlike conventional "per site" logins, OpenID gives you an identity that potentially transcends individual sites. Better yet, this identity is even a URI so its perfect for using with RDF to exchange or query arbitrary metadata about the identity.</p>
<p>You can do a few things with an OpenID that you can't do with a conventional username from a new user.</p>
<p>Firstly you can do some simple whitelist operations. If *.bigcorp.example are OpenIDs from Big Corp employees and you know Big Corp aren't spammers, then you can whitelist those OpenIDs. This ought to work well for sites that are semi-closed, maybe it's a social site for current and past employees.</p>
<p>Better though, you can make inferences from the other places that specific OpenID has been used. Suppose you have a map of OpenIDs to reputation values from Stackoverflow.com. When someone shows up at your web forum with an OpenID, you can see if they have decent reputation at Stackoverflow and skip the CAPTCHA or probationary period for those users.</p>
http://stackoverflow.com/questions/31572/broadcast-like-udp-with-the-reliability-of-tcp/81890#818901Answer by tialaramex for Broadcast like UDP with the reliability of TCPtialaramex2008-09-17T10:38:59Z2008-09-17T10:38:59Z<p>Broadcast is not what you want. Since there could and probably will be devices attached to this network which don't care about your message, you should use Multicast. Unlike broadcast messages, which must be sent to and processed by every client on the network, Multicast messages are delivered only to interested clients (ie those which have some intention to receive this particular type of message and act on it).</p>
<p>If you later scale this system up so that it needs to be routed over a large network, multicast can scale to that, whereas broadcast won't, so you gain a scalability benefit which you might appreciate later. Meanwhile you eliminate unnecessary overhead in switches and other devices that don't need to see these "something changed" messages.</p>
http://stackoverflow.com/questions/74852/how-good-are-you-at-a-given-language/75394#753941Answer by tialaramex for How good are you at a given language?tialaramex2008-09-16T18:22:50Z2008-09-16T18:33:27Z<p>As with human languages, there are definitely distinct levels of proficiency, and between and beyond them it's more about your other skills and abilities than language knowledge. I'd identify in particular:</p>
<ul>
<li><p>No specific knowledge of this language but knowledge of the language group. For example a C programmer can get some idea what's going on in the source code of a Java program, because they're both curly brace languages with some similar ideas about what symbols represent and so on.</p></li>
<li><p>Novice: Can write simple programs, often after much trial and error, can also read simple programs. Does not know many control structures, data types, etc. of the language but only a subset they have learned. Finds it difficult to learn about other features of the language from reading other people's code. Tends to use the idioms of other programming languages they know better, for example they might make heavy use of recursion in C if they're really a LISP programmer. A C programmer learning C++ might create one class called "Program" and put everything inside that class.</p></li>
<li><p>Able: Can express any program in the language, perhaps with some difficulty and use of reference book. Knows most features of the language to some degree, and can pick up new features by seeing them used. Uses a few idioms from the language they're learning, but doesn't have much of a distinctive style of their own. You can assign an "Able" programmer to do useful work in the language, so long as you don't mind it taking longer and not being of very good quality.</p></li>
<li><p>Fluent: Finds it easy to express programs or program fragments in this language. Spots errors in other people's code in this language. Knows all but the most obscure features of the language, though they may not have an entirely accurate knowledge of how to use them correctly. Has a consistent style which combines the idiom of the language with their own personal preferences (and any house rules). Can offer a useful opinion about whether the language is suitable for a particular problem. You can assign "Fluent" programmers to do useful work in the language and should expect code written quickly and efficiently which does the intended job to a good standard.</p></li>
</ul>
<p>A good programmer would necessarily be fluent in at least one language. But they wouldn't necessarily even know any others to a basic standard. However from a career point of view it makes sense to learn several quite different languages, just to get a feel for how they vary - and I think any good degree course ought to offer you at least the opportunity to do that, before you (perhaps) go into industry.</p>
<p>Beyond those levels I might identify an "expert" as being someone who is not only fluent in the language, but has actively studied it as an end to itself, rather than as a means to become better at programming. Such people aren't necessarily better at producing programs written in the language, but could be useful if you think you need a custom language which is similar, or need to create tools (such as a compiler) for the language.</p>
http://stackoverflow.com/questions/72254/how-to-determine-visible-region-of-a-windows-in-x-windows-linux/74288#742881Answer by tialaramex for How to determine visible region of a Windows in X Windows / Linux?tialaramex2008-09-16T16:34:44Z2008-09-16T16:44:13Z<p>If its really an X Window you get, and not a widget from some specific toolkit (like GTK+ maybe?) then you can use the XGetWindowAttributes function call.</p>
<p>This fills out a provided XWindowAttributes structure, which includes integers for the x and y position of the window as well as its width and height and other useful facts.</p>
<p>But in reality I think you are probably using the Mozilla plugin API inherited from Netscape, aka NSAPI, and in that case what you get is a call to your function NPP_SetWindow() at least once (and again if necessary because something changed) with a structure which contains the information you're looking for. Try looking at <a href="http://www.mozilla.org/projects/plugins/" rel="nofollow">http://www.mozilla.org/projects/plugins/</a> for more information about the APIs you should use.</p>
http://stackoverflow.com/questions/73958/change-ip-address-via-shellscript-on-slackware/74058#740580Answer by tialaramex for Change IP address via shellscript on Slackwaretialaramex2008-09-16T16:11:25Z2008-09-16T16:11:25Z<p>I don't know Slackware very well, I last used it over ten years ago. However, any mainstream Linux distribution should have either the 'ifconfig' program, or the 'ip' program or both. You will need to have root privilges, so either become root (e.g with su) or use the 'sudo' program if you know how. Let's do it with 'ip' first.</p>
<pre><code>ip addr add 10.1.2.3 dev eth0
</code></pre>
<p>sets the device eth0 (usually the primary wired network adaptor) to have IP address 10.1.2.3. You can remove the address from this adaptor again when you're done with it...</p>
<pre><code>ip addr del 10.1.2.3 dev eth0
</code></pre>
<p>ifconfig works a bit differently,</p>
<pre><code>ifconfig eth0 10.1.2.3 netmask 255.255.255.0
</code></pre>
<p>again sets up device eth0, with IP address 10.1.2.3</p>
<p>Depending on what you want these addresses for, you may also need to know how to set up a manual route, so that your IP packets actually get delivered wherever they're going.</p>
http://stackoverflow.com/questions/67894/why-do-we-need-extern-c-include-foo-h-in-c/67936#679364Answer by tialaramex for Why do we need extern "C"{ #include <foo.h> } in C++?tialaramex2008-09-15T23:28:54Z2008-09-15T23:28:54Z<p>C and C++ have different rules about names of symbols. Symbols are how the linker knows that the call to function "openBankAccount" in one object file produced by the compiler is a reference to that function you called "openBankAccount" in another object file produced from a different source file by the same (or compatible) compiler. This allows you to make a program out of more than one source file, which is a relief when working on a large project.</p>
<p>In C the rule is very simple, symbols are all in a single name space anyway. So the integer "socks" is stored as "socks" and the function count_socks is stored as "count_socks".</p>
<p>Linkers were built for C and other languages like C with this simple symbol naming rule. So symbols in the linker are just simple strings.</p>
<p>But in C++ the language lets you have namespaces, and polymorphism and various other things that conflict with such a simple rule. All six of your polymorphic functions called "add" need to have different symbols, or the wrong one will be used by other object files. This is done by "mangling" (that's a technical term) the names of symbols.</p>
<p>When linking C++ code to C libraries or code, you need extern "C" anything written in C, such as header files for the C libraries, to tell your C++ compiler that these symbol names aren't to be mangled, while the rest of your C++ code of course must be mangled or it won't work.</p>
http://stackoverflow.com/questions/67790/is-there-any-way-to-pass-a-structure-type-to-a-c-function/67842#678425Answer by tialaramex for Is there any way to pass a structure type to a c functiontialaramex2008-09-15T23:09:28Z2008-09-15T23:19:46Z<p>If you ensure that the field is placed in the same place in each such structure, you can simply cast a pointer to get at the field. This technique is used in lots of low level system libraries e.g. BSD sockets.</p>
<pre><code>struct person {
int index;
};
struct clown {
int index;
char *hat;
};
/* we're not going to define a firetruck here */
struct firetruck;
struct fireman {
int index;
struct firetruck *truck;
};
int getindexof(struct person *who)
{
return who->index;
}
int main(int argc, char *argv[])
{
struct fireman sam;
/* somehow sam gets initialised */
sam.index = 5;
int index = getindexof((struct person *) &sam);
printf("Sam's index is %d\n", index);
return 0;
}
</code></pre>
<p>You lose type safety by doing this, but it's a valuable technique.</p>
<p>[ I have now actually tested the above code and fixed the various minor errors. It's much easier when you have a compiler. ]</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/67595#675959Answer by tialaramex for Decode email address from Gravatar hash?tialaramex2008-09-15T22:24:15Z2008-09-15T22:53:40Z<p>Michael Stum is way off here, but he has a big green check mark that means his answer will forever appear as the "correct" one despite the mistakes...</p>
<p>Let's handle the second part of his answer first, which is a little off-topic. He's just completely wrong here. Given a file from an "open source site" and the MD5sum of that file you can't make another different file with the same hash. There may some day be a breakthrough that makes this possible, but that day is not here and may be years or decades away.</p>
<p>Why does Michael think this is possible? A simple mistake. He's read that it's possible to create two different files with the same MD5sum by forcing a certain type of collision, this result was reported in 2004 and has been improved since. But, this is not the same problem. In cryptography the type of attack Michael <em>claimed</em> was possible is called a pre-image attack, and for MD5 there is as yet no practical pre-image attack, where as what was actually found is merely a collision, the easiest type of attack to find against a hash, and no doubt a reason not to choose MD5 for new applications, but not, and this is worth emphasising, NOT a reason not to trust MD5sums provided for software downloads, nor a reason (on its own) to avoid MD5 in password hashes.</p>
<p>OK, now the more relevant earlier part of Michael's answer. Here's the trouble: Spammers and similar Attackers don't care that one person in a billion has an email address that looks like an exercise in obfuscated Perl - they want the bulk of addresses. Given a list of 5 million Gravatar hashes, at least 4 million are hashes of fairly ordinary looking email addresses like "firstname.lastname@example.com". These are 128-bit hashes, so any arbitrary string has a one in 2^128 chance of hashing to the same value, but that's a very big number and there simply aren't 2^128 plausible stereotypical email addresses. So long as we only want a reasonable factor like say 50% chance of reversing, we can brute force this problem. Try the ten million most likely firstname / lastname combinations, with up to a million domain names taken from registrar's lists, and you have 10 billion values to try. For a one shot attack you just do it brute-force, 10 billion MD5 calculations is childs play. But if you were a spammer and had access to a crawler looking for fresh Gravatar URIs every day, you'd build a rainbow table so that you can spread the compute time over a potentially unlimited supply of hashes.</p>
<p>Now, is there a way around this? Well, yes and no. There's no way to fix this without changing something. But the minimal change is fairly painless. The way to defeat rainbow tables is to add salt and waste CPU cycles, just as with passwords. You can add salt by asking everyone to pick a favourite word, and type that in along with their email address when generating a Gravatar or an account that needs a Gravatar. It doesn't matter what word they pick, so long as its always the same they get the same Gravatar. Now an attacker must guess not only a plausible email address, but also a random word. That makes their chances of success orders of magnitude smaller. Meanwhile you also switch from MD5 (designed to be fast) to a password hash (designed to be slow). When calculating the hash you now work a little harder, but the attacker must work proportionally harder too. If your CPU takes 0.5 seconds to generate your gravatar when creating an account, the attacker must waste 0.5 seconds per guess, and that will soon exhaust him.</p>
http://stackoverflow.com/questions/1449114/how-to-decode-a-string-that-has-been-utf-8-encoded-twice-to-simple-utf-8/1554570#1554570Comment by tialaramex on How to decode a string that has been UTF-8 encoded twice to simple UTF-8?tialaramex2009-10-19T17:05:19Z2009-10-19T17:05:19ZOK, so in this case you definitely ought to fix it in the database, for all the reasons I gave in the second paragraph.
It is annoyingly easy to misconfigure PHP + MySQL and do this, I've done it myself, but fortunately I caught it pretty quickly. You can do the same decode / encode run around inside MySQL, but you need to be careful (create a backup first).http://stackoverflow.com/questions/1449114/how-to-decode-a-string-that-has-been-utf-8-encoded-twice-to-simple-utf-8/1554570#1554570Comment by tialaramex on How to decode a string that has been UTF-8 encoded twice to simple UTF-8?tialaramex2009-10-13T17:50:15Z2009-10-13T17:50:15ZYou never mentioned anything about PHP before. So is the data actually corrupt in the MySQL DB?http://stackoverflow.com/questions/35842/process-id-in-java/35851#35851Comment by tialaramex on Process ID in Javatialaramex2009-08-11T14:18:42Z2009-08-11T14:18:42Zah, that's easy. Suppose I have several Java processes which are identical. I receive messages from them. I would like to be able to distinguish them reliably. The PID would be fine, but so would any unique identifier. Now, I could program each process to create a GUID at startup and stash it somewhere but that's a bunch of unnecessary work, isn't it?http://stackoverflow.com/questions/1192665/adding-support-for-i18n-in-php-with-gettext/1193337#1193337Comment by tialaramex on Adding support for i18n in PHP with gettext?tialaramex2009-07-28T11:12:11Z2009-07-28T11:12:11ZWhat you've described isn't a reason against using gettext(). Many programs, including the code in the answer given before yours, use parameters with gettext to sidestep most syntax problems.
What you've found is a reason to use gettext only to translate whole grammatical units rather than trying to be "clever" and translate sub-strings. But gettext recommends translating whole sentences and other units right in its documentation.http://stackoverflow.com/questions/1184176/how-can-i-safely-encode-a-string-in-java-to-use-as-a-filename/1184185#1184185Comment by tialaramex on How can I safely encode a string in Java to use as a filename ?tialaramex2009-07-26T12:36:30Z2009-07-26T12:36:30ZA problem no-one has really addressed is that there are limits on filename length and on total length of a file path, plus arbitrary limits on file names on some platforms, and even a limit on how many files can be in a particular directory. And this is a Java question, so we can't be sure the software will only run on (fill in the name of your favourite OS here). Thus I think any adequate solution would want to consider how to retry or what else to do if the name tried is rejected by the OS.http://stackoverflow.com/questions/1184176/how-can-i-safely-encode-a-string-in-java-to-use-as-a-filename/1184185#1184185Comment by tialaramex on How can I safely encode a string in Java to use as a filename ?tialaramex2009-07-26T12:33:51Z2009-07-26T12:33:51ZA collision would have to be deliberate, the original question doesn't talk about these strings being chosen by an attacker.http://stackoverflow.com/questions/1184413/hex-to-ascii-java/1184417#1184417Comment by tialaramex on Hex to Ascii? Javatialaramex2009-07-26T12:23:30Z2009-07-26T12:23:30ZThe question says ASCII, so the questioner should probably write ASCII in as the encoding.http://stackoverflow.com/questions/1176497/limit-execution-time-of-an-function-or-command-phpComment by tialaramex on Limit execution time of an function or command PHPtialaramex2009-07-24T09:02:12Z2009-07-24T09:02:12ZWhat do you want to happen if the timer expires while function1 is still running?http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploitsComment by tialaramex on Surprising software vulnerabilities or exploits?tialaramex2009-07-24T08:59:12Z2009-07-24T08:59:12Zadding 'subjective' tag since there's no objective way to answer which is "most" strange or surprising.http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1148893#1148893Comment by tialaramex on Surprising software vulnerabilities or exploits?tialaramex2009-07-24T08:55:40Z2009-07-24T08:55:40ZAmong other things: Reverse optimisation. Take those hardware designers who've spent years figuring out how to get a function with least transistors, least power, most quickly, and put them in a new frame of mind where consistency is everything. If the device consistently takes 100ms to do a transaction and eats battery at a constant 150mW when running - then the side channel attack fails, and the customer may be willing to eat the increased hardware cost and reduced battery life for that benefit.http://stackoverflow.com/questions/1163528/find-most-similar-stringComment by tialaramex on Find most similar stringtialaramex2009-07-22T07:07:09Z2009-07-22T07:07:09ZNeeds a definition of the function "howSimilarIs(string, string)" for anyone to answer it. If the definition is complicated, then implementing that is probably the bulk of the work.http://stackoverflow.com/questions/1158082/if-ascii-operators-are-definable-why-not-unicode-symbolsComment by tialaramex on If Ascii operators are definable, why not Unicode Symbols?tialaramex2009-07-21T13:16:07Z2009-07-21T13:16:07ZI've added the f# tag, but to do so I had to get rid of the math tag. I think that's a fair trade (the core problem here is something f# people might now about, rather than something for mathematicians to ponder)http://stackoverflow.com/questions/554834/what-is-was-so-terrific-about-beos/554923#554923Comment by tialaramex on What is/was so terrific about BeOStialaramex2009-07-21T13:01:30Z2009-07-21T13:01:30ZIt's a little worse than you think. The BeOS Window class inherited from Thread. So you absolutely without question would get a separate OS thread for every window in your application. If that didn't suit your application's design (it doesn't for most large GUI applications) then you'd need to re-design the application to get it to work well in BeOS. This is all the crazier because there was a relatively low system-wide thread limit.
It's a radical thought experiment (like "What if all the Strings in my program were versioned filesystem objects?") that somehow got released in a commercial OS.http://stackoverflow.com/questions/554834/what-is-was-so-terrific-about-beos/554896#554896Comment by tialaramex on What is/was so terrific about BeOStialaramex2009-07-21T12:52:08Z2009-07-21T12:52:08Z1. BeOS didn't have a microkernel. So it wasn't a successful microkernel implementation.
2. Porting Mozilla to BeOS was a tremendous pain, in part because BeOS had fairly poor POSIX compliance.
The stuff about multimedia is a retro-fit. You can easily find early Be Inc. material crowing about how it'll be a great web server, or great for hardware tinkering, or any number of other things. It was a solution looking for a problem.http://stackoverflow.com/questions/1158839/engineyard-sha1-contest-approaches/1158859#1158859Comment by tialaramex on EngineYard SHA1 Contest Approachestialaramex2009-07-21T12:25:52Z2009-07-21T12:25:52ZIf SHA1 was an ideal cryptographic hash then brute force would definitely be the best way. Since we know that SHA1 is less than ideal it opens the possibility that one of the flaws will make some other approach practical. But probably not, and almost certainly not in time for this contest.