Catatan

Tunjukkan catatan dari Januari, 2022

Handling error converting data type varchar to numeric in SQL Server

Imej
https://stackoverflow.com/questions/338075/cast-and-isnumeric  https://stackoverflow.com/a/21770230/10763264

System.Net.Sockets.SocketException: 'Only one usage of each socket address (protocol/network address/port) is normally

Imej
 System.Net.Sockets.SocketException: 'Only one usage of each socket address (protocol/network address/port) is normally Option 1 Open the Command Prompt. Type  netstat -ano | findstr ":80"  - where "80" is the port number you are searching for. Look at the last column in the results - the PID. For each PID running that you want to kill, execute  taskkill /PID <PID> /F  in the Command Prompt window (where  <PID>  is the PID that needs to be killed). Option 2 If Option 1 above doesn't work, try rebooting your machine.

PHP XML

 https://www.w3schools.com/php/func_simplexml_asxml.asp https://www.php.net/manual/en/simplexmlelement.asxml.php

Horizontal scroll with mouse wheel at Microsoft Visual Studio

Imej
References link :  https://stackoverflow.com/a/42682640 Extension VSCode :  https://marketplace.visualstudio.com/items?itemName=drewnoakes.SideScroller

The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.

The conversion of a varchar data type to a datetime data type resulted in an out-of-range value. The statement has been terminated. Solution: guna data format :  DD/mm/YYYY HH:mm:ss tt INSERT into LCUlog(DateTime,logmessage) values ((convert(datetime,'1/14/2022 4:14:58 PM',103)), '');

Wireshark frame.marked == 1

https://www.wireshark.org/lists/wireshark-users/201004/msg00032.html Tim Black wrote: > I would love to be able to customize the display of packets in an absolute > fashion, e.g. "Ignore this one" or "show only this one and this one". To me > this means there would be a Display Filter field for packet number. Is there > support for this hiding from me somewhere, or if not, is there at least a > plan to support this? To be clear, I am talking about Display Filtering by > the leftmost column entitled "No.". I hope this is not also the answer to my > question. ;-) How about Ctrl-M to mark either the packets you want to display, or the packets you want to ignore. Then: "frame.marked == 1" to display only the marked packets, or "frame.marked == 0" to ignore the marked packets and display only the unmarked packets.

HEX, decimal, binary, CRC calculation

Decimal to Binary converter https://www.rapidtables.com/convert/number/decimal-to-binary.html Online Hex Converter https://www.scadacore.com/tools/programming-calculators/online-hex-converter/