XCOPY G:\FOLDER1\react-workspace D:\FOLDER2\react-workspace /s /EXCLUDE:avoid.txt
avoid.txt should include the files or folders you want to exclude.
In my case, I added node_modules in my avoid.txt
XCOPY G:\FOLDER1\react-workspace D:\FOLDER2\react-workspace /s /EXCLUDE:avoid.txt
avoid.txt should include the files or folders you want to exclude.
In my case, I added node_modules in my avoid.txt
| <servers> | |
| <server> | |
| <id>exchange-server</id> | |
| <username>anypoint_username</username> | |
| <password>anypoint_password</password> | |
| </server> | |
| </servers> | |
| <profiles> |
| Original Documentation for download and steps: | |
| https://kafka.apache.org/quickstart | |
| Download latest version of kafka server: | |
| https://www.apache.org/dyn/closer.cgi?path=/kafka/ | |
| ================================================== | |
| Download and extract kafka to any directory (mine is installed in C:\kafka) | |
| Open command prompt from within this folder ('kafka' in my case) |
| // Append this code to the main class | |
| @Bean | |
| public CorsFilter corsFilter() { | |
| UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); | |
| // Allow anyone and anything access. Probably ok for Swagger spec | |
| CorsConfiguration config = new CorsConfiguration(); | |
| config.setAllowCredentials(true); | |
| config.addAllowedOrigin("*"); |
| [ | |
| { | |
| "department":"cse", | |
| "section":"A", | |
| "studentid":"cs101", | |
| "studentname":"george", | |
| "personalinfo":[ | |
| { | |
| "place":"delhi", | |
| "food":"idli", |
| // 1. Go to the chrome console | |
| // 2. Paste this below code and press enter | |
| var i=1000; | |
| function verifyMOBI() { | |
| // data to execute | |
| document.getElementById("ENTER THE INPUT BOX ID").value = i; | |
| document.getElementById("ENTER THE VERIFY BUTTON ID").click(); | |
| i++; | |
| } |
| 1. Go to chrome bookmarks bar | |
| 2. Add new page and add the following credentials for Name and Url inputs | |
| 3. Name : <any name you desire> | |
| 4. Url : javascript:function tcaller(){ var mobile_num = window.prompt("Please enter the mobile number you want to search for"); if(mobile_num!=null && mobile_num!=""){ var search_num = window.open("https://www.truecaller.com/search/in/"+mobile_num) } else { var search_num = console.log("Please enter a valid number") } } tcaller(); | |
| 5. You can update the above code and add you country code like shown below | |
| window.open("https://www.truecaller.com/search/<YOUR COUNTRY CODE>/"+mobile_num | |
| 6. Try it! |