The 7 Habits of Highly Effective Communicators
Kali Linux: How To Install VNC on Raspberry Pi Running Kali?
Self-host remote access gateway – Guacamole
Virtual Machines Pt. 2 (Proxmox install w/ Kali Linux)
PRESSURISED VS NON-PRESSURISED BASKETS
How to grow an oak tree from an acorn
Protected: Ремонти на апартамент
TikTok Copycat
- Go to Tik Tock an search for
Motivational Quotes or Inspirational Quotes
Select something you like, or example:
You can’t go back and change the beginning, but you can start where you are and change the ending.
C.S. Lewis
2. Find a stock video and download it from
pexels.com pixabay.com
3. Edit the video an the quote on
VEED.IO
Click on “New Video” => “Create project”.
Upload the video. You can also use their free stock videos if you want.
Go to Settings and choose the size to be TikTok.
Go to Subtitles. Add a separate subtitle line for each video. Choose the styles / effects for the subtitles and align them with the video clips. Correct the position of the subtitles on the screen if needed.
4. Find a viral TikTok video and download the song using https://ssstik.io/
or download music from YouTube using https://www.converto.io/
Then add it to VEED.IO project under Audio.
Once everything looks good, download the video. The free version will have VEED.IO watermark. You either have to get the paid version or use one of the free video editors mentioned here:
Kdenlive provides a good balance between features and learning curve.
Once the video is rendered and downloaded, you can upload it.
5. Go to clickbank.com to monetize your video on TikTok.
Choose a product and generate a HopLink.
6. Go to Linktree and create a free landing page for your bio? This is where you add all of your social accounts.
7. Paste the Linktree link into the TikTok Bio.
How to Update Portainer to the Newest Version
How to Update Portainer to the Newest Version
In OpenMediaVault, Portainer by dbtechAugust 27, 2021Leave a Comment
In this blog post we’ll look at a couple of ways to update Portainer on your system. First we’ll look at how to update Portainer using OpenMediaVault. Then we’ll look at how to update Portainer on a standard Docker setup.
OpenMediaVault Setup
If you have OpenMediaVault installed, the process is super simple. Just login to OMV and go to OMV-Extras, then click the Docker tab. On that page, you can click the Portainer dropdown and then just click install. This will update your Portainer container even if you already have Portainer installed.
Standard Docker Setup
Portainer
# Step 1: Pull the latest Portainer CE image
docker pull portainer/portainer-ce:latest
# Step 2: Stop and remove the existing container
docker stop portainer
docker rm portainer
# Step 3: Recreate the container with the latest image
docker run -d \
-p 8000:8000 \
-p 9443:9443 \
--name portainer \
--restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data \
portainer/portainer-ce:latest
Portainer Agent
# Step 1: Pull the latest image
docker pull portainer/agent:latest
# Step 2: Stop and remove the existing container
docker stop portainer_agent
docker rm portainer_agent
# Step 3: Recreate the container (replace with your actual parameters if needed)
docker run -d \
--name portainer_agent \
--restart=always \
-p 9001:9001 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /var/lib/docker/volumes:/var/lib/docker/volumes \
portainer/agent:latest
Now you can go to http://your-server-address:9000 and login.