Cura Settings

Set Cost of Filament

Settings, "Configure Setting Visibility..."

Change the currency code

Set the Cost

Linking Domains to your GoDaddy Account

When GoDaddy upgraded and change my server package, we move my domains from one plan to another; however, the sites never went live on the new servers. This was because GoDaddy's automated process did not update my DNS settings properly. Do this manually.

Get the IP address of the new server, and you need to go through each domain that you own and update the A records for the DNS.

Delete a file starting with a dash/hypen on Linux on the command line

So you have a file that starts with a dash/hyphen/- and need to delete it. But when you try to do so, the "rm" command complains that you have passed an "invalid option –". This post looks at the simple solution to deleting a file that starts with a dash/hyphen.

As an example, doing a directory listing gives you something like this:

$ ls -l
total 678586
-rw-r--r-- 1 root root        54 Apr 29 15:39 -.log
-rw-r--r-- 1 root root     26819 Apr 30 13:17 210.5.53.35.log
-rw-r--r-- 1 root root     18114 Apr 30 01:37 210.5.53.36.log
-rw-r--r-- 1 root root     18410 Apr 30 01:37 210.5.53.37.log

You try to delete the -.log file like this:

rm -.log

and rm complains like this:

rm: invalid option -- .
Try rm ./-.log' to remove the file -.log'.
Try `rm --help' for more information.

The answer is actually supplied in the error message, which is fairly unusual for a Linux/Unix command. Instead of doing rm -.log you simply add ./ to the start and run this instead:

rm ./-.log

This will also work for other command line utilities you need to run against a file starting with a hypen/dash.

Fix the ORA-00904: ORA_ROWSCN

Fix the ORA-00904: ORA_ROWSCN: invalid identifier error in SQLDeveloper with a few easy steps

Refer: https://www.igorkromin.net/index.php/2017/08/06/fix-the-ora-00904-ora_rowscn-invalid-identifier-error-in-sqldeveloper-with-a-few-easy-steps/

Fix

Turns out fixing this problem is easy. Open up the SQL Developer Preferences, then navigate to Database > Object Viewer. Untick the box that says Use ORA_ROWSCN for DataEditor insert and update statements.