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

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

76. 2022-08-11 13:17:31 wokenlex Comments on How to Get Number of CPU Cores using PHP Function (Platform Independent):

On MacOS matches[1][0] makes 1 core, instead of 10.


77. 2022-08-10 15:24:20 Barry Comments on Processing Example - Draw a ChessBoard:
Im sorry to ask, but I dont really understand this bit of code


78. 2022-07-27 01:48:20 Shehroze Comments on The Childhood Memory - Subor Famicom Clone SB-486D (Xiao Ba Wang):
I didnt even tead the date on this but i am dying to find one. Any idea where i can find this.


79. 2022-07-25 08:12:18 ACMer Comments on Teaching Kids Programming - Dynamic Programming Algorithm to Compute Minimum Number of Coins:
Thank you! Fixed... This is a bug of WP.


80. 2022-07-25 08:02:24 bigben Comments on Teaching Kids Programming - Dynamic Programming Algorithm to Compute Minimum Number of Coins:
Your algo lesson is great! Thank you for providing such an excellent lesson! I found a error on page: The link text dosen't match with link target as follows: This is very similar to another Unbounded Knapsack Problem which can also be solved using DP algorithms: Teaching Kids Programming – Dynamic Programming Algorithm to Compute Minimum Number of Coins should change to: This is very similar to another Unbounded Knapsack Problem which can also be solved using DP algorithms: Teaching Kids Programming – Combination Sum Up to Target (Unique Numbers) by Dynamic Programming Algorithms


81. 2022-07-20 15:49:01 Rahul Jain Comments on How to Implement a LRU (Least Recently Used) Cache in C++?:
Hey,I made a video explaining the solution using doubly linked list and hashmap, you can check this out !! Please do subscribe if you find this helpful https://www.youtube.com/watch?v=uIojskB-xAo


82. 2022-07-16 14:36:09 Dave Comments on How to Empty Recycle Bin when it hangs due to lots of files?:
Thank You !! <3


83. 2022-06-30 09:21:34 r Comments on How to Auto Complete Comment Form using Javascript?:
rrrr


84. 2022-06-24 01:15:53 Riaz Comments on How to Comply with GDPR in Adsense?:
if you enable autoads for a site and the gdpr message, the message is shown on any page on the site first load. But say a particular page has no ads and you list that page under autoads exclusions the GDPR message is still shown on that page?


85. 2022-06-17 14:06:34 Ferdinand Samsa Comments on How to Download Video from ted.com in Javascript?:
Lorem ipsum 123 789


86. 2022-06-07 18:16:17 W4DU Comments on Teaching Kids Programming - Line Sweeping Algorithm to Compute the Most Frequent Number in Intervals:
Exactly why does using data[i+1] += 1 accommodate the most frequent interval in the given the stream ? I was able to understand that using line sweep algorithm we can take a count of the frequency of points in the plain and adding all the frequencies together sums up to zero. But I'm not able to understand why as to this algorithm works at a basic level.


87. 2022-06-06 23:47:40 ACMer Comments on Teaching Kids Programming - Implement the Counter method in Python:
Thank you. Fixed.


88. 2022-06-06 20:42:41 Subham Singh Comments on Teaching Kids Programming - Implement the Counter method in Python:
here the code on line 2 will be corrected as for i in data:


89. 2022-06-06 20:42:41 Subham Singh Comments on Teaching Kids Programming - Implement the Counter method in Python:
here the code on line 2 will be corrected as for i in data:


90. 2022-05-04 13:55:28 martin Comments on Flood Fill Algorithm using Breadth First Search:
if you add a line of code: matrix[nx][ny] = target; at line 24 (after Q.push({nx, ny});) you dont need to have the computational expensive string search of unordered_set because you dont need lines 14,15,16 as the added change will ensure you dont add the same x,y twice (or more) to the Q. you dont need the line 17 as that operation was done with the change proposed.


91. 2022-05-02 10:57:07 lucy Comments on How does the 8-bit BASIC perform on Famicom Clone - Subor SB2000 - FBasic - Compute PI approximation using Monte-Carlo method:
Peek and Poke do exist! They're just not documented! I say, years after this article came out.


92. 2022-04-23 17:09:55 ACMer Comments on How to Unroll/Flatten Array Recursively using Javascript?:
Thank you!


93. 2022-04-23 16:56:16 David Marr Comments on How to Unroll/Flatten Array Recursively using Javascript?:
It's good to know how to do some recursive stuff like this. Definitely something that you can't forego when working with javascript. I know this article is not super recent, but maybe an update is in order to explain that JS now has a `.flat` method on arrays. So this could be written like: `[1, [2, 3], 4, [5, 6, [7, 8], 9]].flat(Infinity)` to achieve the same result. The `Infinity` is needed to go more than 1 level deep (the default).


94. 2022-03-20 11:49:52 ACMer Comments on Windows Batch Script to Detect Windows Version:
Nice. thank you.


95. 2022-03-20 10:58:47 Meyrou Comments on Windows Batch Script to Detect Windows Version:
SET OS=NONE wmic os get Caption /value | findstr /c:"2003" > NUL IF %ERRORLEVEL% == 0 ( SET OS=win2k3 ) wmic os get Caption /value | findstr /c:"2008" > NUL IF %ERRORLEVEL% == 0 ( SET OS=win2k8 ) wmic os get Caption /value | findstr /c:"2012" > NUL IF %ERRORLEVEL% == 0 ( SET OS=win2k12 ) wmic os get Caption /value | findstr /c:"2016" > NUL IF %ERRORLEVEL% == 0 ( SET OS=win2k16 ) wmic os get Caption /value | findstr /c:"2019" > NUL IF %ERRORLEVEL% == 0 ( SET OS=win2k19 ) wmic os get Caption /value | findstr /c:"2022" > NUL IF %ERRORLEVEL% == 0 ( SET OS=win2k22 )


96. 2022-03-17 16:18:46 grambe Comments on How to Download Tumblr Videos?:
Tumblr downloaders give you the freedom to download any video from Tumblr in any format you prefer. A quick Google search will offer you a long list of Tumblr downloaders.


97. 2022-03-10 15:00:32 socialdownloadmanager Comments on A Home-made Video Download Helper (Client + Server) - Simple way to Download Videos:
Video downloaders give you the freedom to download any video from free Video downloader in any format you prefer. A quick Google search will offer you a long list of Video downloaders.


98. 2022-03-07 13:36:41 grambe Comments on How to Download Instagram Videos using PHP and Javascript?:
You can download your favorite video in your device.You have to copy and paste the link of the Video you need to download, and you can save that Video on your PC, mobile, laptop, or any device you own.


99. 2022-02-09 17:43:01 Chris Slambery Comments on Clone the MAC address in Wireless Router:
Login into your wireless router (using cable from your laptop whose MAC is remembered and registered by the ISP), the admin URL is 192.168.0.1, and clone the MAC address of the WAN so that it has the same MAC address as your laptop.


100. 2022-02-07 18:29:52 Angios Comments on Teaching Kids Programming - Sort Even and Odd Indices Independently (Merge and Sort Algorithm):
Nice and very helpful article...keep posting such a helpful article... Thanks.....


Newer Comments - Older Comments

–EOF (The Ultimate Computing & Technology Blog) —

46 words

The Permanent URL is: List of Comments