Skip to content

Instantly share code, notes, and snippets.

View Tweaker177's full-sized avatar
🤩
Gone Rootless, once by accident, now a 2nd time just to build and rest for it.🫠

i0s_tweak3r Tweaker177

🤩
Gone Rootless, once by accident, now a 2nd time just to build and rest for it.🫠
View GitHub Profile
@PoomSmart
PoomSmart / build-rootless.sh
Last active April 24, 2024 13:38
Shell script to build your tweaks compatible with rootless jailbreak.
#!/usr/bin/env bash
set -e
PROJECT="$1"
if [ -z "$PROJECT" ]; then
echo "Usage: $0 <project>"
exit 1
fi
@Teutates
Teutates / repack-rootless.sh
Last active March 30, 2024 08:22
Rootless Repacker
#!/bin/sh
### Procursus 2
### INFO: Repacks deb as rootless with iphoneos-arm64 arch, moves legacy tweak dir to
### new directory, and resigns. Does not do any further modification.
set -e
if ! type dpkg-deb >/dev/null 2>&1; then
@Chmarusso
Chmarusso / FeeCollector.sol
Created October 4, 2021 16:05
Transfer ERC20 from contract
pragma solidity ^0.8.7;
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract FeeCollector {
address public owner;
uint256 public balance;
event TransferReceived(address _from, uint _amount);