I like the physical appearance of these machines. They’re almost attractive in their ugliness. Some of them, like this one, has a cab at the base which harbors a driver who moves the crane about. Others, the larger ones, seem to be built into a construction site of their own. There...
When sent to the server, this is saved as JSON rather than a regular string. The implications are huge. Now, we can find all log messages with a certainPayloadvalue. Or filter log messages according to the request URL. We can save consumer data and try and find a correlation with their...
The client sends requests one after another in a single thread. This means the server doesn’t accept more than one request at a time. In a real-world scenario, your server will accept requests on multiple threads from different machines. These serializers may act differently when serving mult...
PowerShell allows to run several commands with the semicolon;character. i.eCommand1 ; Command2 ; Command3. The commands run sequentially, regardless of the success or failure of the previous command, much like the single&character in CMD. 2. Chain a sound effect at the end of a command ...
There are profiling toolsinside Visual Studio. Specifically, theDiagnostic Toolswhile debugging andprofiling without the debugger. You might need VS Enterprise for some of those features. 2. Start using a performance profiler A performance profiler is your Chef’s Knife when it comes to performance....