Re: How Can I Hookup My Mobile Phones To My PC Monitor ? Hardware and Software Hardware Mobile and Wearables by Fitmovers If you want to connect your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-C to HDMI adapter (if your phone supports HDMI output). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA input, you might also need an HDMI to VGA converter. Mirroring Pixels Programming Software Development by Monkey101 Mirroring is done by copying. Suppose a Picture has H rows … Mirroring b/w two mysql servers Programming Databases by sagardb Hi, presently i am working on mirroring in between two servers of mysql.can you please provide me a code to do mirroring Re: Mirroring b/w two mysql servers Programming Databases by varmadba I Guess Mirroring is a Sql Server 2005 concept, In Mysql only way you can maintain a Hot Backup is by replication(As per my knowledge) Mirroring..Possible? Hardware and Software Microsoft Windows by Impi … as a few programs. We are currently looking into using mirroring to backup the netdrive. We do have a NAS but… mirroring data Programming Databases by dragonflyuk Is there any easy way of mirroring a mysql database, without having access to the config files?? … Re: Mirroring Drives on server 2008 Hardware and Software Microsoft Windows by jbennet do you have hardware mirroring capability? Re: Mirroring Pixels Programming Software Development by NormR1 What are the coordinates for the pixels (source and target) as they are copied? Make a loop that copies the pixels for each row inside another loop that goes through the rows. Re: Mirroring Pixels Programming Software Development by JamesCherrill > How many Pixels are copied when the Picture is mirrored along the vertical line through its middle? Isn't the answer just "all of them" (H*W)? Or am I missing something? Re: Mirroring Pixels Programming Software Development by Monkey101 public void mirrorVertical() { int width = this.getWidth(); int mirrorPoint = width / 2; Pixel leftPixel = null; Pixel rightPixel = null; for(int y = 0; y < getHeight(); y++) { for(int x =0; x < mirrorPoint; x++) { leftPixel = getPixel(x,y… Re: Mirroring Pixels Programming Software Development by NormR1 Can you explain the logic for what you want the code to do? Make a list of the steps in pseudo code. What happens when you compile and execute the code? Re: Mirroring Pixels Programming Software Development by Monkey101 I want the code to display the number pixels that are copied when the Picture is mirrored along the vertical line. In my for loop I added the variable count int count =0; for(int y = 0; y < getHeight(); y++) { for(int x =0; x < mirrorPoint; x++) { leftPixel = getPixel(x,y); … Re: Mirroring Pixels Programming Software Development by NormR1 Counting the number moved doesn't mean that they were moved to the correct locations. All the counting does is verify the product of width/2 * height Unable to reestablish DB mirroring in SQL Server 2008 R2 Programming Databases by mmonclair … set up security, with new endpoints and accounts for mirroring. I was able to log into the other database…port 1433 while setting up security. Upon trying to initialize mirroring I get the following error: "prodDB.mydomain.com…. Made sure that the user accounts set up for mirroring had sysadmin privileges for the database being mirrored. When … About image mirroring using php Programming Web Development by mahe4us … has facility to change the uploaded picture into horizontal mirroring and vertical mirroring. Once the user changed the image to his wishes… be saved into server. Kindly anyone suggest me how to mirroring the image using php in serverside. Thanku in advance. Re: About image mirroring using php Programming Web Development by mahe4us … is very effective. Apart from that, somebody told me to mirroring,cropping,rotating the images via OCR programs. That means OCR… MSSQL Mirroring two servers Programming Databases by gvwiberg … online. I'm trying to figure out how to setup mirroring for two MSSQL Servers. (Like two mirrored servers) I understand… that you can setup a mirroring like "Server", "Server backup" and "… Server mirroring Hardware and Software by Alexis_1 … there is a hosting issue that has been discussed about mirroring the servers and having some backup. A different team is… proposing a mirroring option that has server A with one hosting provider and… Oracle to mysql database mirroring Programming Databases by venkyb47 … application use the same database. We are planning to do mirroring of oracle database into mysql database. So that mysql db… mirror of ERP database. What is the best way for mirroring this condition? RAID Mirroring? Hardware and Software Microsoft Windows by sbn -can any teach me how to create a RAID mirroring in win 03 server without additional softwares or hardawers... Database Mirroring Programming Databases by avi-reiter Does anyone know if its possible and/or practical to set up database mirroring between two MS SQL 2005 servers that are on completely different networks? The bandwidth between them is around 5mb and asynchronous would be fine. Thanks in advance, Avi Reiter <URL SNIPPED> Postfix server mirroring. Hardware and Software Linux and Unix by VanHackman Hello, Just wanted to know if its possible to perform server mirroring with a postfix-based mail server. If so... which will be the best way to do it?. Thanks!, VanHackman Rsync: Two-way mirroring on Linux server Hardware and Software Linux and Unix by mwansari Hi, I have setup mirroring on my two Linux servers using rsync. On first server … how to setup a windows mirroring server Hardware and Software Networking by jerryy I have a server with 35 clients and one time the server shutdown, causing choas for few hours to switch the server to another PC. How can I setup a mirroring server. I'm using Windows Server 2008, my application using MySQL database. Please advise Re: Mirroring b/w two mysql servers Programming Databases by mwasif Checkout these links for MySQL replication [url]http://dev.mysql.com/doc/refman/5.0/en/replication-howto.html[/url] [url]http://www.neocodesoftware.com/replication/[/url] Re: Mirroring..Possible? Hardware and Software Microsoft Windows by DimaYasny that 250Gb drive, does it hold anything except for data? I mean is there an operating system that needs to be cloned (failover cluster mode) as well? because if not, all you need to do is set up a simple script that will copy the needed data over to the backup storage server in the night. If you're looking for real time replicaton, you need to … Re: Mirroring..Possible? Hardware and Software Microsoft Windows by Impi It will be purely for the data on the netdrive, there is no OS on the netdrive, we just basically need a backup of the netdrive so that if something goes wrong we can just replace it with as little configuration as possible. Also we plan to only backup at night. Thanks for the quick reply. Re: Mirroring..Possible? Hardware and Software Microsoft Windows by DimaYasny where do you intend to backup to? the simplest thing to do if you're using a windows box as the backup target, is to use robocopy, or xcopy. both can be set up to back up only changed files, so the first backup will take long, while the next backups will only take on the changes to the data. that way network traffic will be low. if you are using … Re: Mirroring..Possible? Hardware and Software Microsoft Windows by Impi We will be using a windows box to backup to. I googled robocopy and came across the robocopy website([url]www.tgrmn.com[/url]) and found it to be exactly what we need. Thank you for the help I really appreciate it. Re: Mirroring..Possible? Hardware and Software Microsoft Windows by DimaYasny great :) just mark the thread as solved, if the issue is resolved for you