To mod textures for IB1 PC, follow the steps below:
-
Download and install the required tool from here.
-
Extract the installed tool and run the executable.
-
Switch from standard to advanced mode.
To mod textures for IB1 PC, follow the steps below:
Download and install the required tool from here.
Extract the installed tool and run the executable.
Switch from standard to advanced mode.
# Proof-of-concept code for reading data from a Wifi microscope. | |
# See https://www.chzsoft.de/site/hardware/reverse-engineering-a-wifi-microscope/. | |
# Copyright (c) 2020, Christian Zietz <[email protected]> | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright notice, this | |
# list of conditions and the following disclaimer. |
import sys | |
from http.server import SimpleHTTPRequestHandler, HTTPServer | |
class GzipRequestHandler(SimpleHTTPRequestHandler): | |
'''HTTPRequestHandler for gzip files''' | |
def end_headers(self): | |
'''Set Content-Encoding: gzip for gzipped files''' | |
if self.path.endswith('.gz'): |
#!/bin/sh | |
if [ "$UID" -ne 0 ]; then | |
echo "This script needs to be executed as root" | |
exit 1 | |
fi | |
vendor_id="0x3000" # Valve | |
product_id="0x28DE" | |
serial_number="$(dmidecode -s system-serial-number)" # The Steam Deck's serial number |
Made possible with this reddit post.
wine regedit wine-breeze-dark.reg
wine regedit wine-reset-theme.reg
WAYLAND_PROTOCOLS=/usr/share/wayland-protocols | |
# wayland-scanner is a tool which generates C headers and rigging for Wayland | |
# protocols, which are specified in XML. wlroots requires you to rig these up | |
# to your build system yourself and provide them in the include path. | |
xdg-shell-protocol.h: | |
wayland-scanner server-header \ | |
$(WAYLAND_PROTOCOLS)/stable/xdg-shell/xdg-shell.xml $@ | |
xdg-shell-protocol.c: xdg-shell-protocol.h |
#!/usr/bin/python3 | |
# CC0, originally written by t184256. | |
# This is an example Python program for Linux that remaps a keyboard. | |
# The events (key presses releases and repeats), are captured with evdev, | |
# and then injected back with uinput. | |
# This approach should work in X, Wayland, anywhere! |
/* https://spectreattack.com/spectre.pdf */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |
sudar@sudar-desktop:~/code/watch/openchronos-ng-modular$ mspdebug rf2500 | |
MSPDebug version 0.18 - debugging tool for MSP430 MCUs | |
Copyright (C) 2009-2011 Daniel Beer <[email protected]> | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
Trying to open interface 1 on 002 | |
rf2500: warning: can't detach kernel driver: No data available | |
Initializing FET... | |
FET protocol version is 30001000 |
Tiny_RayTracing.ps by Takashi Hayakawa ([email protected]) | |
is a ray tracing program in only 762 bytes (plus header)! | |
BEST OBFUSCATED ARTWORK -- 1st prize | |
-- The 2nd most coveted prize. These combine obfuscation with great artwork. | |
Don't send this one to a printer. It will take too long. Display it | |
on the screen and be ready to wait a while. The picture is well worth it. | |
If you want to print the picture much faster, use Tiny_RayTracing_Fast.ps instead. |