404 File Not Found

That's weird. It went well locally, so I posted it on development 404 File Not Found page not found The error occurred. While trying to shovel this and that, I uploaded a folder collection with the FileZilla FTP program, but some of the files were not uploaded. How could this happen? There were three files in the folder, but only two were listed. In the past, some of the files were not uploaded, so I only used Filezilla, but I can't believe this problem happened here.

Visual studio code Create shortcuts like Eclipse

Open the vs code and go to File -> Preferences -> Keyboard shortcuts. As you can see from the menu that comes out at this time, you can use the shortcut Ctrl+K Ctrl+S. The move of the Eclipse line Alt+UpArrow, and Alt_DownArrow are the same as Eclipse, so you don't have to ask. Copy Line: If you look to the far right of the upper text entry window, you can see the shape of the keyboard. Click this to display Recodding Keys, and click a shortcut in the text entry window to display a list of shortcuts registered in the vs code. The line copy shortcut Ctrl+Alt+DownArrow is already registered, so if you press it, it will appear on the list. Right-click and click Remove Keybinding to delete it. Then find Copy Line Down and click Ctrl+Alt+DownArrow to register. Delete Line: The rightmost icon in the text input window is Clear Keybindings Search Input (Escape). This clears the text input. Line deletion is also deleted because it is already registered like a line copy. Locate the Del...

Python Offline Installation

Python offline installation is somewhat difficult. Don't be in a hurry and install it calmly while looking at it. First, download the file sun installation file (the latest file version as of today is python-3.10.5-amd64.exe) and double-click to see the installation window. In the beginning, Install Now and Custom installation come out, but if you use your PC at home, you can install Now C:\Users\Your Name I don't mind installing it in the path If you do Install Now due to problems such as administrator privileges, users other than the administrator may not be able to use it, so choose Custom installation. And the Add Python 3.10 to PATH below is not checked by default, but it must be checked. Then, the optional features will be displayed on the next screen, but all of them are checked by default, so click Next button. You can see the Advanced Options, and if you look at the bottom, you can see the Customize install location C:\Users\Your Name This will be set up. This can lead...

Run as Java class and method string name

I got Java class or method name as a string and looked for it to be executed. package classname; public class AppTest{     public void printIt(){       System.out.println("printIt() no param");     }          public void printItString(String temp){       System.out.println("printIt() with param String : " + temp);     }          public void printItInt(int temp){       System.out.println("printIt() with param Int : " + temp);     } }  package classname; import java.lang.reflect.Method; public class ReflectApp{   public static void main(String[] args){     Class noparams[]={};          Class[] paramString=new Class[1];     paramString[0]=String.class;          Class[] paramInt=new Class[1];     paramInt[0]=Integer.TYPE;          try{   ...

[svn] commit operation failed

I was using svn well, and suddenly, there were errors like commit operation failed, update operation failed, synchronize operation failed. After doing this and that, it was not necessary to clean and refresh this and that by googling.In conclusion, the svn server went down.I turned on the svn server again and it worked.