adhocshare Blog

0

Apache JMeter user.properties file

JMeter user properties file Stashing my jmeter user.properties file settings 😉   command-line > bin/jmeter.bat -n -t “project\Test Plan.jmx” -l “project\output_results\testresults.jtl”   user.properties jmeter.save.saveservice.output_format=xml jmeter.save.saveservice.url=true jmeter.save.saveservice.samplerData=true jmeter.save.saveservice.requestHeaders=true jmeter.save.saveservice.response_code=true jmeter.save.saveservice.response_data=true jmeter.save.saveservice.responseHeaders=true jmeter.save.saveservice.response_message=true jmeter.save.saveservice.thread_name=true jmeter.save.saveservice.time=true jmeter.save.saveservice.latency=true jmeter.save.saveservice.bytes=true jmeter.save.saveservice.hostname=true jmeter.save.saveservice.label=true jmeter.save.saveservice.data_type=true jmeter.save.saveservice.assertions=true jmeter.save.saveservice.assertion_results_failure_message=true...

0

WSL2 configuration

X11 forwarding on WSL2 More info here ~/.bashrc export DISPLAY=$(awk ‘/nameserver / {print $2; exit}’ /etc/resolv.conf 2>/dev/null):0 export LIBGL_ALWAYS_INDIRECT=1   Windows links for linux apps in WSL Adds linux GUI application menu to a windows toolbar https://github.com/cascadium/wsl-windows-toolbar-launcher Related posts: Access...

0

Hadoop streaming with Python

Want to write a Hadoop program in less than 5 minutes? Get in here for a quick check on how it’s done. We use Python and Hadoop streaming to complete the task.

0

Windows terminal settings

Settings of my Windows terminal are getting stashed for saving another day :p
Background images, styling to the terminal windows.

0

Total commander settings

Had to stash my totalcommander settings 😎 wincmd.ini [Layout] ButtonBar=1 ButtonBarVertical=1 DriveBar1=0 DriveBar2=0 DriveBarFlat=1 InterfaceFlat=1 DriveCombo=1 DirectoryTabs=1 XPthemeBg=0 CurDir=1 TabHeader=1 StatusBar=1 CmdLine=0 KeyButtons=0 HistoryHotlistButtons=1 BreadCrumbBar=1 [Shortcuts] A+PGDN=cm_GoToDir A+PGUP=cm_GoToParent C+PGUP=cm_OpenNewTabBg C+D=cm_DirectoryHotlist C+E=cm_SrcCustomViewMenu CS+H=cm_SwitchHidSys CS+Q=cm_SrcQuickInternalOnly CS+SPACE=cm_CountDirContent F2=cm_RenameOnly F7=cm_MkDir F9=cm_CreateShortcut F10=cm_GoToFirstFile F11=cm_GetFileSpace F12=cm_SetAttrib...

0

Case insensitive string comparison in C++

(Not an original article) The standard library component std::basic_string<> (better known as std::string, which is a convenient typedef for std::basic_string<char>), is an important and widely used element of the standard C++ library. The declaration of basic_string<> in the standard library...