Labels

Android (1) bash (2) boost (2) C (34) C++ (2) cheatsheet (2) CLion (6) css (3) Debian (33) DL (17) Docker (1) Dreamweaver (2) Eclipse (3) fail2ban (4) git (5) GitHub (4) Hacking (3) html (8) http (1) iOS (1) iPad (1) IRC (1) Java (30) javascript (3) Linux (164) Mac (19) Machine Learning (1) mySQL (47) Netbeans (4) Networking (1) Nexus (1) OpenVMS (6) Oracle (1) Pandas (3) php (16) Postgresql (8) Python (9) raid (1) RedHat (14) Samba (2) Slackware (45) SQL (14) svn (1) tar (1) ThinkPad (1) Virtualbox (3) Visual Basic (1) Visual Studio (1) Windows (2)

Friday 26 February 2021

Wednesday 24 February 2021

Change vim colours or more specifically to change the comments from blue to somehting more readable.

This works on Slackware

Create or edit your /home/user/.vimrc file, adding the following;

:set background = dark


Friday 19 February 2021

To relocate existing codebase to a new svn location

If we have an svn url which we backup and restore to a new url, then we can update existing source to point to the new url as below;

Monday 15 February 2021

To download and execture a script automatically in Linux

If we want to ensure that we are always running the most recent version of a script, then we can use curl as below;

curl -s http://192.168.254.198/stuff/scripts/myscript.sh | bash -s arg1 arg2 arg3

where http://192.168.254.198/stuff/scripts/myscript.sh is the location of the script, reachable from the target machine and arg1, arg2, arg3 are optional parameters that would be applicable if the script was run from the command line as ./myscript.sh arg1 arg2 arg3

 


To rename a drive or partition in Linux

tunefs -l name /dev/sda1

where name is the name we wish to use and /dev/sda1 is the target partition.


Monday 8 February 2021

HOWTO use Acronis Backup or Restore boot disk without a mouse

ALT + [LEFT SHIFT] + [NUM LOCK]

Then we can use the cursor keys or mouse keys with ENTER being a LEFT CLICK

source

Saturday 6 February 2021

Issue on Mac with Corsair K95

Automatically open the Google Chrome browser with Developer Tools

 To open Chrome with Developer Tools all the time, you simply open in with the following arguments;

--args --auto-open-devtools-for-tabs

To have this done in PhpStorm goto Tools>Web Browsers and edit Chrome, adding in the above to the Command Line Options field.