./unlink path/to/binary
out/run
to call it
./unlink path/to/binary
out/run
to call it
// ==UserScript== | |
// @name fix google breaking youtube on certain browsers | |
// @run-at document-start | |
// @version 2024-08-04 | |
// @description fuck google | |
// @author velzie | |
// @match https://www.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none | |
// ==/UserScript== |
/* ==UserStyle== | |
@name No Rounded Corners | |
@description remove all rounded corners | |
@author velzie | |
@version 0.0 | |
@namespace https://gist.github.com/velzie/9fbde71738ee9a207fb87dcc5c0a2ce7 | |
==/UserStyle== */ | |
*:not(__unreachable), | |
*:not(__unreachable)::before, |
webRequestBlocking
API, which is neccesary for (effective) adblockers to workExtensionManifestV2Availability
key was added and will presumably stay forever after enterprises complain enoughYou can use this as a regular user, which will let you keep your mv2 extensions even after they're supposed to stop working
In a terminal, run:
Hello! This is a parody of the infamous "boycott wayland" thread. Meant to be a reference of issues, instead of tracking actual flaws with the wayland ecosystem or pointing out helpful resources or alternatives, the creator mostly cites secondhand anecdotes, personal opinions, and outdated or provably false statements. When commenters tried to point out the outdated information and suggest improvements to the gist, their comments were either deleted, harrassed by the creator of the gist, or edited to include homophobic remarks.
Do not take anything here seriously, I made this mostly as a joke. If you have extra things to add leave them in comments (i won't harass you)
Short guide on how to bypass this:
If you haven't disabled rootfs verification, switch to vt-2 and run /usr/libexec/debugd/helpers/dev_features_rootfs_verification
. Then reboot.
Inside crostini, download minioverride.c
and compile it with gcc minioverride.c -o minioverride.so -shared
(make sure gcc is installed)
In the files app, move minioverride.so
into your downloads folder.
/* compile: | |
``` | |
gcc rickroll.c | |
sudo ./a.out | |
``` | |
MUST BE RUN AS ROOT | |
*/ | |
#include <fcntl.h> // open | |
#include <linux/input.h> // struct input_event | |
#include <linux/kd.h> |
mkdir libs | |
cp $(ldd bin | sed -e "s/ (.*//" -e "s/\t//g" -e "s/.*=> //" | grep -v "linux-vdso.so.1") libs | |
# to execute the program, libs/linker.so --library-path libs /path/to/binary | |
# ty r58 for the fix |
#!/usr/bin/python | |
import vpk | |
from pathlib import Path | |
import os | |
pakdir = "pak01_dir.vpk" | |
pak1 = vpk.open(pakdir); | |
os.mkdir("pak01") | |
for filepath in pak1: |
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.SceneManagement; | |
public class SaveStatesManager : MonoBehaviour | |
{ | |
public List<SavedGameObject> savedState; | |
public void SaveState() | |
{ |