User Akrikos - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:33:17Z http://stackoverflow.com/feeds/user/54641 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1685196/does-php-copy-variables-when-retrieving-from-shared-memory/1685298#1685298 0 Answer by Akrikos for Does PHP copy variables when retrieving from shared memory? Akrikos 2009-11-06T03:49:05Z 2009-11-06T04:21:40Z <p>I'm no expert on this, but would it be possible to write a quick test for this something like the following?</p> <pre><code>$key = 'blarg'; //put something small into shared memory $identifier = shm_attach($key, 1024, 0777); shm_put_var($identifier, $key, 'shave and a hair cut'); $firstVar = shm_get_var($identifier, $key); $firstVar .= 'Test String of Doom'; $secondVar = shm_get_var($identifier, $key); if ($firstVar == $secondVar) { echo 'shm_get_var passes by reference'; } else { echo 'shm_get_var passes by value'; } </code></pre> http://stackoverflow.com/questions/1675736/jquery-get-next-element-after-first-match/1676121#1676121 1 Answer by Akrikos for jQuery get next element after first match Akrikos 2009-11-04T19:41:50Z 2009-11-04T19:41:50Z <p>The main problem that I see with your code is that you're looking in the global space for the two elements side by side instead of finding the currently selected element and then traversing for siblings.</p> <p>If you're creating a slideshow as a learning exercise or personal project, I'd recommend looking into the <a href="http://docs.jquery.com/Traversing" rel="nofollow">jQuery traversing documentation</a> as has been hinted at in other purely code answers. The way you wrote your code shows that you are probably still trying to understand how jQuery fits together and it might be a good idea to spend some time with the excellent documentation on jQuery's site, work through a few tutorials and/or get a jQuery book. Hint: chaining is awesome</p> <p>If you're creating a slideshow for a professional project, I'd recommend finding a plugin created by someone else. It'll take less time and likely be of higher quality since it will have been created by someone who has a lot of experience with jQuery/JS (I compared my implementation of a slideshow with a professional's implementation: the professional's was head and shoulders above mine).</p> http://stackoverflow.com/questions/1391950/how-to-use-jquery-non-conflict-properly/1611304#1611304 0 Answer by Akrikos for how to use jquery non conflict properly Akrikos 2009-10-23T03:56:24Z 2009-10-23T04:07:41Z <p>I prefer using a self executing anonymous function to give your jQuery code its own scope where you can use $ as you normally would if you didn't have to worry about compatability.</p> <p>This is going to look weird if you haven't seen it before. Basically, what I did was define a function that takes a parameter (the $) and then execute that function with jQuery as the parameter.</p> <pre><code>&lt;script&gt; jQuery.noConflict(); (function($) { $(document).ready(function() { //code here that depends on the document being fully loaded }); })(jQuery); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/569897/why-are-estimates-always-taken-for-granted/569919#569919 5 Answer by Akrikos for Why are estimates always taken for granted? Akrikos 2009-02-20T15:18:35Z 2009-02-20T15:18:35Z <p>You asked a why question...</p> <p>... to which the answer is always "people are stupid".</p> <p>This is something I struggle with every day. We don't do the same thing over &amp; over... we do something novel almost every time we sit down at the keyboard -- so estimation is <em>always</em> a guess.</p> <p>Now, there are development methodologies that try to manage this unknown (take a look at some of the agile practices), but those require management buy-in which is really hard to get.</p> http://stackoverflow.com/questions/569730/external-js-and-browser/569851#569851 0 Answer by Akrikos for External JS and browser Akrikos 2009-02-20T15:00:24Z 2009-02-20T15:00:24Z <p>I would strongly recommend developing in another browser... the aggressive caching can be <em>painful</em> with IE. After developing you can come back and test in IE.</p> <p>Also, <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> (or something like it) is something I can't do without as web developer. Another good Firefox addon is the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer Toolbar</a> (which has an easy menu option to clear FF's cache).</p> <p>If you would rather just stick with IE, I think James Socol's keeping things in other tabs would be the most sure method to avoid caching.</p> http://stackoverflow.com/questions/569764/how-do-you-debug-functions-with-postgres/569787#569787 2 Answer by Akrikos for How do you debug functions with postgres? Akrikos 2009-02-20T14:45:10Z 2009-02-20T14:45:10Z <p>Write a unit test for it. Granted this won't give you debugging capability, but you should ideally have a unit test suite (and an integration test suite) that you run against your code that proves that it works... and that lets you know when something breaks.</p> http://stackoverflow.com/questions/558996/method-overloading-in-javascript/559038#559038 1 Answer by Akrikos for "method overloading" in javascript Akrikos 2009-02-17T22:35:46Z 2009-02-17T22:49:56Z <p>In Javascript, all arguments are optional.</p> <p>You might try something like:</p> <p>Edit (better method that doesn't break for values whose 'truthiness' is false):</p> <pre><code>function bar(arg1, arg2) { if(arg1 === undefined) { set default } if(arg2 === undefined) { set default } //do stuff here } </code></pre> <p>Old method that breaks for falsey values:</p> <pre><code>function foo(arg1, arg2) { if(!arg1) { set default } if(!arg2) { set default } //do stuff here } </code></pre> <p>A great place to start with javascript are Douglas Crockford's javascript lectures: <a href="http://video.yahoo.com/search/?p=javascript" rel="nofollow">http://video.yahoo.com/search/?p=javascript</a></p> http://stackoverflow.com/questions/558502/how-a-servlet-can-get-the-absolute-path-to-a-file-outside-of-the-servlet/558865#558865 1 Answer by Akrikos for How a servlet can get the absolute path to a file outside of the servlet? Akrikos 2009-02-17T21:48:15Z 2009-02-17T21:48:15Z <p>I think <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Class.html#getResourceAsStream(java.lang.String)" rel="nofollow">ClassName.class.getResourceAsStream()</a> will work for you. The comments on that method point you at <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ClassLoader.html#getResource(java.lang.String)" rel="nofollow">ClassLoader.getResource()</a>, which tells you how to specify a file in your classpath.</p> <p>Something like this should work:</p> <pre><code>InputStream foo = ClassName.class.getResourceAsStream("file.name"); </code></pre> <p>Where file.name is at the base of your classpath somewhere. If file.name is in the com.foo.bar package, you would use "/com/foo/bar/file.name"</p> http://stackoverflow.com/questions/558502/how-a-servlet-can-get-the-absolute-path-to-a-file-outside-of-the-servlet/558765#558765 0 Answer by Akrikos for How a servlet can get the absolute path to a file outside of the servlet? Akrikos 2009-02-17T21:19:03Z 2009-02-17T21:19:03Z <p>Is it possible to put the config file within the classpath and reference it via something like springs <a href="http://static.springframework.org/spring/docs/2.0.x/api/org/springframework/core/io/ClassPathResource.html" rel="nofollow">ClassPathResource</a>?</p> <p>You should be able to use it like this:</p> <pre><code>ClassPathResource foo = new ClassPathResource("file.name"); </code></pre> <p>Where file.name exists somewhere in the classpath at the lowest level such as:<br/></p> <ul> <li>/webapps/WEB-INF/classes/</li> <li>the base of one of your jar files</li> </ul> http://stackoverflow.com/questions/557169/find-out-what-jvm-eclipse-is-running-on/557255#557255 2 Answer by Akrikos for Find out what JVM Eclipse is running on Akrikos 2009-02-17T15:08:08Z 2009-02-17T15:08:08Z <p>If you go to Help->'About Eclipse Platform' and click on the 'Configuration Details' button it will take a moment to display, but you get a dump of everything eclipse is configured for... </p> <p>I found these 2 lines to be what you're looking for:</p> <p>-vm<br/> C:\Program Files\Java\jdk1.6.0_10\bin..\jre\bin\client\jvm.dll</p> http://stackoverflow.com/questions/556911/correct-way-to-do-simple-2-column-formatting-in-html/557010#557010 2 Answer by Akrikos for "correct" way to do simple 2 column formatting in html Akrikos 2009-02-17T14:18:37Z 2009-02-17T14:23:59Z <p>Instead of getting too 'div happy', I'd rather put ids on the anchor tags and apply styles to them directly. You may need to put a tag with 'clear: both;' after the links to clear the floats... I leave figuring that out that as an exercise for the reader.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Test Page&lt;/title&gt; &lt;style type="text/css"&gt; #viewpage { float:right; margin-right:5%; } #listpages { float:left; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;a id='listpages' href="&lt;? echo $url1 ?&gt;"&gt;Back to List of Pages&lt;/a&gt; &lt;a id='viewpage' href="&lt;? echo $url2 ?&gt;"&gt;View this page&lt;/a&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>The idea behind using CSS 'correctly' in this case is to make your html describe your content in a way that makes sense and then use CSS to change how the content is displayed.</p> http://stackoverflow.com/questions/542744/change-file-encoding/542899#542899 1 Answer by Akrikos for change file encoding Akrikos 2009-02-12T19:39:22Z 2009-02-16T15:05:07Z <p>You may need to change the content type header that your web server sends the client.</p> <p>Edit: While this did work for this particular situation, using a tool to change the file encoding as suggested by other posters may be a better solution in other situations. YMMV. <hr /></p> <p>Instructions for saving as UTF-8 in Eclipse (which I realize you already have):</p> <p>You should probably change the Default Encoding in your workspace for the HTML document.</p> <p>This is for Eclipse 3.4. If you have a different version, this may be slightly different.</p> <p>Goto Window->Preferences<br/> In the Preferences window goto General->Content Types<br/> At this point, you can specify a 'Default Encoding' for files near the bottom of the preferences window. Expand 'Text' and select HTML. In the 'Default Encoding' entry, put UTF-8. Then click 'update' at the right. </p> <p>After this, all HTML files should be saved in UTF-8 format.</p> http://stackoverflow.com/questions/481035/is-there-a-simple-consistent-way-to-change-the-color-scheme-of-eclipse-editors/497227#497227 3 Answer by Akrikos for Is there a simple, consistent way to change the color scheme of eclipse editors? Akrikos 2009-01-30T21:01:26Z 2009-01-30T21:01:26Z <p>It sounds like there isn't currently a good way of doing this because of the way eclipse was designed: there's not a good, flexible, inheritable syntax highlight framework to bring consistency to everything.</p> <p>While you can export &amp; import preferences as Wijnand Warren's answer states, and that does work... kinda... actually going in and editing the preference files to make sure that you're only sharing color information is probably a huge pain in the butt, so not simple. Also, that still leaves the problem of finding <i>someone</i> who has put in the effort &amp; time to create the syntax coloring in the first place.</p> <p>Also, every time you add a new type of structured text editor (new language per year anyone?), you'll have to go back into settings &amp; edit the highlighting for that language as well.</p> <p>I have no experience developing for the eclipse platform, but if someone with more experience would be willing to point me in the right direction (documentation, explanation of how things fit together, etc.), please let me know.</p> http://stackoverflow.com/questions/481035/is-there-a-simple-consistent-way-to-change-the-color-scheme-of-eclipse-editors 4 Is there a simple, consistent way to change the color scheme of eclipse editors? Akrikos 2009-01-26T19:34:07Z 2009-01-30T21:01:26Z <p>I'm going crazy trying to get all of the editors to look similarly. It looks like there's a different color editor option for each file type/code type, which means it takes FOREVER to customize the view.</p> <p>Add to that: each code/file type color option seems to honor the default set in the generic options only if it feels like it (seems buggy).</p> <p>I'm currently using eclipse 3.4.1</p> <p>Is there a version that is less buggy or is there a more consistent way to change the text colors?</p> <p>Barring that, has anyone gotten a zenburn-like color scheme in eclipse that would be willing to share?</p> http://stackoverflow.com/questions/122160/is-there-an-easy-way-to-attach-source-in-eclipse/492844#492844 0 Answer by Akrikos for Is there an easy way to attach source in Eclipse? Akrikos 2009-01-29T18:33:08Z 2009-01-29T18:33:08Z <p>Another thought for making that easier when using an automated build:</p> <p>When you create a jar of one of your projects, also create a source files jar:<br/> project.jar<br/> project-src.jar</p> <p>Instead of going into the build path options dialog to add a source reference to each jar, try the following: add one source reference through the dialog. Edit your .classpath and using the first jar entry as a template, add the source jar files to each of your other jars. </p> <p>This way you can use Eclipse's navigation aids to their fullest while still using something more standalone to build your projects.</p> http://stackoverflow.com/questions/481125/ie-not-autosizing-width-of-absolutely-positioned-element/481139#481139 0 Answer by Akrikos for IE not autosizing width of absolutely positioned element Akrikos 2009-01-26T20:05:21Z 2009-01-26T20:58:12Z <p>Here's something that may work for you. It's a little hacky, but if you're trying to find a good width for some text, this is the only way besides javascript that I know of. We're basically forcing the width by not allowing the line to break. You can put in <code>&lt;br/&gt;</code>s if you need line breaks.</p> <pre><code>&lt;div style="position:absolute;top:50px;left:50px;background:green;width:0px"&gt; &lt;div&gt; &lt;div&gt;test&lt;/div&gt; &lt;div style="height:50px; white-space:nowrap"&gt;This is normally sized in IE6&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>On second thought, don't check out the link. It's old and doesn't work as advertised.</p> <p>Old answer:</p> <p><a href="http://snippets.dzone.com/posts/show/216" rel="nofollow">http://snippets.dzone.com/posts/show/216</a></p> <p>I believe that non-absolutely positioned DIVs automatically expand to fill their container horizontally. Since you haven't specified any container size for this div, it expands to fill the whole page. </p> <p>I find it odd that Firefox doesn't expand the div... I'm not sure which of them actually has it "right".</p> http://stackoverflow.com/questions/323411/bugzilla-or-mantis/440137#440137 1 Answer by Akrikos for Bugzilla or Mantis? Akrikos 2009-01-13T18:17:56Z 2009-01-13T18:17:56Z <p>I've heard good things about fogbugz but have yet to find an opportunity to use it. <a href="http://www.fogcreek.com/FogBUGZ/" rel="nofollow">http://www.fogcreek.com/FogBUGZ/</a></p> http://stackoverflow.com/questions/439471/using-a-jsp-fmt-tag-in-another-tag 2 Using a jsp fmt tag in another tag Akrikos 2009-01-13T15:50:53Z 2009-01-13T16:08:36Z <p>I'd like to be able to include the return value of a fmt tag in another tag:</p> <pre><code>&lt;local:roundedBox boxTitle="&lt;fmt:message key="somekey"/&gt;"&gt; content &lt;/roundedBox&gt; </code></pre> <p>I've run into this problem multiple times and it just seems like a stupid limitation of jsp. Is there a simple way around this?</p> http://stackoverflow.com/questions/1723009/jquery-select-all-disabled-texboxes Comment by Akrikos on jQuery Select all Disabled texboxes Akrikos 2009-11-12T15:57:20Z 2009-11-12T15:57:20Z So... there is no 'textbox' type or element. There's a textarea element, an input of type text and an input of type checkbox. Which do you mean? http://stackoverflow.com/questions/1712808/cant-hook-form-submit-event/1712891#1712891 Comment by Akrikos on Can't hook form submit event Akrikos 2009-11-11T14:33:00Z 2009-11-11T14:33:00Z @Funka - right! I forgot about how jQuery handles optional params. The first way you suggest should work, but the second won't: check out line 3272 of <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" rel="nofollow">ajax.googleapis.com/ajax/libs/&hellip;</a> - jquery removes any scripts from the fragment being loaded. http://stackoverflow.com/questions/1712808/cant-hook-form-submit-event/1712891#1712891 Comment by Akrikos on Can't hook form submit event Akrikos 2009-11-11T04:05:16Z 2009-11-11T04:05:16Z I think you need another argument between the url and the callback like: $('#target').load('url', {}, function() { }); <a href="http://docs.jquery.com/Ajax/load" rel="nofollow">docs.jquery.com/Ajax/load</a> http://stackoverflow.com/questions/1685196/does-php-copy-variables-when-retrieving-from-shared-memory/1685209#1685209 Comment by Akrikos on Does PHP copy variables when retrieving from shared memory? Akrikos 2009-11-06T03:55:21Z 2009-11-06T03:55:21Z The wording sounds ambiguous to me. http://stackoverflow.com/questions/1685277/warning-domdocumentloadhtml-htmlparseentityref-expecting-in-entity Comment by Akrikos on Warning: DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, Akrikos 2009-11-06T03:42:48Z 2009-11-06T03:42:48Z So... What question are you asking? http://stackoverflow.com/questions/1564298/how-to-show-loading-image-when-a-big-image-is-being-loaded/1564328#1564328 Comment by Akrikos on How to show loading image when a big image is being loaded? Akrikos 2009-11-04T23:03:11Z 2009-11-04T23:03:11Z You could do this using JavaScript with or without jQuery... but unless there's a compelling reason, I would probably use something similar to this answer http://stackoverflow.com/questions/1675736/jquery-get-next-element-after-first-match/1675975#1675975 Comment by Akrikos on jQuery get next element after first match Akrikos 2009-11-04T19:44:19Z 2009-11-04T19:44:19Z This looks like it might work... but by only providing the solution, I don't feel like you've taught the questioner anything about how to solve future problems like this. http://stackoverflow.com/questions/1391950/how-to-use-jquery-non-conflict-properly/1611304#1611304 Comment by Akrikos on how to use jquery non conflict properly Akrikos 2009-10-23T03:57:20Z 2009-10-23T03:57:20Z This is rather deep javascript foo and you may want to stay away from it if you can't figure out why it works this way. I'd recommend figuring it out though :-) http://stackoverflow.com/questions/816918/how-to-make-textmate-work-well-with-nfs/818591#818591 Comment by Akrikos on How to make textmate work well with NFS? Akrikos 2009-10-01T15:39:07Z 2009-10-01T15:39:07Z Any sensible functionality is available in plugins... <i>sigh</i> http://stackoverflow.com/questions/603463/eclipse-codebase-is-there-a-place-that-can-intercept-all-the-coloring-data Comment by Akrikos on Eclipse codebase: is there a place that can intercept all the coloring data? Akrikos 2009-03-02T18:55:42Z 2009-03-02T18:55:42Z That's an interesting way of asking that question... I hope there is something... or that one of the eclipse devs will help out making something like this. http://stackoverflow.com/questions/590881/how-do-i-write-an-xml-string-to-a-file Comment by Akrikos on How do I write an XML string to a file? Akrikos 2009-02-26T15:12:58Z 2009-02-26T15:12:58Z The title is very misleading. It should really say something about file I/O in C# http://stackoverflow.com/questions/172133/utf8-vs-utf16-vs-char-vs-what-someone-explain-this-mess-to-me/172139#172139 Comment by Akrikos on UTF8 vs. UTF16 vs. char* vs. what? Someone explain this mess to me! Akrikos 2009-02-24T16:44:40Z 2009-02-24T16:44:40Z I hadn't read that before... got my i18n training through other avenues. Thanks for the link http://stackoverflow.com/questions/569897/why-are-estimates-always-taken-for-granted/569915#569915 Comment by Akrikos on Why are estimates always taken for granted? Akrikos 2009-02-24T15:24:07Z 2009-02-24T15:24:07Z If you overestimate the amount of time, then either you look really good for having completed it early... or you have some time to 'pay down the technical debt' that you've been accruing. http://stackoverflow.com/questions/261483/how-to-safeguard-an-inside-software-development-team-from-being-outsourced/261510#261510 Comment by Akrikos on How to safeguard an inside software development team from being outsourced? Akrikos 2009-02-23T17:06:03Z 2009-02-23T17:06:03Z Constantin: he's talking about being irreplaceable in that you are <i>awesome</i> and they don't want to have to replace you. Those types get promoted all the time. http://stackoverflow.com/questions/569764/how-do-you-debug-functions-with-postgres Comment by Akrikos on How do you debug functions with postgres? Akrikos 2009-02-20T19:56:05Z 2009-02-20T19:56:05Z You might try changing the title to be more clear that you're trying to debug stored procedures