Catatan

Tunjukkan catatan dari Januari, 2024

Web Scrapping PHP Laravel

Imej
  References :  Introduction to Web Scraping With Laravel - https://zubairidrisaweda.medium.com/introduction-to-web-scraping-with-laravel-a217e1444f7c 

Troubleshooting root\cimv2 enabled, but DCOM not allow access denied

Imej
1) To check if WMI is enabled using Windows Management Instrumentation Tester ( wbemtest   ) Reference link :  The Solution :  201 Access denied when connecting - Namespace = root\cimv2 In order to simulate WMI response from probe to target device, run the  wbemtest  tool on probe. Remote to the probe and perform following steps: From the Windows Start menu, click  Start  >  Run . Type  wbemtest  and click  OK . Click  Connect . Type  \\TARGETIP\root\cimv2  in the  Namespace  field (where target IP of the device you are trying to add in  N-able N-central  on the probe's network). Enter the user domain\user and password. Click  Connect . The error you will get should be corrected before you can run discovery jobs. You will want to ensure that: The probe is in the same domain. The probe has admin credentials. DCOM permissions are enabled as per the  Service Displays a 205 or 201 WMI Error  article. Windows DCOM Server Security Feature Bypass WMI issue - Access Denied - tearing my

JAVA Multithreading Notes Project Group

Imej
  Please refer this notes: Java Programming Tutorial - Multithreading & Concurrent Programming Chatgpt Retrieve / Edit / Create / Manipulate multithreading operations in Java language ChatGPT ChatGPT Certainly! In Java, multithreading is a powerful feature that allows you to execute multiple threads concurrently. Here's a brief overview of how you can retrieve, create, manipulate, and edit multithreading operations in Java. Create and Start Threads: You can create a thread in Java by extending the Thread class or implementing the Runnable interface. Extending Thread class: java Copy code class MyThread extends Thread { public void run () { // Code to be executed in the thread } } // Creating and starting a thread MyThread myThread = new MyThread (); myThread.start(); Implementing Runnable interface: java Copy code class MyRunnable implements Runnable { public void run () { // Code to be executed in the thread } } // Creat