This page is a NO-INDEX summary of comments posted in this blog.

Total 849 Comments (24/34 Pages) - Newer Comments - Older Comments

576. 2016-07-24 03:35:38 Hubert Farnsworth Comments on Creating Sitemap Generator for PHPBB3.1 using PHP:

The code works as shown to generate a list of entries like "/forum/sitemap.php?fid=1". However when I submit the sitemap.php to google webmaster, I get 404 non found errors for each entry. Have I missed something? Is there something else that needs to be done for the robots to correctly generate correct urls like "forum/viewtopic.php?f=4&t=44"? Thanks in advance.


577. 2016-07-20 13:42:06 ACMer Comments on How to Compute the Power of Arbitrary Base without Loops in C/C++?:
Thanks. I do not need to know. this article just gives you the quick implementation if you just want to know roughly the value of x^y.


578. 2016-07-20 13:39:08 Gaurav Verma Comments on How to Compute the Power of Arbitrary Base without Loops in C/C++?:
you do not know what is the internal implementation of these functions.


579. 2016-07-18 18:57:04 ACMer Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
Views and Stored Procedures are 'tables' in MySQL: SHOW FULL TABLES IN database_name WHERE TABLE_TYPE LIKE 'VIEW'; show procedure status


580. 2016-07-18 18:52:24 Arshal Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
this script only copying tables, How to copy all views and procedures


581. 2016-07-13 16:41:25 Bjorn Comments on How to Compute Sum of Two Integers without Plus+ and Minus- Operators?:
oh, it's ok wrong direction


582. 2016-07-13 16:40:59 ACMer Comments on How to Compute Sum of Two Integers without Plus+ and Minus- Operators?:
(011) in binary is 3. 1*2^1 + 1*2^0


583. 2016-07-13 16:38:22 Bjorn Comments on How to Compute Sum of Two Integers without Plus+ and Minus- Operators?:
BTW, 3 is not 011


584. 2016-07-13 09:31:42 ACMer Comments on How to Compute Sum of Two Integers without Plus+ and Minus- Operators?:
and in C++, ^ is not the same as power function


585. 2016-07-13 09:10:50 ACMer Comments on How to Compute Sum of Two Integers without Plus+ and Minus- Operators?:
Good idea, but '-' is not allowed.


586. 2016-07-13 09:10:01 Brijesh Comments on How to Compute Sum of Two Integers without Plus+ and Minus- Operators?:
class Solution { public: int getSum(int a, int b) { return getSum((a^2-b^2)/a-b); } };


587. 2016-07-07 09:42:36 ACMer Comments on Introduction to 8-bit Famicom Clone - Subor - SB2000:
In theory, it is possible to run .gam files with cracking the file formats. SB2000 has 6502 CPU which should run 8-bit NES games.


588. 2016-07-07 01:33:40 soviet9922 Comments on Introduction to 8-bit Famicom Clone - Subor - SB2000:
Thank for your reply because i´m about to get a sb200 and if you cant run games i don´t see the point on purchasing it.


589. 2016-07-06 18:45:44 ACMer Comments on Introduction to 8-bit Famicom Clone - Subor - SB2000:
it doesn't work this way. The .gam files are not directly runnable on SB2000


590. 2016-07-06 18:39:25 soviet9922 Comments on Introduction to 8-bit Famicom Clone - Subor - SB2000:
Hi you tried on this model to run .gam game files ?


591. 2016-06-21 08:48:21 ACMer Comments on Interview Question: Construct Evenly-Distribution Rand7 based on Rand5:
yes, you are right, corrected. thanks


592. 2016-06-21 08:46:12 Dan Comments on Interview Question: Construct Evenly-Distribution Rand7 based on Rand5:
I guess the solution #1 is wrong. There has to be int i = 5 * (rand5() - 1) + (rand5() - 1); Otherwise i is just one of 0, 6, 12 or 18.


593. 2016-06-11 15:09:00 Nedeljko Stefanovic Comments on Microsoft Interview Question - Compute the Area of the Triangle:
Official solution is wrong. Formalization of the problem is: Find a real number x such that sentence "If ABC is triangle with right angle in A, |BC|=10 and height from A is 6, then the area of the triangle is x" is true. Because no such triangle and false implies any proposition, any real number x is solution.


594. 2016-06-11 14:54:39 dC Comments on Microsoft Interview Question - Compute the Area of the Triangle:
You should have gotten the clue of the impossibility when you read that this was a "rectanGLUAR" triangle. Is there such a thing? It was even written twice!


595. 2016-06-10 17:12:39 ACMer Comments on Using Imagify Wordpress Plugin to Reduce size of Images:
yes, because it is not FREE!!!!


596. 2016-06-10 17:09:19 thu thuat Comments on Using Imagify Wordpress Plugin to Reduce size of Images:
I don't like this plugin, i like tinypng plugin.


597. 2016-06-10 17:03:55 ACMer Comments on Dynamic Programming - Integer Break:
if we treat i-j as a whole (not breaking that part)....


598. 2016-06-10 16:59:37 Michael Comments on Dynamic Programming - Integer Break:
Why do we have max(i-j, ....)? I don;t quite understand why we include that i-j in our max of terms.


599. 2016-06-10 15:38:21 Roman Comments on PHP Script to Secure the Wordpress Folders by Setting Correct File Permissions:
Great!


600. 2016-06-10 14:02:45 M.B. Comments on Microsoft Interview Question - Compute the Area of the Triangle:
You can also draw the median which starts from the right angle, which has length 5, and take into account that the shortest line from the tip of the right angle to the hypotenuse is the height, which would imply that 6<5


Newer Comments - Older Comments

–EOF (The Ultimate Computing & Technology Blog) —

46 words

The Permanent URL is: List of Comments