User alimango - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:09:43Z http://stackoverflow.com/feeds/user/84966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1338950/best-cms-for-a-t-shirt-catalog-website 1 Best CMS for a T-Shirt catalog website alimango 2009-08-27T05:05:34Z 2009-11-30T02:34:49Z <p>Hi my friend who's studying CSS wants to make a simple t-shirt catalog website. He also wants to include e-commerece in the future. What's an easy to learn CMS--preferrably in PHP--do you guys suggest for him?</p> http://stackoverflow.com/questions/948934/how-to-make-a-long-menu-scroll-horizontally 0 How to make a long menu scroll horizontally? alimango 2009-06-04T06:47:12Z 2009-10-24T13:00:01Z <p>Hi, I got a long menubar in my site and it ruins the layout. I'm wondering using jQuery(or one of it's lightweight plugins), how do I hide some of the menu links and have small arrow links that allows to scroll them? Thanks!</p> http://stackoverflow.com/questions/1365675/loading-markdownify-in-codeigniter 0 Loading Markdownify in CodeIgniter alimango 2009-09-02T03:16:20Z 2009-09-18T08:00:02Z <p>Hi, I downloaded Markdownify from <a href="http://milianw.de/projects/markdownify/" rel="nofollow">http://milianw.de/projects/markdownify/</a> and extracted it to my application/libraries/ directory.</p> <p>I did a:</p> <pre><code>$this-&gt;load-&gt;library('markdownify'); echo $this-&gt;markdownify-&gt;parseString('&lt;b&gt;Test&lt;/b&gt;'); </code></pre> <p>But the output is the same html markup. It didn’t work. How do I get it working?</p> http://stackoverflow.com/questions/1425621/how-are-nested-set-models-traversed-in-mysql 0 How are nested set models traversed in MySQL? alimango 2009-09-15T07:15:58Z 2009-09-15T07:36:31Z <p>I'm reading <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">this article</a> and on the part with the query:</p> <pre><code>SELECT node.name FROM nested_category AS node, nested_category AS parent WHERE node.lft BETWEEN parent.lft AND parent.rgt AND parent.name = 'ELECTRONICS' ORDER BY node.lft; </code></pre> <p>I'm wondering how is it travered? What happens step by step? I'm confused, please help.</p> http://stackoverflow.com/questions/1365509/should-i-implement-multi-purpose-functions 0 Should I implement multi-purpose functions? alimango 2009-09-02T01:48:46Z 2009-09-02T03:08:25Z <p>I'm using CodeIgniter and I got a model that fetches let's say all recipes where you can set the offset and the limit. Should I extend that function for retrieving a single recipe? Is it good practice?</p> http://stackoverflow.com/questions/1197781/why-is-java-frequently-used-for-enterprise-applications 11 Why is Java frequently used for enterprise applications? alimango 2009-07-29T02:29:58Z 2009-07-29T13:45:32Z <p>Hi! As a Java newbie I'm wondering: of all the languages in the world, why is Java frequently used for enterprise applications? What makes it that way compared to the other languages? Will it continue to be this way in the upcoming years?</p> <p>I'd appreciate your insights. Thanks in advance :)</p> http://stackoverflow.com/questions/1123426/do-you-memorize-the-tags-in-your-xml-configuration -1 Do you memorize the tags in your XML configuration? alimango 2009-07-14T04:29:11Z 2009-07-14T09:23:45Z <ol> <li>Do you guys memorize the tags in your XML configurations particularly in Java?</li> <li>Do you guys memorize the tags in web.xml, in your Ant configuration files, in your Spring configuration files?</li> <li>Also do you code them by hand or do you have an IDE and a reference with you?</li> </ol> <p>I'm a noob wanting to know how the pros do it :)</p> http://stackoverflow.com/questions/1005236/equalize-column-javascript-not-working-in-chrome 0 Equalize column javascript not working in Chrome alimango 2009-06-17T05:19:08Z 2009-06-17T05:23:12Z <p>Hi, I'm using this mootools javascript snippet to equalize the height of my columns:</p> <pre><code>window.addEvent('domready', function() { var columns = $$('.equalize'); var max_height = 0; columns.each(function(item) { max_height = Math.max(max_height, item.getSize().y); }); columns.setStyle('height', max_height); }); </code></pre> <p>Problem is it's not working properly on Chrome. It's getting the minimum height of the 2 columns instead of getting the maximum. What seems to be the problem and how do I fix it? Thanks in advance!</p> http://stackoverflow.com/questions/938742/extracting-youtube-videos-author-using-python-and-youtubeapi 2 Extracting YouTube Video's author using Python and YouTubeAPI alimango 2009-06-02T09:54:32Z 2009-06-03T04:40:34Z <p>Hi, how do I get the author/username from an object using:</p> <pre><code>GetYouTubeVideoEntry(video_id=youtube_video_id_to_output) </code></pre> <p>I'm using Google's gdata.youtube.service Python library</p> <p>Thanks in advance! :)</p> http://stackoverflow.com/questions/908756/jqueryajax-delete-anchor-not-working -1 jQuery+AJAX delete anchor not working alimango 2009-05-26T02:54:57Z 2009-05-26T05:33:27Z <p>Hi I'm using jQuery and Codeigniter. I'm creating a simple todo list that can add delete entries using ajax.</p> <p>The problem is whenever I click on my delete anchor, it won't delete the entry. The adding of the entry feature works BTW.</p> <p>Here's my code:</p> <p>todo_view.php</p> <pre><code>&lt;html&gt; &lt;head&gt;Todo List&lt;/head&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $('#submit').click(function() { var msg = $('#message').val(); $.post("&lt;?= site_url('todo/add') ?&gt;", {message: msg}, function() { $('#content').load("&lt;?= site_url('todo/view/ajax') ?&gt;"); $('#message').val(''); }); }); $('a.delete').click(function() { var id = $('input', this).val(); $.post("&lt;?= site_url('todo/delete') ?&gt;", {todoid: id}, function() { $('#content').load("&lt;?= site_url('todo/view/ajax') ?&gt;"); }); }); }); &lt;/script&gt; &lt;body&gt; &lt;div id="form"&gt; &lt;input type="text" name="message" id="message" /&gt; &lt;input type="submit" name="submit" id="submit" value="Add todo" /&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;?php $this-&gt;load-&gt;view('message_list'); ?&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>message_list.php</p> <pre><code>&lt;ol&gt; &lt;?php foreach ($todolist as $todo): ?&gt; &lt;li&gt; &lt;?php echo $todo-&gt;todo; ?&gt; &lt;a href="#" class="delete"&gt;&lt;input type="hidden" value="&lt;?=$todo-&gt;todoid ?&gt;" /&gt;delete&lt;/a&gt;&lt;/li&gt; &lt;?php endforeach; ?&gt; &lt;/ol&gt; </code></pre> <p>Why doesn't it work?</p> http://stackoverflow.com/questions/908813/copy-chosen-wikipedia-articles-into-own-wiki 0 Copy chosen Wikipedia articles into own wiki? alimango 2009-05-26T03:31:11Z 2009-05-26T05:04:50Z <p>Hi, is there a way to batch copy certain wikipedia articles(about 10,000) to my own mediawiki site?</p> <p>EDIT: How do I do this without overwriting similarly named articles/pages? Also I don't plan on using illegal means (crawlers etc) </p> http://stackoverflow.com/questions/905894/how-to-import-sql-dump-to-a-table-without-overwriting-duplicate-fields 0 How to import SQL dump to a table without overwriting duplicate fields alimango 2009-05-25T08:38:17Z 2009-05-25T09:20:22Z <p>Hi, how do I import a MySQL dump file to a database without overwriting records with the same value?</p> http://stackoverflow.com/questions/905689/fast-way-to-get-the-difference-of-2-columns-in-mysql 1 Fast way to get the difference of 2 columns in MySQL alimango 2009-05-25T07:16:16Z 2009-05-25T07:52:16Z <p>Hi, how do I get the fields of a column that's without a match in another column?</p> <p>I tried:</p> <pre><code>SELECT table1.page_title FROM table1, table2 WHERE table1.page_title != table2.page_title </code></pre> <p>It produces a lot of duplicate fields so I did a:</p> <pre><code>SELECT DISTINCT table1.page_title FROM table1, table2 WHERE table1.page_title != table2.page_title </code></pre> <p>but it just hangs.</p> <p>Any help would be greatly appreciated, thanks!</p> <p>P.S. I'm doing this so I could create an exclude list for mediawiki's MWDumper tool. I need it so that when I import the outputted sql, my current wiki entries will not be overwritten.</p> <p>EDIT: Yes they're 2 different tables. Each has about 70,000+ records Also why are my queries slow? I'd appreciate it if someone could clarify so I could learn why :) Thanks again!</p> http://stackoverflow.com/questions/707978/how-to-redirect-nullpointerexceptions-in-struts 0 How to redirect NullPointerExceptions in Struts? alimango 2009-04-02T01:31:00Z 2009-04-02T01:55:06Z <p>Hi, is there a way to redirect all NullPointerExceptions to a pretty jsp page perhaps in Struts? </p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/700140/how-to-place-a-beanwrite-inside-an-htmllink-in-struts 0 How to place a bean:write inside an html:link in struts? alimango 2009-03-31T05:30:33Z 2009-03-31T05:30:33Z <p>Hi, I'm creating a blog in struts (as an exercise) and I want to create a delete link for a post.</p> <p>Here's my desired link: blah/Post.do?delete={postid}</p> <p>how do I do something like: ">Delete</p> <p>BTW I'm using DispatchAction in my PostAction class.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1425621/how-are-nested-set-models-traversed-in-mysql/1425655#1425655 Comment by alimango on How are nested set models traversed in MySQL? alimango 2009-09-15T07:54:06Z 2009-09-15T07:54:06Z Thank you for the clear explanation :) http://stackoverflow.com/questions/1365675/loading-markdownify-in-codeigniter/1371081#1371081 Comment by alimango on Loading Markdownify in CodeIgniter alimango 2009-09-15T07:30:11Z 2009-09-15T07:30:11Z How did you modify the Markdownify files as above? http://stackoverflow.com/questions/1365509/should-i-implement-multi-purpose-functions/1365538#1365538 Comment by alimango on Should I implement multi-purpose functions? alimango 2009-09-02T02:52:28Z 2009-09-02T02:52:28Z I agree that it's easier to maintain and I'm for that. Thanks for the insight guys :) http://stackoverflow.com/questions/1365509/should-i-implement-multi-purpose-functions/1365538#1365538 Comment by alimango on Should I implement multi-purpose functions? alimango 2009-09-02T02:15:29Z 2009-09-02T02:15:29Z Actually I've combined get_recipe and get_recipes. if the id is set and the other params is null, it returns only one field etc.. is it ok? http://stackoverflow.com/questions/938742/extracting-youtube-videos-author-using-python-and-youtubeapi/943084#943084 Comment by alimango on Extracting YouTube Video's author using Python and YouTubeAPI alimango 2009-06-04T01:23:20Z 2009-06-04T01:23:20Z Thanks for the solution and explanation Steph, it's all working now :) http://stackoverflow.com/questions/938742/extracting-youtube-videos-author-using-python-and-youtubeapi/938774#938774 Comment by alimango on Extracting YouTube Video's author using Python and YouTubeAPI alimango 2009-06-03T00:21:56Z 2009-06-03T00:21:56Z foo.author returns an atom object. I did dir() on it and there's no member that holds the author/username. It's wierd.. http://stackoverflow.com/questions/908756/jqueryajax-delete-anchor-not-working Comment by alimango on jQuery+AJAX delete anchor not working alimango 2009-05-26T05:06:54Z 2009-05-26T05:06:54Z The entry won't be deleted and the #container part won't refresh. I'm not sure but I think the jQuery is the one that's not working (I want to know if it is and why) http://stackoverflow.com/questions/905689/fast-way-to-get-the-difference-of-2-columns-in-mysql/905745#905745 Comment by alimango on Fast way to get the difference of 2 columns in MySQL alimango 2009-05-25T08:00:38Z 2009-05-25T08:00:38Z your first suggestion worked Rax, thanks! :)