This page is a NO-INDEX summary of comments posted in this blog.
Total 849 Comments (3/34 Pages) - Newer Comments - Older Comments
51. 2023-01-03 08:51:29 jessica tammie Comments on Introduction to the Discord Cryptocurrency-Lookup-Bot!:
Need help recovering lost and deleted files, also need help gaining access to the Targets device to confirm an Affair. A Trusted Mobile Phone Hacker hackadviserpro @ gmail com.
Find & Contact.
52. 2022-12-05 16:24:51 ACMer Comments on Algorithms to Check if Array Contains Duplicate Elements:
well, depends on the case. "static" methods are only recommended in helper static class because they don't obey the OOP rules/principles.
53. 2022-12-05 16:23:16 Rajesh Comments on Algorithms to Check if Array Contains Duplicate Elements:
you forget to write "static" in Java code.
54. 2022-11-27 20:51:29 ACMer Comments on How to Mask Email Addresses using PHP Function?:
Thank you. yes. you are right, should use count function to obtain the length of the array.
55. 2022-11-27 12:28:49 Miller Comments on How to Mask Email Addresses using PHP Function?:
Nice!
Small correction, if I may. Since I got this:
PHP Warning: strlen() expects parameter 1 to be string, array given in ....php
on line 123
I changed:
return $arr[0][0] . str_repeat("*", strlen($arr[0]) - 2).$arr[0][strlen($arr) - 1]. "@" . $arr[1];
To:
return $arr[0][0] . str_repeat("*", strlen($arr[0]) - 2).$arr[0][strlen($arr[0]) - 1]. "@" . $arr[1];
56. 2022-11-14 11:10:03 Lashavaysband Comments on Coding Exercise - LUA Programming - SPOJ Online Judge - 15711. Wow:
[email protected]
Lasalaso
57. 2022-11-09 13:47:59 sabur Comments on Two Pointer Algorithm to Find Maximum Two Sum Less Than K:
given an array A if integers and integer K, return the maximum S such that there exists i< j with A[i]+a[j] = S and S<K. if no such i, j exists satisfying this equation. return -1. how is it with PHP?
58. 2022-11-07 15:01:12 xpouyat Comments on Simple Bearer Token Credential Wrapper for C# (Azure SDK):
Thanks you, very useful !
Note : In the last method, accesstoken should be changed by AccessToken.
59. 2022-10-27 22:39:14 Sougata Comments on Finding the Predecessor and Successor Node of a Binary Search Tree:
Wrong code for predecessor. Because if the node is a leaf node and it is a right child, then the predecessor will be node->parent.
60. 2022-10-25 09:00:28 ACMer Comments on How do you Design a Circular FIFO Buffer (Queue) in C?:
There are two ways, one is to use the counter, the other is to compare with the head and tail.
61. 2022-10-25 08:59:54 ACMer Comments on How do you Design a Circular FIFO Buffer (Queue) in C?:
Yes, it uses a "%" operator to go around, don't you read the code?
62. 2022-10-25 08:59:18 ACMer Comments on How do you Design a Circular FIFO Buffer (Queue) in C?:
Typo fixed. Thanks.!
63. 2022-10-25 01:02:24 8AxleEd Comments on How do you Design a Circular FIFO Buffer (Queue) in C?:
This doesn't even assign a value (variable "val") into the fifo! This is worthless.
64. 2022-10-25 00:53:35 8AxleEd Comments on How do you Design a Circular FIFO Buffer (Queue) in C?:
There's half a dozen bugs in this easily. Store the return value before incrementing so you have it for the return. Check the bounds on the write before comparing head and tail. I would give this an 'F'. They didn't even try the code, it clearly doesn't work.
65. 2022-10-25 00:47:37 8AxleEd Comments on How do you Design a Circular FIFO Buffer (Queue) in C?:
Not a circular buffer, keeps going on forever, doesn't rollover. Use a % operator or an if statement . What about initialization? This doesn't work.
66. 2022-10-23 11:12:13 ACMer Comments on Teaching Kids Programming - Finding Pythagorean Triplets in Array using Two Pointer or Hash Set:
LOL.. sorry.. This is a series of teaching my sons programming - see https://zhihua-lai.com/teaching/
67. 2022-10-22 20:09:30 bill gates Comments on The Childhood Memory - Subor Famicom Clone SB-486D (Xiao Ba Wang):
Can you provide some more information?
68. 2022-10-22 19:03:40 ACMer Comments on The Childhood Memory - Subor Famicom Clone SB-486D (Xiao Ba Wang):
Directly no. but i know someone hacks and use it on a modern PC.
69. 2022-10-22 18:34:52 Bill Gates Comments on The Childhood Memory - Subor Famicom Clone SB-486D (Xiao Ba Wang):
It looks so cool. Can you this a keyboard on a modern pc?
70. 2022-10-18 18:20:08 John Howeser Comments on How to Solve SMTP: Could Not Authenticate using Gmail + PHPMailer?:
Less secure apps and app pw are no longer available from google
71. 2022-10-17 03:49:03 r Comments on Teaching Kids Programming - Finding Pythagorean Triplets in Array using Two Pointer or Hash Set:
Hi would love if you post this answer somewhere else without the "teaching kids programming" part, I am teaching adults programming and would love to use this as a resource without being offensive lol
72. 2022-10-08 13:42:41 Shreya karmakar Comments on Algorithm to Check if a Binary Tree can be Constructed via Hash Tables:
It gives wrong output for the example [(1,2), (2,5),(3,2), (4,2)]
where the tree forms a cycle.
73. 2022-10-05 23:39:23 Shamalama Comments on Teaching Kids Programming - Adding Two Linked List:
Jon stole this code. Just wanted to let you know.
74. 2022-10-05 23:02:23 Jon Comments on Linked List Delete Last Occurrence of Value:
Jon stole your code. Just so you know.
75. 2022-08-28 00:59:31 Axel Comments on Windows Batch Script to Detect Windows Version:
Thank you 🙂
Works from XP to newer OS 🙂
Newer Comments - Older Comments
–EOF (The Ultimate Computing & Technology Blog) — 46 words