User Maiku Mori - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T20:42:08Zhttp://stackoverflow.com/feeds/user/54091http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1800798/php-case-statement-not-working-with-zero-values/1800947#18009470Answer by Maiku Mori for PHP CASE statement not working with ZERO values.Maiku Mori2009-11-26T00:39:31Z2009-11-26T00:45:40Z<p>As others have pointed out you can't use <em>switch</em> like that, but how about defining it like this:</p>
<pre><code><?
$level = 21;
$answers = array('low', 'low-to-moderate',
'moderate', 'moderate-to-high', 'high');
echo $answers[intval(($level-1)/20)];
?>
</code></pre>
<p><hr></p>
<p><strong><em>Note</strong>: If <strong>$level = 0</strong>, then expression inside <strong>intval()</strong> will be <strong>-1/20</strong>, <strong>which is less then -1 and therefore will be rounded to 0</em></strong>.</p>
http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layout/1789803#17898034Answer by Maiku Mori for call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T12:34:29Z2009-11-24T13:04:17Z<p>I'm making a guess here, but I think you are trying to serve different content from same action depending how it was requested.</p>
<p>To detect weather the page was requested by Ajax you could use specific header sent by browser.</p>
<p>Usually most recent JavaScript libraries send</p>
<pre><code>X-Requested-With:XMLHttpRequest
</code></pre>
<p>header together with their ajax request. If yours doesn't you could easily make it to send it using something like this:</p>
<pre><code>//Just example using raw XMLHttpRequest
var request = new XMLHttpRequest();
request.setRequestHeader("X-Requested-With", "XMLHttpRequest");
//If you use Javascript library, see the documentation how to set custom request headers.
//But as I said most modern libraries already send X-Requested-With
</code></pre>
<p>Then in PHP you could check if request was made using Ajax by using this code block:</p>
<pre><code>if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) &&
strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
//Send JSON.
} else {
//Send HTML.
}
</code></pre>
<p><em>EDIT:
As <a href="http://stackoverflow.com/questions/1789687/how-to-make-it-possible-to-call-a-php-controller-with-ajax/1789733#1789733">Elzo Valugi</a> mentioned, don't forget to use correct content type when outputing JSON in your action by using:</em></p>
<pre><code>header('Content-type: application/json');
</code></pre>
<p><em>before sending any JSON or else you might have some problems with some JavaScript libraries.</em></p>
<p><hr></p>
<p><img src="http://i47.tinypic.com/o5we91.jpg" alt="http://i47.tinypic.com/o5we91.jpg"></p>
<p>This is more or less how the request + response headers should look like. Note that I'm actually sending some unneeded ones here like Prototype version, etc.</p>
http://stackoverflow.com/questions/1737013/how-can-i-make-this-python-code-more-usable-and-readable/1737052#17370521Answer by Maiku Mori for How Can I Make This Python Code More Usable And Readable?Maiku Mori2009-11-15T09:09:51Z2009-11-15T23:05:56Z<p>If you want to make a simple calculator you could try implementing <a href="http://en.wikipedia.org/wiki/Shunting-yard%5Falgorithm" rel="nofollow">Shunting-yard algorithm</a>.</p>
<p>But if you want to go with regex approach I'd still do it a little differently:</p>
<pre><code>import re
#In python functions/methods usually are lowercase
#and words are seperated by _ while classes use CamelCasing
def eval_step_by_step(expression):
"""Evaluates math expression. Doesn't do any error checking.
expression (string) - math expression"""
print expression
#For pretty formating.
expr_len = len(expression)
#While there's parentheses in the expression.
while True:
#re.match checks for a match only at the beginning of the string,
#while re.search checks for a match anywhere in the string.
#Matches all numbers, +, -, *, / and whitespace within parentheses
#lazily (innermost first).
contents = re.search("\(([0-9|\*|/|\+|\-|\s]*?)\)", expression)
#If we didn't find anything, print result and break out of loop.
if not contents:
#string.format() is the Python 3 way of formating strings
#(Also works in Python 2.6).
#Print eval(expression) aligned right in a "field" with width
#of expr_len characters.
print "{0:{1}}".format(eval(expression), expr_len)
break
#group(0) [match] is everything matching our search,
#group(1) [parentheses_text] is just epression withing parentheses.
match, parentheses_text = contents.group(0), contents.group(1)
expression = expression.replace(match, str(eval(parentheses_text)))
#Aligns text to the right. Have to use ">" here
#because expression is not a number.
print "{0:>{1}}".format(expression, expr_len)
#For example try: (4+3+(32-1)*3)*3
problem = raw_input("Input math problem: ")
eval_step_by_step(problem)
</code></pre>
<p>It doesn't exactly work the same as your function, but you could easily implement modifications into your function to match mine. As you can see, I've also added a lot of comments to explain some stuff.</p>
http://stackoverflow.com/questions/1686428/should-i-use-the-yui-compressor-or-the-new-google-closure-compiler-to-compress-my/1705524#17055244Answer by Maiku Mori for Should I use the YUI Compressor or the new Google Closure compiler to compress my JavaScript?Maiku Mori2009-11-10T03:52:46Z2009-11-14T20:36:51Z<p>I think it depends on your code. If you want to compile your own code, then I think it is worth it to patch the code so that it works with <em>Closure Compiler</em> (some things might seem a bit awkward at the start). I believe <em>Closure Compiler</em> soon will be the top choice for such jobs and it will also make you to tidy up your code a bit and maintain consistent style (of course it depends on your preferences, you might hate some parts, I do :P ).</p>
<p>If you depend on other libraries then in my opinion you should wait a bit until they release <em>Closure Compiler</em> compatible versions. It shouldn't take much time for most popular libraries out there. And maybe you can provide fixes for those "not-so-active" libraries which you use yourself.</p>
<p>I'm talking about <em>Advanced Compilation</em> mode here, the <em>Simple Compilation</em> mode as some has pointed out is fairly safe to use.</p>
<p>And here's a different opinion - <a href="http://webreflection.blogspot.com/2009/11/google-closure-im-not-impressed.html" rel="nofollow">Google Closure ? I'm Not Impressed</a>. It's maybe a little bit too harsh, but nice read. I guess only time will tell which one is better =)</p>
http://stackoverflow.com/questions/1703934/google-closure-compile-jquery-plugin/1705490#17054901Answer by Maiku Mori for google closure compile jQuery PluginMaiku Mori2009-11-10T03:37:22Z2009-11-10T03:37:22Z<p>Yes, you would have to concatenate both <em>jquery.js</em> and <em>plugin.js</em> into one file, but at the moment some parts of jQuery doesn't compress correctly with <em>Advanced Compilation</em> option, but you can still use the <em>Simple Compilation</em>.</p>
<p>I'm sure jQuery team will soon release a version which can be compiled using <em>Advanced Compilation</em> option.</p>
<p>If you're interested in <em>Advanced Compilation</em> check out these <a href="http://code.google.com/closure/compiler/docs/api-tutorial3.html" rel="nofollow">tutorials</a>. Once you've read em, you'll understand why some parts need changing before you'll be able to compile em using <em>Advanced Compilation</em> without errors.</p>
http://stackoverflow.com/questions/1693765/google-closure-compiler-error-variable-compiled-first-declared-in-syntheticvars/1705447#17054470Answer by Maiku Mori for Google closure compiler error "Variable COMPILED first declared in {SyntheticVarsDeclar}"Maiku Mori2009-11-10T03:21:59Z2009-11-10T03:21:59Z<p>Try declaring it at the start and use this <a href="http://code.google.com/closure/compiler/docs/js-for-compiler.html#tag-define" rel="nofollow">tag</a> like this:</p>
<pre><code>/**
* @define {boolean} Overridden to true by the compiler when --closure_pass
* or --mark_as_compiled is specified.
*/
var COMPILED = false;
</code></pre>
<p>I'm almost sure that it will fix the problem, in fact I even think that you don't need the tag. Also try downloading latest compiler or compile it from svn because there was <a href="http://code.google.com/p/closure-compiler/issues/detail?id=17" rel="nofollow">suspiciously similar bug</a> reported earlier and it got fixed.</p>
http://stackoverflow.com/questions/1699582/javascript-how-to-select-cancel-by-default-in-confirm-box/1699679#16996791Answer by Maiku Mori for JavaScript: How to select "Cancel" by default in confirm box?Maiku Mori2009-11-09T08:12:10Z2009-11-09T20:02:26Z<p>You can't do that, but you could use/write your own dialog which is displayed using DOM elements (like phoenix suggested, it just doesn't have to be that particular jQuery plugin, you could write your own or use plugin from another JS framework).</p>
<p>The "use jQuery + plugin X" answers are starting to get annoying. There are a lot of JS libraries out there and even more plugins. For example using any JS library here is unnecessary if you just want to display a custom dialog. While it's a quick solution/answer, answers like that do more harm in a long run then good. People new to JavaScript or programing in general start to think that jQuery and/or plugins are the only way to go and they include 50kb+ library just to write 3 lines of their own (which sometimes don't even use the library :D).</p>
<p>In my opinion Markus Johnsson comment is the best answer, it's a shame it's not posted as one.</p>
http://stackoverflow.com/questions/1697219/keep-database-information-secure/1697399#16973992Answer by Maiku Mori for Keep database information secureMaiku Mori2009-11-08T18:14:23Z2009-11-08T18:14:23Z<p>I pretty much agree with Remus Rusanu's answer.</p>
<p>Maintaining good security is hard, but you can always pay attention to what you do. When ever you access sensitive information carefully verify your query and make sure it cannot be spoofed or exploited to gain access to information which shouldn't be accessible by given client.</p>
<p>If you can roll out physical access to the box by the attacker then there are several things you can do to harden your security. First of all I'd configure ssh access only to only allow connections from specific IP or IP range (and of course no root access). You can also do that that on your firewall. This would mean that the weakest link is your server (the application which receives data/requests from clients, could be web-server and whatever scripts you use). Now you "just" have to make sure that no one can exploit your server. There are a lot more things you could do to harden your system, but it think it would be more appropriate to ask on ServerFault.</p>
<p>If you're worried about physical access to the PC, there isn't really much you can do and most stuff has already been mentioned in Remus answer.</p>
<p><strong>There's also another option.</strong> This is by far the most ineffective method from speed and ease to develop viewpoint, but it would partly protect you from any kind of an attack on your server (including physical). It's actually quite simple, but a bit hard to implement - only store the encrypted data in the database and handle all encryption/decryption client-side using javascript or flash. Only the client will have the key and data will always be transfered over the wire and stored in encrypted format. The biggest drawback is that once client forgets the key there's no way back, the data is inaccessible.</p>
<p>Of course it's all matter of time, money and effort - with enough of these anything can be broken.</p>
http://stackoverflow.com/questions/1672266/google-chrome-breaks-network-connection-when-javascript-errors/1672289#16722890Answer by Maiku Mori for Google Chrome breaks network connection when JavaScript errorsMaiku Mori2009-11-04T07:55:49Z2009-11-04T07:55:49Z<p>Even if you wanted to do something like that with Javascript in browser, you couldn't do it. Of course there's a small chance that there's somekind of bug in Chrome which get's triggered by JS but I don't think so.</p>
<p>Maybe try over at superuser.com . Your question isn't really programing related.</p>
http://stackoverflow.com/questions/1620914/html-css-is-there-anyway-to-hide-a-column-in-a-table/1620919#16209190Answer by Maiku Mori for [HTML/CSS]: Is there anyway to hide a column in a Table.Maiku Mori2009-10-25T13:26:24Z2009-10-25T13:26:24Z<p>Well you could apply css rule:</p>
<pre><code>display: none;
</code></pre>
<p><a href="http://www.w3schools.com/css/pr%5Fclass%5Fdisplay.asp" rel="nofollow">CSS display property</a></p>
http://stackoverflow.com/questions/1586360/why-are-js-scripts-usually-place-in-the-header-of-a-document/1586381#15863813Answer by Maiku Mori for Why are JS scripts usually place in the header of a document?Maiku Mori2009-10-18T23:53:25Z2009-10-19T00:40:49Z<blockquote>
<p>A <code><script src="url"></script></code> will
block the downloading of other page
components until the script has been
fetched, compiled, and executed. It is
better to call for the script as late
as possible, so that the loading of
images and other components will not
be delayed.</p>
</blockquote>
<p>It depends on what the script is doing. If your code is wrapped in onLoad event then it doesn't matter since it will return almost immediately and not block otherwise you should put it where it fits because the placement does matter.</p>
<p>As for putting it at the end, it does give a little extra time for user to start looking at the page. Just ask yourself a question - does my site work without javascript? If it doesn't, then in my opinion it doesn't mater where you put it since onLoad code will only be executed when the DOM has been fully loaded (that includes binary content like images). If you can use it without javascript then put it at the end so that images can load faster.</p>
<p>Also note that most JS libraries use special code which works around the onLoad problem and uses custom event for this which gets fired once DOM has loaded and doesn't wait for binary data.</p>
<p>Now that I wrote all that, I got a question of my own. Does using say jQuery's</p>
<pre><code>$(document).ready(function () {});
</code></pre>
<p>and putting the script tag at the end of page is the same as using onLoad event and putting it at the start?
It should be the same because browser would load all images before loading the script which is the last one in the list. If you know the answer leave a comment (I'm too lazy and it's too late to test it atm). </p>
http://stackoverflow.com/questions/1586330/access-get-directly-from-javascript/1586353#15863530Answer by Maiku Mori for Access GET directly from JavaScript?Maiku Mori2009-10-18T23:43:07Z2009-10-18T23:43:07Z<p>As others have explained you can parse page URL from JS to get the variables.</p>
<p>You could also use <a href="http://en.wikipedia.org/wiki/Ajax%5F%28programming%29" rel="nofollow">AJAX</a> in the page which submits the values. It really depends on what kind of information you're passing and then returning back to the user. (It's definitely not simpler or more direct way of doing it, just an alternative approach)</p>
http://stackoverflow.com/questions/1582708/long-slow-operation-in-django-view-causes-timeout-any-way-for-python-to-speak-a/1582726#15827262Answer by Maiku Mori for Long, slow operation in Django view causes timeout. Any way for Python to speak AJAX instead?Maiku Mori2009-10-17T17:26:53Z2009-10-17T17:33:13Z<p>One way is to submit the task using AJAX/JS or the normal way, start it in background in your view and return immediately. Then use AJAX/JS on client side to periodically check if task is done. If it's done reload the page or provide a link to the client.</p>
<blockquote>
<p>CLIENT "Please start a task using this data."-> SERVER</p>
<p>CLIENT <- "Task started!" SERVER</p>
<p>CLIENT "Done?"-> SERVER</p>
<p>CLIENT <- "Nope." SERVER</p>
<p>CLIENT "Done?"-> SERVER</p>
<p>CLIENT <- "Yep, here's a link where you can view results" SERVER</p>
</blockquote>
<p>While sending data from server to client without client asking for it is possible, well kind a, (the technology is called <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">Comet</a>) it isn't really necessary in your case. </p>
http://stackoverflow.com/questions/649029/where-can-i-find-good-python-twisted-framework-documentation-blog-entries-artic7Where can I find good python Twisted framework documentation, blog entries, articles, etc?Maiku Mori2009-03-16T02:06:04Z2009-10-15T22:04:56Z
<p>I'm playing around with <a href="http://twistedmatrix.com" rel="nofollow">Twisted</a> and documentation found on their homepage doesn't answer all my questions.</p>
<p>The topic I am most interested at the moment is Twisted Application Framework. Also some open source servers using twisted framework would provide nice material for studying how it's all tied up together in a bigger project.</p>
<p>So far I've checked out iCal and read documentation on twisted website (3x) and few good articles I found in google.</p>
http://stackoverflow.com/questions/1545665/javascript-with-reserved-word/1545928#15459280Answer by Maiku Mori for javascript 'with' reserved wordMaiku Mori2009-10-09T20:35:04Z2009-10-09T20:40:29Z<p>There are some neat tricks you can do with it, but other then that using with is discouraged.</p>
<p>See <a href="http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement">this SO answer for more info</a>. Make sure you read Shog9's answer.</p>
http://stackoverflow.com/questions/1544739/google-maps-api-v3-how-to-remove-all-markers/1544885#15448851Answer by Maiku Mori for Google Maps API v3: How to remove all markers?Maiku Mori2009-10-09T16:45:18Z2009-10-09T18:30:48Z<p>It seems that there is no such function in V3 yet.</p>
<p>People suggest to keep references to all markers you have on the map in an array. And then when you want to delete em all, just loop trough the array and call .setMap(null) method on each of the references.</p>
<p><a href="http://stackoverflow.com/questions/953394/is-it-ok-clearoverlays-in-gmap-api-v2-to-google-maps-api-v3">See this question for more info/code.</a></p>
<p>My version:</p>
<pre><code>google.maps.Map.prototype.markers = new Array();
google.maps.Map.prototype.getMarkers = function() {
return this.markers
};
google.maps.Map.prototype.clearMarkers = function() {
for(var i=0; i<this.markers.length; i++){
this.markers[i].set_map(null);
}
this.markers = new Array();
};
google.maps.Marker.prototype._setMap = google.maps.Marker.prototype.setMap;
google.maps.Marker.prototype.setMap = function(map) {
if (map) {
map.markers[map.markers.length] = this;
}
this._setMap(map);
}
</code></pre>
<p><em>The code is edited version of this code <a href="http://www.lootogo.com/googlemapsapi3/markerPlugin.html" rel="nofollow">http://www.lootogo.com/googlemapsapi3/markerPlugin.html</a> I removed the need to call addMarker manually.</em></p>
<p>Pros</p>
<ul>
<li>Doing this way you keep the code compact and in one place (doesn't pollute the namespace).</li>
<li>You don't have to keep track of the markers yourself anymore you can always find all the markers on the map by calling map.getMarkers()</li>
</ul>
<p>Cons</p>
<ul>
<li>Using prototypes and wrappers like I did now makes my code dependent on Google code, if they make a mayor change in their source this will break.</li>
<li>If you don't understand it then you won't be able to fix it if does break. The chances are low that they're going to change anything which will break this, but still..</li>
<li>If you remove one marker manually, it's reference will still be in markers array. (You could edit my setMap method to fix it, but at the cost of looping trough markers array and removing the reference) </li>
</ul>
http://stackoverflow.com/questions/1544151/google-maps-api-v3-how-to-remove-an-event-listener/1544219#15442192Answer by Maiku Mori for Google Maps API v3: How to remove an Event Listener?Maiku Mori2009-10-09T14:41:00Z2009-10-09T14:46:19Z<p>Usually you can find answers to such questions in Google Maps API documentation.</p>
<p>As Andrew said, addListener returns a handle which you can use later to remove the listener. That's because a single event can have many listeners and to remove them you must save a reference to each of attached listeners.</p>
<p>There's also a function which removes all of the listeners at the same time:</p>
<pre><code>clearListeners(instance:Object, eventName:string);
//In your case:
google.maps.event.clearListeners(map, 'bounds_changed');
</code></pre>
<p><a href="http://code.google.com/apis/maps/documentation/v3/reference.html#MapsEventListener" rel="nofollow">Here's the Google Maps API reference</a> where you can read about it.</p>
http://stackoverflow.com/questions/1533568/what-is-the-correct-way-to-write-html-using-javascript/1533652#15336521Answer by Maiku Mori for What is the correct way to write HTML using Javascript?Maiku Mori2009-10-07T19:24:57Z2009-10-07T19:43:49Z<p>There are many ways to write html with JavaScript.</p>
<p>document.write is only useful when you want to write to page before it has actually loaded. If you use document.write() after the page has loaded (at onload event) it will create new page and overwrite the old content. Also it doesn't work with XML, that includes XHTML.</p>
<p>From other hand other methods can't be used before DOM has been created (page loaded), because they work directly with DOM.</p>
<p>These methods are:</p>
<ul>
<li>node.innerHTML = "Whatever";</li>
<li>document.createElement('div'); and node.appendChild(), etc..</li>
</ul>
<p>In most cases node.innerHTML is better since it's faster then DOM functions. Most of the time it also make code more readable and smaller.</p>
http://stackoverflow.com/questions/1524659/whats-the-downside-of-using-to-many-javascripts/1524759#15247590Answer by Maiku Mori for what's the downside of using to many javascripts?Maiku Mori2009-10-06T10:24:47Z2009-10-06T10:24:47Z<p>Using a lot of JavaScript files shouldn't be a problem since you can always merge them all together to minimize HTTP requests. Of course to execute all that JavaScript it takes browser's time. There's also chance that there will be conflicts between all those JS libraries/plugins or within DOM. </p>
<p>As for choosing the right library it really depends on what kind of site/application you are making. If you just want to use pre-made plugins then there's isn't a big difference which library you use and you should just chose the one which has more of the plugins you want to use and I'm quite sure that jQuery is the best choice here since it has the most plugins overall.</p>
<p>From other hand if you want to write your own components/plugins/code then you should test each of them out and see which one suits your coding style and project the best. For example a while ago I found Prototype suits my taste better and is quite nice for big JS heavy projects. But jQuery has gone a long way since then so I'd probably try each of the most popular libraries out if I had to make a new project.</p>
http://stackoverflow.com/questions/1491228/two-rapid-ajax-calls-confuses-php/1519921#15199212Answer by Maiku Mori for Two rapid AJAX calls confuses PHPMaiku Mori2009-10-05T12:54:07Z2009-10-05T13:00:56Z<p>Try using POST.</p>
<p>Also if PHP receives 2 identical requests when they actually aren't supposed to be then it's not PHP's fault; the bug is somewhere between the place where you make the $.ajax call and where web-server passes the request to PHP.</p>
<p>Could you provide some more info about web-server? Which one do you use? Do you have some sort of catching or optimization going on there? Maybe you use some PHP framework or PHP "bootstrap" which could cache request?</p>
<p>You could also try to make a standalone test. Strip the Ajax code out and use minimal php script which just echoes the request. See if you get the same bug.</p>
<p>Some copy-paste data of requests sent and requests received in php would be nice.</p>
<p><hr /></p>
<p>I've never seen anything like this, I'm almost sure it's catching related. As a workaround you could just merge both requests in one, you would have to change the PHP script a bit. It's actually probably a better solution as well since you should always try to make as few requests to the server as you can.</p>
http://stackoverflow.com/questions/1515925/php-problem-with-jsonencode/1515928#15159285Answer by Maiku Mori for [PHP] Problem with json_encode()Maiku Mori2009-10-04T08:37:05Z2009-10-04T09:06:49Z<p>"{}" brackets specify an object and "[]" are used for arrays according to JSON specification. Arrays don't have enumeration, if you look at it from memory allocation perspective. It's just data followed by more data, objects from other hand have properties with names and the data is assigned to the properties, therefore to encode such object you must also pass the correct property names. But for array you don't need to specify the indexes, because they always will be 0..n, where n is the length of the array - 1, the only thing that matters is the order of data. </p>
<pre><code>$array = array("a","b","c");
json_encode($array); // ["a","b","c"]
json_encode($array, JSON_FORCE_OBJECT); // {"0":"a", "1":"b","2":"c"}
</code></pre>
<p>The reason why JSON_FORCE_OBJECT foces it to use "0,1,2" is because to assign data to obeject you must assign it to a property, since no property names are given by developer (only the data) the encoder uses array indexes as property names, because those are the only names which would make sense. </p>
<p><em>Note: according to <a href="http://php.net/json%5Fencode" rel="nofollow">PHP manual</a> the options parameters are only available from PHP 5.3.</em></p>
<p>*For older PHP versions refer to chelmertz's answer for a way to make json_encode to use indexes.*</p>
http://stackoverflow.com/questions/1490694/which-framework-for-a-project/1490876#14908760Answer by Maiku Mori for Which framework for a project?Maiku Mori2009-09-29T06:23:33Z2009-09-29T06:23:33Z<p>There is more then one python framework and more then two php frameworks.</p>
<p>In my opinion you should first off decide on the language you want to use and the look at all of the framework options you have.</p>
<p>Most frameworks share the same goals, but try to reach them in different ways. You should should chose the one which seems most natural to you.</p>
<p>When I had to chose python framework, I chose Pylons instead of Django. And as JavaScript framework I use Prototype instead of jQuery. Why? Because I like their coding style and approach better then some other, maybe more popular, framework way of doing things.</p>
<p>Most python frameworks are very modular therefore you will be able to "plug in" any kind of code or modules you want to use. Just make sure you like the framework it self, try them out, you will have to live with it for quite some time =).</p>
http://stackoverflow.com/questions/1464287/css-tag-rendring/1464295#14642950Answer by Maiku Mori for CSS tag rendringMaiku Mori2009-09-23T06:39:36Z2009-09-23T06:46:38Z<p>Nope, there shouldn't be any. At least nothing a user or developer would ever notice.</p>
<p>Usually navigation menu consists of links in no particular order (other then the one in which you put em), that's why people use unordered list (ul). It's just a logical decision, you could easily simulate ul while using ol and vice versa using css and maybe a little bit more text.</p>
http://stackoverflow.com/questions/1196915/how-do-i-dynamically-add-points-to-a-google-map-when-the-bounds-change/1197067#11970671Answer by Maiku Mori for How do I dynamically add points to a Google Map when the bounds change?Maiku Mori2009-07-28T22:18:35Z2009-08-06T18:59:59Z<p>I'm using <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markermanager/" rel="nofollow">this</a> in one of my sites. I think it's exactly what you are looking for. But be warned "gmaps-utility-library" plugins have some buggy/bad code so it's a good idea to go over it and double check if everything is working as it should (I haven't encountered any bugs in marker manager but in some other plugins from that library).</p>
<p>Here's <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markermanager/1.1/docs/reference.html" rel="nofollow">reference</a> and <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markermanager/1.1/docs/examples.html" rel="nofollow">examples</a>.</p>
<p>Even if you want to code your own this one is probably a good starting point.</p>
<p>EDIT</p>
<p>My answer for 3-4:</p>
<p>It really depends on situation. If it's static (you just need to manage a lot points on map > 300) then you could serve all points together with the page where the map is located in (as JavaScript array for example). If user interacts with data then probably it's better to use AJAX. If you use jQuery (or any other JS library) in your site then use ajax function from that library if not then go with the one which comes from gmaps. It's because it's nice to use same AJAX function in whole site instead of using 2 which does the same job.</p>
<p>If you are taking AJAX path you have 2 options:</p>
<ol>
<li>Load all markers for whole map in one request.</li>
<li>Load markers that shows up on user screen + small margin.</li>
</ol>
<p>If you expect that user wants to see the big picture or that he will want to see all/most of the points then go for option 1 + marker manager (like the one I recommended or your own similar).</p>
<p>If there's really a lot of points and user will never be interested in most of them then go for option 2 + manager or just this simple algorithm: Clear map -> Request points for map window bounds + magin / (Cache) -> Draw points -> Repeat for each move/zoom.</p>
<p>From personal experience (I've used both AJAX options) marker manager does quite nice job, can handle a lot points and overall user experience is a lot smoother then loading points for just viewport. Requesting new points and drawing them on map is quite laggy/choppy. Of course it depends on amount of points.</p>
http://stackoverflow.com/questions/1221784/how-can-i-make-dynamic-text-scroll-on-a-curve-in-html-javascript-css/1221805#12218050Answer by Maiku Mori for How can I make dynamic text scroll on a curve in HTML/Javascript/CSS?Maiku Mori2009-08-03T11:24:54Z2009-08-03T12:46:22Z<p>Well you could animate each single letter or pair of letters. It's doable but it would be a lot more effective/faster with Flash. You would have to make mathematical representation of the curve.</p>
<p>Is it really necessary? Flashing/moving text isn't really considered good design practice. Of course there are exceptions.</p>
<p>Edit:</p>
<p>See comments for more pointers to solution.</p>
http://stackoverflow.com/questions/1147029/google-maps-server-side-clustering-is-still-quite-slow-do-i-use-mapplets/1204726#12047260Answer by Maiku Mori for Google Maps - server side clustering is still quite slow - do I use mapplets?Maiku Mori2009-07-30T06:08:41Z2009-07-30T06:24:16Z<p>Well you could try using <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markerclusterer/1.0/docs/reference.html" rel="nofollow">MarkerClusterer</a> (<a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markerclusterer/1.0/docs/examples.html" rel="nofollow">examples</a>).</p>
<p>For more information read <a href="http://stackoverflow.com/questions/1196915/how-do-i-dynamically-add-points-to-a-google-map-when-the-bounds-change/1197067#1197067">my answer on similar question</a> where I suggested another plugin from that library which also happens to have clustering support.</p>
<p><hr /></p>
<p>Also to answer your question why that map is not "dying":</p>
<p>It's not dying because everything you see is actually an image. I'm not sure if I can hotlink it from here but try <a href="http://mlt2.google.com/mapslt?lyrs=org.wikipedia.en&x=8&y=6&z=4&w=256&h=256&hl=en" rel="nofollow">this link</a>. Since it's just an overlay image, you don't have to draw markers. Clicks on the image are processed by JavaScript and a pop-up is drawn if you click on the image where a marker should be located.</p>
http://stackoverflow.com/questions/1199793/extra-parameter-in-post-request-using-chrome1Extra "_" parameter in POST request using Chrome.Maiku Mori2009-07-29T12:07:12Z2009-07-29T21:08:26Z
<p>When I use Google Chrome to make an AJAX POST request I get extra <strong>empty</strong> parameter "_" on server-side.</p>
<p>Here's some background information:</p>
<ul>
<li>Web-server: <a href="http://pythonpaste.org/script/" rel="nofollow">Python Paste</a></li>
<li>Back-end: <a href="http://pylonshq.com/" rel="nofollow">Python 2.6/Pylons</a></li>
<li>Browser: <a href="http://dev.chromium.org/getting-involved/dev-channel" rel="nofollow">Google Chrome 3.0.195.1</a></li>
<li>JavaScript Library: <a href="http://www.prototypejs.org/" rel="nofollow">Prototype 1.6.1 RC3</a></li>
</ul>
<p>For example simple:</p>
<pre><code>>>print sorted(request.POST.keys())
['_','my_parameter']
</code></pre>
<p>I've Googled and I found few posts in mailing lists mentioning the same problem but I couldn't find an answer why is that happening. There were people reporting same issue using PHP and Safari so I don't think it's Server/Back-end related. I tested the same page with Firefox and I didn't get the extra parameter.</p>
<p>I've checked HTTP 1.1 specification and couldn't find anything related.</p>
<p>The strange thing is that I have never noticed this behaviour before.</p>
<p>I haven't written a separate test to test it on all modern browsers yet, I though I'd ask here first. I expect the same problem might happen with Safari.</p>
<p><hr /></p>
<p>A small side question; is it bad practice to expect that browser will only post the parameters which I expect or there's a chance that browser will post unnecessary/unexpected parameters like in this case.</p>
<p><hr /></p>
<h2>Answer</h2>
<p>As Blixt suggested the problem was in Prototype:</p>
<pre><code>if (params = Object.toQueryString(params)) {
if (this.method == 'get')
this.url += (this.url.include('?') ? '&' : '?') + params;
else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
params += '&_=';
}
</code></pre>
<p>Found <a href="https://prototype.lighthouseapp.com/projects/8886/tickets/327-remove-the-%5F-ajax-workaround-for-safari" rel="nofollow">it in bug tracker</a> as well. Looks like this is fixed on Safari side, but it still in prototype code as workaround.</p>
http://stackoverflow.com/questions/1186715/how-does-google-calendar-print-work/1186745#11867452Answer by Maiku Mori for How does google calendar print work?Maiku Mori2009-07-27T06:39:28Z2009-07-27T10:29:12Z<p>It is just a popup window with some options which are posted to server-side script which generates a .pdf document.</p>
<p>You could use</p>
<pre><code><link media="print" rel="stylesheet" type="text/css" href="main.css" />
</code></pre>
<p>to do something similar without using serverside script which generates image/pdf.</p>
<p>Note the <strong>media="print"</strong>, that means that given stylesheet is going to be used when you print the page. You can specify custom css rules (like hide navigation, make calendar look nice on paper, etc) there.</p>
<p>EDIT:</p>
<p>In response to comment. If you convert the html to pdf it will look exactly the same. When you submit that form in google calendar they take all those options and generate pdf from them. If you chose landscape, they will rotate the page and recalculate everything so that it fits the page. To simplify it for you, they draw an image on server-side according to the options you submit and put it into pdf.</p>
<p>It's not that simple if you haven't done it before. I would play around with css and JavaScript on that print page and see if I can mimic something like that by switching between landscape and portrait using JS and css rules (make 2 buttons - "landscape", "portrait", when user clicks on them you change css rules for your calendar so that it fits given paper size). Again if you are not familiar with css then it will be hard.</p>
<p>There is no definite answer, the path google took is very nice, but it's not that simple to reproduce.</p>
<p>More info in comments.</p>
http://stackoverflow.com/questions/1101334/ie8-css-bug-not-displaying-div-correctly-with-javascript/1184150#11841500Answer by Maiku Mori for IE8 CSS Bug? Not displaying DIV correctly with javascriptMaiku Mori2009-07-26T09:34:37Z2009-07-26T09:34:37Z<p>I couldn't reproduce the bug because you applied that fix. But I did take a look at the source. The way you are animating that progress bar just begs for bugs. Try compatibility mode in IE8 and you will see that it's shrinking instead of growing (because the element is centred) and that progressbar-completed element is 2x bigger then container. Same in Chrome and probably Safari.</p>
<p>This is how I would do it:</p>
<p><img src="http://www.maikumori.com/host/progress.png" alt="progressbar" /></p>
<p>Make A constant for example 250px. Then you have to make a background image with same size as A containing progress bar as if it was at 100%.</p>
<p>Then:</p>
<p><a href="http://www.w3schools.com/css/pr%5Fbackground-position.asp" rel="nofollow">background-position</a> = B = -1 * Math.Round(A * UploadedSize / FileSize)</p>
<p>Pros:</p>
<ul>
<li>Takes less markup</li>
<li>If you make background image 2*A and B = B + A then you can have custom image for "blank" space therefore you can make fancier progress bars easily</li>
<li>Should work in most modern and not so modern browsers</li>
<li>Doesn't make a mess if user has css/javascript disabled</li>
</ul>
<p>Cons:</p>
<ul>
<li>A must be constant</li>
<li>Haven't tested =(</li>
</ul>
<p>P.S.
Sorry for blinding colours, couldn't change them afterwards ... mspaint</p>
http://stackoverflow.com/questions/1135819/what-coding-conventions-that-help-jquery-and-firebug-work-together/1164763#11647630Answer by Maiku Mori for What coding conventions that help jQuery and Firebug work together?Maiku Mori2009-07-22T11:54:42Z2009-07-22T12:08:16Z<p>First off make sure you've read <a href="http://getfirebug.com/docs.html" rel="nofollow">Firebug's docs</a>. Some of the commands work cross-brower with other tools as well.</p>
<p>A simple <a href="https://addons.mozilla.org/en-US/firefox/search?q=firebug&cat=all" rel="nofollow">search query</a> will show you all available extensions for Firebug. As some people mentioned - some of them are really helpful.</p>
<p>Also it's important not to limit yourself to just a single tool since you will most likely be developing for multiple browsers. So make sure you take a look at webkits developer tools (Safari, Chrome) as well. Here's a <a href="http://www.sitepoint.com/blogs/2008/06/17/in-browser-development-tools-firebug-still-king/" rel="nofollow">good article</a> which sums up the most popular development/debug tools.</p>
<p>You might want to research how jQuery/jQuery plugins are structured/organized so you have general idea how to organise your own JavaScript/jQuery code. It all depends how JavaScript heavy is your application. If jQuery just provides some visual enhancements and few Ajaxified pages here and there, don't bother. From other hand if it's very JavaScript heavy (as in a lot more site logic on client-side then on backend) I would suggest Prototype over jQuery, but it's just my opinion. </p>
<p>You could consider using automatic tools to build your JavaScript if you have a lot of code.
For example:</p>
<ul>
<li><a href="http://getsprockets.org/" rel="nofollow">Sprockets</a></li>
<li><a href="http://github.com/cjohansen/juicer/tree/master" rel="nofollow">Juicer</a></li>
</ul>
<p>On production server you want to end up with as few JavaScript files as possible and make sure to compress em.</p>
<p>If you're interested in more links to articles/tools for javascript heavy applications, drop a comment. I'm just trying to stay on topic at the moment.</p>
http://stackoverflow.com/questions/385837/simple-web-page-layout-and-templating-in-php/402329#402329Comment by Maiku Mori on Simple web page layout and templating in PHPMaiku Mori2009-11-28T20:32:20Z2009-11-28T20:32:20ZYep, you can use almost all Zend Framework's components independently.http://stackoverflow.com/questions/1799912/when-not-to-use-ajax-in-web-application-development/1799975#1799975Comment by Maiku Mori on When NOT to use AJAX in web application development?Maiku Mori2009-11-26T01:15:51Z2009-11-26T01:15:51ZYou can actually use <a href="http://docs.jquery.com/Events/jQuery.Event#event.preventDefault.28.29" rel="nofollow">docs.jquery.com/Events/…</a> . Javascript code in onClick is harder to manage.http://stackoverflow.com/questions/1788755/firefox-not-respecting-line-height/1788818#1788818Comment by Maiku Mori on Firefox not respecting line-heightMaiku Mori2009-11-24T18:15:03Z2009-11-24T18:15:03ZYour comment inspired me to write this small user script for Chrome which turns accept question images into smaller greyed out peaces of cake and accepted answer image into this <a href="http://tinyurl.com/ycf3m43" rel="nofollow">tinyurl.com/ycf3m43</a> Many cakes++ for you =)http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T15:01:39Z2009-11-24T15:01:39ZIt could be because you use exit(0);http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T14:01:23Z2009-11-24T14:01:23ZIt should be something along the lines of what I wrote into that pastebin.http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T13:56:12Z2009-11-24T13:56:12ZHere, try this: <a href="http://pastebin.com/f66481a6e" rel="nofollow">pastebin.com/f66481a6e</a>http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T13:47:13Z2009-11-24T13:47:13ZActually I'm wrong, you will have to "hack" baseController to allow you to disable layout.http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T13:43:24Z2009-11-24T13:43:24ZI dug into WEB2BB framework (the documentation is horrible =( ). It seems that all you need to do is get FrontController instance in your action and then $fc->setBody($JSONString); where JSON string is your JSON data.http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layout/1789803#1789803Comment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T13:10:14Z2009-11-24T13:10:14ZMaybe tell us which php framework you're using. Some of them have their own custom functions to send out headers. But it's seems that the headers is just a minor problem for you. As far as I can understand you're not getting the right content either (you get full page instead of JSON). That means that you have error in the detection or you're sending out layout + JSON. There is a way to disable layouts for some actions, maybe that's what you're looking for. For example if you're using Zend PHP Framework then the function to disable layout is: $this->_helper->layout->disableLayout();http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T12:55:35Z2009-11-24T12:55:35ZWell the headers should be different, maybe your AJAX detection isn't working. I'm going to add a screenshot of valid Ajax request + Response.http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layoutComment by Maiku Mori on call a php controller with ajax (how to disable layout)Maiku Mori2009-11-24T12:18:12Z2009-11-24T12:18:12ZAdd some code where you make the request. It's not clear which part you do not understand and need help with.http://stackoverflow.com/questions/1737013/how-can-i-make-this-python-code-more-usable-and-readable/1737052#1737052Comment by Maiku Mori on How Can I Make This Python Code More Usable And Readable?Maiku Mori2009-11-15T10:49:43Z2009-11-15T10:49:43ZOh yeah, you could also write it using recursion (probably more pythonic).http://stackoverflow.com/questions/1737013/how-can-i-make-this-python-code-more-usable-and-readable/1737052#1737052Comment by Maiku Mori on How Can I Make This Python Code More Usable And Readable?Maiku Mori2009-11-15T10:47:23Z2009-11-15T10:47:23ZI've updated with some code, sorry for delay something came up.http://stackoverflow.com/questions/1727220/should-i-learn-the-google-closure-javascript-framework-or-is-it-just-a-passing/1727290#1727290Comment by Maiku Mori on Should I learn the Google Closure JavaScript framework, or is it just a passing (albeit Google branded) framework?Maiku Mori2009-11-13T07:02:10Z2009-11-13T07:02:10ZThe funny thing is that it isn't fully optimized. There are even places with for (i = 0; i < some_array.length;i++). Maybe not that important, but I did expect that Google would optimize everything down to very last bit, especially since they have used it internally for years. But the whole package overall looks quite nice, especially the way it's structured.http://stackoverflow.com/questions/1693765/google-closure-compiler-error-variable-compiled-first-declared-in-syntheticvarsComment by Maiku Mori on Google closure compiler error "Variable COMPILED first declared in {SyntheticVarsDeclar}"Maiku Mori2009-11-10T03:00:05Z2009-11-10T03:00:05ZCould you provide the 2 lines where COMPILED is used/declard?