PE Injection/Impersonation:
Discover gists
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
--- 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 |
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
// ==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 |
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 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 |
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
/** | |
*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 |
- Step 1: Download and install StarUML Version 6 from main website https://staruml.io
- Step 2: Download
app.asar
file from https://drive.google.com/file/d/1_sKvHVL6SebnYF73iZxSWD9l48Pddzvj/view?usp=sharing - Step 3: Copy
app.asar
file download in step 2 (Overrideapp.asar
file)- Window:
C:\Program Files\StarUML\resources
- MacOS:
/Applications/StarUML.app/Contents/Resources/
- Linux:
/opt/StartUML/resources
- Window:
- Step 4: Open StarUML app to use
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
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 |
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.
Let's start with the brief description of the projects mentioned in the post & extend them:
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
NewerOlder