User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T20:53:53Z http://stackoverflow.com/feeds/user/89818 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1881310/elo-rating-system-start-value 3 Elo rating system: start value marco92w 2009-12-10T14:24:59Z 2009-12-18T08:31:48Z <p>I've implemented an Elo rating system in a game. There is no limit for the number players. Players can join the game constantly so the number of players probably rises gradually.</p> <p>How the Elo values are exactly calculated isn't important because of this fact: If team A beats team B then A's Elo win equals B's Elo loss.</p> <p>Hence I've got a problem concerning the starting values for my rating system:</p> <ul> <li>Should I use the starting value "0" for every player? The sum of all Elo values would be constant. But since the number of players is increasing there would be some kind of Elo deflation, wouldn't it?</li> <li>Should I use any starting value greater than 0? In this case, the sum of all Elo values would constantly increase. So there could be an Elo inflation. The problem: Elo points lose value but the starting value keeps always the same.</li> </ul> <p>What should I do? Can you help me? Thanks in advance!</p> http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com 10 1 vs 1 vote: calculate ratings (Flickchart.com) marco92w 2009-12-06T16:25:04Z 2009-12-16T06:49:32Z <p>Instead of rating items with grades from 1 to 10, I would like to have 1 vs 1 "fights". Two items are displayed beside each other and you pick the one which you like more. Based on these "fight" results, an algorithm should calculate ratings for each item.</p> <p>You can see this approach on <a href="http://www.flickchart.com/faq" rel="nofollow">Flickchart.com</a> where movies are rated using this approach.</p> <p>It looks like this:</p> <p><img src="http://i45.tinypic.com/2nv3ugy.jpg" alt="Screenshot" /></p> <p>As you can see, items are pushed upwards if they win a "fight". The ranking is always changing based on the "fight" results. But this can't be only based on the win quote (here 54%) since it's harder to win against "Titanic" than against "25th Hour" or so.</p> <p>There are a few things which are quite unclear for me: - How are the ratings calculated? How do you decide which film is on the first place in the ranking? You have to consider how often an items wins and how good are the beaten items. - How to choose which items have a "fight"?</p> <p>Of course, you can't tell me how Flickchart exactly does this all. But maybe you can tell me how it could be done. Thanks in advance!</p> http://stackoverflow.com/questions/1868615/lyrics-flow-delphi-pseudo-code 1 Lyrics flow (Delphi / pseudo-code) marco92w 2009-12-08T17:40:57Z 2009-12-09T06:28:08Z <p>I would like to build a program which lets lyrics of a song run over the screen. Something like this:</p> <p><a href="http://www.youtube.com/watch?v=kIAiBvD9njM" rel="nofollow">http://www.youtube.com/watch?v=kIAiBvD9njM</a></p> <p>Can you help me?</p> <p><strong>Algorithm:</strong></p> <ul> <li>pushes the marker to the right of a line fitting the music</li> <li>lets a line above the current line disappear</li> <li>inserts a new line above the current line</li> </ul> <p><strong>What is needed?</strong></p> <ul> <li>lyrics of the song (line per line)</li> <li>time to text data? (when does a line start/end)</li> </ul> <p>Some approaches would help me a lot. Pseudo-code or even Delphi code of any part would be fantastic.</p> http://stackoverflow.com/questions/1869454/php-variable-empty-or-not-set-or-what 3 PHP: Variable empty or not set or what? marco92w 2009-12-08T20:01:26Z 2009-12-08T20:14:43Z <p>What is the difference between these four PHP statements?</p> <pre><code>if (isset($data)) { if (!empty($data)) { if ($data != '') { if ($data) { </code></pre> <p>Do they all do the same?</p> http://stackoverflow.com/questions/1867589/php-problems-with-facebook-connect-authentification 0 PHP: Problems with Facebook Connect authentification marco92w 2009-12-08T15:09:57Z 2009-12-08T18:32:00Z <p>I would like to develop an external website using Facebook Connect instead of an own login and registration process.</p> <p>On the first page (index.php) I have the following code for the login button:</p> <pre><code>&lt;fb:login-button v="2" size="large" autologoutlink="false" onlogin="window.location='/index.php'"&gt;Connect with Facebook&lt;/fb:login-button&gt; </code></pre> <p>For authentification, I use <a href="http://wiki.developers.facebook.com/index.php/PHP" rel="nofollow">this library for PHP</a>.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"&gt; &lt;head&gt; &lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt; &lt;meta http-equiv="content-language" content="de" /&gt; &lt;meta http-equiv="content-script-type" content="text/javascript" /&gt; &lt;meta http-equiv="content-style-type" content="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/de_DE" type="text/javascript"&gt;&lt;/script&gt;&lt;script type="text/javascript"&gt;FB.init("XYZ");&lt;/script&gt; &lt;?php error_reporting(E_ALL); include_once '/XYZ/facebook.php'; include_once 'lib.php'; include_once 'config.php'; $facebook = new Facebook($api_key, $secret); $user = $facebook-&gt;require_login(); $loggedin = FALSE; if (isset($user)) { if ($user != '') { echo '&lt;p&gt;Hello &lt;fb:name firstnameonly="true" uid="'.$user.'" useyou="false" /&gt;&lt;/p&gt;'; echo '&lt;p&gt;&lt;a href="#" onclick="javascript:FB.Connect.logoutAndRedirect(\'/\'); return false"&gt;Log out&lt;/a&gt;&lt;/p&gt;'; $loggedin = TRUE; } } if ($loggedin == FALSE) { echo '&lt;p&gt;&lt;fb:login-button onlogin="window.location=\'/\'"&gt;&lt;/fb:login-button&gt;&lt;/p&gt;'; } ?&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Unfortunately, it doesn't work yet. What is wrong here?</p> <p>When I want to access this page, I'm redirected to <a href="http://i46.tinypic.com/2ahward.jpg" rel="nofollow">http://www.facebook.com/login.php?api_key=XYZ&amp;v=1.0&amp;next=XYZ</a> where I have to log in. Then, being logged in to Facebook, I'm redirected again. This time, I get to <a href="http://i49.tinypic.com/33d8b2w.jpg" rel="nofollow">https://login.facebook.com/login.php?auth_token=XYZ</a></p> http://stackoverflow.com/questions/1856570/facebook-connect-authentication-and-security 1 Facebook Connect - Authentication and Security marco92w 2009-12-06T20:52:41Z 2009-12-08T15:08:26Z <p>I would like to develop an external website using Facebook Connect instead of an own login and registration process.</p> <p>First: Please don't answer "See documentation on facebook.com" or so. I've read all pages there several times I think. But I can't find an answer.</p> <p>For my login button I use this code:</p> <pre><code>&lt;fb:login-button v="2" size="large" autologoutlink="false" onlogin="window.location='/index.php'"&gt;Connect with Facebook&lt;/fb:login-button&gt; </code></pre> <p>To show the current user's name I use:</p> <pre><code>&lt;fb:name uid="loggedinuser" linked="true" firstnameonly="false" possessive="false" useyou="false" ifcantsee="Facebook-User"&gt;&lt;/fb:name&gt; </code></pre> <p>And finally, for the logout, I use the following link:</p> <pre><code>&lt;a href="#" onclick="javascript:FB.Connect.logoutAndRedirect('/index.php'); return false"&gt;Logout&lt;/a&gt; </code></pre> <p>That's quite easy. It's well explained in the documentation.</p> <p>But my problems start when I want to detect whether a user is logged in or not. Facebook explains everything concerning this topic on <a href="http://wiki.developers.facebook.com/index.php/Detecting_Connect_Status" rel="nofollow">this page</a>.</p> <p>But I don't understand what I have to do. What I <em>want</em> to do is this:</p> <ul> <li>If a user requests the page "members.php" and he isn't logged in, there should be a message or he should be redirected. But Facebook's JavaScript function isn't secure, is it? Normally, I use server side authentication.</li> <li>I would like to know whether a user is logged in or not to show the login button or the logout link.</li> <li>If a user is logged in, I would like to know his user id on Facebook.</li> </ul> <p>Thanks for your help in advance!</p> http://stackoverflow.com/questions/742013/how-to-code-a-url-shortener 13 How to code a URL shortener? marco92w 2009-04-12T16:29:15Z 2009-12-03T05:49:30Z <p>I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to "<code>http://www.example.org/abcdef</code>". Instead of "<code>abcdef</code>" there can be any other string with six characters containing <code>a-z, A-Z and 0-9</code>. That makes 56 trillion possible strings.</p> <p>My approach:</p> <p>I have a database table with three columns:</p> <ol> <li>id, integer, auto-increment</li> <li>long, string, the long URL the user entered</li> <li>short, string, the shortened URL (or just the six characters)</li> </ol> <p>I would then insert the long URL into the table. Then I would select the auto-increment value for "<code>id</code>" and build a hash of it. This hash should then be inserted as "<code>short</code>". But what sort of hash should I build? Hash algorithms like MD5 create too long strings. I don't use these algorithms, I think. A self-built algorithm will work, too.</p> <p>My idea:</p> <p>For "<code>http://www.google.de/</code>" I get the auto-increment id <code>239472</code>. Then I do the following steps:</p> <pre><code>short = ''; if divisible by 2, add "a"+the result to short if divisible by 3, add "b"+the result to short ... until I have divisors for a-z and A-Z. </code></pre> <p>That could be repeated until the number isn't divisible any more. Do you think this is a good approach? Do you have a better idea?</p> http://stackoverflow.com/questions/761216/how-to-code-an-artificial-neural-network-tic-tac-toe 4 How to code an artificial neural network (Tic-tac-toe)? marco92w 2009-04-17T16:48:29Z 2009-12-01T15:47:39Z <p>Hello!</p> <p>I want to play Tic-tac-toe using an artificial neural network. My configuration for the network is as follows: For each of the 9 fields, I use 2 input neuron. So I have 18 input neurons, of course. For every field, I have 1 input neuron for a piece of Player 1 and 1 neuron for a piece of Player 2. In addition to that, I have 1 output neuron which gives an evaluation of the current board position. The higher the output value is, the better is the position for Player 1. The lower it is, the better is it for Player 2.</p> <p>But my problem is: How could I code that neural network? My idea was to use an Array[1-18] for the input neurons. The values of this array are the input weights. The I would walk through the array using a loop. Whenever there is a neuron to be activated, I add the weight to the output value. So the output value is the sum of the weights of the activated input neurons:</p> <pre><code>Output = SUM(ActivatedInputNeurons) </code></pre> <p>Do you think this is a good way of programming the network? Do you have better ideas?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1822305/combine-pairs-to-groups-php-arrays 0 Combine pairs to groups [PHP / Arrays] marco92w 2009-11-30T20:49:46Z 2009-11-30T21:34:34Z <p>I have pairs of items in an PHP array. Example:</p> <pre><code>&lt;?php $elements = array( 'tiger'=&gt;'lion', 'car'=&gt;'bike', 'lion'=&gt;'zoo', 'truck'=&gt;'plane' ); ?&gt; </code></pre> <p>Now I want to combine these items so that all items which are connected in any way go to one group. Continuation of the example above:</p> <pre><code>&lt;?php $groups = array( 0=&gt;array('tiger', 'lion', 'zoo'), 1=&gt;array('car', 'bike'), 2=&gt;array('truck', 'plane' ); ?&gt; </code></pre> <p>Is this understandable? How could I achieve this?</p> <p>I'm looking for a function which does this.</p> http://stackoverflow.com/questions/1777089/measuring-online-time-on-website 1 Measuring online time on website marco92w 2009-11-21T23:03:08Z 2009-11-22T00:08:56Z <p>Hello!</p> <p>I would like to measure how much time a user spends on my website. It's needed for a community site where you can say: "User X has been spending 1397 minutes here."</p> <p>After reading some documents about this, I know that there is no perfect way to achieve this. You can't measure the exact time. But I'm looking for an approach which gives a good approximation.</p> <p>How could you do this? My ideas: 1) Adding 30 seconds to the online time counter on every page view. 2) On every page view, save the current timestamp. On the next view, add the difference between the saved timestamp and the current timestamp to the online time counter.</p> <p>I use PHP and MySQL if this does matter.</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1248851/self-regulation-of-a-mini-economy 6 Self-regulation of a mini economy marco92w 2009-08-08T13:09:37Z 2009-11-09T21:46:35Z <p>Hello!</p> <p>At first: I'm not sure if it's an adequate question for Stack Overflow. It's not just about programming, it's about game design. But I'll try it ...</p> <p>I would like to deal with "Possibilities for self-regulation in a mini economy with the example manager game" in a skilled work.</p> <p><strong>Initial situation:</strong></p> <p>I've selected "hattrick.org" as an example. I want to analyze the economy and find possibilities to make the game economy regulate itself.</p> <p><strong>Problems:</strong></p> <ul> <li>Teams which are deleted cause big changes in the recirculated quantity of money. If a manager deletes his team which has got 200,000,000, the recirculated quantity decreases fast.</li> <li>The recirculated quantity has to grow from season to season in order to keep the game interesting.</li> <li>Money mustn't be distributed unfairly: It can't be permitted that 1% of the teams own 20% of the money.</li> </ul> <p><strong>Approaches:</strong></p> <ol> <li>Decay of values: Players end their career earlier so that money (market value) leaves the system earlier/faster.</li> <li>Percentaged taxes on player trades and money transfers: Whenever two human managers exchange money, a part of it must leave the system. The higher the exchanged value, the higher the amount which leaves the system.</li> <li>KI teams (money transfers to them leave the system) sell players for 200% of their market value. Thus 50% of the money is "lost" and leaves the system.</li> <li>Temporary advantages: Teams may buy temporary advantages for high amounts of money, e.g. improving the fitness level of their players (fitness coaches are expensive).</li> <li>Limit help between human managers (not concerning problems but money), e.g.: Players can only change teams every third season so that teams can't make money that fast.</li> <li>Bank accounts of teams can only keep limited amounts of money. Earnings exceeding this limit are lost so that the rich teams can never get too rich.</li> <li>Teams must pay taxes on capital exceeding a given limit, e.g. the limit 300,000,000 with the percentage 10%. => A team with 310,000,000 loses 1,000,000 and on the next day 900,000.[/list]</li> <li>Watch sources: If a source is generating too much money, it gets reduced.</li> </ol> <p>What do you think about these approaches? Are they good? Would they work?</p> <p>I hope you can help me. Thanks alot in advance!</p> <p><strong>Edit: Additional question:</strong> I've read the following: "If the drains (costs) are fixed, the collapse is just a matter of when. So tie the drains to the price level (P=MV/Q)." Is this correct? Is it the solution for my problem?</p> <p><img src="http://i26.tinypic.com/1tub89.jpg" alt="economy model" /></p> http://stackoverflow.com/questions/960060/singular-value-decomposition-svd-in-php 5 Singular Value Decomposition (SVD) in PHP marco92w 2009-06-06T16:25:02Z 2009-10-18T17:09:17Z <p>Hello!</p> <p>I would like to implement Singular Value Decomposition (SVD) in PHP. I know that there are several external libraries which could do this for me. But I have two questions concerning PHP, though: 1) Do you think it's possible and/or reasonable to code the SVD in PHP? 2) If (1) is yes: Can you help me to code it in PHP?</p> <p>I've already coded some parts of SVD by myself. <a href="http://paste.bradleygill.com/index.php?paste_id=10052" rel="nofollow">Here's the code</a> which I made comments to the course of action in. Some parts of this code aren't completely correct.</p> <p>It would be great if you could help me. Thank you very much in advance!</p> http://stackoverflow.com/questions/753954/how-to-program-a-neural-network-for-chess 2 How to program a neural network for chess? marco92w 2009-04-15T22:15:20Z 2009-10-06T05:14:40Z <p>Hello!</p> <p>I want to program a chess engine which learns to make good moves and win against other players. I've already coded a representation of the chess board and a function which outputs all possible moves. So I only need an evaluation function which says how good a given situation of the board is. Therefore, I would like to use an artificial neural network which should then evaluate a given position. The output should be a numerical value. The higher the value is, the better is the position for the white player.</p> <p>My approach is to build a network of 385 neurons: There are six unique chess pieces and 64 fields on the board. So for every field we take 6 neurons (1 for every piece). If there is a white piece, the input value is 1. If there is a black piece, the value is -1. And if there is no piece of that sort on that field, the value is 0. In addition to that there should be 1 neuron for the player to move. If it is White's turn, the input value is 1 and if it's Black's turn, the value is -1.</p> <p>I think that configuration of the neural network is quite good. But the main part is missing: How can I implement this neural network into a coding language (e.g. Delphi)? I think the weights for each neuron should be the same in the beginning. Depending on the result of a match, the weights should then be adjusted. But how? I think I should let 2 computer players (both using my engine) play against each other. If White wins, Black gets the feedback that its weights aren't good.</p> <p>So it would be great if you could help me implementing the neural network into a coding language (best would be Delphi, otherwise pseudo-code). Thanks in advance!</p> http://stackoverflow.com/questions/1439102/improving-soccer-simulation-algorithm 2 Improving soccer simulation algorithm marco92w 2009-09-17T14:04:12Z 2009-09-25T01:29:01Z <p>Hello!</p> <p>In another question, you helped me to build a simulation algorithm for soccer. <a href="http://stackoverflow.com/questions/1427043/soccer-simulation-for-a-game">I got some very good answers there.</a> Thanks again!</p> <p>Now I've coded this algorithm. I would like to improve it and find little mistakes which could be in it. I don't want to discuss how to solve it - as we did in the last question. Now I only want to improve it. Can you help me again please?</p> <ol> <li>Are there any mistakes?</li> <li>Is the structure of the nested if-clauses ok? Could it be improved?</li> <li>Are the tactics integrated correctly according to my description?</li> </ol> <p><strong>Tactical settings which should have an influence on the randomness:</strong></p> <ul> <li>$tactics[x][0] adjustment (1=defensive, 2=neutral, 3=offensive): the higher the value is the weaker is the defense and the stronger is the offense</li> <li>$tactics<a href="http://stackoverflow.com/questions/1427043/soccer-simulation-for-a-game">x</a> speed of play (1=slow, 2=medium, 3=fast): the higher the value is the better are the opportunities but the higher is the risk of getting a quick counter attack</li> <li>$tactics[x][2] distance of passes (1=short, 2=medium, 3=long): the higher the value is the less but better opportunities you get and the more often you are offside</li> <li>$tactics[x][3] creation of changes (1=safe, 2=medium, 3=risky): the higher the value is the better are your opportunities but the higher is the risk of getting a quick counter attack</li> <li>$tactics[x][4] pressure in defense (1=low, 2=medium, 3=high): the higher the value is the more quick counter attacks you will have</li> <li>$tactics[x][5] aggressivity (1=low, 2=medium, 3=high): the higher the value is the more attacks you will stop by fouls</li> </ul> <p><strong>Note:</strong> Tactic 0 and tactic 4 are partly integrated in the rest of the engine, not needed in this function.</p> <p><strong>The current algorithm:</strong></p> <pre><code>&lt;?php function tactics_weight($wert) { $neuerWert = $wert*0.1+0.8; return $neuerWert; } function strengths_weight($wert) { $neuerWert = log10($wert+1)+0.35; return $neuerWert; } function Chance_Percent($chance, $universe = 100) { $chance = abs(intval($chance)); $universe = abs(intval($universe)); if (mt_rand(1, $universe) &lt;= $chance) { return true; } return false; } function simulate_attack($teamname_att, $teamname_def, $strength_att, $strength_def) { global $minute, $goals, $_POST, $matchReport, $fouls, $yellowCards, $redCards, $offsides, $shots, $tactics; // input values: attacker's name, defender's name, attacker's strength array, defender's strength array // players' strength values vary from 0.1 to 9.9 $matchReport .= '&lt;p&gt;'.$minute.'\': '.comment_action($teamname_att, 'attack'); $offense_strength = $strength_att['forwards']/$strength_def['defenders']; $defense_strength = $strength_def['defenders']/$strength_att['forwards']; if (Chance_Percent(50*$offense_strength*tactics_weight($tactics[$teamname_att][1])/tactics_weight($tactics[$teamname_att][2]))) { // attacking team passes 1st third of opponent's field side $matchReport .= ' '.comment_action($teamname_def, 'advance'); if (Chance_Percent(25*tactics_weight($tactics[$teamname_def][5]))) { // the defending team fouls the attacking team $fouls[$teamname_def]++; $matchReport .= ' '.comment_action($teamname_def, 'foul'); if (Chance_Percent(43)) { // yellow card for the defending team $yellowCards[$teamname_def]++; $matchReport .= ' '.comment_action($teamname_def, 'yellow'); } elseif (Chance_Percent(3)) { // red card for the defending team $redCards[$teamname_def]++; $matchReport .= ' '.comment_action($teamname_def, 'red'); } // indirect free kick $matchReport .= ' '.comment_action($teamname_att, 'iFreeKick'); if (Chance_Percent(25*strengths_weight($strength_att['forwards']))) { // shot at the goal $shots[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'iFreeKick_shot'); if (Chance_Percent(25/strengths_weight($strength_def['goalkeeper']))) { // attacking team scores $goals[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'shot_score'); } else { // defending goalkeeper saves $matchReport .= ' '.comment_action($teamname_def, 'iFreeKick_shot_save'); } } else { // defending team cleares the ball $matchReport .= ' '.comment_action($teamname_def, 'iFreeKick_clear'); } } elseif (Chance_Percent(17)*tactics_weight($tactics[$teamname_att][2])) { // attacking team is caught offside $offsides[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_def, 'offside'); } else { // attack isn't interrupted // attack passes the 2nd third of the opponent's field side - good chance $matchReport .= ' '.comment_action($teamname_def, 'advance_further'); if (Chance_Percent(25*tactics_weight($tactics[$teamname_def][5]))) { // the defending team fouls the attacking team $fouls[$teamname_def]++; $matchReport .= ' '.comment_action($teamname_def, 'foul'); if (Chance_Percent(43)) { // yellow card for the defending team $yellowCards[$teamname_def]++; $matchReport .= ' '.comment_action($teamname_def, 'yellow'); } elseif (Chance_Percent(3)) { // red card for the defending team $redCards[$teamname_def]++; $matchReport .= ' '.comment_action($teamname_def, 'red'); } if (Chance_Percent(19)) { // penalty for the attacking team $shots[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'penalty'); if (Chance_Percent(77)) { // attacking team scores $goals[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'shot_score'); } elseif (Chance_Percent(50)) { // shot misses the goal $matchReport .= ' '.comment_action($teamname_att, 'penalty_miss'); } else { // defending goalkeeper saves $matchReport .= ' '.comment_action($teamname_def, 'penalty_save'); } } else { // direct free kick $matchReport .= ' '.comment_action($teamname_att, 'dFreeKick'); if (Chance_Percent(33*strengths_weight($strength_att['forwards']))) { // shot at the goal $shots[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'dFreeKick_shot'); if (Chance_Percent(33/strengths_weight($strength_def['goalkeeper']))) { // attacking team scores $goals[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'shot_score'); } else { // defending goalkeeper saves $matchReport .= ' '.comment_action($teamname_def, 'dFreeKick_shot_save'); } } else { // defending team cleares the ball $matchReport .= ' '.comment_action($teamname_def, 'dFreeKick_clear'); } } } elseif (Chance_Percent(62*strengths_weight($strength_att['forwards'])*tactics_weight($tactics[$teamname_att][2])*tactics_weight($tactics[$teamname_att][3]))) { // shot at the goal $shots[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'shot'); if (Chance_Percent(30/strengths_weight($strength_def['goalkeeper']))) { // the attacking team scores $goals[$teamname_att]++; $matchReport .= ' '.comment_action($teamname_att, 'shot_score'); } else { if (Chance_Percent(50)) { // the defending defenders block the shot $matchReport .= ' '.comment_action($teamname_def, 'shot_block'); } else { // the defending goalkeeper saves $matchReport .= ' '.comment_action($teamname_def, 'shot_save'); } } } else { // attack is stopped $matchReport .= ' '.comment_action($teamname_def, 'stopped'); if (Chance_Percent(15*$defense_strength*tactics_weight($tactics[$teamname_att][1])*tactics_weight($tactics[$teamname_att][3])*tactics_weight($tactics[$teamname_def][4]))) { // quick counter attack - playing on the break $strength_att['defenders'] = $strength_att['defenders']*0.8; // weaken the current attacking team's defense $matchReport .= ' '.comment_action($teamname_def, 'quickCounterAttack'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_def, $teamname_att, $strength_def, $strength_att); // new attack - this one is finished } } } } // attacking team doesn't pass 1st third of opponent's field side elseif (Chance_Percent(15*$defense_strength*tactics_weight($tactics[$teamname_att][1])*tactics_weight($tactics[$teamname_att][3])*tactics_weight($tactics[$teamname_def][4]))) { // attack is stopped // quick counter attack - playing on the break $matchReport .= ' '.comment_action($teamname_def, 'stopped'); $strength_att['defenders'] = $strength_att['defenders']*0.8; // weaken the current attacking team's defense $matchReport .= ' '.comment_action($teamname_def, 'quickCounterAttack'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_def, $teamname_att, $strength_def, $strength_att); // new attack - this one is finished } else { // ball goes into touch - out of the field $matchReport .= ' '.comment_action($teamname_def, 'throwIn'); if (Chance_Percent(33)) { // if a new chance is created if (Chance_Percent(50)) { // throw-in for the attacking team $matchReport .= ' '.comment_action($teamname_def, 'throwIn_att'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_att, $teamname_def, $strength_att, $strength_def); // new attack - this one is finished } else { // throw-in for the defending team $matchReport .= ' '.comment_action($teamname_def, 'throwIn_def'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_def, $teamname_att, $strength_def, $strength_att); // new attack - this one is finished } } } $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return TRUE; // finish the attack } </code></pre> http://stackoverflow.com/questions/1460694/why-doesnt-this-drop-down-menu-work-in-ie 0 Why doesn't this drop down menu work in IE? marco92w 2009-09-22T15:10:53Z 2009-09-22T15:48:50Z <p>I have a drop down menu which I found a <a href="http://www.htmldog.com/articles/suckerfish/dropdowns/" rel="nofollow">tutorial</a> for.</p> <p>In Firefox and Opera the drop down menu works fine. But in Internet Explorer it doesn't work. The sub menues are misaligned. They aren't placed under their parent item but a bit more to the right.</p> <p>Why doesn't it work in IE? Is there a mistake in the JavaScript code which should make it work in IE?</p> <p>My users say it doesn't work in IE 7.0.6002.18005 and IE 8.0.6.</p> <p>The quirks mode is only used if the doctype is missing I think. And I have the doctype in my document (without the space at position 2):</p> <p>&lt; !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"></p> <p><strong>HTML:</strong></p> <pre><code>&lt;ul id="nav"&gt; &lt;li class="menuentry"&gt;&lt;a href="#"&gt;Main item 1&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#"&gt;Sub item 1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Sub item 2&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Sub item 3&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li class="menuentry"&gt;&lt;a href="#"&gt;Main item 2&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#"&gt;Sub item 1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Sub item 2&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;Sub item 3&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p><strong>CSS:</strong></p> <pre><code>ul#nav li ul { position: absolute; left: -9999px; top: 100%; display: block; width: 100px; background-color: transparent; } ul#nav li { position: relative; float: left; } /* LINKS IN DROP DOWN LISTS START */ ul#nav li ul li a, ul#nav li#current ul li a { clear: left; display: block; text-decoration: none; width: 100px; background-color: #333; color: #fff; } ul#nav li ul li a:hover, ul#nav li#current ul li a:hover { text-decoration: none; background-color: #ececec; color: #333; } /* LINKS IN DROP DOWN LISTS END */ /* CHANGE BETWEEN VISIBLE AND INVISIBLE START */ ul#nav li:hover ul, #nav li.sfhover ul { left: auto; } /* CHANGE BETWEEN VISIBLE AND INVISIBLE END */ </code></pre> <p><strong>JavaScript:</strong></p> <pre><code>sfHover = function() { var sfEls = document.getElementById("nav").getElementsByTagName("LI"); for (var i=0; i&lt;sfEls.length; i++) { addEvent(sfEls[i], "mouseover", function() { this.className+=" sfhover"; }); addEvent(sfEls[i], "mouseout", function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }); } } function addEvent(el, name, func) { if (el.attachEvent) el.attachEvent("on" + name, func); else el.addEventListener(name, func, false); } addEvent(window, "load", sfHover); </code></pre> http://stackoverflow.com/questions/1460618/speed-up-text-comparisons-feature-vectors-with-spatial-mysql-features 1 Speed up text comparisons (feature vectors) with spatial MySQL features marco92w 2009-09-22T14:59:48Z 2009-09-22T15:29:51Z <p>I have a function which takes two arrays containing the tokens/words of two texts and gives out the cosine similarity value which shows the relationship between both texts.</p> <p>The function takes an array $tokensA (0=>house, 1=>bike, 2=>man) and an array $tokensB (0=>bike, 1=>house, 2=>car) and calculates the similarity which is given back as a floating point value.</p> <pre><code>function cosineSimilarity($tokensA, $tokensB) { $a = $b = $c = 0; $uniqueTokensA = $uniqueTokensB = array(); $uniqueMergedTokens = array_unique(array_merge($tokensA, $tokensB)); foreach ($tokensA as $token) $uniqueTokensA[$token] = 0; foreach ($tokensB as $token) $uniqueTokensB[$token] = 0; foreach ($uniqueMergedTokens as $token) { $x = isset($uniqueTokensA[$token]) ? 1 : 0; $y = isset($uniqueTokensB[$token]) ? 1 : 0; $a += $x * $y; $b += $x; $c += $y; } return $b * $c != 0 ? $a / sqrt($b * $c) : 0; } </code></pre> <p>If I want to compare 75 texts with each other, I need to make 5,625 single comparisons to have all texts compared with each other.</p> <p>Is it possible to use MySQL's spatial columns to reduce the number of comparisons?</p> <p>I don't want to talk about my function or about ways to compare texts. Just about reducing the number of comparisons.</p> <p><strong>MySQL's spatial columns</strong></p> <ul> <li>You create spatial columns with: CREATE TABLE abc (clmnName TYPE)</li> <li>possible types are listed <a href="http://dev.mysql.com/doc/refman/5.1/de/gis-geometry-class-hierarchy.html" rel="nofollow">here</a></li> <li><a href="http://dev.mysql.com/doc/refman/5.0/en/creating-spatial-values.html" rel="nofollow">here</a> is how I select the data later [e.g. MultiPointFromText() or AsText()]</li> <li>You insert values like this: INSERT INTO clmnName VALUES (GeomFromText('POINT(1 1)'))</li> </ul> <p>But how do you use this for my problem?</p> <p>PS: I'm looking for ways to reduce the number of comparisons with algorithms <a href="http://stackoverflow.com/questions/1456343/speed-up-text-comparisons-with-sparse-matrices">in this question</a>. Vinko Vrsalovic told me that I should open another question for the spatial features.</p> http://stackoverflow.com/questions/1456343/speed-up-text-comparisons-with-sparse-matrices 0 Speed up text comparisons (with sparse matrices) marco92w 2009-09-21T19:23:57Z 2009-09-22T14:57:19Z <p>I have a function which takes two strings and gives out the cosine similarity value which shows the relationship between both texts.</p> <p>If I want to compare 75 texts with each other, I need to make 5,625 single comparisons to have all texts compared with each other.</p> <p>Is there a way to reduce this number of comparisons? For example sparse matrices or k-means?</p> <p>I don't want to talk about my function or about ways to compare texts. Just about reducing the number of comparisons.</p> http://stackoverflow.com/questions/1449774/invert-function-base-38-conversion 0 Invert function: base 38 conversion marco92w 2009-09-19T23:17:33Z 2009-09-21T23:24:26Z <p>Hello!</p> <p>Can you tell me how the invert function for the following PHP function is?</p> <pre><code>&lt;?php function id2secure($old_number) { $alphabet_en = '1357902468acegikmoqsuwybdfhjlnprtvxz-_'; $new_number = ''; while ($old_number &gt; 0) { $rest = $old_number%38; if ($rest &gt;= 38) { return FALSE; } $new_number .= $alphabet_en[$rest]; $old_number = floor($old_number/38); } $new_number = strrev($new_number); return $new_number; } echo id2secure(172293); ?&gt; </code></pre> <p>Thank you very much in advance!</p> http://stackoverflow.com/questions/1455578/characters-allowed-in-get-parameter 0 Characters allowed in GET parameter marco92w 2009-09-21T16:59:07Z 2009-09-21T19:11:50Z <p>Hello!</p> <p>Which characters are allowed in GET parameters without encoding or escaping them? I mean something like this:</p> <p><a href="http://www.example.org/page.php?name=XYZ" rel="nofollow">http://www.example.org/page.php?name=XYZ</a></p> <p>What can you have there instead of XYZ? I think only the following characters:</p> <ul> <li>a-z (A-Z)</li> <li>0-9</li> <li>-</li> <li>_</li> </ul> <p>Is this the full list or are there additional characters allowed?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1427043/soccer-simulation-for-a-game 1 Soccer simulation for a game marco92w 2009-09-15T13:02:23Z 2009-09-16T13:43:37Z <p>Hello!</p> <p>I would like to build a simulation engine which can simulate a soccer (association football) match. It would be cool great if you could help me. What is important to me is to decide which actions happen. The event listeners for each action can be implemented later easily. The function should only simulate the game results and comments to happening actions. There is no 2D/3D graphics needed. We're talking about games like <a href="http://www.hattrick.org/" rel="nofollow">Hattrick</a>.</p> <p><hr /></p> <p>I would propose that you have an array of minutes with actions at first.</p> <p>$minutes = array(1, 3, 4, 7, 11, 13, ..., 90, 92);</p> <p>For each of these minutes, you could then simulate an attack.</p> <p>The attacking team is determined by dice before: $attacking = mt_rand(1, 2);</p> <p>So the part which is most important to me is the attack function.</p> <p>Please edit my approach or use it as a sample. Can you help me to improve this? The function should be complex so that the results are as realistic as possible. But you need to find something between high predictability and too random results. I only want to improve this function.</p> <p><strong>My approach:</strong></p> <pre><code>&lt;?php function Chance_Percent($chance, $universe = 100) { $chance = abs(intval($chance)); $universe = abs(intval($universe)); if (mt_rand(1, $universe) &lt;= $chance) { return true; } return false; } function simulate_attack($teamname_att, $teamname_def, $strength_att, $strength_def) { global $minute, $goals, $_POST, $matchReport, $fouls, $yellowCards, $redCards, $offsides, $schuesse, $taktiken; // input values: attacker's name, defender's name, attacker's strength array, defender's strength array // players' strength values vary from 0.1 to 9.9 // ADJUSTMENT START switch ($taktiken[$teamname_att][0]) { case 1: $strength_att['defenders'] *= 1.1; $strength_att['forwards'] *= 0.9; break; case 3: $strength_att['defenders'] *= 0.9; $strength_att['forwards'] *= 1.1; break; } switch ($taktiken[$teamname_def][0]) { case 1: $strength_def['defenders'] *= 1.1; $strength_def['forwards'] *= 0.9; break; case 3: $strength_def['defenders'] *= 0.9; $strength_def['forwards'] *= 1.1; break; } // ADJUSTMENT END $matchReport .= '&lt;p&gt;'.$minute.'\': '.comment($teamname_att, 'attack'); $offense_strength = $strength_att['forwards']/$strength_def['defenders']; $defense_strength = $strength_def['defenders']/$strength_att['forwards']; if (Chance_Percent(50*$offense_strength*($taktiken[$teamname_att][1]/2)*($taktiken[$teamname_att][2]/2))) { // attacking team passes 1st third of opponent's field side $matchReport .= ' '.comment($teamname_def, 'attack_advance'); if (Chance_Percent(25*($taktiken[$teamname_def][4]/2))) { // the defending team fouls the attacking team $fouls[$teamname_def]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul'); if (Chance_Percent(43)) { // yellow card for the defending team // chance is correct for my purpose $yellowCards[$teamname_def]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_yellow'); } elseif (Chance_Percent(3)) { // red card for the defending team // chance is correct for my purpose (only 1.43% because it's an alternative way) $redCards[$teamname_def]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_red'); } // indirect free kick // only 58.23% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick'); if (Chance_Percent(25)) { // shot at the goal $schuesse[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_shot'); if (Chance_Percent(25)) { // attacking team scores (6.25% chance) $goals[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_shot_score'); } else { // defending goalkeeper saves // only 18.75% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_shot_save'); } } else { // defending team cleares the ball // only 75% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_clear'); } } elseif (Chance_Percent(17)) { // attacking team is caught offside // only 4.25% because it's an alternative way $offsides[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_offside'); } else { if (Chance_Percent(25*($taktiken[$teamname_def][4]/2))) { // the defending team fouls the attacking team $fouls[$teamname_def]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul'); if (Chance_Percent(43)) { // yellow card for the defending team // chance is correct for my purpose $yellowCards[$teamname_def]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_yellow'); } elseif (Chance_Percent(3)) { // red card for the defending team // chance is correct for my purpose (only 1.43% because it's an alternative way) $redCards[$teamname_def]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_red'); } if (Chance_Percent(19)) { // penalty for the attacking team $schuesse[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_penalty'); if (Chance_Percent(77)) { // attacking team scores (77% chance according to Wikipedia) $goals[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_penalty_score'); } elseif (Chance_Percent(50)) { // shot misses the goal // only 11.5% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_penalty_miss'); } else { // defending goalkeeper saves // only 11.5% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_penalty_save'); } } elseif (Chance_Percent(28)) { // direct free kick // only 22.68% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_dFreeKick'); if (Chance_Percent(33)) { // shot at the goal $schuesse[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_dFreeKick_shot'); if (Chance_Percent(33)) { // attacking team scores (10.89% chance) $goals[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_dFreeKick_shot_score'); } else { // defending goalkeeper saves $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_dFreeKick_shot_save'); } } else { // defending team cleares the ball // only 77% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_dFreeKick_clear'); } } else { // indirect free kick // only 58.23% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick'); if (Chance_Percent(25)) { // shot at the goal $schuesse[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_shot'); if (Chance_Percent(25)) { // attacking team scores (6.25% chance) $goals[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_shot_score'); } else { // defending goalkeeper saves // only 18.75% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_shot_save'); } } else { // defending team cleares the ball // only 75% because it's an alternative way $matchReport .= ' '.comment($teamname_def, 'attack_advance_foul_iFreeKick_clear'); } } } else { // attack passes the 2nd third of the opponent's field side - good chance $matchReport .= ' '.comment($teamname_def, 'attack_advance_advance'); if (Chance_Percent(62*($taktiken[$teamname_att][1]/2)*($taktiken[$teamname_att][2]/2)/($taktiken[$teamname_att][2]/2)*($taktiken[$teamname_att][3]/2)/($taktiken[$teamname_def][4]/2))) { // shot at the goal $schuesse[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_advance_shot'); if (Chance_Percent(30*$strength_def['goalkeeper']/7/($taktiken[$teamname_att][2]/2))) { // the attacking team scores // only 8.78% because it's an alternative way // if goalkeeper has strenth 7 then chance is 8.78% otherwise lower/higher $goals[$teamname_att]++; $matchReport .= ' '.comment($teamname_def, 'attack_advance_advance_shot_score'); } else { if (Chance_Percent(50)) { // the defending defenders block the shot $matchReport .= ' '.comment($teamname_def, 'attack_advance_advance_shot_block'); } else { // the defending goalkeeper saves $matchReport .= ' '.comment($teamname_def, 'attack_advance_advance_shot_save'); } } } } } } // attacking team doesn't pass 1st third of opponent's field side elseif (Chance_Percent(15*$defense_strength*($taktiken[$teamname_att][1]/2)*($taktiken[$teamname_att][3]/2))) { // quick counter attack - playing on the break // only 7.5% because it's an alternative way // if defense has strength 7 then chance is 7.5% otherwise lower/higher $strength_att['defenders'] = $strength_att['defenders']*0.8; // weaken the current attacking team's defense $matchReport .= ' '.comment($teamname_def, 'attack_quickCounterAttack'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_def, $teamname_att, $strength_def, $strength_att); // new attack - this one is finished } else { // ball goes into touch - out of the field $matchReport .= ' '.comment($teamname_def, 'attack_throwIn'); if (Chance_Percent(33)) { // if a new chance is created if (Chance_Percent(50)) { // throw-in for the attacking team $matchReport .= ' '.comment($teamname_def, 'attack_throwIn_att'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_att, $teamname_def, $strength_att, $strength_def); // new attack - this one is finished } else { // throw-in for the defending team $matchReport .= ' '.comment($teamname_def, 'attack_throwIn_def'); $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return simulate_attack($teamname_def, $teamname_att, $strength_def, $strength_att); // new attack - this one is finished } } } $matchReport .= ' ['.$goals[$_POST['team1']].':'.$goals[$_POST['team2']].']&lt;/p&gt;'; // close comment line return TRUE; // finish the attack } ?&gt; </code></pre> <p><strong>Tactical settings which should have an influence on the randomness:</strong></p> <ul> <li>adjustment (1=defensive, 2=neutral, 3=offensive): the higher the value is the weaker is the defense and the stronger is the offense</li> <li>speed of play (1=slow, 2=medium, 3=fast): the higher the value is the better are the opportunities but the higher is the risk of getting a quick counter attack</li> <li>distance of passes (1=short, 2=medium, 3=long): the higher the value is the less but better opportunities you get and the more often you are offside</li> <li>creation of changes (1=safe, 2=medium, 3=risky): the higher the value is the better are your opportunities but the higher is the risk of getting a quick counter attack</li> <li>pressure in defense (1=low, 2=medium, 3=high): the higher the value is the more quick counter attacks you will have</li> <li>aggressivity (1=low, 2=medium, 3=high): the higher the value is the more attacks you will stop by fouls</li> </ul> <p><strong>Integration of the tactical settings:</strong></p> <p>All the tactical settings have a value which can be "1", "2" or "3". "2" is always neutral/medium. So I divide the values by 2. I get a ratio which is 0.5 or 1 or 1.5. I thought that I could then easily multiply the chances by this in order to integrate tactical influence. But one problem has evolved: If I multiply a chance by 2 or more tactical values, it can be higher than 100% (60 x 1.5 x 1.5 for example). So I can't integrate the tactics this way. What else can I do?</p> <p><hr /></p> <p>Thank you very much!</p> http://stackoverflow.com/questions/1426570/hide-autoincrement-ids-in-get-parameter-php 0 Hide autoincrement ids in GET parameter (PHP) marco92w 2009-09-15T11:19:49Z 2009-09-16T00:24:59Z <p>Hello!</p> <p><strong>Problem:</strong></p> <p>I have dynamic pages in PHP where the content is shown according to the given id. The id is always submitted via a GET parameter: page.php?id=X This causes a problem: Site visitors can enumerate the ids and simply walk through all the different content pages. This shouldn't be possible, of course.</p> <p><strong>How could this be solved?</strong></p> <p>My approach is to encode all ids in links and forms which are used as a GET parameter later. At the beginning of every page, the given id is decoded into the "real" id which is used in the database. Is this a good approach? Would you choose another way?</p> <p><strong>Possible solution of my approach:</strong></p> <p>I would convert the integer id to a base 38 integer and replace the digits by characters of a given list. I would use these characters for the encoded string id:</p> <p>a-z 0-9 - _</p> <p>Would you use other characters as well? For these characters my script would be this:</p> <pre><code>function id2secure($old_number) { $alphabet_en = array(0=&gt;'1', 1=&gt;'3', 2=&gt;'5', 3=&gt;'7', 4=&gt;'9', 5=&gt;'0', 6=&gt;'2', 7=&gt;'4', 8=&gt;'6', 9=&gt;'8', 10=&gt;'a', 11=&gt;'c', 12=&gt;'e', 13=&gt;'g', 14=&gt;'i', 15=&gt;'k', 16=&gt;'m', 17=&gt;'o', 18=&gt;'q', 19=&gt;'s', 20=&gt;'u', 21=&gt;'w', 22=&gt;'y', 23=&gt;'b', 24=&gt;'d', 25=&gt;'f', 26=&gt;'h', 27=&gt;'j', 28=&gt;'l', 29=&gt;'n', 30=&gt;'p', 31=&gt;'r', 32=&gt;'t', 33=&gt;'v', 34=&gt;'x', 35=&gt;'z', 36=&gt;'-', 37=&gt;'_'); $new_number = ''; while ($old_number &gt; 0) { $rest = $old_number%38; if (!isset($alphabet_en[$rest])) { return FALSE; } $new_number .= $alphabet_en[$rest]; $old_number = floor($old_number/38); } $new_number = strrev($new_number); return $new_number; } </code></pre> <p><strong>Additional question:</strong></p> <p>What would be the reverse function for my function?</p> <p>I hope you can help me. Thank you!</p> http://stackoverflow.com/questions/1422725/represent-md5-hash-as-an-integer 0 Represent MD5 hash as an integer marco92w 2009-09-14T16:54:33Z 2009-09-14T19:52:05Z <p>Hello!</p> <p>In my user database table, I take the MD5 hash of the email address of a user as the id.</p> <p>Example: email(example@example.org) = id(d41d8cd98f00b204e9800998ecf8427e)</p> <p>Unfortunately, I have to represent the ids as integer values now - in order to be able to use an API where the id can only be an integer.</p> <p>Now I'm looking for a way to encode the id into an integer for sending an decode it again when receiving. How could I do this?</p> <p>My ideas so far:</p> <ol> <li>convert_uuencode() and convert_uudecode() for the MD5 hash</li> <li>replace every character of the MD5 hash by its ord() value</li> </ol> <p>Which approach is better? Do you know even better ways to do this?</p> <p>I hope you can help me. Thank you very much in advance!</p> http://stackoverflow.com/questions/1374868/simulating-sports-matches-in-online-game 5 Simulating sports matches in online game marco92w 2009-09-03T17:39:44Z 2009-09-14T09:51:34Z <p>Hello!</p> <p>In an online manager game (like <a href="http://www.hattrick.org/" rel="nofollow">Hattrick</a>), I want to simulate matches between two teams.</p> <p>A team consists of 11 players. Every player has a strength value between 1 and 100. I take these strength values of the defensive players for each team and calculate the average. That's the defensive quality of a team. Then I take the strengths of the offensive players and I get the offensive quality.</p> <p>For each attack, I do the following:</p> <pre><code>$offFactor = ($attackerTeam_offensive-$defenderTeam_defensive)/max($attackerTeam_offensive, $defenderTeam_defensive); $defFactor = ($defenderTeam_defensive-$attackerTeam_offensive)/max($defenderTeam_defensive, $attackerTeam_offensive); </code></pre> <p>At the moment, I don't know why I divide it by the higher one of both values. But this formula should give you a factor for the quality of offense and defense which is needed later.</p> <p>Then I have nested conditional statements for each event which could happen. E.g.: Does the attacking team get a scoring chance?</p> <pre><code>if ((mt_rand((-10+$offAdditionalFactor-$defAdditionalFactor), 10)/10)+$offFactor &gt;= 0) { ... // the attack succeeds </code></pre> <p>These additional factors could be tactical values for example.</p> <p>Do you think this is a good way of calculating a game? My users say that they aren't satisfied with the quality of the simulations. How can I improve them? Do you have different approaches which could give better results? Or do you think that my approach is good and I only need to adjust the values in the conditional statements and experiment a bit?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1396135/php-caching-ordered-integer-partition-algorithm 1 PHP: Caching ordered integer partition algorithm marco92w 2009-09-08T20:20:19Z 2009-09-08T23:31:26Z <p>Hello!</p> <p>First: The problem's name in Wikipedia is "ordered partition of a set".</p> <p>I have an algorithm which counts possible partitions. To speed it up, I use a cache:</p> <pre><code>function partition($intervalSize, $pieces) { // special case of integer partitions: ordered integer partitions // in Wikipedia it is: ordered partition of a set global $partition_cache; // CACHE START $cacheId = $intervalSize.'-'.$pieces; if (isset($partition_cache[$cacheId])) { return $partition_cache[$cacheId]; } // CACHE END if ($pieces == 1) { return 1; } else { $sum = 0; for ($i = 1; $i &lt; $intervalSize; $i++) { $sum += partition(($intervalSize-$i), ($pieces-1)); } $partition_cache[$cacheId] = $sum; // insert into cache return $sum; } } $result = partition(8, 4); </code></pre> <p>Furthermore, I have another algorithm which shows a list of these possible partitions. But it doesn't use a cache yet and so it's quite slow:</p> <pre><code>function showPartitions($prefix, $start, $finish, $numLeft) { global $partitions; if ($numLeft == 0 &amp;&amp; $start == $finish) { // wenn eine Partition fertig ist dann in Array schreiben $gruppen = split('\|', $prefix); $partitions[] = $gruppen; } else { if (strlen($prefix) &gt; 0) { // nicht | an Anfang setzen sondern nur zwischen Gruppen $prefix .= '|'; } for ($i = $start + 1; $i &lt;= $finish; $i++) { $prefix .= chr($i+64); showPartitions($prefix, $i, $finish, $numLeft - 1); } } } $result = showPartitions('', 0, 8, 4); </code></pre> <p>So I have two questions: 1) Is it possible to implement a cache in the second algorithm, too? If yes, could you please help me to do this? 2) Is it possible to write the results of the second algorithm into an structured array instead of a string?</p> <p>I hope you can help me. Thank you very much in advance!</p> <p>PS: Thanks for the two functions, simonn and Dan Dyer!</p> http://stackoverflow.com/questions/1388607/encoding-problem-utf-8-in-php 1 Encoding problem (UTF-8) in PHP marco92w 2009-09-07T10:16:54Z 2009-09-07T10:45:55Z <p>Hello!</p> <p>I want to output the following string in PHP:</p> <p>ä ö ü ß €</p> <p>Therefore, I've encoded it to utf8 manually:</p> <p>ä ö ü ß €</p> <p>So my script is:</p> <pre><code>&lt;?php header('content-type: text/html; charset=utf-8'); echo 'ä ö ü ß €'; ?&gt; </code></pre> <p>The first 4 characters are correct (ä ö ü ß) but unfortunately the € sign isn't correct:</p> <p>ä ö ü ß €</p> <p><a href="http://wp1080088.wp029.webpack.hosteurope.de/utf8.php" rel="nofollow">Here you can see it.</a></p> <p>Can you tell me what I've done wrong? My editor (Notepad++) has settings for Encoding (Ansi/UTF-8) and Format (Windows/Unix). Do I have to change them?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1076802/flesch-kincaid-readability-improve-php-function 2 Flesch-Kincaid Readability: Improve PHP function marco92w 2009-07-02T21:40:57Z 2009-09-07T04:47:30Z <p>Hello!</p> <p>I wrote this PHP code to implement the Flesch-Kincaid Readability Score as a function:</p> <pre><code>function readability($text) { $total_sentences = 1; // one full stop = two sentences =&gt; start with 1 $punctuation_marks = array('.', '?', '!', ':'); foreach ($punctuation_marks as $punctuation_mark) { $total_sentences += substr_count($text, $punctuation_mark); } $total_words = str_word_count($text); $total_syllable = 3; // assuming this value since I don't know how to count them $score = 206.835-(1.015*$total_words/$total_sentences)-(84.6*$total_syllables/$total_words); return $score; } </code></pre> <p>Do you have suggestions how to improve the code? Is it correct? Will it work?</p> <p>I hope you can help me. Thanks in advance!</p> http://stackoverflow.com/questions/1385835/euro-sign-in-html 4 Euro sign in HTML marco92w 2009-09-06T14:50:41Z 2009-09-06T15:14:31Z <p>Hello!</p> <p>The euro (€) is the official currency in 22 European states.</p> <p>In HTML there are different possibilities to display the sign €:</p> <ul> <li><code>&amp;euro;</code></li> <li><code>&amp;#8364;</code></li> <li><code>&amp;#x20AC;</code></li> </ul> <p>Which one would you use in HTML? I think no representation is supported in all browsers. It's a pity that there is no standard way to display the sign.</p> <p>Can you recommend one of the representations? What are the differences? Which ist supported best?</p> <p>I hope you can help me. Thank you very much in advance!</p> http://stackoverflow.com/questions/1358712/translate-java-code-to-php-code-13-lines 0 Translate Java code to PHP code (13 lines) marco92w 2009-08-31T18:21:14Z 2009-08-31T20:23:51Z <p>Hello!</p> <p><a href="http://stackoverflow.com/questions/1351828/combinatorics-building-10-groups-of-100-elements-while-elements-remain-sorted">simonn helped me to code an ordered integer partition function here.</a> He posted two functions: one function simply gives back the count of partitions, the second function gives the partitions as a list.</p> <p>I've already managed to translate the first function from Java to PHP:</p> <ul> <li><a href="http://paste.bradleygill.com/index.php?paste%5Fid=15870" rel="nofollow">Java version</a></li> <li><a href="http://paste.bradleygill.com/index.php?paste%5Fid=15770" rel="nofollow">PHP version</a></li> </ul> <p>Unfortunately, I can't manage to translate the second function. Can anyone help me and translate this small function for me?</p> <pre><code>public class Partitions2 { private static void showPartitions(int sizeSet, int numPartitions) { showPartitions("", 0, sizeSet, numPartitions); } private static void showPartitions(String prefix, int start, int finish, int numLeft) { if (numLeft == 0 &amp;&amp; start == finish) { System.out.println(prefix); } else { prefix += "|"; for (int i = start + 1; i &lt;= finish; i++) { prefix += i + ","; showPartitions(prefix, i, finish, numLeft - 1); } } } public static void main(String[] args) { showPartitions(5, 3); } } </code></pre> <p>It would be great if the solution would be one single function instead of a class with several functions.</p> <p>Thank you very much in advance! And thanks again to simonn for this great answer!</p> http://stackoverflow.com/questions/1354709/regexes-for-quotations 1 Regexes for quotations marco92w 2009-08-30T19:28:16Z 2009-08-30T21:14:15Z <p>Hello!</p> <p><a href="http://stackoverflow.com/questions/1323516/how-to-extract-citations-from-a-text-php">I've already got help here for creating a quotation extraction function. Thanks alot, soulmerge!</a></p> <p>Now I'm looking for regular expressions (PHP) which extract the cited text and the cited person. The person should be in one index (substring), the text in another index (substring).</p> <p>For English texts, soulmerge proposed these regexes:</p> <ul> <li><code>/"(.*?)[,.]?\h*"\h*said\h*(.*?)\./</code></li> <li><code>/"(.*?)\h*"(.*)said/</code></li> <li><code>/\.\h*(.*)(once)?\h*said[\-]*"(.*?)"/</code></li> </ul> <p>I would like to "translate" the following direct speech examples in German to regexes:</p> <ul> <li>"This is a quotation", sagte PERSON ...</li> <li>"This is a quotation!", sagte PERSON ...</li> <li>"This is a quotation?", sagte PERSON ...</li> <li>PERSON sagte: "This is a quotation."</li> <li>PERSON sagte: "This is a quotation!"</li> <li>PERSON sagte: "This is a quotation?"</li> </ul> <p>Can someone help me to build the adequate regular expressions for these direct speech forms?</p> <p>I hope you can help me. Thank you very much in advance!</p> http://stackoverflow.com/questions/1351828/combinatorics-building-10-groups-of-100-elements-while-elements-remain-sorted 1 Combinatorics: Building 10 groups of 100 elements while elements remain sorted marco92w 2009-08-29T16:30:15Z 2009-08-30T04:16:49Z <p>Hello!</p> <p>I've got a problem concerning combinatorics. Unfortunately, I can't describe it abstractly so I try to explain it as a story. :)</p> <p><strong>Problem:</strong></p> <ol> <li>There are 100 children on the schoolyard.</li> <li>They all have unique heights, assuming the values are 100-199cm.</li> <li>You want to build 10 groups, each consisting of 1-99 children.</li> <li>How can you build all the groups while the children must be sorted by their height?</li> <li>I need all possible solutions for these groups since it isn't hard to find one constellation.</li> </ol> <p><strong>Short and easy:</strong></p> <p>All 100 children stand side by side. You only have to decide where to split them into groups and find all solutions for this.</p> <p><strong>Example (values are the heights):</strong></p> <p>[120 ... 190 ... 199] ... [126 ... 137 ... 144 ... 188] <em>is not possible</em></p> <p>[101] ... [104 ... 105 ... 112 ... 149] ... [169 ... 189] <em>is possible</em></p> <p>I hope you can help me. Thank you very much in advance!</p> <p>PS: It's no homework. ;) Normally, I need a function which does this with numbers. But I couldn't describe this abstractly like "building k groups of numbers while all numbers are sorted". I thought you wouldn't understand it this way. :) A solution in PHP would be best but I would be glad to see solutions in other languages as well. :)</p> http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1926064#1926064 Comment by on Elo rating system: start value 2009-12-18T16:25:01Z 2009-12-18T16:25:01Z Thanks, very useful! http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1927021#1927021 Comment by on Elo rating system: start value 2009-12-18T16:24:25Z 2009-12-18T16:24:25Z Thank you very much, I didn't think of this. So I can't completely prevent inflation or deflation, right? http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1907562#1907562 Comment by on Elo rating system: start value 2009-12-17T20:33:44Z 2009-12-17T20:33:44Z Ok, thank you. Last question :) What starting value should I take for the provisional scores? 0 or 1200? http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1909122#1909122 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T21:47:16Z 2009-12-15T21:47:16Z Thank you very much! Does it make sense to divide by numberofvotes and then multiply with numberofvotes? Your approach doesn't consider which items are beaten. So if itemA beats weak items in 80% and itemB beats strong items in 70% which one is better? It should be itemB ... http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1907562#1907562 Comment by on Elo rating system: start value 2009-12-15T21:40:45Z 2009-12-15T21:40:45Z In chess they don't get negative ELO scores because the FIDE drops users with scores less than 1200. ;) Why ever ... I could do this, too, right? Just drop (don't show) all scores less than 0. http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1907562#1907562 Comment by on Elo rating system: start value 2009-12-15T18:02:18Z 2009-12-15T18:02:18Z And what to do with negative ratings? Allow them? Or just don't change the rating if it would become negative? http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1907562#1907562 Comment by on Elo rating system: start value 2009-12-15T18:01:46Z 2009-12-15T18:01:46Z Ok. But the starting value is still a difficult point. By choosing either very weak opponents or quite strong opponents - depending on whether the starting is higher or lower than the average - I can have a strong influence on my starting value after X games. Can't I? http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1890863#1890863 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T17:48:47Z 2009-12-15T17:48:47Z Another thing which would have been interesting: How to calculate the global ranking? This is very important since your algorithm uses it. http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1890863#1890863 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T17:42:55Z 2009-12-15T17:42:55Z Your algorithm seems to be correct. But I would replace &quot;demote loser by 1&quot; by &quot;demote all items following by 1&quot;. And: If the winner is in your own ranking but the loser not yet, the winner advances one position. http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1907562#1907562 Comment by on Elo rating system: start value 2009-12-15T16:44:27Z 2009-12-15T16:44:27Z Thank you very much! So I can give every player 1000 starting points. But new players have just a provisional score for the first X games. Correct so far? In these X games, they only gain or lose points as normal but their opponents don't. Right? http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1902547#1902547 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T16:35:57Z 2009-12-15T16:35:57Z Thank you, you helped a lot. :) These are interesting concerns (which items to choose etc). http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1890863#1890863 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T16:33:52Z 2009-12-15T16:33:52Z Sorry, I wanted to say parentheses. This is what I meant. ;) I'll test your code. Thank you very much! http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1855858#1855858 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T16:30:19Z 2009-12-15T16:30:19Z Ok. So ELO seems to be a good solution, maybe not the best. But it will definitely work with ELO. :) But: Item A wins lots of fights and goes to position one according to ELO. Item B has just a few wins but many losses but it beats item A. According to ELO item B should be at the bottom. But according to another model item B should be on the 1st place!? http://stackoverflow.com/questions/1855800/1-vs-1-vote-calculate-ratings-flickchart-com/1885606#1885606 Comment by on 1 vs 1 vote: calculate ratings (Flickchart.com) 2009-12-15T16:26:48Z 2009-12-15T16:26:48Z Thank you charstar, this is exactly what is missing in this answer. But for other purposes, the answer is great. There are many cases for this code. Thank you very much, Juliet! http://stackoverflow.com/questions/1881310/elo-rating-system-start-value/1894783#1894783 Comment by on Elo rating system: start value 2009-12-13T16:21:30Z 2009-12-13T16:21:30Z New idea: The starting value for the Elo score is always the current average. So if I have users with 0, 300, 200 and 150, the fifth user will get 163 to start. Would this be good?