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

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

401. 2017-06-14 10:17:43 Prasanta Shee Comments on Does TeamViewer Support Multi Screens (Monitors)?:

No idea about teamviewer, but tools like on premise R-HUB remote support servers does support multiple monitors. i.e. Multi screen. You may try the same.


402. 2017-06-12 16:41:35 Jay Comments on How to Whitelist The CloudFlare IPs?:
I'm unclear. If 103.21.244.0/22 = 1022 IP addresses, and it's run through IPCalc, where is the list of the 1022 addresses?


403. 2017-06-07 17:29:13 ACMer Comments on Tutorial 8 – C Programming in 6502 – Sprites:
Thanks for sharing!


404. 2017-06-07 16:58:40 zarnes Comments on Tutorial 8 – C Programming in 6502 – Sprites:
Hi ! I found the solution, you don't need to put anything in 2003 address. I made this function : if you had the same problem as me, try it 🙂 void putSP(char x, char y, char t, char a){ address(0x2004)=y; address(0x2004)=t; address(0x2004)=a; address(0x2004)=x; }


405. 2017-06-05 13:52:36 G Brown Comments on How to Offload Your Server by Using CloudFlare - Cache Everything?:
"Cloudflare by default only caches the static resources, such as images, audios, documents. " -- Wrong- no audio is cached. They have a list of file that get cached. "(including the dynamic PHP pages)" ??? my server only emits html pages. I don't think cloudflare can cache php because they should never see php pages. However there are ways to generate and freeze html from a php script and then just have the origin server emit the frozen html; like WP Super Cache for wordpress users.


406. 2017-06-03 20:54:16 Kirill Comments on Tutorial 1 - C Programming for 6502 (8 bit) CPU:
Thank you very much for the article! A good starting point for those who want to make games for NES!


407. 2017-05-25 23:28:24 ACMer Comments on Does TeamViewer Support Multi Screens (Monitors)?:
thanks, will do.


408. 2017-05-25 20:38:02 Hein Comments on Does TeamViewer Support Multi Screens (Monitors)?:
Try Spacedesk


409. 2017-05-25 16:13:24 zarnes Comments on Tutorial 8 – C Programming in 6502 – Sprites:
Thanks for your quick answer 😀 Yea here is the download link for my source code and the nes file : https://mega.nz/#F!MUFVAAJY!hlXjrTt2Z1nMjhL3r2eyHA putSP(0,x,28*8,10,0); putSP(1,x+8,28*8,10,0); putSP(2,x+16,28*8,10,0); putSP(80,ball_x,ball_y,'*',0); All sprite numbers are differents, there are less than 8 sprite per line, I don't understand x) . Thanks


410. 2017-05-25 08:41:59 ACMer Comments on Tutorial 8 – C Programming in 6502 – Sprites:
Do you have source code? I believe the 8-bit FC maximum supports up to 15 spirits at a time, however, only 2 can be controlled by joysticks.


411. 2017-05-25 06:55:35 Zarnes Comments on Tutorial 8 – C Programming in 6502 – Sprites:
Hi, great tutorials, but I can figure out how to display more than 2 sprite on screen at the same time. If I display 3 differents, only the 2 lasts appear, they are not even flickering, any idea ? Thanks


412. 2017-05-15 04:49:03 W Comments on How to Remove an Item in a List (Good Taste and Bad Taste)?:
God gave us std::algorithm


413. 2017-05-09 16:28:30 Rafael Comments on The 404-not-found Code of StackOverFlow:
Quite clever indeed my friend


414. 2017-05-06 22:55:11 ACMer Comments on How to Offload Your Server by Using CloudFlare - Cache Everything?:
In CloudFlare, there is a button to purge everything.


415. 2017-05-06 22:39:14 Tang Rufus Comments on How to Offload Your Server by Using CloudFlare - Cache Everything?:
How do you purge Cloudflare `cache everything` caches? I found Cloudflare caches and WordPress posts out of sync when I publish/update a post. Thus, I write a plugin to purge via Cloudflare API. What's your tricks? Thanks! https://wordpress.org/plugins/sunny/


416. 2017-05-04 17:42:28 ACMer Comments on How to Automatically Restart MySQL Server in the event of Crash?:
I think you have to put this in the crontab job of user 'ROOT'


417. 2017-05-04 16:16:29 eniel Comments on How to Automatically Restart MySQL Server in the event of Crash?:
I am try to set up the script, but to see it is working I stop my mysql service but after 5 minutes nothing happen. Could you tell any consideration to have in order make the script works. thanks!


418. 2017-05-04 14:48:58 ACMer Comments on How to Automatically Restart MySQL Server in the event of Crash?:
yes. it works on Ubuntu 14.04, but the current stable is 16.10 and there is a beta 17.xx


419. 2017-05-04 14:46:54 eniel Comments on How to Automatically Restart MySQL Server in the event of Crash?:
Very hepful. Thank you! This script works at ubuntu 14.04?


420. 2017-05-03 16:18:45 wyattwong Comments on The 8 bit DOS by Famicom Clone - BBGDOS in the 1990s:
Please let me know the price of BBG Famiclone emulator ?


421. 2017-05-02 13:17:47 Young Comments on The 8 bit DOS by Famicom Clone - BBGDOS in the 1990s:
Very interesting and valuable information. How could I get the BBG Famicom emulator?


422. 2017-05-01 22:17:46 ACMer Comments on How to Delete a Node from a Binary Search Tree?:
Thanks, corrected.


423. 2017-05-01 22:14:00 Nathaniel Comments on How to Delete a Node from a Binary Search Tree?:
hi you have an error at line 5 if (data > root->data) should be if (data data)


424. 2017-04-26 12:52:21 ACMer Comments on Model-View-Controller Explained in C++:
Thanks! You may be right. The purpose of this post is to illustrate the idea of MVC, but thanks for the suggestions


425. 2017-04-26 12:48:36 QQ Comments on Model-View-Controller Explained in C++:
Hi ! Nice tutorial but I think the C++ code has issue but maybe I'm wrong. 1/ If you change a little your code controller.OnLoad(); model.SetData("Changes"); return 0; By: controller.OnLoad(); model.SetData("Changes"); controller.OnLoad(); return 0; You will see the issue ! The display is: Model Data = Model Data Changes: Changes Model Data = Model Instead of: Model Data = Model Data Changes: Changes Model Data = Changes 2/ The problem is that you call constructors by copy instead of using reference. or address. Replace for example: private: Model model; View view; For: private: Model *model; View *view; And: void SetView(const View &view) { this->view = view; } By: void SetView(const View &view) { this->view = &view; } An so long for other classes and methods.


Newer Comments - Older Comments

–EOF (The Ultimate Computing & Technology Blog) —

46 words

The Permanent URL is: List of Comments