How to one click start IPFS daemon on Linux Mint Cinnamon

Introduction The goal here is to have an app launcher icon than can be placed in the menu / taskbar on Linux mint to start the ipfs daemon and leave a terminal window open. This is an alternative to doing this manually or setting up a system service to start and stop manually. With the following workflow goals of having an icon in task bar when clicked does the following. Opens terminal and runs the ipfs daemon command and leaves the window showing.

Apple User Guides outside of the Tips App and small screens

If you use Apple devices like iPhone, iPad, or Apple Watch, I highly recommend checking out their User Guides. After over 5 years of using various iPhones I hadn’t looked at a user guide until I picked up a used iPhone 12 Pro in 2024. The user guide are mentioned in the Apple Tips app, but you can also view it on any computer by visiting Apple Support and finding the User Guide for your Apple products.

ONLC Docker for Enterprise Developers Certificate

The certificate of completion for the ONLC Docker for Enterprise Developers course taken on July 25-26,2024. Certificate Unable to display PDF menu Download Resources ONLC Docker Training Classes & Certification ONLC Docker for Enterprise Developers outline - pdf ONLC Docker For Enterprise LibreOffice Impress - password secured

ONLC Docker Fundamentals Certificate and Synopsis

The certificate of completion and training synopsis for the Docker Fundamentals course taken on May 28-30, 2024 in Boise, ID . Certificate Unable to display PDF menu Download Synopsis of ONLC Docker Fundamentals Getting started with Docker Docker is a containerization platform that bundles apps with their dependencies, saving resources over virtual machines. Docker engine integrates containers with the host OS. Install Docker engine CLI or Docker Desktop. Enable virtualization/Hyper-V if not already enabled.

Altoids Tin Wallet

Introduction While I was at the Apple Store in boise town center getting a new battery installed. I saw something truly innovative by another customer also in for a genius bar appointment. The gentleman had an old well-worn Altoids tin that he had pulled from a pocket to pay for service at the Apple Store. I noticed and asked about it. He said he had been using the tin for over 10 years.

How to Lock First Person View in a Roblox Game using Roblox Studio

If you would like to force your Roblox Game to always be in the first person view, you can do so by adding a LocalScript to the StarterPlayerScripts service. Here is how you can do it: Open Roblox Studio. Go to View > Explorer > StarterPlayer Go to and click on StarterPlayerScripts Right click select insert object Select LocalScript option, the Script option will not work with the following. Add the following to the new LocalScript

Clean up accidental commit on Main or Master and moving changes to a new branch using Git

Summary I accidentally committed to main or master without creating a branch first. I did not push the changes to the repository, only committed locally. Problem Made changes on main/master and ran the following command: git commit -a Solution To fix this, run: git reset --soft HEAD^ then git stash Create the branch: git checkout -b the_branch_I_wanted Apply the stashed changes: git stash pop Now commit: git commit -a Reference Stack Overflow - How to uncommit my last commit in Git

DIY Multi End Cord Bundle for travel

This is DIY bundle of cords, this is not about making a custom one to many charging cord. This is a way to keep all the charging cords you need bundled together in your travel bag. This will help with the problem of pulling out one cable and having 3 other random cables coming with it and falling out of the bag pocket and possibly getting lost. Supplies required: - All the usb cables you need for travel - Velcro cables tie/s 1 required, second one optional How to make your own bundle of travel cords?

How to view quickly displayed boot Screen text errors After Linux Mint has started normally

I have been running Linux Mint for years and often see various error messages printing on the screen while booting up Linux Mint 21.x. They don’t seem to be major issues since the system keeps booting and has been running “well” for years. Curious if I wanted to dig into what the actual issues are, how would I see them short of snapping a picture with my phone, which I managed to do but at just 1-2 seconds to capture this it’s hard to capture a clear photo and near impossible to try and read it without taking a photo, however it seems after doing some research it appears you don’t have to take a picture to see this everytime.

How to rename a Linux Mint Computer?

Problem If for one reason or another the name of your Linux computer needs to change, this may be the right place. To rename your Linux Mint 21.x + computer typically you should change the host-name to accomplish this. To verify this is the name you want to change open a terminal and run the following command. hostname If this is the name you are wanting to change then please proceed to the solution presented below.