This page is a NO-INDEX summary of comments posted in this blog.
Total 849 Comments (9/34 Pages) - Newer Comments - Older Comments
201. 2019-06-17 20:38:03 Carth Comments on Algorithm to Add Two Strings Numerically in C++:
"we subtract it from 48 (which is the ASCII code of ‘0’)"
Don't you mean 'add it to 48'?
202. 2019-06-15 16:19:26 mirajehossain Comments on Coding Exercise – Timus Online Judge – 1409. Two Gangsters, C/C++ solution:
Nice explanation!
203. 2019-06-14 21:25:27 ACMer Comments on Passing String or StringBuilder to Function in C# (By Value or By Reference):
string is a reference type. it is passed by value ===> passed by a copy of the reference.
204. 2019-06-14 09:44:39 otebos Comments on Passing String or StringBuilder to Function in C# (By Value or By Reference):
Hi,
Unfortunatelly you are wrong - string is reference type and it is passed by reference - but what is passed is reference copy.
And then because of immutability you don't change original string but a copy.
See deepin explanation here
https://stackoverflow.com/questions/10792603/how-are-strings-passed-in-net
205. 2019-06-11 10:16:38 Anonymous Comments on Runlength Compression Algorithm, Demonstration in Python:
Superb!!
206. 2019-06-06 07:04:57 ACMer Comments on Algorithms to Find the Three Numbers in Array that Sum up to Zero (3Sum):
You 're welcome!
207. 2019-06-06 06:57:14 hsinche Comments on Algorithms to Find the Three Numbers in Array that Sum up to Zero (3Sum):
Thank you for your sharing and I finally made an accepted solution base on yours.
208. 2019-06-03 18:26:32 guille Comments on Use PHP Script to Monitor Temperature and Uptime for Raspberry PI in the Browser:
It doesn`t work. Can you please paste the entire code. Thanks
209. 2019-05-21 11:51:22 HTML5 Speedtest Comments on PHP Script to Check the Page Speed:
Thanks for this Code!
210. 2019-05-10 11:22:36 Xoxo Comments on Javascript Function To Jump Out Of The Frame:
I just make my inner links with target _top
211. 2019-05-06 16:02:59 brian spencer Comments on How to Get Plusnet Protect Powered by McAfee for Free?:
when will you be able to answer this question?
212. 2019-05-05 19:44:53 ACMer Comments on How to Get Plusnet Protect Powered by McAfee for Free?:
contact the online plusnet support?
213. 2019-05-05 19:44:29 ACMer Comments on The PHP Bing Wallpaper Bot Crawler:
good one, thanks.
214. 2019-05-05 19:33:26 brian spencer Comments on How to Get Plusnet Protect Powered by McAfee for Free?:
A dropdown has notified me that my McAfee has expired, yet I am getting a tick showing I am protected ,can you please advise?
215. 2019-05-05 08:43:39 Jacob Comments on The PHP Bing Wallpaper Bot Crawler:
Too complicated bro, try this one.
https://github.com/greenandgreen/-PHP-Everyday-Bing-Wallpaper-API
216. 2019-05-03 05:59:15 abdullah Comments on Coding Exercise - Timus Online Judge - 1264. Workdays - C++ solution:
i can't understand?
plz explain easily
217. 2019-04-27 08:50:01 ACMer Comments on Receiving a Blackmail/Scam Email saying that I watched Po*n....:
其实这是过滤智商不足的人群呢, 发的邮件几千万,概率即使0.00001,也有不少人缺心眼上当呢。
218. 2019-04-27 01:10:06 发泡鲸 Comments on Receiving a Blackmail/Scam Email saying that I watched Po*n....:
估计上当受骗的人不少,诈骗者每天从全世界获得的收益估计也很可观。
219. 2019-04-22 21:58:12 Techforpc Comments on SQL Inner Join Tutorial with Example: Managers with at Least 5 Direct Reports:
Hi there Helloacm, nice tutorial post, I really like your technology computing content cheers from Techforpc site.
220. 2019-04-20 03:23:38 ACMer Comments on Two Simple Equations to Compute PI:
I think, in Python 2.x this is ok.
221. 2019-04-19 18:18:12 Harold Comments on Two Simple Equations to Compute PI:
This line of code:
print step, ans, abs(pi - ans)
Had to be like this:
print (step, ans, abs(pi - ans))
Otherwise it would error out with syntax issues.
222. 2019-04-13 14:06:22 ACMer Comments on How to Download Instagram Videos using PHP and Javascript?:
Yes, thank you.
223. 2019-04-13 05:22:52 John Redken Comments on How to Download Instagram Videos using PHP and Javascript?:
nice method. just checked and it's still relevant after 2 years.. links are still there.. i guess that's why there are so many online instagram downloaders.. =)
224. 2019-04-03 17:45:11 ACMer Comments on C/C++ Function to Compute the Bilinear Interpolation :
Yes, you are absolutely right. If it is on the lines, then it is not bilingual interpolation.
225. 2019-04-03 17:10:38 Stix Comments on C/C++ Function to Compute the Bilinear Interpolation :
This code will fail if x2 == x1 or y2 == y1 as it will result in a div by zero. It should properly detect when you're on one of the Qxx lines and collapse to a 1D interpolation.
Newer Comments - Older Comments
–EOF (The Ultimate Computing & Technology Blog) — 46 words