-
Use the Download button on www.cursor.com web site. It will download the
NAME.AppImage
file. -
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
Use the Download button on www.cursor.com web site. It will download the NAME.AppImage
file.
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
Use a custom PHP function ( https://www.wpallimport.com/documentation/export/pass-data-through-php-functions/ ) on the content field to convert the image IDs to URLs. Example shortcode:
[vc_single_image image="177" img_size="full" add_caption="yes" alignment="center" style="vc_box_shadow_border"]
Example function:
If you have a slow import, or if you're running into a lot of server timeouts, then you can follow these steps to optimize your import.
Follow all of the steps listed here: http://www.wpallimport.com/documentation/troubleshooting/slow-imports/.
// ref. https://jeroensormani.com/ultimate-guide-to-woocommerce-checkout-fields/ | |
//This post is meant as a one stop shop if you’d like to make any kind of customizations to your WooCommerce checkout fields. Whether this is adding additional fields, removing some unneeded ones or changing the order they’re displayed in. | |
This post is meant as a one stop shop if you’d like to make any kind of customizations to your WooCommerce checkout fields. Whether this is adding additional fields, removing some unneeded ones or changing the order they’re displayed in. | |
Additionally there will be guides on how do display fields two field side by side, updates the order totals when a field changes and how to add basic field validation. | |
This is a post with a lot of code snippets and likely requires changes for it to fit your exact needs. Prefer to use a plugin instead? Take a look at my Advanced Checkout Fields for WooCommerce plugin. | |
Good to Know | |
These are some good to know files, hooks and functions/methods. Some of these |
#!/usr/bin/sh | |
# info | |
docker system df # Show docker disk usage, including space reclaimable by pruning | |
# automatic clean up | |
docker system prune # will delete ALL unused data | |
# (i.e. In order: containers stopped, volumes without containers and images with no containers) | |
# manual clean up | |
docker container prune # Remove all stopped containers |
<?php | |
// Note: Anyone could access your data if they guess this URL. You should remove this file from the server | |
// after importing or name it to something "unguessable". For even better security use an .htaccess rule. | |
// | |
// If you're experiencing problems you can uncomment the following line so errors will be sent to the file. | |
// ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); | |
// | |
// Enter the FTP (or HTTP) URL of your data file below. | |
$url = "ftp://username:[email protected]/full/path/to/file.csv"; |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |