First Normal Form 1NF
No repeating columns or columns contain only a single value.
Second Normal Form 2NF
As per 1NF but each non PK value can be uniquely identified by the PK
Third Normal Form 3NF
As per 2NF but each no PK value can ONLY be identified by the PK
Heisenberg - Digital Alchemist, Software Architect, Automation Specialist and Mechanical Engineer.
Labels
Android
(1)
bash
(2)
boost
(2)
C
(34)
C++
(2)
cheatsheet
(2)
CLion
(6)
css
(3)
Debian
(33)
DL
(17)
Docker
(2)
Dreamweaver
(2)
Eclipse
(3)
fail2ban
(4)
git
(5)
GitHub
(4)
Hacking
(3)
html
(8)
http
(1)
iOS
(1)
iPad
(1)
IRC
(1)
Java
(31)
javascript
(3)
Linux
(167)
Mac
(19)
Machine Learning
(1)
mySQL
(48)
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
(47)
SQL
(14)
svn
(1)
tar
(1)
ThinkPad
(1)
Virtualbox
(3)
Visual Basic
(1)
Visual Studio
(1)
Windows
(2)
Wednesday, 23 January 2019
Comparison between SQL and Pandas
Comparison with SQL
Thursday, 10 January 2019
VirtualBox command line. Removing innaccessable VMs change machine location
To delete virtual machines from the command line, first I removed the *.vbox *.vmdk files etc (basically the folder that these files are in).
Then;
VBoxManage list vms (this lists virtual machines)
VBoxManage unregistervm ********* (where *** is the number of the VM as shown by the previous command).
To change default location of VM's
vboxmanage setproperty machinefolder /path/to/directory/
Note use path in quotation marks if folder needs a space, example;
vboxmanage setproperty machinefolder "/var/VirtualBox VMs"
Then;
VBoxManage list vms (this lists virtual machines)
VBoxManage unregistervm ********* (where *** is the number of the VM as shown by the previous command).
To change default location of VM's
vboxmanage setproperty machinefolder /path/to/directory/
Note use path in quotation marks if folder needs a space, example;
vboxmanage setproperty machinefolder "/var/VirtualBox VMs"
Friday, 4 January 2019
Mac add Open With to Right Click menu
Add OPEN WITH to Right click menu
- Open
Automator
and selectService
document type. - Select
Files and Folders
in the topService receives selected
menu - Search for and select the
Open Finder Items
action. - Now select
TextEdit
inOpen with:
- Save the service with a name you want to see in the menus
You can now find this by:
- Right-clicking the file > Services
Tuesday, 1 January 2019
Renaming a file to include date
To rename a file to include the date in the filename use the following:
mv myfile.txt myfile_$(date + %d-$m-%Y).txt
This can be useful when creating backup files.
A script called by cron like the below might be useful.
#!/bin/bash
rm myfile_*.tar
tar -cf myfile.tar myfile.txt && mv myfile.tar myfile_$(date + %d-$m-%Y).tar
mv myfile.txt myfile_$(date + %d-$m-%Y).txt
This can be useful when creating backup files.
A script called by cron like the below might be useful.
#!/bin/bash
rm myfile_*.tar
tar -cf myfile.tar myfile.txt && mv myfile.tar myfile_$(date + %d-$m-%Y).tar
Subscribe to:
Posts (Atom)