TAAFT
Free mode
100% free
Freemium
Free Trial
Deals
Create tool

Bogdan

@bogdanpavel Tasks: 963
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Pioneer
Joined: November 2024

Bogdan's tools

  • Playlist Generator/srcset
    AI-powered playlist creator for personalized music collections.
    Open
    9
    7
    1
    Released 2mo ago
    100% Free
    Playlist Generator/srcset website
  • Fix My Code
    Your AI software engineer: Clean, fix, and optimize code.
    Open
    1,171
    247
    1.5
    410
    Released 3mo ago
    100% Free
    ```python # trainer_emulator.py import sys import os from PySide6.QtWidgets import ( QApplication, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QLabel, QListWidget, QListWidgetItem, QLineEdit, QCheckBox, QMessageBox, QFileDialog ) from PySide6.QtCore import Qt # Supported emulators and their cheat file extensions EMULATORS = { "PCSX2": ".pnach", "Dolphin": ".gct", "DuckStation": ".pcsxr", "RetroArch": ".cht", "PPSSPP": ".db" } class Cheat: def __init__(self, name, code, enabled=False): self.name = name self.code = code self.enabled = enabled class Game: def __init__(self, name): self.name = name self.cheats = [] class TrainerApp(QWidget): def __init__(self): super().__init__() self.setWindowTitle("UCT - Universal Cheat Trainer") self.setGeometry(200, 200, 800, 600) self.games = {} self.current_emulator = None self.current_game = None self.init_ui() def init_ui(self): main_layout = QVBoxLayout() # Emulator buttons emulator_layout = QHBoxLayout() for emu in EMULATORS: btn = QPushButton(emu) btn.clicked.connect(lambda checked, e=emu: self.load_emulator(e)) emulator_layout.addWidget(btn) main_layout.addLayout(emulator_layout) # Game selection self.game_list = QListWidget() self.game_list.itemClicked.connect(self.select_game) main_layout.addWidget(QLabel("Games:")) main_layout.addWidget(self.game_list) # Cheat filter/search filter_layout = QHBoxLayout() self.search_box = QLineEdit() self.search_box.setPlaceholderText("Search cheats...") self.search_box.textChanged.connect(self.filter_cheats) filter_layout.addWidget(self.search_box) main_layout.addLayout(filter_layout) # Cheat list with checkboxes self.cheat_list = QListWidget() main_layout.addWidget(QLabel("Cheats:")) main_layout.addWidget(self.cheat_list) # Manual cheat file adder add_file_btn = QPushButton("Add Cheat File") add_file_btn.clicked.connect(self.add_cheat_file) main_layout.addWidget(add_file_btn) # Help button help_btn = QPushButton("Help") help_btn.clicked.connect(self.show_help) main_layout.addWidget(help_btn) self.setLayout(main_layout) def load_emulator(self, emulator): self.current_emulator = emulator self.game_list.clear() self.cheat_list.clear() self.games.clear() # Auto-scan cheat folder (optional) cheat_folder = QFileDialog.getExistingDirectory(self, f"Select {emulator} Cheat Folder") if not cheat_folder: return for file in os.listdir(cheat_folder): if file.endswith(EMULATORS[emulator]): game_name = os.path.splitext(file)[0] game = Game(game_name) try: with open(os.path.join(cheat_folder, file), "r") as f: for line in f: line = line.strip() if line: cheat = Cheat(line, line) game.cheats.append(cheat) except Exception as e: QMessageBox.warning(self, "Error", f"Failed to load {file}:\n{str(e)}") self.games[game_name] = game self.game_list.addItem(game_name) def select_game(self, item): game_name = item.text() self.current_game = self.games.get(game_name) self.update_cheat_list() def update_cheat_list(self): self.cheat_list.clear() if not self.current_game: return for cheat in self.current_game.cheats: item = QListWidgetItem(cheat.name) item.setFlags(item.flags() | Qt.ItemIsUserCheckable) item.setCheckState(Qt.Checked if cheat.enabled else Qt.Unchecked) self.cheat_list.addItem(item) self.cheat_list.itemChanged.connect(self.toggle_cheat) def toggle_cheat(self, item): if not self.current_game: return cheat_name = item.text() for cheat in self.current_game.cheats: if cheat.name == cheat_name: cheat.enabled = item.checkState() == Qt.Checked break def filter_cheats(self): if not self.current_game: return search_text = self.search_box.text().lower() for i in range(self.cheat_list.count()): item = self.cheat_list.item(i) item.setHidden(search_text not in item.text().lower()) def add_cheat_file(self): file_path, _ = QFileDialog.getOpenFileName(self, "Select Cheat File") if not file_path: return try: game_name = os.path.splitext(os.path.basename(file_path))[0] game = Game(game_name) with open(file_path, "r") as f: for line in f: line = line.strip() if line: cheat = Cheat(line, line) game.cheats.append(cheat) self.games[game_name] = game self.game_list.addItem(game_name) except Exception as e: QMessageBox.warning(self, "Error", f"Failed to load file:\n{str(e)}") def show_help(self): QMessageBox.information( self, "Help", "1. Select an emulator.\n" "2. Choose the cheat folder or add a cheat file manually.\n" "3. Select a game to view cheats.\n" "4. Toggle cheats on/off using the checkboxes.\n" "5. Use the search box to filter cheats.\n" "Note: Memory injection is not implemented in this prototype." ) if __name__ == "__main__": app = QApplication(sys.argv) trainer = TrainerApp() trainer.show() sys.exit(app.exec()) ```
  • Code Humanizer
    Transform AI code into human-like programming
    Open
    2,994
    926
    3.3
    1,292
    Released 3mo ago
    100% Free
    package eecs2030.lab3; import java.util.Objects; public final class Bird implements Comparable<Bird> { private final String species; private final double weightInGrams; public Bird(String species, double weightInGrams) { this.species = species; this.weightInGrams = weightInGrams; } public Bird() { this("Unknown", 300.0); } public String getSpecies() { return species; } public double getWeightInGrams() { return weightInGrams; } private double weightRoundedTo20Grams() { return Math.round(weightInGrams / 20.0) * 20.0; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (!(obj instanceof Bird)) return false; Bird other = (Bird) obj; return Objects.equals(species, other.species) && Double.compare(weightRoundedTo20Grams(), other.weightRoundedTo20Grams()) == 0; } @Override public int hashCode() { long rBits = Double.doubleToLongBits(weightRoundedTo20Grams()); int weightHash = (int) (rBits ^ (rBits >>> 32)); return Objects.hash(species, weightHash); } @Override public String toString() { return String.format("Bird[species=%s, weightInGrams=%.3f]", species, weightInGrams); } @Override public int compareTo(Bird other) { double thisRounded = weightRoundedTo20Grams(); double otherRounded = other.weightRoundedTo20Grams(); int cmp = Double.compare(thisRounded, otherRounded); return cmp != 0 ? cmp : species.compareTo(other.species); } }
  • Friendly Sharks
    Create whimsical shark art with AI magic.
    Open
    668
    10
    7
    Released 10mo ago
    100% Free

Bogdan's lists

Comments

Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
this is a test edit
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
This tool makes it easy to dump in case notes, statutes, and templates, then pull back quick summaries or Q
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
what a nice ai
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
Check it now, the model was improved.
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
The tool was improved to respect physical characteristics better.
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
test test test
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
nice prompt you have here it helps me a lot
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
You can always buy one or two from the market!
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
No, at least not that i know of.
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Do you have any babies?
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
No, i love you more, because you help my everyday life with quality prompts!
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Love the kind words, appreciate it!
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
I will share it with my family at the family dinner tonight, it's incredible how much this prompt helps my life and my family!
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Thanks i worked so hard for it, glad to see someone likes it!
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
What a great prompt thanks so much!
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
what a great prompt love it so much
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
edited comment 17 18!!!!!!!!eddddditzzzzzzzz
Bogdan
๐Ÿ› ๏ธ 4 tools ๐Ÿ™ 2,299 karma
Rated it
normal comment 17 18
0 AIs selected
Clear selection
#
Name
Task