User alimango - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:09:43Zhttp://stackoverflow.com/feeds/user/84966http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1338950/best-cms-for-a-t-shirt-catalog-website1Best CMS for a T-Shirt catalog websitealimango2009-08-27T05:05:34Z2009-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-horizontally0How to make a long menu scroll horizontally?alimango2009-06-04T06:47:12Z2009-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-codeigniter0Loading Markdownify in CodeIgniteralimango2009-09-02T03:16:20Z2009-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->load->library('markdownify');
echo $this->markdownify->parseString('<b>Test</b>');
</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-mysql0How are nested set models traversed in MySQL?alimango2009-09-15T07:15:58Z2009-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-functions0Should I implement multi-purpose functions?alimango2009-09-02T01:48:46Z2009-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-applications11Why is Java frequently used for enterprise applications?alimango2009-07-29T02:29:58Z2009-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-1Do you memorize the tags in your XML configuration?alimango2009-07-14T04:29:11Z2009-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-chrome0Equalize column javascript not working in Chromealimango2009-06-17T05:19:08Z2009-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-youtubeapi2Extracting YouTube Video's author using Python and YouTubeAPIalimango2009-06-02T09:54:32Z2009-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-1jQuery+AJAX delete anchor not workingalimango2009-05-26T02:54:57Z2009-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><html>
<head>Todo List</head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#submit').click(function() {
var msg = $('#message').val();
$.post("<?= site_url('todo/add') ?>", {message: msg}, function() {
$('#content').load("<?= site_url('todo/view/ajax') ?>");
$('#message').val('');
});
});
$('a.delete').click(function() {
var id = $('input', this).val();
$.post("<?= site_url('todo/delete') ?>", {todoid: id}, function() {
$('#content').load("<?= site_url('todo/view/ajax') ?>");
});
});
});
</script>
<body>
<div id="form">
<input type="text" name="message" id="message" />
<input type="submit" name="submit" id="submit" value="Add todo" />
</div>
<div id="content">
<?php $this->load->view('message_list'); ?>
</div>
</body>
</html>
</code></pre>
<p>message_list.php</p>
<pre><code><ol>
<?php foreach ($todolist as $todo): ?>
<li>
<?php echo $todo->todo; ?>
<a href="#" class="delete"><input type="hidden" value="<?=$todo->todoid ?>" />delete</a></li>
<?php endforeach; ?>
</ol>
</code></pre>
<p>Why doesn't it work?</p>
http://stackoverflow.com/questions/908813/copy-chosen-wikipedia-articles-into-own-wiki0Copy chosen Wikipedia articles into own wiki?alimango2009-05-26T03:31:11Z2009-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-fields0How to import SQL dump to a table without overwriting duplicate fieldsalimango2009-05-25T08:38:17Z2009-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-mysql1Fast way to get the difference of 2 columns in MySQLalimango2009-05-25T07:16:16Z2009-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-struts0How to redirect NullPointerExceptions in Struts?alimango2009-04-02T01:31:00Z2009-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-struts0How to place a bean:write inside an html:link in struts?alimango2009-03-31T05:30:33Z2009-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#1425655Comment by alimango on How are nested set models traversed in MySQL?alimango2009-09-15T07:54:06Z2009-09-15T07:54:06ZThank you for the clear explanation :)http://stackoverflow.com/questions/1365675/loading-markdownify-in-codeigniter/1371081#1371081Comment by alimango on Loading Markdownify in CodeIgniteralimango2009-09-15T07:30:11Z2009-09-15T07:30:11ZHow did you modify the Markdownify files as above?http://stackoverflow.com/questions/1365509/should-i-implement-multi-purpose-functions/1365538#1365538Comment by alimango on Should I implement multi-purpose functions?alimango2009-09-02T02:52:28Z2009-09-02T02:52:28ZI 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#1365538Comment by alimango on Should I implement multi-purpose functions?alimango2009-09-02T02:15:29Z2009-09-02T02:15:29ZActually 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#943084Comment by alimango on Extracting YouTube Video's author using Python and YouTubeAPIalimango2009-06-04T01:23:20Z2009-06-04T01:23:20ZThanks 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#938774Comment by alimango on Extracting YouTube Video's author using Python and YouTubeAPIalimango2009-06-03T00:21:56Z2009-06-03T00:21:56Zfoo.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-workingComment by alimango on jQuery+AJAX delete anchor not workingalimango2009-05-26T05:06:54Z2009-05-26T05:06:54ZThe 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#905745Comment by alimango on Fast way to get the difference of 2 columns in MySQLalimango2009-05-25T08:00:38Z2009-05-25T08:00:38Zyour first suggestion worked Rax, thanks! :)