You need the commercial (ultimate) version of IntelliJ for this step by step instruction, the community edition does not support this type of project.. I am using IntelliJ ultimate version 2019.2 for this instruction. First, preparations: Installing tomcat Extract the package to where you want to run the server, i will be using c:\work\tomcat You […]
Month: January 2020
Extract windows 10 lock screen images to your desktop
This small toy extract all Windows 10 lockscreen images to a folder on your desktop, and adds a .jpg file extension for easy viewing. usage: Download the jar file at the end of this document to a folder of your choosing Execute from a command prompt with ‘java LockscreenExtract’ Your desktop now has a folder […]
Copy Eclipse workspace settings to another workspace
Eclipse saves it’s settings on a per-workspace basis. The majority of the settings which you will want to have to get started are found under the This means on some operating systems you could symlink a central copy of this folder to the .settings on each newly created workspace to auto-sync all settings across all […]
ASP.NET Webforms, MVC & DevExpress: delete confirmation on a gridview
Standard ASP.NET GridView with ASP:Button Standard ASP.NET GridView with DevExpress ASPxButton MVC GridView, using a table to display your data
Access elements by ID and Classname
Add an additional session host server to an existing terminal services installation
Scenario: You have an existing terminal server installation and want to add a new session host server. Procedure: Install a new server instance, and add it to the domain Open Server Manager on the existing management server Choose manage in the top right corner of the server manager, and add the new server to the […]
Code smells
Within classes Comments Putting comments inside your code risks obscuring the code, instead of making things more clear. Comment the class and the methods you expose. Keep comments out of the code itself. Only place the WHY in comments, never the WHAT. Long methods A shorter method is better readable, easier to understand en easier […]