This script allows you to fix the broken ubuntu packages.
Most of the time the broken packages will be fixed by removing them.
| Getting Started | Documentation | License |
|---|
This script allows you to fix the broken ubuntu packages.
Most of the time the broken packages will be fixed by removing them.
| Getting Started | Documentation | License |
|---|
| -- autosave.lua | |
| -- | |
| -- Periodically saves "watch later" data during playback, rather than only saving on quit. | |
| -- This lets you easily recover your position in the case of an ungraceful shutdown of mpv (crash, power failure, etc.). | |
| -- | |
| -- You can configure the save period by creating a "lua-settings" directory inside your mpv configuration directory. | |
| -- Inside the "lua-settings" directory, create a file named "autosave.conf". | |
| -- The save period can be set like so: | |
| -- | |
| -- save_period=60 |
| #! /usr/bin/env ruby | |
| # NOTE: Requires Ruby 2.1 or greater. | |
| # This script can be used to parse and dump the information from | |
| # the 'html/contact_info.htm' file in a Facebook user data ZIP download. | |
| # | |
| # It prints all cell phone call + SMS message + MMS records, plus a summary of each. | |
| # | |
| # It also dumps all of the records into CSV files inside a 'CSV' folder, that is created |
| #!/bin/sh | |
| ####################################################### | |
| # | |
| # Edits the proxmox Subscription file to make it | |
| # think that it has a Subscription. | |
| # | |
| # Will disable the annoying login message about | |
| # missing subscription. | |
| # |
A commit should be a wrapper for related changes. For example, fixing two different bugs should produce two separate commits. Small commits make it easier for other developers to understand the changes and roll them back if something went wrong. With tools like the staging area and the ability to stage only parts of a file, Git makes it easy to create very granular commits.
Committing often keeps your commits small and, again, helps you commit only related changes. Moreover, it allows you to share your code more frequently with others. That way itβs easier for everyone to integrate changes regularly and avoid having merge conflicts. Having large commits and sharing them infrequently, in contrast, makes it hard to solve conflicts.
| #!/bin/bash | |
| wget="wget -nc -nv" | |
| version="20.04.1" | |
| # Downloads the .torrent files for Ubuntu ISOs since they don't exist in just one place | |
| # To get the iso, use a local mirror: https://launchpad.net/ubuntu/+cdmirrors | |
| # Prep | |
| dl_dir="./torrents" | |
| mkdir -p "$dl_dir" |
| #!/usr/bin/env bash | |
| # TAGS | |
| # /usr/local/bin/pve-API2Subs_sed.sh | |
| # https://gist.github.com/ngadmini/7f9df377999cc78c1b58e361d5425ac4#file-pve_api2subs-sh | |
| # AUTHOR | |
| # ngadimin@warnet-ersa.net | |
| # https://github.com/ngadmini | |
| # https://gist.github.com/ngadmini | |
| # VERSION | |
| # v10.5 |