Please click here if the page does not redirect automatically … Source
-
-
Please click here if the page does not redirect automatically … Source
-
How do I list all the columns in a table?
Post as a guest Source
-
Create effective prompts for generative AI training tools
This module covers the basic concepts of prompt engineering, the elements of an effective prompt, and best practices in prompting. By the end of this module, you’ll be able to: Critique the effectiveness of different prompt engineering techniques. Assess the clarity and relevance of instructions and context for prompt creation. Evaluate the benefits of creating…
-
n-Pull
Pick-n-Pull Source
-
Microsoft Certified: Azure Administrator Associate
As a candidate for this certification, you should have subject matter expertise in implementing, managing, and monitoring an organization’s Azure environment, including: Virtual networks Storage Compute Identity Security Governance As an Azure administrator, you often serve as part of a larger team dedicated to implementing an organization’s cloud infrastructure. You also coordinate with other roles…
-
sql server
Extension to @xav answer that handled table partitions to get size in MB and GB. Tested on SQL Server 2008/2012 (Commented a line where is_memory_optimized = 1) SELECT a2.name AS TableName, a1.rows as [RowCount], –(a1.reserved + ISNULL(a4.reserved,0)) * 8 AS ReservedSize_KB, –a1.data * 8 AS DataSize_KB, –(CASE WHEN (a1.used + ISNULL(a4.used,0)) > a1.data THEN (a1.used…
-
spring boot
Solution 1: Kill Process Run command-line as an Administrator netstat -ano | findstr : taskkill /PID /F Solution 2: Change Port Please Make sure that new port you are going to set for your Application doesn’t listen to any other process Change the port server.port=8088 # Server HTTP port. Solution 3: Another way is to…
-
AI Fluency
This learning path is designed to provide a comprehensive understanding of AI. It includes modules that cover various aspects of AI, starting with foundational concepts and progressing to more advanced topics. Each module is tailored to help individuals and organizations apply AI technologies to enhance their philanthropic efforts. Achievement Code Would you like to request…
-
Get path of root project structure
I’ve recently been trying to do something similar and I have found these answers inadequate for my use cases (a distributed library that needs to detect project root). Mainly I’ve been battling different environments and platforms, and still haven’t found something perfectly universal. I’ve seen this example mentioned and used in a few places, Django,…
-
Find IP address of directly connected device
Mmh … there are many ways. I answer another network discovery question, and I write a little getting started. Some tcpip stacks reply to icmp broadcasts. So you can try a PING to your network broadcast address. For example, you have ip 192.168.1.1 and subnet 255.255.255.0 ping 192.168.1.255 stop the ping after 5 seconds watch…
-
Invoke-Restmethod: how do I get the return code?
Post as a guest Source