- How do you say SUSE?
- 5 Things You MUST DO After Installing OpenSUSE -- Video, Article
- 20 Things To Do After Installing OpenSUSE -- Video, Article
- Additional package repositories
- 45 Zypper Commands to Manage ‘Suse’ Linux Package Management
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ============================================================================ | |
# Description: This script bootstraps a new vast.ai GPU instance, installs | |
# ollama and sets up a custom model for inference. | |
# | |
# author: Victor Miti <https://github.com/engineervix> | |
# ============================================================================ | |
# Exit immediately if any command fails |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ================================================================================================= | |
# Description: This script updates all outdated Poetry dependencies for a Python project, ensuring | |
# each package is kept up-to-date with the latest compatible versions available. | |
# It processes each outdated package individually, updating them one by one. | |
# If an update is successful, the script commits these changes to git | |
# with a clear message indicating the package name and the version change. | |
# This granular approach to updating and committing allows for | |
# better tracking of changes and simplifies rollback procedures if an update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaron-bond.better-comments | |
akamud.vscode-theme-onedark | |
alefragnani.Bookmarks | |
bibhasdn.django-html | |
bibhasdn.django-snippets | |
bradgashler.htmltagwrap | |
charliermarsh.ruff | |
christian-kohler.npm-intellisense | |
christian-kohler.path-intellisense | |
Codium.codium |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ============================================================================= | |
# description: Ubuntu 22.04 Desktop Setup Script | |
# author: Victor Miti <https://github.com/engineervix> | |
# note: In its current state, this won't run unattended without issues. | |
# There are some manual interventions in between certain steps. | |
# The script primarily serves as documentation of the setup process | |
# for future reference. | |
# TODO: make this run unattended. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ================================================================================================================ | |
# author: Victor Miti <https://github.com/engineervix> | |
# NOTES: | |
# 1. this is not meant to be executed as a script! | |
# rather, it's a documented sequence of steps to follow | |
# in setting up Dokku & deploying your web applications. | |
# 2. this is mostly based on my experience deploying a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
manjaro encrypt disk on install - Google Search | |
https://www.google.com/search?q=manjaro+encrypt+disk+on+install&client=firefox-b-d&sxsrf=APq-WBs3lUyKP1DSZ1KrIH49CCwP3-jjHg%3A1645869510456&ei=xvkZYu-3G8S6aaP5o4gF&ved=0ahUKEwjvspHcjZ32AhVEXRoKHaP8CFEQ4dUDCA0&uact=5&oq=manjaro+encrypt+disk+on+install&gs_lcp=Cgdnd3Mtd2l6EAM6BwgAEEcQsAM6BwgAELADEEM6BAgAEEM6BQgAEIAEOgoIABCABBCHAhAUOgUIABCRAjoGCAAQFhAeOggIABAWEAoQHjoECAAQDToGCAAQDRAeOggIABAIEA0QHjoGCAAQBxAeSgQIQRgASgQIRhgAUPsGWJeHAWCvigFoAnABeACAAeEDiAHAPJIBBjMtMjAuMpgBAKABAcgBCsABAQ&sclient=gws-wiz | |
Fresh Manjaro Installation With Encryption : ManjaroLinux | |
https://www.reddit.com/r/ManjaroLinux/comments/bc3r7e/fresh_manjaro_installation_with_encryption/ | |
[HowTo] Install Manjaro fully encrypted using Manjaro Architect - Contributions / Tutorials - Manjaro Linux Forum | |
https://forum.manjaro.org/t/howto-install-manjaro-fully-encrypted-using-manjaro-architect/2709/4 | |
Manjaro - First Steps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see https://stackoverflow.com/questions/69028083/branching-workflows-based-on-value-of-specified-page-field/69060134 | |
# Django imports | |
from django import forms | |
from django.db import models | |
from django.utils.functional import cached_property | |
# Additional dependencies | |
# ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# --------------------------------------------- | |
# This has been updated to work with Fedora 35 | |
# --------------------------------------------- | |
# Run a System Update | |
sudo dnf update | |
# Enable RPM Fusion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function die() | |
{ | |
echo "${@}" | |
exit 1 | |
} | |
function backup_previous_install() | |
{ |
NewerOlder