This page is a NO-INDEX summary of comments posted in this blog.
Total 849 Comments (7/34 Pages) - Newer Comments - Older Comments
151. 2020-03-19 12:12:44 Matthias Haesner Comments on The enumerate method in Magik Programming:
hello and thanks a lot for your nice examples with Magik coding.
I tried to run them on Visual Studio Code
but a Magik compiler is missing.
Could you provide me
a compiler
for to execute your Magik codes ?
Thanks in advance
152. 2020-03-03 14:43:16 francobe Comments on How to Send Email using VBScript and GMail (SSL)?:
Gracias.
thanks.
153. 2020-02-26 16:33:46 ACMer Comments on Shell Coding Exercise - Word Frequency:
Thank you. True, the Unicode letters are tricky.
154. 2020-02-26 13:56:36 Koenraad De Smedt Comments on Shell Coding Exercise - Word Frequency:
Most of the above solutions fail for real-life texts which may include uppercase letters and letters outside the English alphabet. A more encompassing solution to tokenization is the following:
grep -Eow '\w+' words.txt
With case folding:
grep -Eow '\w+' words.txt | awk '{ print tolower($0) }'
And finally word frequencies:
grep -Eow '\w+' words.txt | awk '{ print tolower($0) }' | sort | uniq -c | sort -nr
If desired, the columns with frequencies and words can switch places with:
| awk '{ print $2 " " $1 }'
155. 2020-02-11 13:28:56 Hois Comments on Avoid Javascript whenever possible:
Not anymore, lmao
156. 2020-01-21 20:18:01 ACMer Comments on Recursive Combination Algorithm Implementation in C++:
Thank you for your feedbacks, code updated.
157. 2020-01-21 12:56:37 Vladimir Comments on Recursive Combination Algorithm Implementation in C++:
You never release the memory and it is not a good practice. So... you should have delete[] arr;
158. 2020-01-16 19:32:53 ACMer Comments on How to Automatically Restart MySQL Server in the event of Crash?:
what errors have you seen? It should continue to work.
159. 2020-01-16 10:43:54 Mohidul Islam Comments on How to Automatically Restart MySQL Server in the event of Crash?:
This script works at ubuntu 18.04?
I am using 18.04. And running apache2.
any solution for that?
160. 2019-12-26 09:51:05 Idiakose Sunday Comments on How to Async and Await in C++11?:
Thanks for this. I got a bit confused on reading this. Especially as future::get() indeed blocks if the promise hasn't been resolved yet(computation hasnt yielded a result yet)
161. 2019-12-26 09:51:05 Idiakose Sunday Comments on How to Async and Await in C++11?:
Thanks for this. I got a bit confused on reading this. Especially as future::get() indeed blocks if the promise hasn't been resolved yet(computation hasnt yielded a result yet)
162. 2019-12-19 08:05:43 ACMer Comments on Introduction to 8-bit Famicom Clone - Subor - SB2000:
Yes. very good quality keyboard.
163. 2019-12-18 22:40:44 null42 Comments on Introduction to 8-bit Famicom Clone - Subor - SB2000:
Can i use this keyboard on a normal computer? like a windows 10 machine
The quality of the keyboard is good?
164. 2019-12-16 17:03:19 Javoid1 Comments on Fast Integer Log10:
Untrue! Integers in a real program do not occur with a uniform distribution, and smaller numbers are more common.
165. 2019-12-11 03:30:42 ck Comments on Simple xargs Batch Implementation for Windows:
it works, thanks a lot!
166. 2019-12-10 18:20:00 ACMer Comments on How to Split a String in Balanced Strings?:
According to the problem statement, it will return 0 for 'RRL' which is right. RL is not a pair.
167. 2019-12-10 17:46:05 aditya valluru Comments on How to Split a String in Balanced Strings?:
This wont work for RRL input, but still it has one pair of RL.
168. 2019-12-04 19:43:57 ACMer Comments on C++ Function to Get File Version using Win32 API (ANSI and Unicode version):
Thank you! corrected.
169. 2019-12-04 15:02:03 Denis Comments on C++ Function to Get File Version using Win32 API (ANSI and Unicode version):
There are three errors leading to the memory leaks. You allocate array in the heap but free memory as pointer. Should be operator delete[].
170. 2019-11-20 14:17:50 Manuel Comments on Embed Images in HTML with API support:
Thanks for this information, greetings.
171. 2019-11-12 16:31:10 Balaji Comments on The Javascript Function (Node Js) to Compare Version Number Strings:
Hi There
Thanks for the code. Wanted to leave a note so that people can take care : ios 8 doesn't support the "let" keyword. So it would be better to initialise it before the loop and leave the initialisation part empty.
172. 2019-11-12 14:25:40 Luuk Comments on How to Find Out Whether a Machine is Big Endian or Little Endian in C/C++?:
Running the program in C++ on an intel Windows machine gives Little Endian. R.I.P. my byte-reading program 😛
173. 2019-11-11 08:39:21 ACMer Comments on How to Find the Most Common Word in a String with a Banned List?:
This is the lambda syntax in C++. auto is the keyword for auto type deduction
174. 2019-11-11 01:04:03 Blake Dixon Comments on How to Find the Most Common Word in a String with a Banned List?:
On lines 16 and 25, can someone explain what the this syntax means:
Line 16: [](auto c)
Line 25: [](auto &a, auto &b)
Thanks.
175. 2019-11-05 17:40:45 ACMer Comments on Comparing Left and Right Branch of a Complete Binary Tree:
Thank you very much.
Newer Comments - Older Comments
–EOF (The Ultimate Computing & Technology Blog) — 46 words