Skip to content

Instantly share code, notes, and snippets.

--- common-debian.sh 2020-04-16 13:47:08.000000000 +0200
+++ common.sh 2020-04-16 13:57:17.000000000 +0200
@@ -99,11 +99,15 @@
# Optionally install and configure zsh
if [ "$INSTALL_ZSH" = "true" ]; then
apt-get install -y zsh
- sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
+ curl -fsSL https://starship.rs/install.sh | bash
+ curl -fsSL https://raw.githubusercontent.com/zimfw/install/master/install.zsh | zsh
echo "export PATH=\$PATH:\$HOME/.local/bin" | tee -a /root/.zshrc
@JakubMarcinkowski
JakubMarcinkowski / table-copier-clipboard.user.js
Last active April 3, 2025 19:14
Table copier (to clipboard) - userscript for Tampermonkey (hopefully other managers too).
// ==UserScript==
// @name Table copier (to clipboard)
// @version 0.3.1
// @description Choose from your userscipts addon menu. All tables are highlighted, click one to copy, elsewhere to cancel. Copy table and paste into spreadsheets like Excel, Google Sheets, LibreOffice Calc, OpenOffice Calc and others.
// @author Jakub Marcinkowski <kuba.marcinkowski on g mail>
// @copyright 2024+, Jakub Marcinkowski <kuba.marcinkowski on g mail>
// @license Zlib
// @namespace Jakub Marcinkowski
// @homepageURL https://gist.github.com/JakubMarcinkowski
// @homepageURL https://github.com/JakubMarcinkowski
@KROSF
KROSF / docker-setup.sh
Created July 21, 2020 13:00
Install docker and docker-compose
#!/usr/bin/env sh
COMPOSE_VERSION=1.26.2
sudo apt update
sudo apt upgrade -y
sudo apt install -y curl
curl -fsSL https://get.docker.com | sudo sh
sudo curl -L "https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
@nolim1t
nolim1t / tokenmint.sol
Created December 3, 2019 09:00
Sample Token from tokenmint.io
/**
*Submitted for verification at Etherscan.io on 2019-02-06
*/
pragma solidity ^0.4.24;
// File: node_modules/openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
/**
* @title ERC20 interface
@K1ethoang
K1ethoang / Active StarUml version 6 for Window | MacOS | Linux.md
Last active April 3, 2025 19:09
Active StarUml version 6 for Window | MacOS | Linux
@KROSF
KROSF / install.sh
Last active April 3, 2025 19:09
Nginx wildcard
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:ondrej/php
sudo add-apt-repository ppa:ondrej/nginx
sudo apt install nginx php7.4-fpm php7.4-common php7.4-intl php7.4-mysql php7.4-xml php7.4-xmlrpc php7.4-curl php7.4-gd php7.4-imagick php7.4-cli php7.4-dev php7.4-imap php7.4-mbstring php7.4-soap php7.4-zip php7.4-bcmath -y
@peppergrayxyz
peppergrayxyz / qemu-vulkan-virtio.md
Last active April 3, 2025 19:08
QEMU with VirtIO GPU Vulkan Support

QEMU with VirtIO GPU Vulkan Support

With its latest reales qemu added the Venus patches so that virtio-gpu now support venus encapsulation for vulkan. This is one more piece to the puzzle towards full Vulkan support.

An outdated blog post on clollabora described in 2021 how to enable 3D acceleration of Vulkan applications in QEMU through the Venus experimental Vulkan driver for VirtIO-GPU with a local development environment. Following up on the outdated write up, this is how its done today.

Definitions

Let's start with the brief description of the projects mentioned in the post & extend them:

@myusuf3
myusuf3 / delete_git_submodule.md
Created November 3, 2014 17:36
How effectively delete a git submodule.

To remove a submodule you need to:

  • Delete the relevant section from the .gitmodules file.
  • Stage the .gitmodules changes git add .gitmodules
  • Delete the relevant section from .git/config.
  • Run git rm --cached path_to_submodule (no trailing slash).
  • Run rm -rf .git/modules/path_to_submodule (no trailing slash).
  • Commit git commit -m "Removed submodule "
  • Delete the now untracked submodule files rm -rf path_to_submodule
@KROSF
KROSF / ubuntu.md
Last active April 3, 2025 19:05
Configuring ZSH

Configure ZSH using zplug and starship

Steps

Install zplug

curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh