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

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

351. 2017-10-09 03:45:17 Thiago Comments on How to avoid Wordpress Emails going to Spam Folder?:

Great tutorial. How do I create and configure a HTML template with header and footer to when a user register in my wordpress site for instance?


352. 2017-10-04 04:26:12 sangv Comments on VBScript Function to Run Program at Remote Computer:
could you please provide entire script, Get servers from txt file and execute the script which is there in remote machine then write into log file like Successfully executed, "server not reachable", "Access denied",


353. 2017-10-03 21:14:45 ACMer Comments on VBScript Function to Run Program at Remote Computer:
On Error Resume Next?


354. 2017-10-03 15:18:51 sangv Comments on VBScript Function to Run Program at Remote Computer:
I want to trigger a script which is there in remote machine using your code and need a log file in local machine like successfully executed or failure in case issues. when I provide incorrect computer name, its shows errors in screen, instead I want that in log file and its has to proceed for another machine,


355. 2017-10-03 15:11:04 sangv Comments on VBScript Function to Run Program at Remote Computer:
how can I call the above function, I have added below lines in bottom of your script and executed. dim result dim var1 result=startExe(".","cscript c:\temp\hellow.vbs" ) var1=msgbox(result)


356. 2017-09-29 14:31:06 ACMer Comments on The Simple Video .m3u8 Downloader/Parser in PHP and Javascript:
if (!function_exists("is_good_url")) { function is_good_url($url) { if (!filter_var($url, FILTER_VALIDATE_URL) === FALSE) { return true; } $vv = strtolower($url); return (startsWith($vv, 'http://') || startsWith($vv, 'https://')); } }


357. 2017-09-29 14:30:22 Y. Sarikaya Comments on The Simple Video .m3u8 Downloader/Parser in PHP and Javascript:
when i try this code i get a error Fatal error: Uncaught Error: Call to undefined function is_good_url() in can you help me please


358. 2017-09-23 12:29:19 Rashed Nizam Comments on How to Compute Numerical integration in Numpy (Python)?:
Thanks for this nice example. If i want to apply this procedure for Gaussian function, How can I do that. I tried it for Gaussian function but it shows some error. Would any one please help about this.


359. 2017-09-22 09:02:26 ACMer Comments on SQL Coding Exercise - Rank Scores:
^_^


360. 2017-09-22 01:42:42 Kristel Fae Comments on SQL Coding Exercise - Rank Scores:
omo. this is so helpful. Lots of love to you thank you


361. 2017-09-19 05:19:01 Jason Comments on How to Hide Feature Image of Posts in Wordpress?:
Great solution! This worked for me in WordPress 4.8.1 running Ad Mag-Lite theme.


362. 2017-09-15 08:23:36 Kirsten Comments on Sex-is-Fun Equation:
who made this up? I think its really cool and I'm doing this equation for a school project so I need to find out all about it. Many Thanks


363. 2017-09-12 04:44:18 Kris Comments on The 8 bit DOS by Famicom Clone - BBGDOS in the 1990s:
Where might i find the nes2gam application? Thank you


364. 2017-09-05 13:00:06 Martin Hammerschmied Comments on How to Async and Await in C++11?:
The whole article is a bit misleading as `std::async` and C# `async/await` are definitely not the same thing. What you have shown here is how to parallelize a sum operation via recursive divide and conquer, computing each part in a separate thread. But: - `parallel_sum` is not an resumable function. Calling it blocks until the result is available. - The `.get()` method is NOT equivalent to the C# `await` operation as you stated. `std::future::get` essentially calls `wait()` on the future and blocks until the task is finished. `await` in turn would wind up the call stack, continue with the execution and restore the execution context in `parallel_sum` at the time the task finishes. That's why there is no `async` keyword and why `parallel_sum` is nothing like a resumable function (async function in C#), but only a fancy way to write parallel code. There will be some kind of true `async/await` coming to C++ as a compiler feature eventually, and there are some compilers that already showcase previews of that, but its not here yet. And its not in C++14.


365. 2017-08-30 08:34:02 ACMer Comments on How to Cache Audio/Video (*.mp4) (Static Resources) using CloudFlare CDN?:
yes, the whole video will be cached by CF.


366. 2017-08-30 07:49:44 Ruma Biore Comments on How to Cache Audio/Video (*.mp4) (Static Resources) using CloudFlare CDN?:
what if client play mp4 video file with start from middle elapsed time for example? is it still cached by CF? Thanks


367. 2017-08-29 19:12:30 nua Comments on How to Solve 'Mobile Data Disconnected' on HTC One M9?:
give this man a medal


368. 2017-08-28 13:09:50 gaming platform Comments on Key Considerations for Developing Online Casino Games:
To pick the casino site where you can gamble, you need to make a research. Software platform plays vital role in online gambling, so players should check out the type of gaming platform offered by the casinos. Software included is NetEnt, Microgaming, Playtech, Cryptologic. These are the most popular gambling software that offers generous visual effects and a responsible gaming platform to the players. By making a deep research one can find reliable and honest gaming software.


369. 2017-08-14 15:19:14 ACMer Comments on How to Solve 'Mobile Data Disconnected' on HTC One M9?:
Glad it helps!


370. 2017-08-14 14:20:17 Mr, 1 Comments on How to Solve 'Mobile Data Disconnected' on HTC One M9?:
Nothing else helped, this was the solution. Thanks a bunch!


371. 2017-08-12 07:53:04 suzil Comments on Chrome Extension to Switch between Simplified Chinese and Traditional Chinese Automatically:
Thanks for this! 谢谢!


372. 2017-08-10 19:26:03 ACMer Comments on How to Delete a Node from a Binary Search Tree?:
Yes you are right.


373. 2017-08-10 07:45:40 Arun Dominic Comments on How to Delete a Node from a Binary Search Tree?:
Error spotted! *temp = FindMin(root->right); but FindMin returns int /*Actual code for FindMin*/ node *FindMin(node *root) { node *temp = root; while (temp->left != NULL) temp = temp->left; return temp; }


374. 2017-08-08 12:16:19 limfg Comments on How to Auto Complete Comment Form using Javascript?:
Test name


375. 2017-08-08 09:01:20 ACMer Comments on How to Analyze Website by using the Wappalyzer (Chrome Extension)?:
Just click the icon.. where else instructions do you need?


Newer Comments - Older Comments

–EOF (The Ultimate Computing & Technology Blog) —

46 words

The Permanent URL is: List of Comments