Skip to content

Instantly share code, notes, and snippets.

View xVemu's full-sized avatar
🎯
Focusing

Kamil Kras xVemu

🎯
Focusing
View GitHub Profile
@xVemu
xVemu / README.md
Last active February 28, 2026 19:39
tf2-wallhack

tf2-wallhack

Whole conversation with perplexity

  1. First I searched for ammo offsets in server.dll
  2. Created python script to modify these value in memory
  3. Found offset to local player's position
  4. Found dwEntityList and enemies positions
  5. Created external gui in python to display rectangles at the enemy position
  6. Need to find offsets in client.dll for camera rotation
  7. Also found team of enemy which
@xVemu
xVemu / main.dart
Created December 27, 2025 18:05
Symulacja rzutu ukośnego w Flutter
import 'dart:math' as Math;
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
// Większość obliczeń fizycznych odbywa się tutaj.
class Kalkulator {
@xVemu
xVemu / championsWithNoSkin.js
Last active April 30, 2022 19:53
Returns list of champions that you don't have skins for.
import {authenticate, request} from 'league-connect'
(async () => {
const credentials = await authenticate()
const {summonerId} = await (await request({
method: 'GET',
url: '/lol-summoner/v1/current-summoner',
}, credentials)).json()
const response = await (await request({
method: 'GET',
@xVemu
xVemu / Tapeta.xml
Last active June 30, 2022 20:26
Script to change wallpaper downloaded from NASA, first use `Set-ExecutionPolicy -ExecutionPolicy Unrestricted`
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2022-01-27T16:10:36.4835953</Date>
<Author>VEMU-PC\vemu</Author>
<URI>\Tapeta</URI>
</RegistrationInfo>
<Triggers>
<LogonTrigger>
<Enabled>true</Enabled>
@xVemu
xVemu / Fiszkoteka.java
Last active January 28, 2022 16:17
Skrypt do pobrania słówek z fiszkoteka do pliku tekstowego, wymaga zależności Jsoup
public class Fiszkoteka {
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Brak podanego linku");
return;
}
if (!args[0].startsWith("https://fiszkoteka.pl/zestaw/") || args[0].startsWith("http://fiszkoteka.pl/zestaw/")) {
System.out.println("Zły link");
return;
}
@xVemu
xVemu / index.ts
Last active October 25, 2025 12:06
Manage yt music playlist
import {youtube_v3} from 'googleapis'
import {stringSimilarity} from "string-similarity-js"
import * as child_process from "node:child_process"
import Youtube = youtube_v3.Youtube
import Innertube from "youtubei.js/web"
// TODO Get from https://console.cloud.google.com/apis/api/youtube.googleapis.com/credentials
const API_KEY = ""
const PLAYLIST = "PLuQ_OD4OGO1av4pPdFsKEttnkZ_NCukFO"