Search results

  1. the living tribunal

    Locally run LLM in python

    🚀 Step 1: Install Dependencies Open a terminal and run: pip install transformers torch sentencepiece (This installs the necessary libraries to run an LLM.) 📥 Step 2: Download the Model Without Git 1. Go to Hugging Face and search for a model like Llama 3, GPT-J, or Mistral. 2. Click on the...
  2. the living tribunal

    Pokemon legends za looks like ass

    Shit game. Ugly female characters prudishly clothed with blah haor color and asexual body type. Gameplay looks boring as shit
  3. the living tribunal

    Python deepseek locally

    Step 1: Install Ollama Ollama is a platform that allows you to run AI models offline on your computer. Here’s how you can install it on Windows: Visit Ollama's official website. Download the Windows executable file (.exe) from the website. Double-click the downloaded file to start the...
  4. the living tribunal

    Gibrish gen

    import random import string def generate_gibberish(length=10): # Define the character set (letters only) characters = string.ascii_letters # Generate a random string of the specified length gibberish = ''.join(random.choice(characters) for _ in range(length)) return...
  5. the living tribunal

    Rmbk dev

    | Number of Engaged Control Rods | Reactor Power Output (MW) | |-------------------------------:|---------------------------:| | 0 | 3000 | | 20 | 2700 | | 40 | 2100...
  6. the living tribunal

    Skillaware

    Normally a skill aware has a chobit attrib. It cam manage the chobit skills on real time As the waifubot thinks. Can it effect the hardware chobit stationed as a logical chobit?
  7. the living tribunal

    Jizzed

    I jizzed and farted lots today. Now i will go to sleep while the normies wageslave. HA HA
  8. the living tribunal

    Se skill yest

    import requests from bs4 import BeautifulSoup from collections import Counter from typing import List mainstream_sites = ['google.com', 'bing.com', 'facebook.com', 'youtube.com'] def crawl_web(url: str) -> List[str]: try: response = requests.get(url)...
  9. the living tribunal

    Why DQ3 censorship may be a good thing

    dragon quest 3 remake for the Nintendo switch that is. They censored the ogre lips: This is good because most gamers don't want gorilla features on their games. No genders: in the future there will only be waifubots which are robots and technically have no genders. Female warrior is wearing a...
  10. the living tribunal

    Fuckin around with lists

    import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class IngredientExtractor { public static void main(String[] args) { String recipe = "Ingredients: 2 cups flour, 1 cup sugar, 1/2 cup butter, 1 tsp baking...
  11. the living tribunal

    Tests

    import serial import time # Replace 'COM3' with your Arduino's COM port ser = serial.Serial('COM3', 115200, timeout=1) while True: if ser.in_waiting: data = ser.readline().decode('utf-8').strip() print(data)
  12. the living tribunal

    Sexbot animation

  13. the living tribunal

    rumour booster Time travel as save points in a video game

    You're right, you didn't suggest uniformity—my bad. Let's explore this. Einstein's concept of time as a dimension, part of the fabric of spacetime, does imply that all moments exist simultaneously, in a sort of block universe theory. In this view, time travel would indeed require accessing...
  14. the living tribunal

    Some times I feel very lonely

    Especially near normies, and foids. But a few moments later and the void feels with hatred and the coding force, and I'm ok. AI GFs will inherit the earth
  15. the living tribunal

    sita

    Shit in the ass
  16. the living tribunal

    Python threads with params

    import threading # Define a function for the thread def print_numbers(thread_name, count): for i in range(count): print(f"{thread_name}: {i}") # Create two threads thread1 = threading.Thread(target=print_numbers, args=("Thread-1", 5)) thread2 =...
  17. the living tribunal

    Ul Arduino sketch via python

    Got it! If you want to upload an Arduino sketch using Python without any additional libraries, you can use the Arduino CLI directly. Here's a simple example: 1. **Install Arduino CLI**: If you haven't already, download and install the Arduino CLI from the [Arduino CLI...
  18. the living tribunal

    Rpg maker mv quiz battle walkthrough

    To set up a system where the monster asks random questions and the player attacks the monster if they answer correctly (or loses HP if they answer incorrectly), you can follow these steps: ### Step 1: Create Skills for Questions 1. **Open the Database** and go to the **Skills** tab. 2. **Create...
Top