Remote Manipulation of Processes in a Bash Script
Starting and stopping java services remotely via ssh is a simple process, however in the situation where you need to manipulate or understand active processes remotely, things are more difficult.
Starting and stopping java services remotely via ssh is a simple process, however in the situation where you need to manipulate or understand active processes remotely, things are more difficult.
The find command is very powerful, especially when combined with the -exec option, you can find and copy files to different locations, even renaming them at the same time. The difficulty comes however, when trying to alter the filename (retaining the original filename), for example to add a new prefix or suffix.
On first installing Cygwin, the username is inherited from Windows, and the $HOME directory is created from this username. This is particularly annoying if Windows was originally set up with a multi-word username such as “Firstname Lastname”. This quick guide will show how to change the username and $HOME directory to something more simple.
The ICloneable interface is easy enough to implement when using a flat class, but if you have a more involved class structure with lists of subclasses, it quickly becomes apparent that the class is not being properly cloned. This article will lay out a very simple class structure hierarchy, and then go about demonstrating how …
In windows forms, a variety of different data structures (that implement the IList interface) can be used to bind data to GUI widgets such as combo boxes or list boxes. Each of these data structures have their pros and cons, the ArrayList saves on features when compared to the DataTable, which results in a slightly …