A command-line productivity tool powered by OpenAI's ChatGPT (GPT-3.5). As developers, we can leverage ChatGPT capabilities to generate shell commands, code snippets, comments, and documentation, among other things. Forget about cheat sheets and notes, with this tool you can get accurate answers right in your terminal, and you'll probably find yourself reducing your daily Google searches, saving you valuable time and effort.
pip install shell-gpt==0.8.3π Simple queries
sgpt "nginx default config file location"
# -> The default configuration file for Nginx is located at /etc/nginx/nginx.conf.
sgpt "1 hour and 30 minutes to seconds"
# -> 5,400 seconds
sgpt -s "start nginx using docker, forward 443 and 80 port, mount current folder with index.html"
# -> docker run -d -p 443:443 -p 80:80 -v $(pwd):/usr/share/nginx/html nginx
# -> Execute shell command? [y/N]: y
# ...
sgpt "Generate git commit message, my changes: $(git diff)"
# -> Commit message: Implement Model enum and get_edited_prompt() func, add temperature, top_p and editor args for OpenAI request.
Please open Telegram to view this post
VIEW IN TELEGRAM
π4β‘1
π£π³π Want to make sure your Docker containers always have the latest updates? Say hello to Watchtower! π
Watchtower is a handy tool that automatically updates your Docker containers whenever new versions of their images become available. This means you donβt have to manually monitor and update your containers every time a new version is released.
With Watchtower, you can set a scheduled interval for checking for new updates or set it to run continuously and check for updates every few minutes. You can set it up to receive notifications about docker container updates to messengers. It is fully customizable, so you can customize it to suit your needs.
π To read the article, follow this link: https://s.unixhost.pro/g0tgm
βΊ UA βΊ RU
β€ UnixHost π YouTube π’ WWW π Blog π©βπ» VPS servers
Watchtower is a handy tool that automatically updates your Docker containers whenever new versions of their images become available. This means you donβt have to manually monitor and update your containers every time a new version is released.
With Watchtower, you can set a scheduled interval for checking for new updates or set it to run continuously and check for updates every few minutes. You can set it up to receive notifications about docker container updates to messengers. It is fully customizable, so you can customize it to suit your needs.
π To read the article, follow this link: https://s.unixhost.pro/g0tgm
Please open Telegram to view this post
VIEW IN TELEGRAM
π3π₯2β‘1π€1
π Hello friends! π’ We have released a new article on our blog, in which we talk about the π top 10 self-hosted applications of 2023. If you donβt know what self-hosted applications are, they are π» programs that you can install on your own server or computer and use for personal or work purposes.
In the article, we talk about the most π popular and useful self-hosted applications that can improve your productivity and protect your data. The list includes applications such as π Nextcloud, π Gitea, π’ Matomo, π Grafana, and others.
We provide a detailed description of each application, its features and characteristics, as well as links to official websites and installation instructions.
π To read the article, follow this link: https://s.unixhost.pro/bmbxa
βΊ UA βΊ RU
β€ UnixHost π YouTube π’ WWW π Blog π©βπ» VPS servers
In the article, we talk about the most π popular and useful self-hosted applications that can improve your productivity and protect your data. The list includes applications such as π Nextcloud, π Gitea, π’ Matomo, π Grafana, and others.
We provide a detailed description of each application, its features and characteristics, as well as links to official websites and installation instructions.
π To read the article, follow this link: https://s.unixhost.pro/bmbxa
Please open Telegram to view this post
VIEW IN TELEGRAM
π2π₯1π―1
π’ ππ₯ We have just launched a new video series on our YouTube channel where we delve into the detailed configuration of Proxmox. π¬π§ Already released: Proxmox VM installation, virtual machine creation, backup management, and cluster setup. π₯πͺ Stay tuned for more!
βΊ Proxmox Installation Made Simple β https://youtu.be/CrvmY28EgEo
βΊ Creating a Virtual Machine on Proxmox and Installing an OS β https://youtu.be/IvgjHB0nkAA
βΊ Proxmox VM Cluster β https://youtu.be/kI21lkoS-t0
β€ UnixHost π YouTube π’ WWW π Blog π©βπ» VPS servers
Please open Telegram to view this post
VIEW IN TELEGRAM
π3π₯2β‘1
π Today, we are thrilled to celebrate our companyβs 14-year anniversary in the virtual hosting and dedicated server rental industry! π
Over the past 14 years, we have been privileged to serve an incredible community of clients, supporting their online presence and empowering their businesses to thrive. We are grateful for the trust you have placed in us and for the opportunity to be a part of your success.
Throughout this journey, our dedicated team has worked tirelessly to provide exceptional hosting solutions, staying at the forefront of technological advancements and delivering outstanding customer service. We are proud of the milestones we have achieved together and look forward to the exciting opportunities that lie ahead.
βΊ UA βΊ RU
β€ UnixHost π YouTube π’ WWW π Blog π©βπ» VPS servers
Over the past 14 years, we have been privileged to serve an incredible community of clients, supporting their online presence and empowering their businesses to thrive. We are grateful for the trust you have placed in us and for the opportunity to be a part of your success.
Throughout this journey, our dedicated team has worked tirelessly to provide exceptional hosting solutions, staying at the forefront of technological advancements and delivering outstanding customer service. We are proud of the milestones we have achieved together and look forward to the exciting opportunities that lie ahead.
Please open Telegram to view this post
VIEW IN TELEGRAM
π7β‘1π1
π’ Hey Linux admins! Did you know about the
While many Linux admins are familiar with common commands like
Next time you find yourself scrolling through large log files or want to examine the tail end of a text document, give
β€ UnixHost π YouTube π’ WWW π Blog π©βπ» VPS servers
tac
command? π§While many Linux admins are familiar with common commands like
cat
and grep
, tac
often goes unnoticed. Let's shine a light on this powerful command!tac
is the reverse of cat
(get it? π). It reads a file from the bottom up, printing its contents in reverse order. This can be incredibly useful when you need to quickly check the end of a log file or analyze data in reverse chronological order.Next time you find yourself scrolling through large log files or want to examine the tail end of a text document, give
tac
a try! It's a nifty tool that not all Linux admins are aware of.Please open Telegram to view this post
VIEW IN TELEGRAM
β€2π2β‘1π₯1π¨βπ»1